blob: 96d820f979a2cc93f70eaa6656b2fb930eae26ad [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001// SPDX-License-Identifier: GPL-2.0
Linus Torvalds1da177e2005-04-16 15:20:36 -07002/*
Kay Sievers10fbcf42011-12-21 14:48:43 -08003 * Basic Node interface support
Linus Torvalds1da177e2005-04-16 15:20:36 -07004 */
5
Linus Torvalds1da177e2005-04-16 15:20:36 -07006#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>
KOSAKI Motohirofa25c502011-05-24 17:11:28 -070010#include <linux/vmstat.h>
Andrew Morton6e259e72013-04-29 15:08:07 -070011#include <linux/notifier.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070012#include <linux/node.h>
13#include <linux/hugetlb.h>
Mel Gormaned4a6d72010-05-24 14:32:29 -070014#include <linux/compaction.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070015#include <linux/cpumask.h>
16#include <linux/topology.h>
17#include <linux/nodemask.h>
KAMEZAWA Hiroyuki76b67ed2006-06-27 02:53:41 -070018#include <linux/cpu.h>
Lee Schermerhornbde631a2007-10-16 01:26:27 -070019#include <linux/device.h>
Keith Busch08d9dbe2019-03-11 14:56:00 -060020#include <linux/pm_runtime.h>
Lee Schermerhornaf936a12008-10-18 20:26:53 -070021#include <linux/swap.h>
Tejun Heo18e5b532010-04-06 19:23:33 +090022#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070023
Kay Sievers10fbcf42011-12-21 14:48:43 -080024static struct bus_type node_subsys = {
Kay Sieversaf5ca3f42007-12-20 02:09:39 +010025 .name = "node",
Kay Sievers10fbcf42011-12-21 14:48:43 -080026 .dev_name = "node",
Linus Torvalds1da177e2005-04-16 15:20:36 -070027};
28
29
Sudeep Holla5aaba362014-09-30 14:48:22 +010030static ssize_t node_read_cpumap(struct device *dev, bool list, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -070031{
Zhen Lei064f0e92017-10-13 15:57:50 -070032 ssize_t n;
33 cpumask_var_t mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -070034 struct node *node_dev = to_node(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -070035
Mike Travis39106dc2008-04-08 11:43:03 -070036 /* 2008/04/07: buf currently PAGE_SIZE, need 9 chars per 32 bits. */
37 BUILD_BUG_ON((NR_CPUS/32 * 9) > (PAGE_SIZE-1));
Linus Torvalds1da177e2005-04-16 15:20:36 -070038
Zhen Lei064f0e92017-10-13 15:57:50 -070039 if (!alloc_cpumask_var(&mask, GFP_KERNEL))
40 return 0;
41
42 cpumask_and(mask, cpumask_of_node(node_dev->dev.id), cpu_online_mask);
43 n = cpumap_print_to_pagebuf(list, buf, mask);
44 free_cpumask_var(mask);
45
46 return n;
Linus Torvalds1da177e2005-04-16 15:20:36 -070047}
48
Joe Perches948b3ed2020-09-16 13:40:42 -070049static inline ssize_t cpumap_show(struct device *dev,
50 struct device_attribute *attr,
51 char *buf)
Mike Travis39106dc2008-04-08 11:43:03 -070052{
Sudeep Holla5aaba362014-09-30 14:48:22 +010053 return node_read_cpumap(dev, false, buf);
Mike Travis39106dc2008-04-08 11:43:03 -070054}
Joe Perches948b3ed2020-09-16 13:40:42 -070055
56static DEVICE_ATTR_RO(cpumap);
57
58static inline ssize_t cpulist_show(struct device *dev,
59 struct device_attribute *attr,
60 char *buf)
Mike Travis39106dc2008-04-08 11:43:03 -070061{
Sudeep Holla5aaba362014-09-30 14:48:22 +010062 return node_read_cpumap(dev, true, buf);
Mike Travis39106dc2008-04-08 11:43:03 -070063}
64
Joe Perches948b3ed2020-09-16 13:40:42 -070065static DEVICE_ATTR_RO(cpulist);
Linus Torvalds1da177e2005-04-16 15:20:36 -070066
Keith Busch08d9dbe2019-03-11 14:56:00 -060067/**
68 * struct node_access_nodes - Access class device to hold user visible
69 * relationships to other nodes.
70 * @dev: Device for this memory access class
71 * @list_node: List element in the node's access list
72 * @access: The access class rank
Mauro Carvalho Chehab58cb3462019-06-18 15:55:12 -030073 * @hmem_attrs: Heterogeneous memory performance attributes
Keith Busch08d9dbe2019-03-11 14:56:00 -060074 */
75struct node_access_nodes {
76 struct device dev;
77 struct list_head list_node;
78 unsigned access;
Keith Busche1cf33a2019-03-11 14:56:01 -060079#ifdef CONFIG_HMEM_REPORTING
80 struct node_hmem_attrs hmem_attrs;
81#endif
Keith Busch08d9dbe2019-03-11 14:56:00 -060082};
83#define to_access_nodes(dev) container_of(dev, struct node_access_nodes, dev)
84
85static struct attribute *node_init_access_node_attrs[] = {
86 NULL,
87};
88
89static struct attribute *node_targ_access_node_attrs[] = {
90 NULL,
91};
92
93static const struct attribute_group initiators = {
94 .name = "initiators",
95 .attrs = node_init_access_node_attrs,
96};
97
98static const struct attribute_group targets = {
99 .name = "targets",
100 .attrs = node_targ_access_node_attrs,
101};
102
103static const struct attribute_group *node_access_node_groups[] = {
104 &initiators,
105 &targets,
106 NULL,
107};
108
109static void node_remove_accesses(struct node *node)
110{
111 struct node_access_nodes *c, *cnext;
112
113 list_for_each_entry_safe(c, cnext, &node->access_list, list_node) {
114 list_del(&c->list_node);
115 device_unregister(&c->dev);
116 }
117}
118
119static void node_access_release(struct device *dev)
120{
121 kfree(to_access_nodes(dev));
122}
123
124static struct node_access_nodes *node_init_node_access(struct node *node,
125 unsigned access)
126{
127 struct node_access_nodes *access_node;
128 struct device *dev;
129
130 list_for_each_entry(access_node, &node->access_list, list_node)
131 if (access_node->access == access)
132 return access_node;
133
134 access_node = kzalloc(sizeof(*access_node), GFP_KERNEL);
135 if (!access_node)
136 return NULL;
137
138 access_node->access = access;
139 dev = &access_node->dev;
140 dev->parent = &node->dev;
141 dev->release = node_access_release;
142 dev->groups = node_access_node_groups;
143 if (dev_set_name(dev, "access%u", access))
144 goto free;
145
146 if (device_register(dev))
147 goto free_name;
148
149 pm_runtime_no_callbacks(dev);
150 list_add_tail(&access_node->list_node, &node->access_list);
151 return access_node;
152free_name:
153 kfree_const(dev->kobj.name);
154free:
155 kfree(access_node);
156 return NULL;
157}
158
Keith Busche1cf33a2019-03-11 14:56:01 -0600159#ifdef CONFIG_HMEM_REPORTING
Joe Perches948b3ed2020-09-16 13:40:42 -0700160#define ACCESS_ATTR(name) \
161static ssize_t name##_show(struct device *dev, \
162 struct device_attribute *attr, \
163 char *buf) \
164{ \
165 return sysfs_emit(buf, "%u\n", \
166 to_access_nodes(dev)->hmem_attrs.name); \
167} \
Keith Busche1cf33a2019-03-11 14:56:01 -0600168static DEVICE_ATTR_RO(name);
169
170ACCESS_ATTR(read_bandwidth)
171ACCESS_ATTR(read_latency)
172ACCESS_ATTR(write_bandwidth)
173ACCESS_ATTR(write_latency)
174
175static struct attribute *access_attrs[] = {
176 &dev_attr_read_bandwidth.attr,
177 &dev_attr_read_latency.attr,
178 &dev_attr_write_bandwidth.attr,
179 &dev_attr_write_latency.attr,
180 NULL,
181};
182
183/**
184 * node_set_perf_attrs - Set the performance values for given access class
185 * @nid: Node identifier to be set
186 * @hmem_attrs: Heterogeneous memory performance attributes
187 * @access: The access class the for the given attributes
188 */
189void node_set_perf_attrs(unsigned int nid, struct node_hmem_attrs *hmem_attrs,
190 unsigned access)
191{
192 struct node_access_nodes *c;
193 struct node *node;
194 int i;
195
196 if (WARN_ON_ONCE(!node_online(nid)))
197 return;
198
199 node = node_devices[nid];
200 c = node_init_node_access(node, access);
201 if (!c)
202 return;
203
204 c->hmem_attrs = *hmem_attrs;
205 for (i = 0; access_attrs[i] != NULL; i++) {
206 if (sysfs_add_file_to_group(&c->dev.kobj, access_attrs[i],
207 "initiators")) {
208 pr_info("failed to add performance attribute to node %d\n",
209 nid);
210 break;
211 }
212 }
213}
Keith Buschacc02a12019-03-11 14:56:02 -0600214
215/**
216 * struct node_cache_info - Internal tracking for memory node caches
217 * @dev: Device represeting the cache level
218 * @node: List element for tracking in the node
219 * @cache_attrs:Attributes for this cache level
220 */
221struct node_cache_info {
222 struct device dev;
223 struct list_head node;
224 struct node_cache_attrs cache_attrs;
225};
226#define to_cache_info(device) container_of(device, struct node_cache_info, dev)
227
228#define CACHE_ATTR(name, fmt) \
229static ssize_t name##_show(struct device *dev, \
230 struct device_attribute *attr, \
231 char *buf) \
232{ \
Joe Perches948b3ed2020-09-16 13:40:42 -0700233 return sysfs_emit(buf, fmt "\n", \
234 to_cache_info(dev)->cache_attrs.name); \
Keith Buschacc02a12019-03-11 14:56:02 -0600235} \
236DEVICE_ATTR_RO(name);
237
238CACHE_ATTR(size, "%llu")
239CACHE_ATTR(line_size, "%u")
240CACHE_ATTR(indexing, "%u")
241CACHE_ATTR(write_policy, "%u")
242
243static struct attribute *cache_attrs[] = {
244 &dev_attr_indexing.attr,
245 &dev_attr_size.attr,
246 &dev_attr_line_size.attr,
247 &dev_attr_write_policy.attr,
248 NULL,
249};
250ATTRIBUTE_GROUPS(cache);
251
252static void node_cache_release(struct device *dev)
253{
254 kfree(dev);
255}
256
257static void node_cacheinfo_release(struct device *dev)
258{
259 struct node_cache_info *info = to_cache_info(dev);
260 kfree(info);
261}
262
263static void node_init_cache_dev(struct node *node)
264{
265 struct device *dev;
266
267 dev = kzalloc(sizeof(*dev), GFP_KERNEL);
268 if (!dev)
269 return;
270
271 dev->parent = &node->dev;
272 dev->release = node_cache_release;
273 if (dev_set_name(dev, "memory_side_cache"))
274 goto free_dev;
275
276 if (device_register(dev))
277 goto free_name;
278
279 pm_runtime_no_callbacks(dev);
280 node->cache_dev = dev;
281 return;
282free_name:
283 kfree_const(dev->kobj.name);
284free_dev:
285 kfree(dev);
286}
287
288/**
289 * node_add_cache() - add cache attribute to a memory node
290 * @nid: Node identifier that has new cache attributes
291 * @cache_attrs: Attributes for the cache being added
292 */
293void node_add_cache(unsigned int nid, struct node_cache_attrs *cache_attrs)
294{
295 struct node_cache_info *info;
296 struct device *dev;
297 struct node *node;
298
299 if (!node_online(nid) || !node_devices[nid])
300 return;
301
302 node = node_devices[nid];
303 list_for_each_entry(info, &node->cache_attrs, node) {
304 if (info->cache_attrs.level == cache_attrs->level) {
305 dev_warn(&node->dev,
306 "attempt to add duplicate cache level:%d\n",
307 cache_attrs->level);
308 return;
309 }
310 }
311
312 if (!node->cache_dev)
313 node_init_cache_dev(node);
314 if (!node->cache_dev)
315 return;
316
317 info = kzalloc(sizeof(*info), GFP_KERNEL);
318 if (!info)
319 return;
320
321 dev = &info->dev;
322 dev->parent = node->cache_dev;
323 dev->release = node_cacheinfo_release;
324 dev->groups = cache_groups;
325 if (dev_set_name(dev, "index%d", cache_attrs->level))
326 goto free_cache;
327
328 info->cache_attrs = *cache_attrs;
329 if (device_register(dev)) {
330 dev_warn(&node->dev, "failed to add cache level:%d\n",
331 cache_attrs->level);
332 goto free_name;
333 }
334 pm_runtime_no_callbacks(dev);
335 list_add_tail(&info->node, &node->cache_attrs);
336 return;
337free_name:
338 kfree_const(dev->kobj.name);
339free_cache:
340 kfree(info);
341}
342
343static void node_remove_caches(struct node *node)
344{
345 struct node_cache_info *info, *next;
346
347 if (!node->cache_dev)
348 return;
349
350 list_for_each_entry_safe(info, next, &node->cache_attrs, node) {
351 list_del(&info->node);
352 device_unregister(&info->dev);
353 }
354 device_unregister(node->cache_dev);
355}
356
357static void node_init_caches(unsigned int nid)
358{
359 INIT_LIST_HEAD(&node_devices[nid]->cache_attrs);
360}
361#else
362static void node_init_caches(unsigned int nid) { }
363static void node_remove_caches(struct node *node) { }
Keith Busche1cf33a2019-03-11 14:56:01 -0600364#endif
365
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366#define K(x) ((x) << (PAGE_SHIFT - 10))
Kay Sievers10fbcf42011-12-21 14:48:43 -0800367static ssize_t node_read_meminfo(struct device *dev,
368 struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369{
Joe Perches948b3ed2020-09-16 13:40:42 -0700370 int len = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371 int nid = dev->id;
Mel Gorman599d0c92016-07-28 15:45:31 -0700372 struct pglist_data *pgdat = NODE_DATA(nid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373 struct sysinfo i;
Vlastimil Babka61f94e12018-10-26 15:05:50 -0700374 unsigned long sreclaimable, sunreclaimable;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375
376 si_meminfo_node(&i, nid);
Roman Gushchind42f3242020-08-06 23:20:39 -0700377 sreclaimable = node_page_state_pages(pgdat, NR_SLAB_RECLAIMABLE_B);
378 sunreclaimable = node_page_state_pages(pgdat, NR_SLAB_UNRECLAIMABLE_B);
Joe Perches948b3ed2020-09-16 13:40:42 -0700379 len = sysfs_emit_at(buf, len,
380 "Node %d MemTotal: %8lu kB\n"
381 "Node %d MemFree: %8lu kB\n"
382 "Node %d MemUsed: %8lu kB\n"
383 "Node %d Active: %8lu kB\n"
384 "Node %d Inactive: %8lu kB\n"
385 "Node %d Active(anon): %8lu kB\n"
386 "Node %d Inactive(anon): %8lu kB\n"
387 "Node %d Active(file): %8lu kB\n"
388 "Node %d Inactive(file): %8lu kB\n"
389 "Node %d Unevictable: %8lu kB\n"
390 "Node %d Mlocked: %8lu kB\n",
391 nid, K(i.totalram),
392 nid, K(i.freeram),
393 nid, K(i.totalram - i.freeram),
394 nid, K(node_page_state(pgdat, NR_ACTIVE_ANON) +
395 node_page_state(pgdat, NR_ACTIVE_FILE)),
396 nid, K(node_page_state(pgdat, NR_INACTIVE_ANON) +
397 node_page_state(pgdat, NR_INACTIVE_FILE)),
398 nid, K(node_page_state(pgdat, NR_ACTIVE_ANON)),
399 nid, K(node_page_state(pgdat, NR_INACTIVE_ANON)),
400 nid, K(node_page_state(pgdat, NR_ACTIVE_FILE)),
401 nid, K(node_page_state(pgdat, NR_INACTIVE_FILE)),
402 nid, K(node_page_state(pgdat, NR_UNEVICTABLE)),
403 nid, K(sum_zone_node_page_state(nid, NR_MLOCK)));
KOSAKI Motohiro7ee92252010-08-09 17:19:50 -0700404
Christoph Lameter182e8e22006-09-25 23:31:10 -0700405#ifdef CONFIG_HIGHMEM
Joe Perches948b3ed2020-09-16 13:40:42 -0700406 len += sysfs_emit_at(buf, len,
407 "Node %d HighTotal: %8lu kB\n"
408 "Node %d HighFree: %8lu kB\n"
409 "Node %d LowTotal: %8lu kB\n"
410 "Node %d LowFree: %8lu kB\n",
411 nid, K(i.totalhigh),
412 nid, K(i.freehigh),
413 nid, K(i.totalram - i.totalhigh),
414 nid, K(i.freeram - i.freehigh));
Christoph Lameter182e8e22006-09-25 23:31:10 -0700415#endif
Joe Perches948b3ed2020-09-16 13:40:42 -0700416 len += sysfs_emit_at(buf, len,
417 "Node %d Dirty: %8lu kB\n"
418 "Node %d Writeback: %8lu kB\n"
419 "Node %d FilePages: %8lu kB\n"
420 "Node %d Mapped: %8lu kB\n"
421 "Node %d AnonPages: %8lu kB\n"
422 "Node %d Shmem: %8lu kB\n"
423 "Node %d KernelStack: %8lu kB\n"
Sami Tolvanen628d06a2020-04-27 09:00:08 -0700424#ifdef CONFIG_SHADOW_CALL_STACK
Joe Perches948b3ed2020-09-16 13:40:42 -0700425 "Node %d ShadowCallStack:%8lu kB\n"
Sami Tolvanen628d06a2020-04-27 09:00:08 -0700426#endif
Joe Perches948b3ed2020-09-16 13:40:42 -0700427 "Node %d PageTables: %8lu kB\n"
428 "Node %d NFS_Unstable: %8lu kB\n"
429 "Node %d Bounce: %8lu kB\n"
430 "Node %d WritebackTmp: %8lu kB\n"
431 "Node %d KReclaimable: %8lu kB\n"
432 "Node %d Slab: %8lu kB\n"
433 "Node %d SReclaimable: %8lu kB\n"
434 "Node %d SUnreclaim: %8lu kB\n"
David Rientjes05b258e2011-01-13 15:47:14 -0800435#ifdef CONFIG_TRANSPARENT_HUGEPAGE
Joe Perches948b3ed2020-09-16 13:40:42 -0700436 "Node %d AnonHugePages: %8lu kB\n"
437 "Node %d ShmemHugePages: %8lu kB\n"
438 "Node %d ShmemPmdMapped: %8lu kB\n"
439 "Node %d FileHugePages: %8lu kB\n"
440 "Node %d FilePmdMapped: %8lu kB\n"
David Rientjes05b258e2011-01-13 15:47:14 -0800441#endif
Joe Perches948b3ed2020-09-16 13:40:42 -0700442 ,
443 nid, K(node_page_state(pgdat, NR_FILE_DIRTY)),
444 nid, K(node_page_state(pgdat, NR_WRITEBACK)),
445 nid, K(node_page_state(pgdat, NR_FILE_PAGES)),
446 nid, K(node_page_state(pgdat, NR_FILE_MAPPED)),
447 nid, K(node_page_state(pgdat, NR_ANON_MAPPED)),
448 nid, K(i.sharedram),
449 nid, node_page_state(pgdat, NR_KERNEL_STACK_KB),
Sami Tolvanen628d06a2020-04-27 09:00:08 -0700450#ifdef CONFIG_SHADOW_CALL_STACK
Joe Perches948b3ed2020-09-16 13:40:42 -0700451 nid, node_page_state(pgdat, NR_KERNEL_SCS_KB),
Sami Tolvanen628d06a2020-04-27 09:00:08 -0700452#endif
Joe Perches948b3ed2020-09-16 13:40:42 -0700453 nid, K(sum_zone_node_page_state(nid, NR_PAGETABLE)),
454 nid, 0UL,
455 nid, K(sum_zone_node_page_state(nid, NR_BOUNCE)),
456 nid, K(node_page_state(pgdat, NR_WRITEBACK_TEMP)),
457 nid, K(sreclaimable +
458 node_page_state(pgdat, NR_KERNEL_MISC_RECLAIMABLE)),
459 nid, K(sreclaimable + sunreclaimable),
460 nid, K(sreclaimable),
461 nid, K(sunreclaimable)
David Rientjes05b258e2011-01-13 15:47:14 -0800462#ifdef CONFIG_TRANSPARENT_HUGEPAGE
Joe Perches948b3ed2020-09-16 13:40:42 -0700463 ,
464 nid, K(node_page_state(pgdat, NR_ANON_THPS) *
465 HPAGE_PMD_NR),
466 nid, K(node_page_state(pgdat, NR_SHMEM_THPS) *
467 HPAGE_PMD_NR),
468 nid, K(node_page_state(pgdat, NR_SHMEM_PMDMAPPED) *
469 HPAGE_PMD_NR),
470 nid, K(node_page_state(pgdat, NR_FILE_THPS) *
471 HPAGE_PMD_NR),
472 nid, K(node_page_state(pgdat, NR_FILE_PMDMAPPED) *
473 HPAGE_PMD_NR)
David Rientjes05b258e2011-01-13 15:47:14 -0800474#endif
Joe Perches948b3ed2020-09-16 13:40:42 -0700475 );
476 len += hugetlb_report_node_meminfo(nid, buf + len);
477 return len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478}
479
480#undef K
Joe Perches948b3ed2020-09-16 13:40:42 -0700481static DEVICE_ATTR(meminfo, 0444, node_read_meminfo, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482
Kay Sievers10fbcf42011-12-21 14:48:43 -0800483static ssize_t node_read_numastat(struct device *dev,
Joe Perches948b3ed2020-09-16 13:40:42 -0700484 struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485{
Joe Perchesaa838892020-09-16 13:40:39 -0700486 return sysfs_emit(buf,
487 "numa_hit %lu\n"
488 "numa_miss %lu\n"
489 "numa_foreign %lu\n"
490 "interleave_hit %lu\n"
491 "local_node %lu\n"
492 "other_node %lu\n",
493 sum_zone_numa_state(dev->id, NUMA_HIT),
494 sum_zone_numa_state(dev->id, NUMA_MISS),
495 sum_zone_numa_state(dev->id, NUMA_FOREIGN),
496 sum_zone_numa_state(dev->id, NUMA_INTERLEAVE_HIT),
497 sum_zone_numa_state(dev->id, NUMA_LOCAL),
498 sum_zone_numa_state(dev->id, NUMA_OTHER));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499}
Joe Perches948b3ed2020-09-16 13:40:42 -0700500static DEVICE_ATTR(numastat, 0444, node_read_numastat, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501
Kay Sievers10fbcf42011-12-21 14:48:43 -0800502static ssize_t node_read_vmstat(struct device *dev,
503 struct device_attribute *attr, char *buf)
Michael Rubin2ac39032010-10-26 14:21:35 -0700504{
505 int nid = dev->id;
Mel Gorman75ef7182016-07-28 15:45:24 -0700506 struct pglist_data *pgdat = NODE_DATA(nid);
KOSAKI Motohirofa25c502011-05-24 17:11:28 -0700507 int i;
Joe Perches948b3ed2020-09-16 13:40:42 -0700508 int len = 0;
KOSAKI Motohirofa25c502011-05-24 17:11:28 -0700509
510 for (i = 0; i < NR_VM_ZONE_STAT_ITEMS; i++)
Joe Perches948b3ed2020-09-16 13:40:42 -0700511 len += sysfs_emit_at(buf, len, "%s %lu\n",
512 zone_stat_name(i),
513 sum_zone_node_page_state(nid, i));
Mel Gorman75ef7182016-07-28 15:45:24 -0700514
Kemi Wang3a321d22017-09-08 16:12:48 -0700515#ifdef CONFIG_NUMA
516 for (i = 0; i < NR_VM_NUMA_STAT_ITEMS; i++)
Joe Perches948b3ed2020-09-16 13:40:42 -0700517 len += sysfs_emit_at(buf, len, "%s %lu\n",
518 numa_stat_name(i),
519 sum_zone_numa_state(nid, i));
520
Kemi Wang3a321d22017-09-08 16:12:48 -0700521#endif
Kemi Wang3a321d22017-09-08 16:12:48 -0700522 for (i = 0; i < NR_VM_NODE_STAT_ITEMS; i++)
Joe Perches948b3ed2020-09-16 13:40:42 -0700523 len += sysfs_emit_at(buf, len, "%s %lu\n",
524 node_stat_name(i),
525 node_page_state_pages(pgdat, i));
KOSAKI Motohirofa25c502011-05-24 17:11:28 -0700526
Joe Perches948b3ed2020-09-16 13:40:42 -0700527 return len;
Michael Rubin2ac39032010-10-26 14:21:35 -0700528}
Joe Perches948b3ed2020-09-16 13:40:42 -0700529static DEVICE_ATTR(vmstat, 0444, node_read_vmstat, NULL);
Michael Rubin2ac39032010-10-26 14:21:35 -0700530
Kay Sievers10fbcf42011-12-21 14:48:43 -0800531static ssize_t node_read_distance(struct device *dev,
Joe Perches948b3ed2020-09-16 13:40:42 -0700532 struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533{
534 int nid = dev->id;
535 int len = 0;
536 int i;
537
David Rientjes12ee3c02010-03-10 14:50:21 -0800538 /*
539 * buf is currently PAGE_SIZE in length and each node needs 4 chars
540 * at the most (distance + space or newline).
541 */
542 BUILD_BUG_ON(MAX_NUMNODES * 4 > PAGE_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543
Joe Perches948b3ed2020-09-16 13:40:42 -0700544 for_each_online_node(i) {
545 len += sysfs_emit_at(buf, len, "%s%d",
546 i ? " " : "", node_distance(nid, i));
547 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548
Joe Perches948b3ed2020-09-16 13:40:42 -0700549 len += sysfs_emit_at(buf, len, "\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550 return len;
551}
Joe Perches948b3ed2020-09-16 13:40:42 -0700552static DEVICE_ATTR(distance, 0444, node_read_distance, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553
Takashi Iwai3c9b8aa2015-01-29 12:29:22 +0100554static struct attribute *node_dev_attrs[] = {
555 &dev_attr_cpumap.attr,
556 &dev_attr_cpulist.attr,
557 &dev_attr_meminfo.attr,
558 &dev_attr_numastat.attr,
559 &dev_attr_distance.attr,
560 &dev_attr_vmstat.attr,
561 NULL
562};
Greg Kroah-Hartman7ca7ec42015-03-25 13:47:17 +0100563ATTRIBUTE_GROUPS(node_dev);
Takashi Iwai3c9b8aa2015-01-29 12:29:22 +0100564
Lee Schermerhorn9a3052302009-12-14 17:58:25 -0800565#ifdef CONFIG_HUGETLBFS
566/*
567 * hugetlbfs per node attributes registration interface:
568 * When/if hugetlb[fs] subsystem initializes [sometime after this module],
Lee Schermerhorn4faf8d92009-12-14 17:58:35 -0800569 * it will register its per node attributes for all online nodes with
570 * memory. It will also call register_hugetlbfs_with_node(), below, to
Lee Schermerhorn9a3052302009-12-14 17:58:25 -0800571 * register its attribute registration functions with this node driver.
572 * Once these hooks have been initialized, the node driver will call into
573 * the hugetlb module to [un]register attributes for hot-plugged nodes.
574 */
575static node_registration_func_t __hugetlb_register_node;
576static node_registration_func_t __hugetlb_unregister_node;
577
Lee Schermerhorn39da08c2009-12-14 17:58:36 -0800578static inline bool hugetlb_register_node(struct node *node)
Lee Schermerhorn9a3052302009-12-14 17:58:25 -0800579{
Lee Schermerhorn4faf8d92009-12-14 17:58:35 -0800580 if (__hugetlb_register_node &&
Lai Jiangshan8cebfcd2012-12-12 13:51:36 -0800581 node_state(node->dev.id, N_MEMORY)) {
Lee Schermerhorn9a3052302009-12-14 17:58:25 -0800582 __hugetlb_register_node(node);
Lee Schermerhorn39da08c2009-12-14 17:58:36 -0800583 return true;
584 }
585 return false;
Lee Schermerhorn9a3052302009-12-14 17:58:25 -0800586}
587
588static inline void hugetlb_unregister_node(struct node *node)
589{
590 if (__hugetlb_unregister_node)
591 __hugetlb_unregister_node(node);
592}
593
594void register_hugetlbfs_with_node(node_registration_func_t doregister,
595 node_registration_func_t unregister)
596{
597 __hugetlb_register_node = doregister;
598 __hugetlb_unregister_node = unregister;
599}
600#else
601static inline void hugetlb_register_node(struct node *node) {}
602
603static inline void hugetlb_unregister_node(struct node *node) {}
604#endif
605
Yasuaki Ishimatsu8c7b5b42012-12-11 16:00:57 -0800606static void node_device_release(struct device *dev)
607{
608 struct node *node = to_node(dev);
609
610#if defined(CONFIG_MEMORY_HOTPLUG_SPARSE) && defined(CONFIG_HUGETLBFS)
611 /*
612 * We schedule the work only when a memory section is
613 * onlined/offlined on this node. When we come here,
614 * all the memory on this node has been offlined,
615 * so we won't enqueue new work to this work.
616 *
617 * The work is using node->node_work, so we should
618 * flush work before freeing the memory.
619 */
620 flush_work(&node->node_work);
621#endif
622 kfree(node);
623}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624
625/*
Robert P. J. Day405ae7d2007-02-17 19:13:42 +0100626 * register_node - Setup a sysfs device for a node.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627 * @num - Node number to use when creating the device.
628 *
629 * Initialize and register the node device.
630 */
Dou Liyanga7be6e52017-07-10 15:49:20 -0700631static int register_node(struct node *node, int num)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632{
633 int error;
634
Kay Sievers10fbcf42011-12-21 14:48:43 -0800635 node->dev.id = num;
636 node->dev.bus = &node_subsys;
Yasuaki Ishimatsu8c7b5b42012-12-11 16:00:57 -0800637 node->dev.release = node_device_release;
Greg Kroah-Hartman7ca7ec42015-03-25 13:47:17 +0100638 node->dev.groups = node_dev_groups;
Kay Sievers10fbcf42011-12-21 14:48:43 -0800639 error = device_register(&node->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640
Arvind Yadavc1cc0d52018-03-11 11:25:50 +0530641 if (error)
642 put_device(&node->dev);
643 else {
Lee Schermerhorn9a3052302009-12-14 17:58:25 -0800644 hugetlb_register_node(node);
Mel Gormaned4a6d72010-05-24 14:32:29 -0700645
646 compaction_register_node(node);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647 }
648 return error;
649}
650
Keiichiro Tokunaga4b450992005-05-08 21:28:53 +0900651/**
652 * unregister_node - unregister a node device
653 * @node: node going away
654 *
655 * Unregisters a node device @node. All the devices on the node must be
656 * unregistered before calling this function.
657 */
658void unregister_node(struct node *node)
659{
Lee Schermerhorn4faf8d92009-12-14 17:58:35 -0800660 hugetlb_unregister_node(node); /* no-op, if memoryless node */
Keith Busch08d9dbe2019-03-11 14:56:00 -0600661 node_remove_accesses(node);
Keith Buschacc02a12019-03-11 14:56:02 -0600662 node_remove_caches(node);
Kay Sievers10fbcf42011-12-21 14:48:43 -0800663 device_unregister(&node->dev);
Keiichiro Tokunaga4b450992005-05-08 21:28:53 +0900664}
665
Wen Congyang87327942012-12-11 16:00:56 -0800666struct node *node_devices[MAX_NUMNODES];
Yasunori Goto0fc44152006-06-27 02:53:38 -0700667
KAMEZAWA Hiroyuki76b67ed2006-06-27 02:53:41 -0700668/*
669 * register cpu under node
670 */
671int register_cpu_under_node(unsigned int cpu, unsigned int nid)
672{
Alex Chiang18307942009-12-14 17:59:08 -0800673 int ret;
Kay Sievers8a25a2f2011-12-21 14:29:42 -0800674 struct device *obj;
KAMEZAWA Hiroyuki76b67ed2006-06-27 02:53:41 -0700675
Alex Chiangf8246f32009-12-14 17:59:06 -0800676 if (!node_online(nid))
677 return 0;
678
Kay Sievers8a25a2f2011-12-21 14:29:42 -0800679 obj = get_cpu_device(cpu);
Alex Chiangf8246f32009-12-14 17:59:06 -0800680 if (!obj)
681 return 0;
682
Wen Congyang87327942012-12-11 16:00:56 -0800683 ret = sysfs_create_link(&node_devices[nid]->dev.kobj,
Alex Chiangf8246f32009-12-14 17:59:06 -0800684 &obj->kobj,
685 kobject_name(&obj->kobj));
Alex Chiang18307942009-12-14 17:59:08 -0800686 if (ret)
687 return ret;
688
689 return sysfs_create_link(&obj->kobj,
Wen Congyang87327942012-12-11 16:00:56 -0800690 &node_devices[nid]->dev.kobj,
691 kobject_name(&node_devices[nid]->dev.kobj));
KAMEZAWA Hiroyuki76b67ed2006-06-27 02:53:41 -0700692}
693
Keith Busch08d9dbe2019-03-11 14:56:00 -0600694/**
695 * register_memory_node_under_compute_node - link memory node to its compute
696 * node for a given access class.
Mauro Carvalho Chehab58cb3462019-06-18 15:55:12 -0300697 * @mem_nid: Memory node number
698 * @cpu_nid: Cpu node number
Keith Busch08d9dbe2019-03-11 14:56:00 -0600699 * @access: Access class to register
700 *
701 * Description:
702 * For use with platforms that may have separate memory and compute nodes.
703 * This function will export node relationships linking which memory
704 * initiator nodes can access memory targets at a given ranked access
705 * class.
706 */
707int register_memory_node_under_compute_node(unsigned int mem_nid,
708 unsigned int cpu_nid,
709 unsigned access)
710{
711 struct node *init_node, *targ_node;
712 struct node_access_nodes *initiator, *target;
713 int ret;
714
715 if (!node_online(cpu_nid) || !node_online(mem_nid))
716 return -ENODEV;
717
718 init_node = node_devices[cpu_nid];
719 targ_node = node_devices[mem_nid];
720 initiator = node_init_node_access(init_node, access);
721 target = node_init_node_access(targ_node, access);
722 if (!initiator || !target)
723 return -ENOMEM;
724
725 ret = sysfs_add_link_to_group(&initiator->dev.kobj, "targets",
726 &targ_node->dev.kobj,
727 dev_name(&targ_node->dev));
728 if (ret)
729 return ret;
730
731 ret = sysfs_add_link_to_group(&target->dev.kobj, "initiators",
732 &init_node->dev.kobj,
733 dev_name(&init_node->dev));
734 if (ret)
735 goto err;
736
737 return 0;
738 err:
739 sysfs_remove_link_from_group(&initiator->dev.kobj, "targets",
740 dev_name(&targ_node->dev));
741 return ret;
742}
743
KAMEZAWA Hiroyuki76b67ed2006-06-27 02:53:41 -0700744int unregister_cpu_under_node(unsigned int cpu, unsigned int nid)
745{
Kay Sievers8a25a2f2011-12-21 14:29:42 -0800746 struct device *obj;
Alex Chiangb9d52da2009-12-14 17:59:07 -0800747
748 if (!node_online(nid))
749 return 0;
750
Kay Sievers8a25a2f2011-12-21 14:29:42 -0800751 obj = get_cpu_device(cpu);
Alex Chiangb9d52da2009-12-14 17:59:07 -0800752 if (!obj)
753 return 0;
754
Wen Congyang87327942012-12-11 16:00:56 -0800755 sysfs_remove_link(&node_devices[nid]->dev.kobj,
Alex Chiangb9d52da2009-12-14 17:59:07 -0800756 kobject_name(&obj->kobj));
Alex Chiang18307942009-12-14 17:59:08 -0800757 sysfs_remove_link(&obj->kobj,
Wen Congyang87327942012-12-11 16:00:56 -0800758 kobject_name(&node_devices[nid]->dev.kobj));
Alex Chiangb9d52da2009-12-14 17:59:07 -0800759
KAMEZAWA Hiroyuki76b67ed2006-06-27 02:53:41 -0700760 return 0;
761}
762
Gary Hadec04fc582009-01-06 14:39:14 -0800763#ifdef CONFIG_MEMORY_HOTPLUG_SPARSE
Fabian Frederickbd721ea2016-08-02 14:03:33 -0700764static int __ref get_nid_for_pfn(unsigned long pfn)
Gary Hadec04fc582009-01-06 14:39:14 -0800765{
Gary Hadec04fc582009-01-06 14:39:14 -0800766 if (!pfn_valid_within(pfn))
767 return -1;
Mel Gorman3a80a7f2015-06-30 14:57:02 -0700768#ifdef CONFIG_DEFERRED_STRUCT_PAGE_INIT
Thomas Gleixner8cdde382017-05-16 20:42:39 +0200769 if (system_state < SYSTEM_RUNNING)
Mel Gorman3a80a7f2015-06-30 14:57:02 -0700770 return early_pfn_to_nid(pfn);
771#endif
Gary Hadec04fc582009-01-06 14:39:14 -0800772 return pfn_to_nid(pfn);
773}
774
775/* register memory section under specified node if it spans that node */
David Hildenbrand8d595c42019-07-18 15:57:43 -0700776static int register_mem_sect_under_node(struct memory_block *mem_blk,
777 void *arg)
Gary Hadec04fc582009-01-06 14:39:14 -0800778{
David Hildenbrandb6c88d32019-09-23 15:35:49 -0700779 unsigned long memory_block_pfns = memory_block_size_bytes() / PAGE_SIZE;
780 unsigned long start_pfn = section_nr_to_pfn(mem_blk->start_section_nr);
781 unsigned long end_pfn = start_pfn + memory_block_pfns - 1;
Oscar Salvador4fbce632018-08-17 15:46:22 -0700782 int ret, nid = *(int *)arg;
David Hildenbrandb6c88d32019-09-23 15:35:49 -0700783 unsigned long pfn;
Gary Hadec04fc582009-01-06 14:39:14 -0800784
David Hildenbrandb6c88d32019-09-23 15:35:49 -0700785 for (pfn = start_pfn; pfn <= end_pfn; pfn++) {
Gary Hadec04fc582009-01-06 14:39:14 -0800786 int page_nid;
787
Yinghai Lu04697852015-09-04 15:42:39 -0700788 /*
789 * memory block could have several absent sections from start.
790 * skip pfn range from absent section
791 */
Pingfan Liue03d1f72020-04-01 21:09:27 -0700792 if (!pfn_in_present_section(pfn)) {
Yinghai Lu04697852015-09-04 15:42:39 -0700793 pfn = round_down(pfn + PAGES_PER_SECTION,
794 PAGES_PER_SECTION) - 1;
795 continue;
796 }
797
Pavel Tatashinfc44f7f2018-04-05 16:22:56 -0700798 /*
799 * We need to check if page belongs to nid only for the boot
800 * case, during hotplug we know that all pages in the memory
801 * block belong to the same node.
802 */
Oscar Salvador4fbce632018-08-17 15:46:22 -0700803 if (system_state == SYSTEM_BOOTING) {
Pavel Tatashinfc44f7f2018-04-05 16:22:56 -0700804 page_nid = get_nid_for_pfn(pfn);
805 if (page_nid < 0)
806 continue;
807 if (page_nid != nid)
808 continue;
809 }
David Hildenbrandd84f2f52019-09-23 15:35:40 -0700810
811 /*
812 * If this memory block spans multiple nodes, we only indicate
813 * the last processed node.
814 */
815 mem_blk->nid = nid;
816
Wen Congyang87327942012-12-11 16:00:56 -0800817 ret = sysfs_create_link_nowarn(&node_devices[nid]->dev.kobj,
Kay Sievers10fbcf42011-12-21 14:48:43 -0800818 &mem_blk->dev.kobj,
819 kobject_name(&mem_blk->dev.kobj));
Alex Chiangdee5d0d2009-12-14 17:59:05 -0800820 if (ret)
821 return ret;
822
Kay Sievers10fbcf42011-12-21 14:48:43 -0800823 return sysfs_create_link_nowarn(&mem_blk->dev.kobj,
Wen Congyang87327942012-12-11 16:00:56 -0800824 &node_devices[nid]->dev.kobj,
825 kobject_name(&node_devices[nid]->dev.kobj));
Gary Hadec04fc582009-01-06 14:39:14 -0800826 }
827 /* mem section does not span the specified node */
828 return 0;
829}
830
David Hildenbrand4c4b7f92019-07-18 15:57:06 -0700831/*
David Hildenbrandd84f2f52019-09-23 15:35:40 -0700832 * Unregister a memory block device under the node it spans. Memory blocks
833 * with multiple nodes cannot be offlined and therefore also never be removed.
David Hildenbrand4c4b7f92019-07-18 15:57:06 -0700834 */
David Hildenbranda31b2642019-07-18 15:57:12 -0700835void unregister_memory_block_under_nodes(struct memory_block *mem_blk)
Gary Hadec04fc582009-01-06 14:39:14 -0800836{
David Hildenbrandd84f2f52019-09-23 15:35:40 -0700837 if (mem_blk->nid == NUMA_NO_NODE)
838 return;
Gary Hadec04fc582009-01-06 14:39:14 -0800839
David Hildenbrandd84f2f52019-09-23 15:35:40 -0700840 sysfs_remove_link(&node_devices[mem_blk->nid]->dev.kobj,
841 kobject_name(&mem_blk->dev.kobj));
842 sysfs_remove_link(&mem_blk->dev.kobj,
843 kobject_name(&node_devices[mem_blk->nid]->dev.kobj));
Gary Hadec04fc582009-01-06 14:39:14 -0800844}
845
Oscar Salvador4fbce632018-08-17 15:46:22 -0700846int link_mem_sections(int nid, unsigned long start_pfn, unsigned long end_pfn)
Gary Hadec04fc582009-01-06 14:39:14 -0800847{
David Hildenbrandfbcf73c2019-07-18 15:57:46 -0700848 return walk_memory_blocks(PFN_PHYS(start_pfn),
849 PFN_PHYS(end_pfn - start_pfn), (void *)&nid,
850 register_mem_sect_under_node);
Gary Hadec04fc582009-01-06 14:39:14 -0800851}
Lee Schermerhorn4faf8d92009-12-14 17:58:35 -0800852
Lee Schermerhorn39da08c2009-12-14 17:58:36 -0800853#ifdef CONFIG_HUGETLBFS
Lee Schermerhorn4faf8d92009-12-14 17:58:35 -0800854/*
855 * Handle per node hstate attribute [un]registration on transistions
856 * to/from memoryless state.
857 */
Lee Schermerhorn39da08c2009-12-14 17:58:36 -0800858static void node_hugetlb_work(struct work_struct *work)
859{
860 struct node *node = container_of(work, struct node, node_work);
861
862 /*
863 * We only get here when a node transitions to/from memoryless state.
864 * We can detect which transition occurred by examining whether the
865 * node has memory now. hugetlb_register_node() already check this
866 * so we try to register the attributes. If that fails, then the
867 * node has transitioned to memoryless, try to unregister the
868 * attributes.
869 */
870 if (!hugetlb_register_node(node))
871 hugetlb_unregister_node(node);
872}
873
874static void init_node_hugetlb_work(int nid)
875{
Wen Congyang87327942012-12-11 16:00:56 -0800876 INIT_WORK(&node_devices[nid]->node_work, node_hugetlb_work);
Lee Schermerhorn39da08c2009-12-14 17:58:36 -0800877}
Lee Schermerhorn4faf8d92009-12-14 17:58:35 -0800878
879static int node_memory_callback(struct notifier_block *self,
880 unsigned long action, void *arg)
881{
882 struct memory_notify *mnb = arg;
883 int nid = mnb->status_change_nid;
884
885 switch (action) {
Lee Schermerhorn39da08c2009-12-14 17:58:36 -0800886 case MEM_ONLINE:
887 case MEM_OFFLINE:
888 /*
889 * offload per node hstate [un]registration to a work thread
890 * when transitioning to/from memoryless state.
891 */
Lee Schermerhorn4faf8d92009-12-14 17:58:35 -0800892 if (nid != NUMA_NO_NODE)
Wen Congyang87327942012-12-11 16:00:56 -0800893 schedule_work(&node_devices[nid]->node_work);
Lee Schermerhorn4faf8d92009-12-14 17:58:35 -0800894 break;
Lee Schermerhorn39da08c2009-12-14 17:58:36 -0800895
Lee Schermerhorn4faf8d92009-12-14 17:58:35 -0800896 case MEM_GOING_ONLINE:
897 case MEM_GOING_OFFLINE:
898 case MEM_CANCEL_ONLINE:
899 case MEM_CANCEL_OFFLINE:
900 default:
901 break;
902 }
903
904 return NOTIFY_OK;
905}
Lee Schermerhorn39da08c2009-12-14 17:58:36 -0800906#endif /* CONFIG_HUGETLBFS */
Michal Hocko9037a992017-07-06 15:37:49 -0700907#endif /* CONFIG_MEMORY_HOTPLUG_SPARSE */
Lee Schermerhorn39da08c2009-12-14 17:58:36 -0800908
909#if !defined(CONFIG_MEMORY_HOTPLUG_SPARSE) || \
910 !defined(CONFIG_HUGETLBFS)
Lee Schermerhorn4faf8d92009-12-14 17:58:35 -0800911static inline int node_memory_callback(struct notifier_block *self,
912 unsigned long action, void *arg)
913{
914 return NOTIFY_OK;
915}
Lee Schermerhorn39da08c2009-12-14 17:58:36 -0800916
917static void init_node_hugetlb_work(int nid) { }
918
919#endif
Gary Hadec04fc582009-01-06 14:39:14 -0800920
Michal Hocko9037a992017-07-06 15:37:49 -0700921int __register_one_node(int nid)
Yasunori Goto0fc44152006-06-27 02:53:38 -0700922{
Michal Hocko9037a992017-07-06 15:37:49 -0700923 int error;
KAMEZAWA Hiroyuki76b67ed2006-06-27 02:53:41 -0700924 int cpu;
Yasunori Goto0fc44152006-06-27 02:53:38 -0700925
Michal Hocko9037a992017-07-06 15:37:49 -0700926 node_devices[nid] = kzalloc(sizeof(struct node), GFP_KERNEL);
927 if (!node_devices[nid])
928 return -ENOMEM;
Yasunori Goto0fc44152006-06-27 02:53:38 -0700929
Dou Liyanga7be6e52017-07-10 15:49:20 -0700930 error = register_node(node_devices[nid], nid);
Wen Congyang87327942012-12-11 16:00:56 -0800931
Michal Hocko9037a992017-07-06 15:37:49 -0700932 /* link cpu under this node */
933 for_each_present_cpu(cpu) {
934 if (cpu_to_node(cpu) == nid)
935 register_cpu_under_node(cpu, nid);
Yasunori Goto0fc44152006-06-27 02:53:38 -0700936 }
937
Keith Busch08d9dbe2019-03-11 14:56:00 -0600938 INIT_LIST_HEAD(&node_devices[nid]->access_list);
Michal Hocko9037a992017-07-06 15:37:49 -0700939 /* initialize work queue for memory hot plug */
940 init_node_hugetlb_work(nid);
Keith Buschacc02a12019-03-11 14:56:02 -0600941 node_init_caches(nid);
Yasunori Goto0fc44152006-06-27 02:53:38 -0700942
Michal Hocko9037a992017-07-06 15:37:49 -0700943 return error;
Yasunori Goto0fc44152006-06-27 02:53:38 -0700944}
945
946void unregister_one_node(int nid)
947{
Xishi Qiu92d585e2014-03-06 17:18:21 +0800948 if (!node_devices[nid])
949 return;
950
Wen Congyang87327942012-12-11 16:00:56 -0800951 unregister_node(node_devices[nid]);
Wen Congyang87327942012-12-11 16:00:56 -0800952 node_devices[nid] = NULL;
Yasunori Goto0fc44152006-06-27 02:53:38 -0700953}
954
Lee Schermerhornbde631a2007-10-16 01:26:27 -0700955/*
956 * node states attributes
957 */
958
Andi Kleenb15f5622010-01-05 12:47:59 +0100959struct node_attr {
Kay Sievers10fbcf42011-12-21 14:48:43 -0800960 struct device_attribute attr;
Andi Kleenb15f5622010-01-05 12:47:59 +0100961 enum node_states state;
962};
963
Kay Sievers10fbcf42011-12-21 14:48:43 -0800964static ssize_t show_node_state(struct device *dev,
965 struct device_attribute *attr, char *buf)
Lee Schermerhornbde631a2007-10-16 01:26:27 -0700966{
Andi Kleenb15f5622010-01-05 12:47:59 +0100967 struct node_attr *na = container_of(attr, struct node_attr, attr);
Joe Perches948b3ed2020-09-16 13:40:42 -0700968
969 return sysfs_emit(buf, "%*pbl\n",
970 nodemask_pr_args(&node_states[na->state]));
Lee Schermerhornbde631a2007-10-16 01:26:27 -0700971}
972
Andi Kleenb15f5622010-01-05 12:47:59 +0100973#define _NODE_ATTR(name, state) \
Kay Sievers10fbcf42011-12-21 14:48:43 -0800974 { __ATTR(name, 0444, show_node_state, NULL), state }
Lee Schermerhornbde631a2007-10-16 01:26:27 -0700975
Andi Kleenb15f5622010-01-05 12:47:59 +0100976static struct node_attr node_state_attr[] = {
Lai Jiangshanfcf07d22012-12-11 16:03:13 -0800977 [N_POSSIBLE] = _NODE_ATTR(possible, N_POSSIBLE),
978 [N_ONLINE] = _NODE_ATTR(online, N_ONLINE),
979 [N_NORMAL_MEMORY] = _NODE_ATTR(has_normal_memory, N_NORMAL_MEMORY),
Lee Schermerhornbde631a2007-10-16 01:26:27 -0700980#ifdef CONFIG_HIGHMEM
Lai Jiangshanfcf07d22012-12-11 16:03:13 -0800981 [N_HIGH_MEMORY] = _NODE_ATTR(has_high_memory, N_HIGH_MEMORY),
Lee Schermerhornbde631a2007-10-16 01:26:27 -0700982#endif
Lai Jiangshan20b2f522012-12-12 13:52:00 -0800983 [N_MEMORY] = _NODE_ATTR(has_memory, N_MEMORY),
Lai Jiangshanfcf07d22012-12-11 16:03:13 -0800984 [N_CPU] = _NODE_ATTR(has_cpu, N_CPU),
Lee Schermerhornbde631a2007-10-16 01:26:27 -0700985};
986
Kay Sievers10fbcf42011-12-21 14:48:43 -0800987static struct attribute *node_state_attrs[] = {
Lai Jiangshanfcf07d22012-12-11 16:03:13 -0800988 &node_state_attr[N_POSSIBLE].attr.attr,
989 &node_state_attr[N_ONLINE].attr.attr,
990 &node_state_attr[N_NORMAL_MEMORY].attr.attr,
Andi Kleen3701cde2010-01-05 12:48:04 +0100991#ifdef CONFIG_HIGHMEM
Lai Jiangshanfcf07d22012-12-11 16:03:13 -0800992 &node_state_attr[N_HIGH_MEMORY].attr.attr,
Andi Kleen3701cde2010-01-05 12:48:04 +0100993#endif
Lai Jiangshan20b2f522012-12-12 13:52:00 -0800994 &node_state_attr[N_MEMORY].attr.attr,
Lai Jiangshanfcf07d22012-12-11 16:03:13 -0800995 &node_state_attr[N_CPU].attr.attr,
Andi Kleen3701cde2010-01-05 12:48:04 +0100996 NULL
997};
Lee Schermerhornbde631a2007-10-16 01:26:27 -0700998
Kay Sievers10fbcf42011-12-21 14:48:43 -0800999static struct attribute_group memory_root_attr_group = {
1000 .attrs = node_state_attrs,
1001};
1002
1003static const struct attribute_group *cpu_root_attr_groups[] = {
1004 &memory_root_attr_group,
1005 NULL,
1006};
1007
Lee Schermerhorn4faf8d92009-12-14 17:58:35 -08001008#define NODE_CALLBACK_PRI 2 /* lower than SLAB */
Keiichiro Tokunaga4b450992005-05-08 21:28:53 +09001009static int __init register_node_type(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001010{
Lee Schermerhornbde631a2007-10-16 01:26:27 -07001011 int ret;
1012
Andi Kleen3701cde2010-01-05 12:48:04 +01001013 BUILD_BUG_ON(ARRAY_SIZE(node_state_attr) != NR_NODE_STATES);
1014 BUILD_BUG_ON(ARRAY_SIZE(node_state_attrs)-1 != NR_NODE_STATES);
1015
Kay Sievers10fbcf42011-12-21 14:48:43 -08001016 ret = subsys_system_register(&node_subsys, cpu_root_attr_groups);
Lee Schermerhorn4faf8d92009-12-14 17:58:35 -08001017 if (!ret) {
Andrew Morton6e259e72013-04-29 15:08:07 -07001018 static struct notifier_block node_memory_callback_nb = {
1019 .notifier_call = node_memory_callback,
1020 .priority = NODE_CALLBACK_PRI,
1021 };
1022 register_hotmemory_notifier(&node_memory_callback_nb);
Lee Schermerhorn4faf8d92009-12-14 17:58:35 -08001023 }
Lee Schermerhornbde631a2007-10-16 01:26:27 -07001024
1025 /*
1026 * Note: we're not going to unregister the node class if we fail
1027 * to register the node state class attribute files.
1028 */
1029 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001030}
1031postcore_initcall(register_node_type);