node.h 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  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. #include <linux/sysdev.h>
  22. #include <linux/cpumask.h>
  23. struct node {
  24. struct sys_device sysdev;
  25. };
  26. struct memory_block;
  27. extern struct node node_devices[];
  28. extern int register_node(struct node *, int, struct node *);
  29. extern void unregister_node(struct node *node);
  30. #ifdef CONFIG_NUMA
  31. extern int register_one_node(int nid);
  32. extern void unregister_one_node(int nid);
  33. extern int register_cpu_under_node(unsigned int cpu, unsigned int nid);
  34. extern int unregister_cpu_under_node(unsigned int cpu, unsigned int nid);
  35. extern int register_mem_sect_under_node(struct memory_block *mem_blk,
  36. int nid);
  37. extern int unregister_mem_sect_under_nodes(struct memory_block *mem_blk);
  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. static inline int register_mem_sect_under_node(struct memory_block *mem_blk,
  56. int nid)
  57. {
  58. return 0;
  59. }
  60. static inline int unregister_mem_sect_under_nodes(struct memory_block *mem_blk)
  61. {
  62. return 0;
  63. }
  64. #endif
  65. #define to_node(sys_device) container_of(sys_device, struct node, sysdev)
  66. #endif /* _LINUX_NODE_H_ */