drm: i810/i830: fix locked ioctl variant
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / include / linux / node.h
blob06292dac3eab15ea6f4b82ddc868e7f955889e7e
1 /*
2 * include/linux/node.h - generic node definition
4 * This is mainly for topological representation. We define the
5 * basic 'struct node' here, which can be embedded in per-arch
6 * definitions of processors.
8 * Basic handling of the devices is done in drivers/base/node.c
9 * and system devices are handled in drivers/base/sys.c.
11 * Nodes are exported via driverfs in the class/node/devices/
12 * directory.
14 * Per-node interfaces can be implemented using a struct device_interface.
15 * See the following for how to do this:
16 * - drivers/base/intf.c
17 * - Documentation/driver-model/interface.txt
19 #ifndef _LINUX_NODE_H_
20 #define _LINUX_NODE_H_
22 #include <linux/sysdev.h>
23 #include <linux/cpumask.h>
24 #include <linux/workqueue.h>
26 struct node {
27 struct sys_device sysdev;
29 #if defined(CONFIG_MEMORY_HOTPLUG_SPARSE) && defined(CONFIG_HUGETLBFS)
30 struct work_struct node_work;
31 #endif
34 struct memory_block;
35 extern struct node node_devices[];
36 typedef void (*node_registration_func_t)(struct node *);
38 extern int register_node(struct node *, int, struct node *);
39 extern void unregister_node(struct node *node);
40 #ifdef CONFIG_NUMA
41 extern int register_one_node(int nid);
42 extern void unregister_one_node(int nid);
43 extern int register_cpu_under_node(unsigned int cpu, unsigned int nid);
44 extern int unregister_cpu_under_node(unsigned int cpu, unsigned int nid);
45 extern int register_mem_sect_under_node(struct memory_block *mem_blk,
46 int nid);
47 extern int unregister_mem_sect_under_nodes(struct memory_block *mem_blk);
49 #ifdef CONFIG_HUGETLBFS
50 extern void register_hugetlbfs_with_node(node_registration_func_t doregister,
51 node_registration_func_t unregister);
52 #endif
53 #else
54 static inline int register_one_node(int nid)
56 return 0;
58 static inline int unregister_one_node(int nid)
60 return 0;
62 static inline int register_cpu_under_node(unsigned int cpu, unsigned int nid)
64 return 0;
66 static inline int unregister_cpu_under_node(unsigned int cpu, unsigned int nid)
68 return 0;
70 static inline int register_mem_sect_under_node(struct memory_block *mem_blk,
71 int nid)
73 return 0;
75 static inline int unregister_mem_sect_under_nodes(struct memory_block *mem_blk)
77 return 0;
80 static inline void register_hugetlbfs_with_node(node_registration_func_t reg,
81 node_registration_func_t unreg)
84 #endif
86 #define to_node(sys_device) container_of(sys_device, struct node, sysdev)
88 #endif /* _LINUX_NODE_H_ */