blob: 5116b78c632586884a19ab8b8329b798bc5cce14 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * drivers/base/node.c - basic Node class support
3 */
4
5#include <linux/sysdev.h>
6#include <linux/module.h>
7#include <linux/init.h>
8#include <linux/mm.h>
9#include <linux/node.h>
10#include <linux/hugetlb.h>
11#include <linux/cpumask.h>
12#include <linux/topology.h>
13#include <linux/nodemask.h>
KAMEZAWA Hiroyuki76b67ed2006-06-27 02:53:41 -070014#include <linux/cpu.h>
Lee Schermerhornbde631a2007-10-16 01:26:27 -070015#include <linux/device.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070016
17static struct sysdev_class node_class = {
Kay Sieversaf5ca3f2007-12-20 02:09:39 +010018 .name = "node",
Linus Torvalds1da177e2005-04-16 15:20:36 -070019};
20
21
Mike Travis39106dc2008-04-08 11:43:03 -070022static ssize_t node_read_cpumap(struct sys_device *dev, int type, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -070023{
24 struct node *node_dev = to_node(dev);
Mike Travisc5f59f02008-04-04 18:11:10 -070025 node_to_cpumask_ptr(mask, node_dev->sysdev.id);
Linus Torvalds1da177e2005-04-16 15:20:36 -070026 int len;
27
Mike Travis39106dc2008-04-08 11:43:03 -070028 /* 2008/04/07: buf currently PAGE_SIZE, need 9 chars per 32 bits. */
29 BUILD_BUG_ON((NR_CPUS/32 * 9) > (PAGE_SIZE-1));
Linus Torvalds1da177e2005-04-16 15:20:36 -070030
Mike Travis39106dc2008-04-08 11:43:03 -070031 len = type?
32 cpulist_scnprintf(buf, PAGE_SIZE-2, *mask):
33 cpumask_scnprintf(buf, PAGE_SIZE-2, *mask);
Mike Travisc5f59f02008-04-04 18:11:10 -070034 buf[len++] = '\n';
35 buf[len] = '\0';
Linus Torvalds1da177e2005-04-16 15:20:36 -070036 return len;
37}
38
Andi Kleen4a0b2b42008-07-01 18:48:41 +020039static inline ssize_t node_read_cpumask(struct sys_device *dev,
40 struct sysdev_attribute *attr, char *buf)
Mike Travis39106dc2008-04-08 11:43:03 -070041{
42 return node_read_cpumap(dev, 0, buf);
43}
Andi Kleen4a0b2b42008-07-01 18:48:41 +020044static inline ssize_t node_read_cpulist(struct sys_device *dev,
45 struct sysdev_attribute *attr, char *buf)
Mike Travis39106dc2008-04-08 11:43:03 -070046{
47 return node_read_cpumap(dev, 1, buf);
48}
49
50static SYSDEV_ATTR(cpumap, S_IRUGO, node_read_cpumask, NULL);
51static SYSDEV_ATTR(cpulist, S_IRUGO, node_read_cpulist, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -070052
53#define K(x) ((x) << (PAGE_SHIFT - 10))
Andi Kleen4a0b2b42008-07-01 18:48:41 +020054static ssize_t node_read_meminfo(struct sys_device * dev,
55 struct sysdev_attribute *attr, char * buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -070056{
57 int n;
58 int nid = dev->id;
59 struct sysinfo i;
Linus Torvalds1da177e2005-04-16 15:20:36 -070060
61 si_meminfo_node(&i, nid);
Martin Hicksc07e02d2005-09-03 15:55:11 -070062
Linus Torvalds1da177e2005-04-16 15:20:36 -070063 n = sprintf(buf, "\n"
64 "Node %d MemTotal: %8lu kB\n"
65 "Node %d MemFree: %8lu kB\n"
66 "Node %d MemUsed: %8lu kB\n"
67 "Node %d Active: %8lu kB\n"
68 "Node %d Inactive: %8lu kB\n"
Christoph Lameter182e8e22006-09-25 23:31:10 -070069#ifdef CONFIG_HIGHMEM
Linus Torvalds1da177e2005-04-16 15:20:36 -070070 "Node %d HighTotal: %8lu kB\n"
71 "Node %d HighFree: %8lu kB\n"
72 "Node %d LowTotal: %8lu kB\n"
Martin Hicksc07e02d2005-09-03 15:55:11 -070073 "Node %d LowFree: %8lu kB\n"
Christoph Lameter182e8e22006-09-25 23:31:10 -070074#endif
Martin Hicksc07e02d2005-09-03 15:55:11 -070075 "Node %d Dirty: %8lu kB\n"
76 "Node %d Writeback: %8lu kB\n"
Christoph Lameter347ce432006-06-30 01:55:35 -070077 "Node %d FilePages: %8lu kB\n"
Martin Hicksc07e02d2005-09-03 15:55:11 -070078 "Node %d Mapped: %8lu kB\n"
Christoph Lameterf3dbd342006-06-30 01:55:36 -070079 "Node %d AnonPages: %8lu kB\n"
Christoph Lameterdf849a12006-06-30 01:55:38 -070080 "Node %d PageTables: %8lu kB\n"
Andrew Mortonf5ef68d2006-08-27 01:23:58 -070081 "Node %d NFS_Unstable: %8lu kB\n"
Christoph Lameterd2c5e302006-06-30 01:55:41 -070082 "Node %d Bounce: %8lu kB\n"
Miklos Szeredifc3ba692008-04-30 00:54:38 -070083 "Node %d WritebackTmp: %8lu kB\n"
Christoph Lameter972d1a72006-09-25 23:31:51 -070084 "Node %d Slab: %8lu kB\n"
85 "Node %d SReclaimable: %8lu kB\n"
86 "Node %d SUnreclaim: %8lu kB\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -070087 nid, K(i.totalram),
88 nid, K(i.freeram),
89 nid, K(i.totalram - i.freeram),
John Blackwood2d5c1be2008-07-04 10:00:05 -070090 nid, K(node_page_state(nid, NR_ACTIVE)),
91 nid, K(node_page_state(nid, NR_INACTIVE)),
Christoph Lameter182e8e22006-09-25 23:31:10 -070092#ifdef CONFIG_HIGHMEM
Linus Torvalds1da177e2005-04-16 15:20:36 -070093 nid, K(i.totalhigh),
94 nid, K(i.freehigh),
95 nid, K(i.totalram - i.totalhigh),
Martin Hicksc07e02d2005-09-03 15:55:11 -070096 nid, K(i.freeram - i.freehigh),
Christoph Lameter182e8e22006-09-25 23:31:10 -070097#endif
Christoph Lameterb1e7a8f2006-06-30 01:55:39 -070098 nid, K(node_page_state(nid, NR_FILE_DIRTY)),
Christoph Lameterce866b32006-06-30 01:55:40 -070099 nid, K(node_page_state(nid, NR_WRITEBACK)),
Christoph Lameter347ce432006-06-30 01:55:35 -0700100 nid, K(node_page_state(nid, NR_FILE_PAGES)),
Christoph Lameter65ba55f2006-06-30 01:55:34 -0700101 nid, K(node_page_state(nid, NR_FILE_MAPPED)),
Christoph Lameterf3dbd342006-06-30 01:55:36 -0700102 nid, K(node_page_state(nid, NR_ANON_PAGES)),
Christoph Lameterdf849a12006-06-30 01:55:38 -0700103 nid, K(node_page_state(nid, NR_PAGETABLE)),
Christoph Lameterfd39fc82006-06-30 01:55:40 -0700104 nid, K(node_page_state(nid, NR_UNSTABLE_NFS)),
Christoph Lameterd2c5e302006-06-30 01:55:41 -0700105 nid, K(node_page_state(nid, NR_BOUNCE)),
Miklos Szeredifc3ba692008-04-30 00:54:38 -0700106 nid, K(node_page_state(nid, NR_WRITEBACK_TEMP)),
Christoph Lameter972d1a72006-09-25 23:31:51 -0700107 nid, K(node_page_state(nid, NR_SLAB_RECLAIMABLE) +
108 node_page_state(nid, NR_SLAB_UNRECLAIMABLE)),
109 nid, K(node_page_state(nid, NR_SLAB_RECLAIMABLE)),
110 nid, K(node_page_state(nid, NR_SLAB_UNRECLAIMABLE)));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111 n += hugetlb_report_node_meminfo(nid, buf + n);
112 return n;
113}
114
115#undef K
116static SYSDEV_ATTR(meminfo, S_IRUGO, node_read_meminfo, NULL);
117
Andi Kleen4a0b2b42008-07-01 18:48:41 +0200118static ssize_t node_read_numastat(struct sys_device * dev,
119 struct sysdev_attribute *attr, char * buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121 return sprintf(buf,
122 "numa_hit %lu\n"
123 "numa_miss %lu\n"
124 "numa_foreign %lu\n"
125 "interleave_hit %lu\n"
126 "local_node %lu\n"
127 "other_node %lu\n",
Christoph Lameterca889e62006-06-30 01:55:44 -0700128 node_page_state(dev->id, NUMA_HIT),
129 node_page_state(dev->id, NUMA_MISS),
130 node_page_state(dev->id, NUMA_FOREIGN),
131 node_page_state(dev->id, NUMA_INTERLEAVE_HIT),
132 node_page_state(dev->id, NUMA_LOCAL),
133 node_page_state(dev->id, NUMA_OTHER));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134}
135static SYSDEV_ATTR(numastat, S_IRUGO, node_read_numastat, NULL);
136
Andi Kleen4a0b2b42008-07-01 18:48:41 +0200137static ssize_t node_read_distance(struct sys_device * dev,
138 struct sysdev_attribute *attr, char * buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139{
140 int nid = dev->id;
141 int len = 0;
142 int i;
143
144 /* buf currently PAGE_SIZE, need ~4 chars per node */
145 BUILD_BUG_ON(MAX_NUMNODES*4 > PAGE_SIZE/2);
146
147 for_each_online_node(i)
148 len += sprintf(buf + len, "%s%d", i ? " " : "", node_distance(nid, i));
149
150 len += sprintf(buf + len, "\n");
151 return len;
152}
153static SYSDEV_ATTR(distance, S_IRUGO, node_read_distance, NULL);
154
155
156/*
Robert P. J. Day405ae7d2007-02-17 19:13:42 +0100157 * register_node - Setup a sysfs device for a node.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158 * @num - Node number to use when creating the device.
159 *
160 * Initialize and register the node device.
161 */
Keiichiro Tokunaga4b450992005-05-08 21:28:53 +0900162int register_node(struct node *node, int num, struct node *parent)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163{
164 int error;
165
166 node->sysdev.id = num;
167 node->sysdev.cls = &node_class;
168 error = sysdev_register(&node->sysdev);
169
170 if (!error){
171 sysdev_create_file(&node->sysdev, &attr_cpumap);
Mike Travis39106dc2008-04-08 11:43:03 -0700172 sysdev_create_file(&node->sysdev, &attr_cpulist);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173 sysdev_create_file(&node->sysdev, &attr_meminfo);
174 sysdev_create_file(&node->sysdev, &attr_numastat);
175 sysdev_create_file(&node->sysdev, &attr_distance);
176 }
177 return error;
178}
179
Keiichiro Tokunaga4b450992005-05-08 21:28:53 +0900180/**
181 * unregister_node - unregister a node device
182 * @node: node going away
183 *
184 * Unregisters a node device @node. All the devices on the node must be
185 * unregistered before calling this function.
186 */
187void unregister_node(struct node *node)
188{
189 sysdev_remove_file(&node->sysdev, &attr_cpumap);
Mike Travis39106dc2008-04-08 11:43:03 -0700190 sysdev_remove_file(&node->sysdev, &attr_cpulist);
Keiichiro Tokunaga4b450992005-05-08 21:28:53 +0900191 sysdev_remove_file(&node->sysdev, &attr_meminfo);
192 sysdev_remove_file(&node->sysdev, &attr_numastat);
193 sysdev_remove_file(&node->sysdev, &attr_distance);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194
Keiichiro Tokunaga4b450992005-05-08 21:28:53 +0900195 sysdev_unregister(&node->sysdev);
196}
197
Yasunori Goto0fc44152006-06-27 02:53:38 -0700198struct node node_devices[MAX_NUMNODES];
199
KAMEZAWA Hiroyuki76b67ed2006-06-27 02:53:41 -0700200/*
201 * register cpu under node
202 */
203int register_cpu_under_node(unsigned int cpu, unsigned int nid)
204{
205 if (node_online(nid)) {
206 struct sys_device *obj = get_cpu_sysdev(cpu);
207 if (!obj)
208 return 0;
209 return sysfs_create_link(&node_devices[nid].sysdev.kobj,
210 &obj->kobj,
211 kobject_name(&obj->kobj));
212 }
213
214 return 0;
215}
216
217int unregister_cpu_under_node(unsigned int cpu, unsigned int nid)
218{
219 if (node_online(nid)) {
220 struct sys_device *obj = get_cpu_sysdev(cpu);
221 if (obj)
222 sysfs_remove_link(&node_devices[nid].sysdev.kobj,
223 kobject_name(&obj->kobj));
224 }
225 return 0;
226}
227
Yasunori Goto0fc44152006-06-27 02:53:38 -0700228int register_one_node(int nid)
229{
230 int error = 0;
KAMEZAWA Hiroyuki76b67ed2006-06-27 02:53:41 -0700231 int cpu;
Yasunori Goto0fc44152006-06-27 02:53:38 -0700232
233 if (node_online(nid)) {
234 int p_node = parent_node(nid);
235 struct node *parent = NULL;
236
237 if (p_node != nid)
238 parent = &node_devices[p_node];
239
240 error = register_node(&node_devices[nid], nid, parent);
KAMEZAWA Hiroyuki76b67ed2006-06-27 02:53:41 -0700241
242 /* link cpu under this node */
243 for_each_present_cpu(cpu) {
244 if (cpu_to_node(cpu) == nid)
245 register_cpu_under_node(cpu, nid);
246 }
Yasunori Goto0fc44152006-06-27 02:53:38 -0700247 }
248
249 return error;
250
251}
252
253void unregister_one_node(int nid)
254{
255 unregister_node(&node_devices[nid]);
256}
257
Lee Schermerhornbde631a2007-10-16 01:26:27 -0700258/*
259 * node states attributes
260 */
261
262static ssize_t print_nodes_state(enum node_states state, char *buf)
263{
264 int n;
265
266 n = nodelist_scnprintf(buf, PAGE_SIZE, node_states[state]);
267 if (n > 0 && PAGE_SIZE > n + 1) {
268 *(buf + n++) = '\n';
269 *(buf + n++) = '\0';
270 }
271 return n;
272}
273
274static ssize_t print_nodes_possible(struct sysdev_class *class, char *buf)
275{
276 return print_nodes_state(N_POSSIBLE, buf);
277}
278
279static ssize_t print_nodes_online(struct sysdev_class *class, char *buf)
280{
281 return print_nodes_state(N_ONLINE, buf);
282}
283
284static ssize_t print_nodes_has_normal_memory(struct sysdev_class *class,
285 char *buf)
286{
287 return print_nodes_state(N_NORMAL_MEMORY, buf);
288}
289
290static ssize_t print_nodes_has_cpu(struct sysdev_class *class, char *buf)
291{
292 return print_nodes_state(N_CPU, buf);
293}
294
295static SYSDEV_CLASS_ATTR(possible, 0444, print_nodes_possible, NULL);
296static SYSDEV_CLASS_ATTR(online, 0444, print_nodes_online, NULL);
297static SYSDEV_CLASS_ATTR(has_normal_memory, 0444, print_nodes_has_normal_memory,
298 NULL);
299static SYSDEV_CLASS_ATTR(has_cpu, 0444, print_nodes_has_cpu, NULL);
300
301#ifdef CONFIG_HIGHMEM
302static ssize_t print_nodes_has_high_memory(struct sysdev_class *class,
303 char *buf)
304{
305 return print_nodes_state(N_HIGH_MEMORY, buf);
306}
307
308static SYSDEV_CLASS_ATTR(has_high_memory, 0444, print_nodes_has_high_memory,
309 NULL);
310#endif
311
312struct sysdev_class_attribute *node_state_attr[] = {
313 &attr_possible,
314 &attr_online,
315 &attr_has_normal_memory,
316#ifdef CONFIG_HIGHMEM
317 &attr_has_high_memory,
318#endif
319 &attr_has_cpu,
320};
321
322static int node_states_init(void)
323{
324 int i;
325 int err = 0;
326
327 for (i = 0; i < NR_NODE_STATES; i++) {
328 int ret;
329 ret = sysdev_class_create_file(&node_class, node_state_attr[i]);
330 if (!err)
331 err = ret;
332 }
333 return err;
334}
335
Keiichiro Tokunaga4b450992005-05-08 21:28:53 +0900336static int __init register_node_type(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337{
Lee Schermerhornbde631a2007-10-16 01:26:27 -0700338 int ret;
339
340 ret = sysdev_class_register(&node_class);
341 if (!ret)
342 ret = node_states_init();
343
344 /*
345 * Note: we're not going to unregister the node class if we fail
346 * to register the node state class attribute files.
347 */
348 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349}
350postcore_initcall(register_node_type);