diff options
| author | Ingo Molnar <mingo@elte.hu> | 2009-01-10 21:03:30 -0500 |
|---|---|---|
| committer | Ingo Molnar <mingo@elte.hu> | 2009-01-10 21:03:30 -0500 |
| commit | f45ac22ae2b8fc5b4c32d9b8d17ea419a8701d89 (patch) | |
| tree | 8e05bccd7b85fc3dd2fbd33ec3286de27e152819 /include/linux/node.h | |
| parent | 79f3b3cb7a2586b319a43a7f29924c6c555e4357 (diff) | |
| parent | c59765042f53a79a7a65585042ff463b69cb248c (diff) | |
Merge commit 'v2.6.29-rc1' into x86/urgent
Diffstat (limited to 'include/linux/node.h')
| -rw-r--r-- | include/linux/node.h | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/include/linux/node.h b/include/linux/node.h index bc001bc225c3..681a697b9a86 100644 --- a/include/linux/node.h +++ b/include/linux/node.h | |||
| @@ -26,6 +26,7 @@ struct node { | |||
| 26 | struct sys_device sysdev; | 26 | struct sys_device sysdev; |
| 27 | }; | 27 | }; |
| 28 | 28 | ||
| 29 | struct memory_block; | ||
| 29 | extern struct node node_devices[]; | 30 | extern struct node node_devices[]; |
| 30 | 31 | ||
| 31 | extern int register_node(struct node *, int, struct node *); | 32 | extern int register_node(struct node *, int, struct node *); |
| @@ -35,6 +36,9 @@ extern int register_one_node(int nid); | |||
| 35 | extern void unregister_one_node(int nid); | 36 | extern void unregister_one_node(int nid); |
| 36 | extern int register_cpu_under_node(unsigned int cpu, unsigned int nid); | 37 | extern int register_cpu_under_node(unsigned int cpu, unsigned int nid); |
| 37 | extern int unregister_cpu_under_node(unsigned int cpu, unsigned int nid); | 38 | extern int unregister_cpu_under_node(unsigned int cpu, unsigned int nid); |
| 39 | extern int register_mem_sect_under_node(struct memory_block *mem_blk, | ||
| 40 | int nid); | ||
| 41 | extern int unregister_mem_sect_under_nodes(struct memory_block *mem_blk); | ||
| 38 | #else | 42 | #else |
| 39 | static inline int register_one_node(int nid) | 43 | static inline int register_one_node(int nid) |
| 40 | { | 44 | { |
| @@ -52,6 +56,15 @@ static inline int unregister_cpu_under_node(unsigned int cpu, unsigned int nid) | |||
| 52 | { | 56 | { |
| 53 | return 0; | 57 | return 0; |
| 54 | } | 58 | } |
| 59 | static inline int register_mem_sect_under_node(struct memory_block *mem_blk, | ||
| 60 | int nid) | ||
| 61 | { | ||
| 62 | return 0; | ||
| 63 | } | ||
| 64 | static inline int unregister_mem_sect_under_nodes(struct memory_block *mem_blk) | ||
| 65 | { | ||
| 66 | return 0; | ||
| 67 | } | ||
| 55 | #endif | 68 | #endif |
| 56 | 69 | ||
| 57 | #define to_node(sys_device) container_of(sys_device, struct node, sysdev) | 70 | #define to_node(sys_device) container_of(sys_device, struct node, sysdev) |
