Staging
v0.8.1
https://github.com/torvalds/linux
Raw File
Tip revision: 7566ec393f4161572ba6f11ad5171fd5d59b0fbd authored by Linus Torvalds on 16 December 2018, 23:46:55 UTC
Linux 4.20-rc7
Tip revision: 7566ec3
mem2node.h
#ifndef __MEM2NODE_H
#define __MEM2NODE_H

#include <linux/rbtree.h>
#include "env.h"

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 */
back to top