mirror of
				https://github.com/torvalds/linux.git
				synced 2025-11-04 02:30:34 +02:00 
			
		
		
		
	And fixup the fallout of c files not building due to now missing headers. Cc: Adrian Hunter <adrian.hunter@intel.com> Cc: Jiri Olsa <jolsa@kernel.org> Cc: Namhyung Kim <namhyung@kernel.org> Link: https://lkml.kernel.org/n/tip-sw8k3kpla98pr3rqypbjk9hf@git.kernel.org Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
		
			
				
	
	
		
			20 lines
		
	
	
	
		
			408 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			20 lines
		
	
	
	
		
			408 B
		
	
	
	
		
			C
		
	
	
	
	
	
#ifndef __MEM2NODE_H
 | 
						|
#define __MEM2NODE_H
 | 
						|
 | 
						|
#include <linux/rbtree.h>
 | 
						|
#include <linux/types.h>
 | 
						|
 | 
						|
struct perf_env;
 | 
						|
struct phys_entry;
 | 
						|
 | 
						|
struct mem2node {
 | 
						|
	struct rb_root		 root;
 | 
						|
	struct phys_entry	*entries;
 | 
						|
	int			 cnt;
 | 
						|
};
 | 
						|
 | 
						|
int  mem2node__init(struct mem2node *map, struct perf_env *env);
 | 
						|
void mem2node__exit(struct mem2node *map);
 | 
						|
int  mem2node__node(struct mem2node *map, u64 addr);
 | 
						|
 | 
						|
#endif /* __MEM2NODE_H */
 |