2 * drivers/base/node.c - basic Node class support
5 #include <linux/sysdev.h>
6 #include <linux/module.h>
7 #include <linux/init.h>
9 #include <linux/memory.h>
10 #include <linux/node.h>
11 #include <linux/hugetlb.h>
12 #include <linux/compaction.h>
13 #include <linux/cpumask.h>
14 #include <linux/topology.h>
15 #include <linux/nodemask.h>
16 #include <linux/cpu.h>
17 #include <linux/device.h>
18 #include <linux/swap.h>
19 #include <linux/slab.h>
21 static struct sysdev_class_attribute
*node_state_attrs
[];
23 static struct sysdev_class node_class
= {
25 .attrs
= node_state_attrs
,
29 static ssize_t
node_read_cpumap(struct sys_device
*dev
, int type
, char *buf
)
31 struct node
*node_dev
= to_node(dev
);
32 const struct cpumask
*mask
= cpumask_of_node(node_dev
->sysdev
.id
);
35 /* 2008/04/07: buf currently PAGE_SIZE, need 9 chars per 32 bits. */
36 BUILD_BUG_ON((NR_CPUS
/32 * 9) > (PAGE_SIZE
-1));
39 cpulist_scnprintf(buf
, PAGE_SIZE
-2, mask
) :
40 cpumask_scnprintf(buf
, PAGE_SIZE
-2, mask
);
46 static inline ssize_t
node_read_cpumask(struct sys_device
*dev
,
47 struct sysdev_attribute
*attr
, char *buf
)
49 return node_read_cpumap(dev
, 0, buf
);
51 static inline ssize_t
node_read_cpulist(struct sys_device
*dev
,
52 struct sysdev_attribute
*attr
, char *buf
)
54 return node_read_cpumap(dev
, 1, buf
);
57 static SYSDEV_ATTR(cpumap
, S_IRUGO
, node_read_cpumask
, NULL
);
58 static SYSDEV_ATTR(cpulist
, S_IRUGO
, node_read_cpulist
, NULL
);
60 #define K(x) ((x) << (PAGE_SHIFT - 10))
61 static ssize_t
node_read_meminfo(struct sys_device
* dev
,
62 struct sysdev_attribute
*attr
, char * buf
)
68 si_meminfo_node(&i
, nid
);
71 "Node %d MemTotal: %8lu kB\n"
72 "Node %d MemFree: %8lu kB\n"
73 "Node %d MemUsed: %8lu kB\n"
74 "Node %d Active: %8lu kB\n"
75 "Node %d Inactive: %8lu kB\n"
76 "Node %d Active(anon): %8lu kB\n"
77 "Node %d Inactive(anon): %8lu kB\n"
78 "Node %d Active(file): %8lu kB\n"
79 "Node %d Inactive(file): %8lu kB\n"
80 "Node %d Unevictable: %8lu kB\n"
81 "Node %d Mlocked: %8lu kB\n"
83 "Node %d HighTotal: %8lu kB\n"
84 "Node %d HighFree: %8lu kB\n"
85 "Node %d LowTotal: %8lu kB\n"
86 "Node %d LowFree: %8lu kB\n"
88 "Node %d Dirty: %8lu kB\n"
89 "Node %d Writeback: %8lu kB\n"
90 "Node %d FilePages: %8lu kB\n"
91 "Node %d Mapped: %8lu kB\n"
92 "Node %d AnonPages: %8lu kB\n"
93 "Node %d Shmem: %8lu kB\n"
94 "Node %d KernelStack: %8lu kB\n"
95 "Node %d PageTables: %8lu kB\n"
96 "Node %d NFS_Unstable: %8lu kB\n"
97 "Node %d Bounce: %8lu kB\n"
98 "Node %d WritebackTmp: %8lu kB\n"
99 "Node %d Slab: %8lu kB\n"
100 "Node %d SReclaimable: %8lu kB\n"
101 "Node %d SUnreclaim: %8lu kB\n",
104 nid
, K(i
.totalram
- i
.freeram
),
105 nid
, K(node_page_state(nid
, NR_ACTIVE_ANON
) +
106 node_page_state(nid
, NR_ACTIVE_FILE
)),
107 nid
, K(node_page_state(nid
, NR_INACTIVE_ANON
) +
108 node_page_state(nid
, NR_INACTIVE_FILE
)),
109 nid
, K(node_page_state(nid
, NR_ACTIVE_ANON
)),
110 nid
, K(node_page_state(nid
, NR_INACTIVE_ANON
)),
111 nid
, K(node_page_state(nid
, NR_ACTIVE_FILE
)),
112 nid
, K(node_page_state(nid
, NR_INACTIVE_FILE
)),
113 nid
, K(node_page_state(nid
, NR_UNEVICTABLE
)),
114 nid
, K(node_page_state(nid
, NR_MLOCK
)),
115 #ifdef CONFIG_HIGHMEM
118 nid
, K(i
.totalram
- i
.totalhigh
),
119 nid
, K(i
.freeram
- i
.freehigh
),
121 nid
, K(node_page_state(nid
, NR_FILE_DIRTY
)),
122 nid
, K(node_page_state(nid
, NR_WRITEBACK
)),
123 nid
, K(node_page_state(nid
, NR_FILE_PAGES
)),
124 nid
, K(node_page_state(nid
, NR_FILE_MAPPED
)),
125 nid
, K(node_page_state(nid
, NR_ANON_PAGES
)),
126 nid
, K(node_page_state(nid
, NR_SHMEM
)),
127 nid
, node_page_state(nid
, NR_KERNEL_STACK
) *
129 nid
, K(node_page_state(nid
, NR_PAGETABLE
)),
130 nid
, K(node_page_state(nid
, NR_UNSTABLE_NFS
)),
131 nid
, K(node_page_state(nid
, NR_BOUNCE
)),
132 nid
, K(node_page_state(nid
, NR_WRITEBACK_TEMP
)),
133 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
)));
137 n
+= hugetlb_report_node_meminfo(nid
, buf
+ n
);
142 static SYSDEV_ATTR(meminfo
, S_IRUGO
, node_read_meminfo
, NULL
);
144 static ssize_t
node_read_numastat(struct sys_device
* dev
,
145 struct sysdev_attribute
*attr
, char * buf
)
151 "interleave_hit %lu\n"
154 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
));
161 static SYSDEV_ATTR(numastat
, S_IRUGO
, node_read_numastat
, NULL
);
163 static ssize_t
node_read_distance(struct sys_device
* dev
,
164 struct sysdev_attribute
*attr
, char * buf
)
171 * buf is currently PAGE_SIZE in length and each node needs 4 chars
172 * at the most (distance + space or newline).
174 BUILD_BUG_ON(MAX_NUMNODES
* 4 > PAGE_SIZE
);
176 for_each_online_node(i
)
177 len
+= sprintf(buf
+ len
, "%s%d", i
? " " : "", node_distance(nid
, i
));
179 len
+= sprintf(buf
+ len
, "\n");
182 static SYSDEV_ATTR(distance
, S_IRUGO
, node_read_distance
, NULL
);
184 #ifdef CONFIG_HUGETLBFS
186 * hugetlbfs per node attributes registration interface:
187 * When/if hugetlb[fs] subsystem initializes [sometime after this module],
188 * it will register its per node attributes for all online nodes with
189 * memory. It will also call register_hugetlbfs_with_node(), below, to
190 * 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.
194 static node_registration_func_t __hugetlb_register_node
;
195 static node_registration_func_t __hugetlb_unregister_node
;
197 static inline bool hugetlb_register_node(struct node
*node
)
199 if (__hugetlb_register_node
&&
200 node_state(node
->sysdev
.id
, N_HIGH_MEMORY
)) {
201 __hugetlb_register_node(node
);
207 static inline void hugetlb_unregister_node(struct node
*node
)
209 if (__hugetlb_unregister_node
)
210 __hugetlb_unregister_node(node
);
213 void register_hugetlbfs_with_node(node_registration_func_t doregister
,
214 node_registration_func_t unregister
)
216 __hugetlb_register_node
= doregister
;
217 __hugetlb_unregister_node
= unregister
;
220 static inline void hugetlb_register_node(struct node
*node
) {}
222 static inline void hugetlb_unregister_node(struct node
*node
) {}
227 * register_node - Setup a sysfs device for a node.
228 * @num - Node number to use when creating the device.
230 * Initialize and register the node device.
232 int register_node(struct node
*node
, int num
, struct node
*parent
)
236 node
->sysdev
.id
= num
;
237 node
->sysdev
.cls
= &node_class
;
238 error
= sysdev_register(&node
->sysdev
);
241 sysdev_create_file(&node
->sysdev
, &attr_cpumap
);
242 sysdev_create_file(&node
->sysdev
, &attr_cpulist
);
243 sysdev_create_file(&node
->sysdev
, &attr_meminfo
);
244 sysdev_create_file(&node
->sysdev
, &attr_numastat
);
245 sysdev_create_file(&node
->sysdev
, &attr_distance
);
247 scan_unevictable_register_node(node
);
249 hugetlb_register_node(node
);
251 compaction_register_node(node
);
257 * unregister_node - unregister a node device
258 * @node: node going away
260 * Unregisters a node device @node. All the devices on the node must be
261 * unregistered before calling this function.
263 void unregister_node(struct node
*node
)
265 sysdev_remove_file(&node
->sysdev
, &attr_cpumap
);
266 sysdev_remove_file(&node
->sysdev
, &attr_cpulist
);
267 sysdev_remove_file(&node
->sysdev
, &attr_meminfo
);
268 sysdev_remove_file(&node
->sysdev
, &attr_numastat
);
269 sysdev_remove_file(&node
->sysdev
, &attr_distance
);
271 scan_unevictable_unregister_node(node
);
272 hugetlb_unregister_node(node
); /* no-op, if memoryless node */
274 sysdev_unregister(&node
->sysdev
);
277 struct node node_devices
[MAX_NUMNODES
];
280 * register cpu under node
282 int register_cpu_under_node(unsigned int cpu
, unsigned int nid
)
285 struct sys_device
*obj
;
287 if (!node_online(nid
))
290 obj
= get_cpu_sysdev(cpu
);
294 ret
= sysfs_create_link(&node_devices
[nid
].sysdev
.kobj
,
296 kobject_name(&obj
->kobj
));
300 return sysfs_create_link(&obj
->kobj
,
301 &node_devices
[nid
].sysdev
.kobj
,
302 kobject_name(&node_devices
[nid
].sysdev
.kobj
));
305 int unregister_cpu_under_node(unsigned int cpu
, unsigned int nid
)
307 struct sys_device
*obj
;
309 if (!node_online(nid
))
312 obj
= get_cpu_sysdev(cpu
);
316 sysfs_remove_link(&node_devices
[nid
].sysdev
.kobj
,
317 kobject_name(&obj
->kobj
));
318 sysfs_remove_link(&obj
->kobj
,
319 kobject_name(&node_devices
[nid
].sysdev
.kobj
));
324 #ifdef CONFIG_MEMORY_HOTPLUG_SPARSE
325 #define page_initialized(page) (page->lru.next)
327 static int get_nid_for_pfn(unsigned long pfn
)
331 if (!pfn_valid_within(pfn
))
333 page
= pfn_to_page(pfn
);
334 if (!page_initialized(page
))
336 return pfn_to_nid(pfn
);
339 /* register memory section under specified node if it spans that node */
340 int register_mem_sect_under_node(struct memory_block
*mem_blk
, int nid
)
343 unsigned long pfn
, sect_start_pfn
, sect_end_pfn
;
347 if (!node_online(nid
))
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
++) {
354 page_nid
= get_nid_for_pfn(pfn
);
359 ret
= sysfs_create_link_nowarn(&node_devices
[nid
].sysdev
.kobj
,
360 &mem_blk
->sysdev
.kobj
,
361 kobject_name(&mem_blk
->sysdev
.kobj
));
365 return sysfs_create_link_nowarn(&mem_blk
->sysdev
.kobj
,
366 &node_devices
[nid
].sysdev
.kobj
,
367 kobject_name(&node_devices
[nid
].sysdev
.kobj
));
369 /* mem section does not span the specified node */
373 /* unregister memory section under all nodes that it spans */
374 int unregister_mem_sect_under_nodes(struct memory_block
*mem_blk
)
376 NODEMASK_ALLOC(nodemask_t
, unlinked_nodes
, GFP_KERNEL
);
377 unsigned long pfn
, sect_start_pfn
, sect_end_pfn
;
380 NODEMASK_FREE(unlinked_nodes
);
385 nodes_clear(*unlinked_nodes
);
386 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
++) {
391 nid
= get_nid_for_pfn(pfn
);
394 if (!node_online(nid
))
396 if (node_test_and_set(nid
, *unlinked_nodes
))
398 sysfs_remove_link(&node_devices
[nid
].sysdev
.kobj
,
399 kobject_name(&mem_blk
->sysdev
.kobj
));
400 sysfs_remove_link(&mem_blk
->sysdev
.kobj
,
401 kobject_name(&node_devices
[nid
].sysdev
.kobj
));
403 NODEMASK_FREE(unlinked_nodes
);
407 static int link_mem_sections(int nid
)
409 unsigned long start_pfn
= NODE_DATA(nid
)->node_start_pfn
;
410 unsigned long end_pfn
= start_pfn
+ NODE_DATA(nid
)->node_spanned_pages
;
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
;
420 if (!present_section_nr(section_nr
))
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
);
428 /* discard ref obtained in find_memory_block() */
429 kobject_put(&mem_blk
->sysdev
.kobj
);
434 #ifdef CONFIG_HUGETLBFS
436 * Handle per node hstate attribute [un]registration on transistions
437 * to/from memoryless state.
439 static void node_hugetlb_work(struct work_struct
*work
)
441 struct node
*node
= container_of(work
, struct node
, node_work
);
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
451 if (!hugetlb_register_node(node
))
452 hugetlb_unregister_node(node
);
455 static void init_node_hugetlb_work(int nid
)
457 INIT_WORK(&node_devices
[nid
].node_work
, node_hugetlb_work
);
460 static int node_memory_callback(struct notifier_block
*self
,
461 unsigned long action
, void *arg
)
463 struct memory_notify
*mnb
= arg
;
464 int nid
= mnb
->status_change_nid
;
470 * offload per node hstate [un]registration to a work thread
471 * when transitioning to/from memoryless state.
473 if (nid
!= NUMA_NO_NODE
)
474 schedule_work(&node_devices
[nid
].node_work
);
477 case MEM_GOING_ONLINE
:
478 case MEM_GOING_OFFLINE
:
479 case MEM_CANCEL_ONLINE
:
480 case MEM_CANCEL_OFFLINE
:
487 #endif /* CONFIG_HUGETLBFS */
488 #else /* !CONFIG_MEMORY_HOTPLUG_SPARSE */
490 static int link_mem_sections(int nid
) { return 0; }
491 #endif /* CONFIG_MEMORY_HOTPLUG_SPARSE */
493 #if !defined(CONFIG_MEMORY_HOTPLUG_SPARSE) || \
494 !defined(CONFIG_HUGETLBFS)
495 static inline int node_memory_callback(struct notifier_block
*self
,
496 unsigned long action
, void *arg
)
501 static void init_node_hugetlb_work(int nid
) { }
505 int register_one_node(int nid
)
510 if (node_online(nid
)) {
511 int p_node
= parent_node(nid
);
512 struct node
*parent
= NULL
;
515 parent
= &node_devices
[p_node
];
517 error
= register_node(&node_devices
[nid
], nid
, parent
);
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
);
525 /* link memory sections under this node */
526 error
= link_mem_sections(nid
);
528 /* initialize work queue for memory hot plug */
529 init_node_hugetlb_work(nid
);
536 void unregister_one_node(int nid
)
538 unregister_node(&node_devices
[nid
]);
542 * node states attributes
545 static ssize_t
print_nodes_state(enum node_states state
, char *buf
)
549 n
= nodelist_scnprintf(buf
, PAGE_SIZE
, node_states
[state
]);
550 if (n
> 0 && PAGE_SIZE
> n
+ 1) {
558 struct sysdev_class_attribute attr
;
559 enum node_states state
;
562 static ssize_t
show_node_state(struct sysdev_class
*class,
563 struct sysdev_class_attribute
*attr
, char *buf
)
565 struct node_attr
*na
= container_of(attr
, struct node_attr
, attr
);
566 return print_nodes_state(na
->state
, buf
);
569 #define _NODE_ATTR(name, state) \
570 { _SYSDEV_CLASS_ATTR(name, 0444, show_node_state, NULL), state }
572 static 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
),
577 #ifdef CONFIG_HIGHMEM
578 _NODE_ATTR(has_high_memory
, N_HIGH_MEMORY
),
582 static 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
,
593 #define NODE_CALLBACK_PRI 2 /* lower than SLAB */
594 static int __init
register_node_type(void)
598 BUILD_BUG_ON(ARRAY_SIZE(node_state_attr
) != NR_NODE_STATES
);
599 BUILD_BUG_ON(ARRAY_SIZE(node_state_attrs
)-1 != NR_NODE_STATES
);
601 ret
= sysdev_class_register(&node_class
);
603 hotplug_memory_notifier(node_memory_callback
,
608 * Note: we're not going to unregister the node class if we fail
609 * to register the node state class attribute files.
613 postcore_initcall(register_node_type
);