blob: fb45d88a24464f8e3b2340e0b675a75785b20fc4 [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"
Rik van Riel4f98a2f2008-10-18 20:26:32 -070064 "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"
69 "Node %d Active(anon): %8lu kB\n"
70 "Node %d Inactive(anon): %8lu kB\n"
71 "Node %d Active(file): %8lu kB\n"
72 "Node %d Inactive(file): %8lu kB\n"
Lee Schermerhorn7b854122008-10-18 20:26:40 -070073#ifdef CONFIG_UNEVICTABLE_LRU
Nick Piggin5344b7e2008-10-18 20:26:51 -070074 "Node %d Unevictable: %8lu kB\n"
75 "Node %d Mlocked: %8lu kB\n"
Lee Schermerhorn7b854122008-10-18 20:26:40 -070076#endif
Christoph Lameter182e8e22006-09-25 23:31:10 -070077#ifdef CONFIG_HIGHMEM
Rik van Riel4f98a2f2008-10-18 20:26:32 -070078 "Node %d HighTotal: %8lu kB\n"
79 "Node %d HighFree: %8lu kB\n"
80 "Node %d LowTotal: %8lu kB\n"
81 "Node %d LowFree: %8lu kB\n"
Christoph Lameter182e8e22006-09-25 23:31:10 -070082#endif
Rik van Riel4f98a2f2008-10-18 20:26:32 -070083 "Node %d Dirty: %8lu kB\n"
84 "Node %d Writeback: %8lu kB\n"
85 "Node %d FilePages: %8lu kB\n"
86 "Node %d Mapped: %8lu kB\n"
87 "Node %d AnonPages: %8lu kB\n"
88 "Node %d PageTables: %8lu kB\n"
89 "Node %d NFS_Unstable: %8lu kB\n"
90 "Node %d Bounce: %8lu kB\n"
91 "Node %d WritebackTmp: %8lu kB\n"
92 "Node %d Slab: %8lu kB\n"
93 "Node %d SReclaimable: %8lu kB\n"
94 "Node %d SUnreclaim: %8lu kB\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -070095 nid, K(i.totalram),
96 nid, K(i.freeram),
97 nid, K(i.totalram - i.freeram),
Rik van Riel4f98a2f2008-10-18 20:26:32 -070098 nid, K(node_page_state(nid, NR_ACTIVE_ANON) +
99 node_page_state(nid, NR_ACTIVE_FILE)),
100 nid, K(node_page_state(nid, NR_INACTIVE_ANON) +
101 node_page_state(nid, NR_INACTIVE_FILE)),
102 nid, K(node_page_state(nid, NR_ACTIVE_ANON)),
103 nid, K(node_page_state(nid, NR_INACTIVE_ANON)),
104 nid, K(node_page_state(nid, NR_ACTIVE_FILE)),
105 nid, K(node_page_state(nid, NR_INACTIVE_FILE)),
Lee Schermerhorn7b854122008-10-18 20:26:40 -0700106#ifdef CONFIG_UNEVICTABLE_LRU
107 nid, K(node_page_state(nid, NR_UNEVICTABLE)),
Nick Piggin5344b7e2008-10-18 20:26:51 -0700108 nid, K(node_page_state(nid, NR_MLOCK)),
Lee Schermerhorn7b854122008-10-18 20:26:40 -0700109#endif
Christoph Lameter182e8e22006-09-25 23:31:10 -0700110#ifdef CONFIG_HIGHMEM
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111 nid, K(i.totalhigh),
112 nid, K(i.freehigh),
113 nid, K(i.totalram - i.totalhigh),
Martin Hicksc07e02d2005-09-03 15:55:11 -0700114 nid, K(i.freeram - i.freehigh),
Christoph Lameter182e8e22006-09-25 23:31:10 -0700115#endif
Christoph Lameterb1e7a8f2006-06-30 01:55:39 -0700116 nid, K(node_page_state(nid, NR_FILE_DIRTY)),
Christoph Lameterce866b32006-06-30 01:55:40 -0700117 nid, K(node_page_state(nid, NR_WRITEBACK)),
Christoph Lameter347ce432006-06-30 01:55:35 -0700118 nid, K(node_page_state(nid, NR_FILE_PAGES)),
Christoph Lameter65ba55f2006-06-30 01:55:34 -0700119 nid, K(node_page_state(nid, NR_FILE_MAPPED)),
Christoph Lameterf3dbd342006-06-30 01:55:36 -0700120 nid, K(node_page_state(nid, NR_ANON_PAGES)),
Christoph Lameterdf849a12006-06-30 01:55:38 -0700121 nid, K(node_page_state(nid, NR_PAGETABLE)),
Christoph Lameterfd39fc82006-06-30 01:55:40 -0700122 nid, K(node_page_state(nid, NR_UNSTABLE_NFS)),
Christoph Lameterd2c5e302006-06-30 01:55:41 -0700123 nid, K(node_page_state(nid, NR_BOUNCE)),
Miklos Szeredifc3ba692008-04-30 00:54:38 -0700124 nid, K(node_page_state(nid, NR_WRITEBACK_TEMP)),
Christoph Lameter972d1a72006-09-25 23:31:51 -0700125 nid, K(node_page_state(nid, NR_SLAB_RECLAIMABLE) +
126 node_page_state(nid, NR_SLAB_UNRECLAIMABLE)),
127 nid, K(node_page_state(nid, NR_SLAB_RECLAIMABLE)),
128 nid, K(node_page_state(nid, NR_SLAB_UNRECLAIMABLE)));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129 n += hugetlb_report_node_meminfo(nid, buf + n);
130 return n;
131}
132
133#undef K
134static SYSDEV_ATTR(meminfo, S_IRUGO, node_read_meminfo, NULL);
135
Andi Kleen4a0b2b42008-07-01 18:48:41 +0200136static ssize_t node_read_numastat(struct sys_device * dev,
137 struct sysdev_attribute *attr, char * buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139 return sprintf(buf,
140 "numa_hit %lu\n"
141 "numa_miss %lu\n"
142 "numa_foreign %lu\n"
143 "interleave_hit %lu\n"
144 "local_node %lu\n"
145 "other_node %lu\n",
Christoph Lameterca889e62006-06-30 01:55:44 -0700146 node_page_state(dev->id, NUMA_HIT),
147 node_page_state(dev->id, NUMA_MISS),
148 node_page_state(dev->id, NUMA_FOREIGN),
149 node_page_state(dev->id, NUMA_INTERLEAVE_HIT),
150 node_page_state(dev->id, NUMA_LOCAL),
151 node_page_state(dev->id, NUMA_OTHER));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152}
153static SYSDEV_ATTR(numastat, S_IRUGO, node_read_numastat, NULL);
154
Andi Kleen4a0b2b42008-07-01 18:48:41 +0200155static ssize_t node_read_distance(struct sys_device * dev,
156 struct sysdev_attribute *attr, char * buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157{
158 int nid = dev->id;
159 int len = 0;
160 int i;
161
162 /* buf currently PAGE_SIZE, need ~4 chars per node */
163 BUILD_BUG_ON(MAX_NUMNODES*4 > PAGE_SIZE/2);
164
165 for_each_online_node(i)
166 len += sprintf(buf + len, "%s%d", i ? " " : "", node_distance(nid, i));
167
168 len += sprintf(buf + len, "\n");
169 return len;
170}
171static SYSDEV_ATTR(distance, S_IRUGO, node_read_distance, NULL);
172
173
174/*
Robert P. J. Day405ae7d2007-02-17 19:13:42 +0100175 * register_node - Setup a sysfs device for a node.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176 * @num - Node number to use when creating the device.
177 *
178 * Initialize and register the node device.
179 */
Keiichiro Tokunaga4b450992005-05-08 21:28:53 +0900180int register_node(struct node *node, int num, struct node *parent)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181{
182 int error;
183
184 node->sysdev.id = num;
185 node->sysdev.cls = &node_class;
186 error = sysdev_register(&node->sysdev);
187
188 if (!error){
189 sysdev_create_file(&node->sysdev, &attr_cpumap);
Mike Travis39106dc2008-04-08 11:43:03 -0700190 sysdev_create_file(&node->sysdev, &attr_cpulist);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191 sysdev_create_file(&node->sysdev, &attr_meminfo);
192 sysdev_create_file(&node->sysdev, &attr_numastat);
193 sysdev_create_file(&node->sysdev, &attr_distance);
194 }
195 return error;
196}
197
Keiichiro Tokunaga4b450992005-05-08 21:28:53 +0900198/**
199 * unregister_node - unregister a node device
200 * @node: node going away
201 *
202 * Unregisters a node device @node. All the devices on the node must be
203 * unregistered before calling this function.
204 */
205void unregister_node(struct node *node)
206{
207 sysdev_remove_file(&node->sysdev, &attr_cpumap);
Mike Travis39106dc2008-04-08 11:43:03 -0700208 sysdev_remove_file(&node->sysdev, &attr_cpulist);
Keiichiro Tokunaga4b450992005-05-08 21:28:53 +0900209 sysdev_remove_file(&node->sysdev, &attr_meminfo);
210 sysdev_remove_file(&node->sysdev, &attr_numastat);
211 sysdev_remove_file(&node->sysdev, &attr_distance);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212
Keiichiro Tokunaga4b450992005-05-08 21:28:53 +0900213 sysdev_unregister(&node->sysdev);
214}
215
Yasunori Goto0fc44152006-06-27 02:53:38 -0700216struct node node_devices[MAX_NUMNODES];
217
KAMEZAWA Hiroyuki76b67ed2006-06-27 02:53:41 -0700218/*
219 * register cpu under node
220 */
221int register_cpu_under_node(unsigned int cpu, unsigned int nid)
222{
223 if (node_online(nid)) {
224 struct sys_device *obj = get_cpu_sysdev(cpu);
225 if (!obj)
226 return 0;
227 return sysfs_create_link(&node_devices[nid].sysdev.kobj,
228 &obj->kobj,
229 kobject_name(&obj->kobj));
230 }
231
232 return 0;
233}
234
235int unregister_cpu_under_node(unsigned int cpu, unsigned int nid)
236{
237 if (node_online(nid)) {
238 struct sys_device *obj = get_cpu_sysdev(cpu);
239 if (obj)
240 sysfs_remove_link(&node_devices[nid].sysdev.kobj,
241 kobject_name(&obj->kobj));
242 }
243 return 0;
244}
245
Yasunori Goto0fc44152006-06-27 02:53:38 -0700246int register_one_node(int nid)
247{
248 int error = 0;
KAMEZAWA Hiroyuki76b67ed2006-06-27 02:53:41 -0700249 int cpu;
Yasunori Goto0fc44152006-06-27 02:53:38 -0700250
251 if (node_online(nid)) {
252 int p_node = parent_node(nid);
253 struct node *parent = NULL;
254
255 if (p_node != nid)
256 parent = &node_devices[p_node];
257
258 error = register_node(&node_devices[nid], nid, parent);
KAMEZAWA Hiroyuki76b67ed2006-06-27 02:53:41 -0700259
260 /* link cpu under this node */
261 for_each_present_cpu(cpu) {
262 if (cpu_to_node(cpu) == nid)
263 register_cpu_under_node(cpu, nid);
264 }
Yasunori Goto0fc44152006-06-27 02:53:38 -0700265 }
266
267 return error;
268
269}
270
271void unregister_one_node(int nid)
272{
273 unregister_node(&node_devices[nid]);
274}
275
Lee Schermerhornbde631a2007-10-16 01:26:27 -0700276/*
277 * node states attributes
278 */
279
280static ssize_t print_nodes_state(enum node_states state, char *buf)
281{
282 int n;
283
284 n = nodelist_scnprintf(buf, PAGE_SIZE, node_states[state]);
285 if (n > 0 && PAGE_SIZE > n + 1) {
286 *(buf + n++) = '\n';
287 *(buf + n++) = '\0';
288 }
289 return n;
290}
291
292static ssize_t print_nodes_possible(struct sysdev_class *class, char *buf)
293{
294 return print_nodes_state(N_POSSIBLE, buf);
295}
296
297static ssize_t print_nodes_online(struct sysdev_class *class, char *buf)
298{
299 return print_nodes_state(N_ONLINE, buf);
300}
301
302static ssize_t print_nodes_has_normal_memory(struct sysdev_class *class,
303 char *buf)
304{
305 return print_nodes_state(N_NORMAL_MEMORY, buf);
306}
307
308static ssize_t print_nodes_has_cpu(struct sysdev_class *class, char *buf)
309{
310 return print_nodes_state(N_CPU, buf);
311}
312
313static SYSDEV_CLASS_ATTR(possible, 0444, print_nodes_possible, NULL);
314static SYSDEV_CLASS_ATTR(online, 0444, print_nodes_online, NULL);
315static SYSDEV_CLASS_ATTR(has_normal_memory, 0444, print_nodes_has_normal_memory,
316 NULL);
317static SYSDEV_CLASS_ATTR(has_cpu, 0444, print_nodes_has_cpu, NULL);
318
319#ifdef CONFIG_HIGHMEM
320static ssize_t print_nodes_has_high_memory(struct sysdev_class *class,
321 char *buf)
322{
323 return print_nodes_state(N_HIGH_MEMORY, buf);
324}
325
326static SYSDEV_CLASS_ATTR(has_high_memory, 0444, print_nodes_has_high_memory,
327 NULL);
328#endif
329
330struct sysdev_class_attribute *node_state_attr[] = {
331 &attr_possible,
332 &attr_online,
333 &attr_has_normal_memory,
334#ifdef CONFIG_HIGHMEM
335 &attr_has_high_memory,
336#endif
337 &attr_has_cpu,
338};
339
340static int node_states_init(void)
341{
342 int i;
343 int err = 0;
344
345 for (i = 0; i < NR_NODE_STATES; i++) {
346 int ret;
347 ret = sysdev_class_create_file(&node_class, node_state_attr[i]);
348 if (!err)
349 err = ret;
350 }
351 return err;
352}
353
Keiichiro Tokunaga4b450992005-05-08 21:28:53 +0900354static int __init register_node_type(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355{
Lee Schermerhornbde631a2007-10-16 01:26:27 -0700356 int ret;
357
358 ret = sysdev_class_register(&node_class);
359 if (!ret)
360 ret = node_states_init();
361
362 /*
363 * Note: we're not going to unregister the node class if we fail
364 * to register the node state class attribute files.
365 */
366 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367}
368postcore_initcall(register_node_type);