Staging
v0.8.1
https://github.com/torvalds/linux
Raw File
Tip revision: b7b275e60bcd5f89771e865a8239325f86d9927d authored by Linus Torvalds on 27 November 2022, 21:31:48 UTC
Linux 6.1-rc7
Tip revision: b7b275e
mem2node.h
#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 */
back to top