Palacios Public Git Repository

To checkout Palacios execute

  git clone http://v3vee.org/palacios/palacios.web/palacios.git
This will give you the master branch. You probably want the devel branch or one of the release branches. To switch to the devel branch, simply execute
  cd palacios
  git checkout --track -b devel origin/devel
The other branches are similar.


Memory management enhancements: dynamic removal, cleanup at module remove time
[palacios.git] / linux_module / numa.h
1 /* NUMA topology 
2  * (c) Jack Lange, 2013
3  */
4
5
6 #ifndef __NUMA_H__
7 #define __NUMA_H__
8
9 #if 0
10 int create_numa_topology_from_user(void __user * argp);
11
12 void free_numa_topology();
13 #endif
14
15 int palacios_init_numa( void );
16
17 int numa_num_nodes(void );
18 int numa_cpu_to_node(int cpu_id);
19 int numa_addr_to_node(uintptr_t phys_addr);
20 int numa_get_distance(int node1, int node2);
21
22
23
24 #endif
25