Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | * include/linux/node.h - generic node definition |
| 3 | * |
| 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. |
| 7 | * |
| 8 | * Basic handling of the devices is done in drivers/base/node.c |
| 9 | * and system devices are handled in drivers/base/sys.c. |
| 10 | * |
| 11 | * Nodes are exported via driverfs in the class/node/devices/ |
| 12 | * directory. |
| 13 | * |
| 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 |
| 18 | */ |
| 19 | #ifndef _LINUX_NODE_H_ |
| 20 | #define _LINUX_NODE_H_ |
| 21 | |
| 22 | #include <linux/sysdev.h> |
| 23 | #include <linux/cpumask.h> |
| 24 | |
| 25 | struct node { |
| 26 | struct sys_device sysdev; |
| 27 | }; |
| 28 | |
| 29 | extern int register_node(struct node *, int, struct node *); |
Keiichiro Tokunaga | 4b45099 | 2005-05-08 21:28:53 +0900 | [diff] [blame] | 30 | extern void unregister_node(struct node *node); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 31 | |
| 32 | #define to_node(sys_device) container_of(sys_device, struct node, sysdev) |
| 33 | |
| 34 | #endif /* _LINUX_NODE_H_ */ |