]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blame - include/linux/node.h
[PATCH] node hotplug: register cpu: remove node struct
[mirror_ubuntu-bionic-kernel.git] / include / linux / node.h
CommitLineData
1da177e4
LT
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
25struct node {
26 struct sys_device sysdev;
27};
28
0fc44159
YG
29extern struct node node_devices[];
30
1da177e4 31extern int register_node(struct node *, int, struct node *);
4b45099b 32extern void unregister_node(struct node *node);
0fc44159
YG
33extern int register_one_node(int nid);
34extern void unregister_one_node(int nid);
76b67ed9
KH
35#ifdef CONFIG_NUMA
36extern int register_cpu_under_node(unsigned int cpu, unsigned int nid);
37extern int unregister_cpu_under_node(unsigned int cpu, unsigned int nid);
38#else
39static inline int register_cpu_under_node(unsigned int cpu, unsigned int nid)
40{
41 return 0;
42}
43static inline int unregister_cpu_under_node(unsigned int cpu, unsigned int nid)
44{
45 return 0;
46}
47#endif
1da177e4
LT
48
49#define to_node(sys_device) container_of(sys_device, struct node, sysdev)
50
51#endif /* _LINUX_NODE_H_ */