mirror of
				git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
				synced 2025-10-31 08:44:41 +00:00 
			
		
		
		
	 25763b3c86
			
		
	
	
		25763b3c86
		
	
	
	
	
		
			
			Based on 1 normalized pattern(s): this program is free software you can redistribute it and or modify it under the terms of version 2 of the gnu general public license as published by the free software foundation extracted by the scancode license scanner the SPDX license identifier GPL-2.0-only has been chosen to replace the boilerplate/reference in 107 file(s). Signed-off-by: Thomas Gleixner <tglx@linutronix.de> Reviewed-by: Allison Randal <allison@lohutok.net> Reviewed-by: Richard Fontana <rfontana@redhat.com> Reviewed-by: Steve Winslow <swinslow@gmail.com> Reviewed-by: Alexios Zavras <alexios.zavras@intel.com> Cc: linux-spdx@vger.kernel.org Link: https://lkml.kernel.org/r/20190528171438.615055994@linutronix.de Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
		
			
				
	
	
		
			21 lines
		
	
	
	
		
			547 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			21 lines
		
	
	
	
		
			547 B
		
	
	
	
		
			C
		
	
	
	
	
	
| /* SPDX-License-Identifier: GPL-2.0-only */
 | |
| /* Copyright (c) 2017 Facebook
 | |
|  */
 | |
| #ifndef __MAP_IN_MAP_H__
 | |
| #define __MAP_IN_MAP_H__
 | |
| 
 | |
| #include <linux/types.h>
 | |
| 
 | |
| struct file;
 | |
| struct bpf_map;
 | |
| 
 | |
| struct bpf_map *bpf_map_meta_alloc(int inner_map_ufd);
 | |
| void bpf_map_meta_free(struct bpf_map *map_meta);
 | |
| bool bpf_map_meta_equal(const struct bpf_map *meta0,
 | |
| 			const struct bpf_map *meta1);
 | |
| void *bpf_map_fd_get_ptr(struct bpf_map *map, struct file *map_file,
 | |
| 			 int ufd);
 | |
| void bpf_map_fd_put_ptr(void *ptr);
 | |
| u32 bpf_map_fd_sys_lookup_elem(void *ptr);
 | |
| 
 | |
| #endif
 |