diff options
Diffstat (limited to 'include/linux/node.h')
| -rw-r--r-- | include/linux/node.h | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/include/linux/node.h b/include/linux/node.h index 254dc3de650b..bc001bc225c3 100644 --- a/include/linux/node.h +++ b/include/linux/node.h | |||
| @@ -26,8 +26,33 @@ struct node { | |||
| 26 | struct sys_device sysdev; | 26 | struct sys_device sysdev; |
| 27 | }; | 27 | }; |
| 28 | 28 | ||
| 29 | extern struct node node_devices[]; | ||
| 30 | |||
| 29 | extern int register_node(struct node *, int, struct node *); | 31 | extern int register_node(struct node *, int, struct node *); |
| 30 | extern void unregister_node(struct node *node); | 32 | extern void unregister_node(struct node *node); |
| 33 | #ifdef CONFIG_NUMA | ||
| 34 | extern int register_one_node(int nid); | ||
| 35 | extern void unregister_one_node(int nid); | ||
| 36 | 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 | #else | ||
| 39 | static inline int register_one_node(int nid) | ||
| 40 | { | ||
| 41 | return 0; | ||
| 42 | } | ||
| 43 | static inline int unregister_one_node(int nid) | ||
| 44 | { | ||
| 45 | return 0; | ||
| 46 | } | ||
| 47 | static inline int register_cpu_under_node(unsigned int cpu, unsigned int nid) | ||
| 48 | { | ||
| 49 | return 0; | ||
| 50 | } | ||
| 51 | static inline int unregister_cpu_under_node(unsigned int cpu, unsigned int nid) | ||
| 52 | { | ||
| 53 | return 0; | ||
| 54 | } | ||
| 55 | #endif | ||
| 31 | 56 | ||
| 32 | #define to_node(sys_device) container_of(sys_device, struct node, sysdev) | 57 | #define to_node(sys_device) container_of(sys_device, struct node, sysdev) |
| 33 | 58 | ||
