blob: 2872e86837b2bb0013b1d2ea9b7d1095d17cd33c [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>
Gary Hadec04fc582009-01-06 14:39:14 -08009#include <linux/memory.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070010#include <linux/node.h>
11#include <linux/hugetlb.h>
Mel Gormaned4a6d72010-05-24 14:32:29 -070012#include <linux/compaction.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070013#include <linux/cpumask.h>
14#include <linux/topology.h>
15#include <linux/nodemask.h>
KAMEZAWA Hiroyuki76b67ed92006-06-27 02:53:41 -070016#include <linux/cpu.h>
Lee Schermerhornbde631a2007-10-16 01:26:27 -070017#include <linux/device.h>
Lee Schermerhornaf936a12008-10-18 20:26:53 -070018#include <linux/swap.h>
Tejun Heo18e5b532010-04-06 19:23:33 +090019#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070020
Andi Kleen3701cde2010-01-05 12:48:04 +010021static struct sysdev_class_attribute *node_state_attrs[];
22
Linus Torvalds1da177e2005-04-16 15:20:36 -070023static struct sysdev_class node_class = {
Kay Sieversaf5ca3f2007-12-20 02:09:39 +010024 .name = "node",
Andi Kleen3701cde2010-01-05 12:48:04 +010025 .attrs = node_state_attrs,
Linus Torvalds1da177e2005-04-16 15:20:36 -070026};
27
28
Mike Travis39106dc2008-04-08 11:43:03 -070029static ssize_t node_read_cpumap(struct sys_device *dev, int type, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -070030{
31 struct node *node_dev = to_node(dev);
Rusty Russella70f7302009-03-13 14:49:46 +103032 const struct cpumask *mask = cpumask_of_node(node_dev->sysdev.id);
Linus Torvalds1da177e2005-04-16 15:20:36 -070033 int len;
34
Mike Travis39106dc2008-04-08 11:43:03 -070035 /* 2008/04/07: buf currently PAGE_SIZE, need 9 chars per 32 bits. */
36 BUILD_BUG_ON((NR_CPUS/32 * 9) > (PAGE_SIZE-1));
Linus Torvalds1da177e2005-04-16 15:20:36 -070037
Mike Travis39106dc2008-04-08 11:43:03 -070038 len = type?
Rusty Russell29c01772008-12-13 21:20:25 +103039 cpulist_scnprintf(buf, PAGE_SIZE-2, mask) :
40 cpumask_scnprintf(buf, PAGE_SIZE-2, mask);
Mike Travisc5f59f02008-04-04 18:11:10 -070041 buf[len++] = '\n';
42 buf[len] = '\0';
Linus Torvalds1da177e2005-04-16 15:20:36 -070043 return len;
44}
45
Andi Kleen4a0b2b42008-07-01 18:48:41 +020046static inline ssize_t node_read_cpumask(struct sys_device *dev,
47 struct sysdev_attribute *attr, char *buf)
Mike Travis39106dc2008-04-08 11:43:03 -070048{
49 return node_read_cpumap(dev, 0, buf);
50}
Andi Kleen4a0b2b42008-07-01 18:48:41 +020051static inline ssize_t node_read_cpulist(struct sys_device *dev,
52 struct sysdev_attribute *attr, char *buf)
Mike Travis39106dc2008-04-08 11:43:03 -070053{
54 return node_read_cpumap(dev, 1, buf);
55}
56
57static SYSDEV_ATTR(cpumap, S_IRUGO, node_read_cpumask, NULL);
58static SYSDEV_ATTR(cpulist, S_IRUGO, node_read_cpulist, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -070059
60#define K(x) ((x) << (PAGE_SHIFT - 10))
Andi Kleen4a0b2b42008-07-01 18:48:41 +020061static ssize_t node_read_meminfo(struct sys_device * dev,
62 struct sysdev_attribute *attr, char * buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -070063{
64 int n;
65 int nid = dev->id;
66 struct sysinfo i;
Linus Torvalds1da177e2005-04-16 15:20:36 -070067
68 si_meminfo_node(&i, nid);
KOSAKI Motohiro7ee92252010-08-09 17:19:50 -070069 n = sprintf(buf,
Rik van Riel4f98a2f2008-10-18 20:26:32 -070070 "Node %d MemTotal: %8lu kB\n"
71 "Node %d MemFree: %8lu kB\n"
72 "Node %d MemUsed: %8lu kB\n"
73 "Node %d Active: %8lu kB\n"
74 "Node %d Inactive: %8lu kB\n"
75 "Node %d Active(anon): %8lu kB\n"
76 "Node %d Inactive(anon): %8lu kB\n"
77 "Node %d Active(file): %8lu kB\n"
78 "Node %d Inactive(file): %8lu kB\n"
Nick Piggin5344b7e2008-10-18 20:26:51 -070079 "Node %d Unevictable: %8lu kB\n"
KOSAKI Motohiro7ee92252010-08-09 17:19:50 -070080 "Node %d Mlocked: %8lu kB\n",
81 nid, K(i.totalram),
82 nid, K(i.freeram),
83 nid, K(i.totalram - i.freeram),
84 nid, K(node_page_state(nid, NR_ACTIVE_ANON) +
85 node_page_state(nid, NR_ACTIVE_FILE)),
86 nid, K(node_page_state(nid, NR_INACTIVE_ANON) +
87 node_page_state(nid, NR_INACTIVE_FILE)),
88 nid, K(node_page_state(nid, NR_ACTIVE_ANON)),
89 nid, K(node_page_state(nid, NR_INACTIVE_ANON)),
90 nid, K(node_page_state(nid, NR_ACTIVE_FILE)),
91 nid, K(node_page_state(nid, NR_INACTIVE_FILE)),
92 nid, K(node_page_state(nid, NR_UNEVICTABLE)),
93 nid, K(node_page_state(nid, NR_MLOCK)));
94
Christoph Lameter182e8e22006-09-25 23:31:10 -070095#ifdef CONFIG_HIGHMEM
KOSAKI Motohiro7ee92252010-08-09 17:19:50 -070096 n += sprintf(buf + n,
Rik van Riel4f98a2f2008-10-18 20:26:32 -070097 "Node %d HighTotal: %8lu kB\n"
98 "Node %d HighFree: %8lu kB\n"
99 "Node %d LowTotal: %8lu kB\n"
KOSAKI Motohiro7ee92252010-08-09 17:19:50 -0700100 "Node %d LowFree: %8lu kB\n",
101 nid, K(i.totalhigh),
102 nid, K(i.freehigh),
103 nid, K(i.totalram - i.totalhigh),
104 nid, K(i.freeram - i.freehigh));
Christoph Lameter182e8e22006-09-25 23:31:10 -0700105#endif
KOSAKI Motohiro7ee92252010-08-09 17:19:50 -0700106 n += sprintf(buf + n,
Rik van Riel4f98a2f2008-10-18 20:26:32 -0700107 "Node %d Dirty: %8lu kB\n"
108 "Node %d Writeback: %8lu kB\n"
109 "Node %d FilePages: %8lu kB\n"
110 "Node %d Mapped: %8lu kB\n"
111 "Node %d AnonPages: %8lu kB\n"
KOSAKI Motohiro4b021082009-09-21 17:01:33 -0700112 "Node %d Shmem: %8lu kB\n"
KOSAKI Motohiroc6a7f572009-09-21 17:01:32 -0700113 "Node %d KernelStack: %8lu kB\n"
Rik van Riel4f98a2f2008-10-18 20:26:32 -0700114 "Node %d PageTables: %8lu kB\n"
115 "Node %d NFS_Unstable: %8lu kB\n"
116 "Node %d Bounce: %8lu kB\n"
117 "Node %d WritebackTmp: %8lu kB\n"
118 "Node %d Slab: %8lu kB\n"
119 "Node %d SReclaimable: %8lu kB\n"
120 "Node %d SUnreclaim: %8lu kB\n",
Christoph Lameterb1e7a8f2006-06-30 01:55:39 -0700121 nid, K(node_page_state(nid, NR_FILE_DIRTY)),
Christoph Lameterce866b32006-06-30 01:55:40 -0700122 nid, K(node_page_state(nid, NR_WRITEBACK)),
Christoph Lameter347ce432006-06-30 01:55:35 -0700123 nid, K(node_page_state(nid, NR_FILE_PAGES)),
Christoph Lameter65ba55f2006-06-30 01:55:34 -0700124 nid, K(node_page_state(nid, NR_FILE_MAPPED)),
Christoph Lameterf3dbd342006-06-30 01:55:36 -0700125 nid, K(node_page_state(nid, NR_ANON_PAGES)),
KOSAKI Motohiro4b021082009-09-21 17:01:33 -0700126 nid, K(node_page_state(nid, NR_SHMEM)),
KOSAKI Motohiroc6a7f572009-09-21 17:01:32 -0700127 nid, node_page_state(nid, NR_KERNEL_STACK) *
128 THREAD_SIZE / 1024,
Christoph Lameterdf849a12006-06-30 01:55:38 -0700129 nid, K(node_page_state(nid, NR_PAGETABLE)),
Christoph Lameterfd39fc82006-06-30 01:55:40 -0700130 nid, K(node_page_state(nid, NR_UNSTABLE_NFS)),
Christoph Lameterd2c5e302006-06-30 01:55:41 -0700131 nid, K(node_page_state(nid, NR_BOUNCE)),
Miklos Szeredifc3ba692008-04-30 00:54:38 -0700132 nid, K(node_page_state(nid, NR_WRITEBACK_TEMP)),
Christoph Lameter972d1a72006-09-25 23:31:51 -0700133 nid, K(node_page_state(nid, NR_SLAB_RECLAIMABLE) +
134 node_page_state(nid, NR_SLAB_UNRECLAIMABLE)),
135 nid, K(node_page_state(nid, NR_SLAB_RECLAIMABLE)),
136 nid, K(node_page_state(nid, NR_SLAB_UNRECLAIMABLE)));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137 n += hugetlb_report_node_meminfo(nid, buf + n);
138 return n;
139}
140
141#undef K
142static SYSDEV_ATTR(meminfo, S_IRUGO, node_read_meminfo, NULL);
143
Andi Kleen4a0b2b42008-07-01 18:48:41 +0200144static ssize_t node_read_numastat(struct sys_device * dev,
145 struct sysdev_attribute *attr, char * buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147 return sprintf(buf,
148 "numa_hit %lu\n"
149 "numa_miss %lu\n"
150 "numa_foreign %lu\n"
151 "interleave_hit %lu\n"
152 "local_node %lu\n"
153 "other_node %lu\n",
Christoph Lameterca889e62006-06-30 01:55:44 -0700154 node_page_state(dev->id, NUMA_HIT),
155 node_page_state(dev->id, NUMA_MISS),
156 node_page_state(dev->id, NUMA_FOREIGN),
157 node_page_state(dev->id, NUMA_INTERLEAVE_HIT),
158 node_page_state(dev->id, NUMA_LOCAL),
159 node_page_state(dev->id, NUMA_OTHER));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160}
161static SYSDEV_ATTR(numastat, S_IRUGO, node_read_numastat, NULL);
162
Andi Kleen4a0b2b42008-07-01 18:48:41 +0200163static ssize_t node_read_distance(struct sys_device * dev,
164 struct sysdev_attribute *attr, char * buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165{
166 int nid = dev->id;
167 int len = 0;
168 int i;
169
David Rientjes12ee3c02010-03-10 14:50:21 -0800170 /*
171 * buf is currently PAGE_SIZE in length and each node needs 4 chars
172 * at the most (distance + space or newline).
173 */
174 BUILD_BUG_ON(MAX_NUMNODES * 4 > PAGE_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175
176 for_each_online_node(i)
177 len += sprintf(buf + len, "%s%d", i ? " " : "", node_distance(nid, i));
178
179 len += sprintf(buf + len, "\n");
180 return len;
181}
182static SYSDEV_ATTR(distance, S_IRUGO, node_read_distance, NULL);
183
Lee Schermerhorn9a305232009-12-14 17:58:25 -0800184#ifdef CONFIG_HUGETLBFS
185/*
186 * hugetlbfs per node attributes registration interface:
187 * When/if hugetlb[fs] subsystem initializes [sometime after this module],
Lee Schermerhorn4faf8d92009-12-14 17:58:35 -0800188 * it will register its per node attributes for all online nodes with
189 * memory. It will also call register_hugetlbfs_with_node(), below, to
Lee Schermerhorn9a305232009-12-14 17:58:25 -0800190 * register its attribute registration functions with this node driver.
191 * Once these hooks have been initialized, the node driver will call into
192 * the hugetlb module to [un]register attributes for hot-plugged nodes.
193 */
194static node_registration_func_t __hugetlb_register_node;
195static node_registration_func_t __hugetlb_unregister_node;
196
Lee Schermerhorn39da08c2009-12-14 17:58:36 -0800197static inline bool hugetlb_register_node(struct node *node)
Lee Schermerhorn9a305232009-12-14 17:58:25 -0800198{
Lee Schermerhorn4faf8d92009-12-14 17:58:35 -0800199 if (__hugetlb_register_node &&
Lee Schermerhorn39da08c2009-12-14 17:58:36 -0800200 node_state(node->sysdev.id, N_HIGH_MEMORY)) {
Lee Schermerhorn9a305232009-12-14 17:58:25 -0800201 __hugetlb_register_node(node);
Lee Schermerhorn39da08c2009-12-14 17:58:36 -0800202 return true;
203 }
204 return false;
Lee Schermerhorn9a305232009-12-14 17:58:25 -0800205}
206
207static inline void hugetlb_unregister_node(struct node *node)
208{
209 if (__hugetlb_unregister_node)
210 __hugetlb_unregister_node(node);
211}
212
213void register_hugetlbfs_with_node(node_registration_func_t doregister,
214 node_registration_func_t unregister)
215{
216 __hugetlb_register_node = doregister;
217 __hugetlb_unregister_node = unregister;
218}
219#else
220static inline void hugetlb_register_node(struct node *node) {}
221
222static inline void hugetlb_unregister_node(struct node *node) {}
223#endif
224
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225
226/*
Robert P. J. Day405ae7d2007-02-17 19:13:42 +0100227 * register_node - Setup a sysfs device for a node.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228 * @num - Node number to use when creating the device.
229 *
230 * Initialize and register the node device.
231 */
Keiichiro Tokunaga4b450992005-05-08 21:28:53 +0900232int register_node(struct node *node, int num, struct node *parent)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233{
234 int error;
235
236 node->sysdev.id = num;
237 node->sysdev.cls = &node_class;
238 error = sysdev_register(&node->sysdev);
239
240 if (!error){
241 sysdev_create_file(&node->sysdev, &attr_cpumap);
Mike Travis39106dc2008-04-08 11:43:03 -0700242 sysdev_create_file(&node->sysdev, &attr_cpulist);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243 sysdev_create_file(&node->sysdev, &attr_meminfo);
244 sysdev_create_file(&node->sysdev, &attr_numastat);
245 sysdev_create_file(&node->sysdev, &attr_distance);
Lee Schermerhornaf936a12008-10-18 20:26:53 -0700246
247 scan_unevictable_register_node(node);
Lee Schermerhorn4faf8d92009-12-14 17:58:35 -0800248
Lee Schermerhorn9a305232009-12-14 17:58:25 -0800249 hugetlb_register_node(node);
Mel Gormaned4a6d72010-05-24 14:32:29 -0700250
251 compaction_register_node(node);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252 }
253 return error;
254}
255
Keiichiro Tokunaga4b450992005-05-08 21:28:53 +0900256/**
257 * unregister_node - unregister a node device
258 * @node: node going away
259 *
260 * Unregisters a node device @node. All the devices on the node must be
261 * unregistered before calling this function.
262 */
263void unregister_node(struct node *node)
264{
265 sysdev_remove_file(&node->sysdev, &attr_cpumap);
Mike Travis39106dc2008-04-08 11:43:03 -0700266 sysdev_remove_file(&node->sysdev, &attr_cpulist);
Keiichiro Tokunaga4b450992005-05-08 21:28:53 +0900267 sysdev_remove_file(&node->sysdev, &attr_meminfo);
268 sysdev_remove_file(&node->sysdev, &attr_numastat);
269 sysdev_remove_file(&node->sysdev, &attr_distance);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270
Lee Schermerhornaf936a12008-10-18 20:26:53 -0700271 scan_unevictable_unregister_node(node);
Lee Schermerhorn4faf8d92009-12-14 17:58:35 -0800272 hugetlb_unregister_node(node); /* no-op, if memoryless node */
Lee Schermerhornaf936a12008-10-18 20:26:53 -0700273
Keiichiro Tokunaga4b450992005-05-08 21:28:53 +0900274 sysdev_unregister(&node->sysdev);
275}
276
Yasunori Goto0fc44152006-06-27 02:53:38 -0700277struct node node_devices[MAX_NUMNODES];
278
KAMEZAWA Hiroyuki76b67ed92006-06-27 02:53:41 -0700279/*
280 * register cpu under node
281 */
282int register_cpu_under_node(unsigned int cpu, unsigned int nid)
283{
Alex Chiang18307942009-12-14 17:59:08 -0800284 int ret;
Alex Chiangf8246f32009-12-14 17:59:06 -0800285 struct sys_device *obj;
KAMEZAWA Hiroyuki76b67ed92006-06-27 02:53:41 -0700286
Alex Chiangf8246f32009-12-14 17:59:06 -0800287 if (!node_online(nid))
288 return 0;
289
290 obj = get_cpu_sysdev(cpu);
291 if (!obj)
292 return 0;
293
Alex Chiang18307942009-12-14 17:59:08 -0800294 ret = sysfs_create_link(&node_devices[nid].sysdev.kobj,
Alex Chiangf8246f32009-12-14 17:59:06 -0800295 &obj->kobj,
296 kobject_name(&obj->kobj));
Alex Chiang18307942009-12-14 17:59:08 -0800297 if (ret)
298 return ret;
299
300 return sysfs_create_link(&obj->kobj,
301 &node_devices[nid].sysdev.kobj,
302 kobject_name(&node_devices[nid].sysdev.kobj));
KAMEZAWA Hiroyuki76b67ed92006-06-27 02:53:41 -0700303}
304
305int unregister_cpu_under_node(unsigned int cpu, unsigned int nid)
306{
Alex Chiangb9d52da2009-12-14 17:59:07 -0800307 struct sys_device *obj;
308
309 if (!node_online(nid))
310 return 0;
311
312 obj = get_cpu_sysdev(cpu);
313 if (!obj)
314 return 0;
315
316 sysfs_remove_link(&node_devices[nid].sysdev.kobj,
317 kobject_name(&obj->kobj));
Alex Chiang18307942009-12-14 17:59:08 -0800318 sysfs_remove_link(&obj->kobj,
319 kobject_name(&node_devices[nid].sysdev.kobj));
Alex Chiangb9d52da2009-12-14 17:59:07 -0800320
KAMEZAWA Hiroyuki76b67ed92006-06-27 02:53:41 -0700321 return 0;
322}
323
Gary Hadec04fc582009-01-06 14:39:14 -0800324#ifdef CONFIG_MEMORY_HOTPLUG_SPARSE
325#define page_initialized(page) (page->lru.next)
326
327static int get_nid_for_pfn(unsigned long pfn)
328{
329 struct page *page;
330
331 if (!pfn_valid_within(pfn))
332 return -1;
333 page = pfn_to_page(pfn);
334 if (!page_initialized(page))
335 return -1;
336 return pfn_to_nid(pfn);
337}
338
339/* register memory section under specified node if it spans that node */
340int register_mem_sect_under_node(struct memory_block *mem_blk, int nid)
341{
Alex Chiangdee5d0d2009-12-14 17:59:05 -0800342 int ret;
Gary Hadec04fc582009-01-06 14:39:14 -0800343 unsigned long pfn, sect_start_pfn, sect_end_pfn;
344
345 if (!mem_blk)
346 return -EFAULT;
347 if (!node_online(nid))
348 return 0;
349 sect_start_pfn = section_nr_to_pfn(mem_blk->phys_index);
350 sect_end_pfn = sect_start_pfn + PAGES_PER_SECTION - 1;
351 for (pfn = sect_start_pfn; pfn <= sect_end_pfn; pfn++) {
352 int page_nid;
353
354 page_nid = get_nid_for_pfn(pfn);
355 if (page_nid < 0)
356 continue;
357 if (page_nid != nid)
358 continue;
Alex Chiangdee5d0d2009-12-14 17:59:05 -0800359 ret = sysfs_create_link_nowarn(&node_devices[nid].sysdev.kobj,
Gary Hadec04fc582009-01-06 14:39:14 -0800360 &mem_blk->sysdev.kobj,
361 kobject_name(&mem_blk->sysdev.kobj));
Alex Chiangdee5d0d2009-12-14 17:59:05 -0800362 if (ret)
363 return ret;
364
365 return sysfs_create_link_nowarn(&mem_blk->sysdev.kobj,
366 &node_devices[nid].sysdev.kobj,
367 kobject_name(&node_devices[nid].sysdev.kobj));
Gary Hadec04fc582009-01-06 14:39:14 -0800368 }
369 /* mem section does not span the specified node */
370 return 0;
371}
372
373/* unregister memory section under all nodes that it spans */
374int unregister_mem_sect_under_nodes(struct memory_block *mem_blk)
375{
David Rientjes9ae49fa2009-12-14 17:59:46 -0800376 NODEMASK_ALLOC(nodemask_t, unlinked_nodes, GFP_KERNEL);
Gary Hadec04fc582009-01-06 14:39:14 -0800377 unsigned long pfn, sect_start_pfn, sect_end_pfn;
378
David Rientjes9ae49fa2009-12-14 17:59:46 -0800379 if (!mem_blk) {
380 NODEMASK_FREE(unlinked_nodes);
Gary Hadec04fc582009-01-06 14:39:14 -0800381 return -EFAULT;
David Rientjes9ae49fa2009-12-14 17:59:46 -0800382 }
383 if (!unlinked_nodes)
384 return -ENOMEM;
385 nodes_clear(*unlinked_nodes);
Gary Hadec04fc582009-01-06 14:39:14 -0800386 sect_start_pfn = section_nr_to_pfn(mem_blk->phys_index);
387 sect_end_pfn = sect_start_pfn + PAGES_PER_SECTION - 1;
388 for (pfn = sect_start_pfn; pfn <= sect_end_pfn; pfn++) {
Roel Kluin47504982009-03-10 12:55:45 -0700389 int nid;
Gary Hadec04fc582009-01-06 14:39:14 -0800390
391 nid = get_nid_for_pfn(pfn);
392 if (nid < 0)
393 continue;
394 if (!node_online(nid))
395 continue;
David Rientjes9ae49fa2009-12-14 17:59:46 -0800396 if (node_test_and_set(nid, *unlinked_nodes))
Gary Hadec04fc582009-01-06 14:39:14 -0800397 continue;
398 sysfs_remove_link(&node_devices[nid].sysdev.kobj,
399 kobject_name(&mem_blk->sysdev.kobj));
Alex Chiangdee5d0d2009-12-14 17:59:05 -0800400 sysfs_remove_link(&mem_blk->sysdev.kobj,
401 kobject_name(&node_devices[nid].sysdev.kobj));
Gary Hadec04fc582009-01-06 14:39:14 -0800402 }
David Rientjes9ae49fa2009-12-14 17:59:46 -0800403 NODEMASK_FREE(unlinked_nodes);
Gary Hadec04fc582009-01-06 14:39:14 -0800404 return 0;
405}
406
407static int link_mem_sections(int nid)
408{
409 unsigned long start_pfn = NODE_DATA(nid)->node_start_pfn;
410 unsigned long end_pfn = start_pfn + NODE_DATA(nid)->node_spanned_pages;
411 unsigned long pfn;
412 int err = 0;
413
414 for (pfn = start_pfn; pfn < end_pfn; pfn += PAGES_PER_SECTION) {
415 unsigned long section_nr = pfn_to_section_nr(pfn);
416 struct mem_section *mem_sect;
417 struct memory_block *mem_blk;
418 int ret;
419
420 if (!present_section_nr(section_nr))
421 continue;
422 mem_sect = __nr_to_section(section_nr);
423 mem_blk = find_memory_block(mem_sect);
424 ret = register_mem_sect_under_node(mem_blk, nid);
425 if (!err)
426 err = ret;
427
428 /* discard ref obtained in find_memory_block() */
429 kobject_put(&mem_blk->sysdev.kobj);
430 }
431 return err;
432}
Lee Schermerhorn4faf8d92009-12-14 17:58:35 -0800433
Lee Schermerhorn39da08c2009-12-14 17:58:36 -0800434#ifdef CONFIG_HUGETLBFS
Lee Schermerhorn4faf8d92009-12-14 17:58:35 -0800435/*
436 * Handle per node hstate attribute [un]registration on transistions
437 * to/from memoryless state.
438 */
Lee Schermerhorn39da08c2009-12-14 17:58:36 -0800439static void node_hugetlb_work(struct work_struct *work)
440{
441 struct node *node = container_of(work, struct node, node_work);
442
443 /*
444 * We only get here when a node transitions to/from memoryless state.
445 * We can detect which transition occurred by examining whether the
446 * node has memory now. hugetlb_register_node() already check this
447 * so we try to register the attributes. If that fails, then the
448 * node has transitioned to memoryless, try to unregister the
449 * attributes.
450 */
451 if (!hugetlb_register_node(node))
452 hugetlb_unregister_node(node);
453}
454
455static void init_node_hugetlb_work(int nid)
456{
457 INIT_WORK(&node_devices[nid].node_work, node_hugetlb_work);
458}
Lee Schermerhorn4faf8d92009-12-14 17:58:35 -0800459
460static int node_memory_callback(struct notifier_block *self,
461 unsigned long action, void *arg)
462{
463 struct memory_notify *mnb = arg;
464 int nid = mnb->status_change_nid;
465
466 switch (action) {
Lee Schermerhorn39da08c2009-12-14 17:58:36 -0800467 case MEM_ONLINE:
468 case MEM_OFFLINE:
469 /*
470 * offload per node hstate [un]registration to a work thread
471 * when transitioning to/from memoryless state.
472 */
Lee Schermerhorn4faf8d92009-12-14 17:58:35 -0800473 if (nid != NUMA_NO_NODE)
Lee Schermerhorn39da08c2009-12-14 17:58:36 -0800474 schedule_work(&node_devices[nid].node_work);
Lee Schermerhorn4faf8d92009-12-14 17:58:35 -0800475 break;
Lee Schermerhorn39da08c2009-12-14 17:58:36 -0800476
Lee Schermerhorn4faf8d92009-12-14 17:58:35 -0800477 case MEM_GOING_ONLINE:
478 case MEM_GOING_OFFLINE:
479 case MEM_CANCEL_ONLINE:
480 case MEM_CANCEL_OFFLINE:
481 default:
482 break;
483 }
484
485 return NOTIFY_OK;
486}
Lee Schermerhorn39da08c2009-12-14 17:58:36 -0800487#endif /* CONFIG_HUGETLBFS */
488#else /* !CONFIG_MEMORY_HOTPLUG_SPARSE */
Lee Schermerhorn4faf8d92009-12-14 17:58:35 -0800489
Lee Schermerhorn39da08c2009-12-14 17:58:36 -0800490static int link_mem_sections(int nid) { return 0; }
491#endif /* CONFIG_MEMORY_HOTPLUG_SPARSE */
492
493#if !defined(CONFIG_MEMORY_HOTPLUG_SPARSE) || \
494 !defined(CONFIG_HUGETLBFS)
Lee Schermerhorn4faf8d92009-12-14 17:58:35 -0800495static inline int node_memory_callback(struct notifier_block *self,
496 unsigned long action, void *arg)
497{
498 return NOTIFY_OK;
499}
Lee Schermerhorn39da08c2009-12-14 17:58:36 -0800500
501static void init_node_hugetlb_work(int nid) { }
502
503#endif
Gary Hadec04fc582009-01-06 14:39:14 -0800504
Yasunori Goto0fc44152006-06-27 02:53:38 -0700505int register_one_node(int nid)
506{
507 int error = 0;
KAMEZAWA Hiroyuki76b67ed92006-06-27 02:53:41 -0700508 int cpu;
Yasunori Goto0fc44152006-06-27 02:53:38 -0700509
510 if (node_online(nid)) {
511 int p_node = parent_node(nid);
512 struct node *parent = NULL;
513
514 if (p_node != nid)
515 parent = &node_devices[p_node];
516
517 error = register_node(&node_devices[nid], nid, parent);
KAMEZAWA Hiroyuki76b67ed92006-06-27 02:53:41 -0700518
519 /* link cpu under this node */
520 for_each_present_cpu(cpu) {
521 if (cpu_to_node(cpu) == nid)
522 register_cpu_under_node(cpu, nid);
523 }
Gary Hadec04fc582009-01-06 14:39:14 -0800524
525 /* link memory sections under this node */
526 error = link_mem_sections(nid);
Lee Schermerhorn39da08c2009-12-14 17:58:36 -0800527
528 /* initialize work queue for memory hot plug */
529 init_node_hugetlb_work(nid);
Yasunori Goto0fc44152006-06-27 02:53:38 -0700530 }
531
532 return error;
533
534}
535
536void unregister_one_node(int nid)
537{
538 unregister_node(&node_devices[nid]);
539}
540
Lee Schermerhornbde631a2007-10-16 01:26:27 -0700541/*
542 * node states attributes
543 */
544
545static ssize_t print_nodes_state(enum node_states state, char *buf)
546{
547 int n;
548
549 n = nodelist_scnprintf(buf, PAGE_SIZE, node_states[state]);
550 if (n > 0 && PAGE_SIZE > n + 1) {
551 *(buf + n++) = '\n';
552 *(buf + n++) = '\0';
553 }
554 return n;
555}
556
Andi Kleenb15f5622010-01-05 12:47:59 +0100557struct node_attr {
558 struct sysdev_class_attribute attr;
559 enum node_states state;
560};
561
562static ssize_t show_node_state(struct sysdev_class *class,
563 struct sysdev_class_attribute *attr, char *buf)
Lee Schermerhornbde631a2007-10-16 01:26:27 -0700564{
Andi Kleenb15f5622010-01-05 12:47:59 +0100565 struct node_attr *na = container_of(attr, struct node_attr, attr);
566 return print_nodes_state(na->state, buf);
Lee Schermerhornbde631a2007-10-16 01:26:27 -0700567}
568
Andi Kleenb15f5622010-01-05 12:47:59 +0100569#define _NODE_ATTR(name, state) \
570 { _SYSDEV_CLASS_ATTR(name, 0444, show_node_state, NULL), state }
Lee Schermerhornbde631a2007-10-16 01:26:27 -0700571
Andi Kleenb15f5622010-01-05 12:47:59 +0100572static struct node_attr node_state_attr[] = {
573 _NODE_ATTR(possible, N_POSSIBLE),
574 _NODE_ATTR(online, N_ONLINE),
575 _NODE_ATTR(has_normal_memory, N_NORMAL_MEMORY),
576 _NODE_ATTR(has_cpu, N_CPU),
Lee Schermerhornbde631a2007-10-16 01:26:27 -0700577#ifdef CONFIG_HIGHMEM
Andi Kleenb15f5622010-01-05 12:47:59 +0100578 _NODE_ATTR(has_high_memory, N_HIGH_MEMORY),
Lee Schermerhornbde631a2007-10-16 01:26:27 -0700579#endif
Lee Schermerhornbde631a2007-10-16 01:26:27 -0700580};
581
Andi Kleen3701cde2010-01-05 12:48:04 +0100582static struct sysdev_class_attribute *node_state_attrs[] = {
583 &node_state_attr[0].attr,
584 &node_state_attr[1].attr,
585 &node_state_attr[2].attr,
586 &node_state_attr[3].attr,
587#ifdef CONFIG_HIGHMEM
588 &node_state_attr[4].attr,
589#endif
590 NULL
591};
Lee Schermerhornbde631a2007-10-16 01:26:27 -0700592
Lee Schermerhorn4faf8d92009-12-14 17:58:35 -0800593#define NODE_CALLBACK_PRI 2 /* lower than SLAB */
Keiichiro Tokunaga4b450992005-05-08 21:28:53 +0900594static int __init register_node_type(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595{
Lee Schermerhornbde631a2007-10-16 01:26:27 -0700596 int ret;
597
Andi Kleen3701cde2010-01-05 12:48:04 +0100598 BUILD_BUG_ON(ARRAY_SIZE(node_state_attr) != NR_NODE_STATES);
599 BUILD_BUG_ON(ARRAY_SIZE(node_state_attrs)-1 != NR_NODE_STATES);
600
Lee Schermerhornbde631a2007-10-16 01:26:27 -0700601 ret = sysdev_class_register(&node_class);
Lee Schermerhorn4faf8d92009-12-14 17:58:35 -0800602 if (!ret) {
Lee Schermerhorn4faf8d92009-12-14 17:58:35 -0800603 hotplug_memory_notifier(node_memory_callback,
604 NODE_CALLBACK_PRI);
605 }
Lee Schermerhornbde631a2007-10-16 01:26:27 -0700606
607 /*
608 * Note: we're not going to unregister the node class if we fail
609 * to register the node state class attribute files.
610 */
611 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612}
613postcore_initcall(register_node_type);