blob: f449dbb2c74666a83caabb55b39e8c9de31a622c [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} \
Joe Perches6284a6e2020-09-16 13:40:45 -0700168static DEVICE_ATTR_RO(name)
Keith Busche1cf33a2019-03-11 14:56:01 -0600169
Joe Perches6284a6e2020-09-16 13:40:45 -0700170ACCESS_ATTR(read_bandwidth);
171ACCESS_ATTR(read_latency);
172ACCESS_ATTR(write_bandwidth);
173ACCESS_ATTR(write_latency);
Keith Busche1cf33a2019-03-11 14:56:01 -0600174
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;
Shakeel Buttb6038942021-02-24 12:03:55 -0800375 unsigned long swapcached = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376
377 si_meminfo_node(&i, nid);
Roman Gushchind42f3242020-08-06 23:20:39 -0700378 sreclaimable = node_page_state_pages(pgdat, NR_SLAB_RECLAIMABLE_B);
379 sunreclaimable = node_page_state_pages(pgdat, NR_SLAB_UNRECLAIMABLE_B);
Shakeel Buttb6038942021-02-24 12:03:55 -0800380#ifdef CONFIG_SWAP
381 swapcached = node_page_state_pages(pgdat, NR_SWAPCACHE);
382#endif
Joe Perches948b3ed2020-09-16 13:40:42 -0700383 len = sysfs_emit_at(buf, len,
384 "Node %d MemTotal: %8lu kB\n"
385 "Node %d MemFree: %8lu kB\n"
386 "Node %d MemUsed: %8lu kB\n"
Shakeel Buttb6038942021-02-24 12:03:55 -0800387 "Node %d SwapCached: %8lu kB\n"
Joe Perches948b3ed2020-09-16 13:40:42 -0700388 "Node %d Active: %8lu kB\n"
389 "Node %d Inactive: %8lu kB\n"
390 "Node %d Active(anon): %8lu kB\n"
391 "Node %d Inactive(anon): %8lu kB\n"
392 "Node %d Active(file): %8lu kB\n"
393 "Node %d Inactive(file): %8lu kB\n"
394 "Node %d Unevictable: %8lu kB\n"
395 "Node %d Mlocked: %8lu kB\n",
396 nid, K(i.totalram),
397 nid, K(i.freeram),
398 nid, K(i.totalram - i.freeram),
Shakeel Buttb6038942021-02-24 12:03:55 -0800399 nid, K(swapcached),
Joe Perches948b3ed2020-09-16 13:40:42 -0700400 nid, K(node_page_state(pgdat, NR_ACTIVE_ANON) +
401 node_page_state(pgdat, NR_ACTIVE_FILE)),
402 nid, K(node_page_state(pgdat, NR_INACTIVE_ANON) +
403 node_page_state(pgdat, NR_INACTIVE_FILE)),
404 nid, K(node_page_state(pgdat, NR_ACTIVE_ANON)),
405 nid, K(node_page_state(pgdat, NR_INACTIVE_ANON)),
406 nid, K(node_page_state(pgdat, NR_ACTIVE_FILE)),
407 nid, K(node_page_state(pgdat, NR_INACTIVE_FILE)),
408 nid, K(node_page_state(pgdat, NR_UNEVICTABLE)),
409 nid, K(sum_zone_node_page_state(nid, NR_MLOCK)));
KOSAKI Motohiro7ee92252010-08-09 17:19:50 -0700410
Christoph Lameter182e8e22006-09-25 23:31:10 -0700411#ifdef CONFIG_HIGHMEM
Joe Perches948b3ed2020-09-16 13:40:42 -0700412 len += sysfs_emit_at(buf, len,
413 "Node %d HighTotal: %8lu kB\n"
414 "Node %d HighFree: %8lu kB\n"
415 "Node %d LowTotal: %8lu kB\n"
416 "Node %d LowFree: %8lu kB\n",
417 nid, K(i.totalhigh),
418 nid, K(i.freehigh),
419 nid, K(i.totalram - i.totalhigh),
420 nid, K(i.freeram - i.freehigh));
Christoph Lameter182e8e22006-09-25 23:31:10 -0700421#endif
Joe Perches948b3ed2020-09-16 13:40:42 -0700422 len += sysfs_emit_at(buf, len,
423 "Node %d Dirty: %8lu kB\n"
424 "Node %d Writeback: %8lu kB\n"
425 "Node %d FilePages: %8lu kB\n"
426 "Node %d Mapped: %8lu kB\n"
427 "Node %d AnonPages: %8lu kB\n"
428 "Node %d Shmem: %8lu kB\n"
429 "Node %d KernelStack: %8lu kB\n"
Sami Tolvanen628d06a2020-04-27 09:00:08 -0700430#ifdef CONFIG_SHADOW_CALL_STACK
Joe Perches948b3ed2020-09-16 13:40:42 -0700431 "Node %d ShadowCallStack:%8lu kB\n"
Sami Tolvanen628d06a2020-04-27 09:00:08 -0700432#endif
Joe Perches948b3ed2020-09-16 13:40:42 -0700433 "Node %d PageTables: %8lu kB\n"
434 "Node %d NFS_Unstable: %8lu kB\n"
435 "Node %d Bounce: %8lu kB\n"
436 "Node %d WritebackTmp: %8lu kB\n"
437 "Node %d KReclaimable: %8lu kB\n"
438 "Node %d Slab: %8lu kB\n"
439 "Node %d SReclaimable: %8lu kB\n"
440 "Node %d SUnreclaim: %8lu kB\n"
David Rientjes05b258e2011-01-13 15:47:14 -0800441#ifdef CONFIG_TRANSPARENT_HUGEPAGE
Joe Perches948b3ed2020-09-16 13:40:42 -0700442 "Node %d AnonHugePages: %8lu kB\n"
443 "Node %d ShmemHugePages: %8lu kB\n"
444 "Node %d ShmemPmdMapped: %8lu kB\n"
445 "Node %d FileHugePages: %8lu kB\n"
446 "Node %d FilePmdMapped: %8lu kB\n"
David Rientjes05b258e2011-01-13 15:47:14 -0800447#endif
Joe Perches948b3ed2020-09-16 13:40:42 -0700448 ,
449 nid, K(node_page_state(pgdat, NR_FILE_DIRTY)),
450 nid, K(node_page_state(pgdat, NR_WRITEBACK)),
451 nid, K(node_page_state(pgdat, NR_FILE_PAGES)),
452 nid, K(node_page_state(pgdat, NR_FILE_MAPPED)),
453 nid, K(node_page_state(pgdat, NR_ANON_MAPPED)),
454 nid, K(i.sharedram),
455 nid, node_page_state(pgdat, NR_KERNEL_STACK_KB),
Sami Tolvanen628d06a2020-04-27 09:00:08 -0700456#ifdef CONFIG_SHADOW_CALL_STACK
Joe Perches948b3ed2020-09-16 13:40:42 -0700457 nid, node_page_state(pgdat, NR_KERNEL_SCS_KB),
Sami Tolvanen628d06a2020-04-27 09:00:08 -0700458#endif
Shakeel Buttf0c0c112020-12-14 19:07:17 -0800459 nid, K(node_page_state(pgdat, NR_PAGETABLE)),
Joe Perches948b3ed2020-09-16 13:40:42 -0700460 nid, 0UL,
461 nid, K(sum_zone_node_page_state(nid, NR_BOUNCE)),
462 nid, K(node_page_state(pgdat, NR_WRITEBACK_TEMP)),
463 nid, K(sreclaimable +
464 node_page_state(pgdat, NR_KERNEL_MISC_RECLAIMABLE)),
465 nid, K(sreclaimable + sunreclaimable),
466 nid, K(sreclaimable),
467 nid, K(sunreclaimable)
David Rientjes05b258e2011-01-13 15:47:14 -0800468#ifdef CONFIG_TRANSPARENT_HUGEPAGE
Joe Perches948b3ed2020-09-16 13:40:42 -0700469 ,
Muchun Song69473e52021-02-24 12:03:23 -0800470 nid, K(node_page_state(pgdat, NR_ANON_THPS)),
Muchun Song57b28472021-02-24 12:03:31 -0800471 nid, K(node_page_state(pgdat, NR_SHMEM_THPS)),
Muchun Songa1528e22021-02-24 12:03:35 -0800472 nid, K(node_page_state(pgdat, NR_SHMEM_PMDMAPPED)),
Muchun Songbf9ecea2021-02-24 12:03:27 -0800473 nid, K(node_page_state(pgdat, NR_FILE_THPS)),
Muchun Song380780e2021-02-24 12:03:39 -0800474 nid, K(node_page_state(pgdat, NR_FILE_PMDMAPPED))
David Rientjes05b258e2011-01-13 15:47:14 -0800475#endif
Joe Perches948b3ed2020-09-16 13:40:42 -0700476 );
Joe Perches79815932020-09-16 13:40:43 -0700477 len += hugetlb_report_node_meminfo(buf, len, nid);
Joe Perches948b3ed2020-09-16 13:40:42 -0700478 return len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479}
480
481#undef K
Joe Perches948b3ed2020-09-16 13:40:42 -0700482static DEVICE_ATTR(meminfo, 0444, node_read_meminfo, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483
Kay Sievers10fbcf42011-12-21 14:48:43 -0800484static ssize_t node_read_numastat(struct device *dev,
Joe Perches948b3ed2020-09-16 13:40:42 -0700485 struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486{
Joe Perchesaa838892020-09-16 13:40:39 -0700487 return sysfs_emit(buf,
488 "numa_hit %lu\n"
489 "numa_miss %lu\n"
490 "numa_foreign %lu\n"
491 "interleave_hit %lu\n"
492 "local_node %lu\n"
493 "other_node %lu\n",
494 sum_zone_numa_state(dev->id, NUMA_HIT),
495 sum_zone_numa_state(dev->id, NUMA_MISS),
496 sum_zone_numa_state(dev->id, NUMA_FOREIGN),
497 sum_zone_numa_state(dev->id, NUMA_INTERLEAVE_HIT),
498 sum_zone_numa_state(dev->id, NUMA_LOCAL),
499 sum_zone_numa_state(dev->id, NUMA_OTHER));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500}
Joe Perches948b3ed2020-09-16 13:40:42 -0700501static DEVICE_ATTR(numastat, 0444, node_read_numastat, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502
Kay Sievers10fbcf42011-12-21 14:48:43 -0800503static ssize_t node_read_vmstat(struct device *dev,
504 struct device_attribute *attr, char *buf)
Michael Rubin2ac39032010-10-26 14:21:35 -0700505{
506 int nid = dev->id;
Mel Gorman75ef7182016-07-28 15:45:24 -0700507 struct pglist_data *pgdat = NODE_DATA(nid);
KOSAKI Motohirofa25c502011-05-24 17:11:28 -0700508 int i;
Joe Perches948b3ed2020-09-16 13:40:42 -0700509 int len = 0;
KOSAKI Motohirofa25c502011-05-24 17:11:28 -0700510
511 for (i = 0; i < NR_VM_ZONE_STAT_ITEMS; i++)
Joe Perches948b3ed2020-09-16 13:40:42 -0700512 len += sysfs_emit_at(buf, len, "%s %lu\n",
513 zone_stat_name(i),
514 sum_zone_node_page_state(nid, i));
Mel Gorman75ef7182016-07-28 15:45:24 -0700515
Kemi Wang3a321d22017-09-08 16:12:48 -0700516#ifdef CONFIG_NUMA
517 for (i = 0; i < NR_VM_NUMA_STAT_ITEMS; i++)
Joe Perches948b3ed2020-09-16 13:40:42 -0700518 len += sysfs_emit_at(buf, len, "%s %lu\n",
519 numa_stat_name(i),
520 sum_zone_numa_state(nid, i));
521
Kemi Wang3a321d22017-09-08 16:12:48 -0700522#endif
Muchun Song69473e52021-02-24 12:03:23 -0800523 for (i = 0; i < NR_VM_NODE_STAT_ITEMS; i++) {
524 unsigned long pages = node_page_state_pages(pgdat, i);
525
526 if (vmstat_item_print_in_thp(i))
527 pages /= HPAGE_PMD_NR;
528 len += sysfs_emit_at(buf, len, "%s %lu\n", node_stat_name(i),
529 pages);
530 }
KOSAKI Motohirofa25c502011-05-24 17:11:28 -0700531
Joe Perches948b3ed2020-09-16 13:40:42 -0700532 return len;
Michael Rubin2ac39032010-10-26 14:21:35 -0700533}
Joe Perches948b3ed2020-09-16 13:40:42 -0700534static DEVICE_ATTR(vmstat, 0444, node_read_vmstat, NULL);
Michael Rubin2ac39032010-10-26 14:21:35 -0700535
Kay Sievers10fbcf42011-12-21 14:48:43 -0800536static ssize_t node_read_distance(struct device *dev,
Joe Perches948b3ed2020-09-16 13:40:42 -0700537 struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538{
539 int nid = dev->id;
540 int len = 0;
541 int i;
542
David Rientjes12ee3c02010-03-10 14:50:21 -0800543 /*
544 * buf is currently PAGE_SIZE in length and each node needs 4 chars
545 * at the most (distance + space or newline).
546 */
547 BUILD_BUG_ON(MAX_NUMNODES * 4 > PAGE_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548
Joe Perches948b3ed2020-09-16 13:40:42 -0700549 for_each_online_node(i) {
550 len += sysfs_emit_at(buf, len, "%s%d",
551 i ? " " : "", node_distance(nid, i));
552 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553
Joe Perches948b3ed2020-09-16 13:40:42 -0700554 len += sysfs_emit_at(buf, len, "\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555 return len;
556}
Joe Perches948b3ed2020-09-16 13:40:42 -0700557static DEVICE_ATTR(distance, 0444, node_read_distance, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558
Takashi Iwai3c9b8aa2015-01-29 12:29:22 +0100559static struct attribute *node_dev_attrs[] = {
560 &dev_attr_cpumap.attr,
561 &dev_attr_cpulist.attr,
562 &dev_attr_meminfo.attr,
563 &dev_attr_numastat.attr,
564 &dev_attr_distance.attr,
565 &dev_attr_vmstat.attr,
566 NULL
567};
Greg Kroah-Hartman7ca7ec42015-03-25 13:47:17 +0100568ATTRIBUTE_GROUPS(node_dev);
Takashi Iwai3c9b8aa2015-01-29 12:29:22 +0100569
Lee Schermerhorn9a3052302009-12-14 17:58:25 -0800570#ifdef CONFIG_HUGETLBFS
571/*
572 * hugetlbfs per node attributes registration interface:
573 * When/if hugetlb[fs] subsystem initializes [sometime after this module],
Lee Schermerhorn4faf8d92009-12-14 17:58:35 -0800574 * it will register its per node attributes for all online nodes with
575 * memory. It will also call register_hugetlbfs_with_node(), below, to
Lee Schermerhorn9a3052302009-12-14 17:58:25 -0800576 * register its attribute registration functions with this node driver.
577 * Once these hooks have been initialized, the node driver will call into
578 * the hugetlb module to [un]register attributes for hot-plugged nodes.
579 */
580static node_registration_func_t __hugetlb_register_node;
581static node_registration_func_t __hugetlb_unregister_node;
582
Lee Schermerhorn39da08c2009-12-14 17:58:36 -0800583static inline bool hugetlb_register_node(struct node *node)
Lee Schermerhorn9a3052302009-12-14 17:58:25 -0800584{
Lee Schermerhorn4faf8d92009-12-14 17:58:35 -0800585 if (__hugetlb_register_node &&
Lai Jiangshan8cebfcd2012-12-12 13:51:36 -0800586 node_state(node->dev.id, N_MEMORY)) {
Lee Schermerhorn9a3052302009-12-14 17:58:25 -0800587 __hugetlb_register_node(node);
Lee Schermerhorn39da08c2009-12-14 17:58:36 -0800588 return true;
589 }
590 return false;
Lee Schermerhorn9a3052302009-12-14 17:58:25 -0800591}
592
593static inline void hugetlb_unregister_node(struct node *node)
594{
595 if (__hugetlb_unregister_node)
596 __hugetlb_unregister_node(node);
597}
598
599void register_hugetlbfs_with_node(node_registration_func_t doregister,
600 node_registration_func_t unregister)
601{
602 __hugetlb_register_node = doregister;
603 __hugetlb_unregister_node = unregister;
604}
605#else
606static inline void hugetlb_register_node(struct node *node) {}
607
608static inline void hugetlb_unregister_node(struct node *node) {}
609#endif
610
Yasuaki Ishimatsu8c7b5b42012-12-11 16:00:57 -0800611static void node_device_release(struct device *dev)
612{
613 struct node *node = to_node(dev);
614
615#if defined(CONFIG_MEMORY_HOTPLUG_SPARSE) && defined(CONFIG_HUGETLBFS)
616 /*
617 * We schedule the work only when a memory section is
618 * onlined/offlined on this node. When we come here,
619 * all the memory on this node has been offlined,
620 * so we won't enqueue new work to this work.
621 *
622 * The work is using node->node_work, so we should
623 * flush work before freeing the memory.
624 */
625 flush_work(&node->node_work);
626#endif
627 kfree(node);
628}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629
630/*
Robert P. J. Day405ae7d2007-02-17 19:13:42 +0100631 * register_node - Setup a sysfs device for a node.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632 * @num - Node number to use when creating the device.
633 *
634 * Initialize and register the node device.
635 */
Dou Liyanga7be6e52017-07-10 15:49:20 -0700636static int register_node(struct node *node, int num)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637{
638 int error;
639
Kay Sievers10fbcf42011-12-21 14:48:43 -0800640 node->dev.id = num;
641 node->dev.bus = &node_subsys;
Yasuaki Ishimatsu8c7b5b42012-12-11 16:00:57 -0800642 node->dev.release = node_device_release;
Greg Kroah-Hartman7ca7ec42015-03-25 13:47:17 +0100643 node->dev.groups = node_dev_groups;
Kay Sievers10fbcf42011-12-21 14:48:43 -0800644 error = device_register(&node->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645
Arvind Yadavc1cc0d52018-03-11 11:25:50 +0530646 if (error)
647 put_device(&node->dev);
648 else {
Lee Schermerhorn9a3052302009-12-14 17:58:25 -0800649 hugetlb_register_node(node);
Mel Gormaned4a6d72010-05-24 14:32:29 -0700650
651 compaction_register_node(node);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652 }
653 return error;
654}
655
Keiichiro Tokunaga4b450992005-05-08 21:28:53 +0900656/**
657 * unregister_node - unregister a node device
658 * @node: node going away
659 *
660 * Unregisters a node device @node. All the devices on the node must be
661 * unregistered before calling this function.
662 */
663void unregister_node(struct node *node)
664{
Lee Schermerhorn4faf8d92009-12-14 17:58:35 -0800665 hugetlb_unregister_node(node); /* no-op, if memoryless node */
Keith Busch08d9dbe2019-03-11 14:56:00 -0600666 node_remove_accesses(node);
Keith Buschacc02a12019-03-11 14:56:02 -0600667 node_remove_caches(node);
Kay Sievers10fbcf42011-12-21 14:48:43 -0800668 device_unregister(&node->dev);
Keiichiro Tokunaga4b450992005-05-08 21:28:53 +0900669}
670
Wen Congyang87327942012-12-11 16:00:56 -0800671struct node *node_devices[MAX_NUMNODES];
Yasunori Goto0fc44152006-06-27 02:53:38 -0700672
KAMEZAWA Hiroyuki76b67ed2006-06-27 02:53:41 -0700673/*
674 * register cpu under node
675 */
676int register_cpu_under_node(unsigned int cpu, unsigned int nid)
677{
Alex Chiang18307942009-12-14 17:59:08 -0800678 int ret;
Kay Sievers8a25a2f2011-12-21 14:29:42 -0800679 struct device *obj;
KAMEZAWA Hiroyuki76b67ed2006-06-27 02:53:41 -0700680
Alex Chiangf8246f32009-12-14 17:59:06 -0800681 if (!node_online(nid))
682 return 0;
683
Kay Sievers8a25a2f2011-12-21 14:29:42 -0800684 obj = get_cpu_device(cpu);
Alex Chiangf8246f32009-12-14 17:59:06 -0800685 if (!obj)
686 return 0;
687
Wen Congyang87327942012-12-11 16:00:56 -0800688 ret = sysfs_create_link(&node_devices[nid]->dev.kobj,
Alex Chiangf8246f32009-12-14 17:59:06 -0800689 &obj->kobj,
690 kobject_name(&obj->kobj));
Alex Chiang18307942009-12-14 17:59:08 -0800691 if (ret)
692 return ret;
693
694 return sysfs_create_link(&obj->kobj,
Wen Congyang87327942012-12-11 16:00:56 -0800695 &node_devices[nid]->dev.kobj,
696 kobject_name(&node_devices[nid]->dev.kobj));
KAMEZAWA Hiroyuki76b67ed2006-06-27 02:53:41 -0700697}
698
Keith Busch08d9dbe2019-03-11 14:56:00 -0600699/**
700 * register_memory_node_under_compute_node - link memory node to its compute
701 * node for a given access class.
Mauro Carvalho Chehab58cb3462019-06-18 15:55:12 -0300702 * @mem_nid: Memory node number
703 * @cpu_nid: Cpu node number
Keith Busch08d9dbe2019-03-11 14:56:00 -0600704 * @access: Access class to register
705 *
706 * Description:
707 * For use with platforms that may have separate memory and compute nodes.
708 * This function will export node relationships linking which memory
709 * initiator nodes can access memory targets at a given ranked access
710 * class.
711 */
712int register_memory_node_under_compute_node(unsigned int mem_nid,
713 unsigned int cpu_nid,
714 unsigned access)
715{
716 struct node *init_node, *targ_node;
717 struct node_access_nodes *initiator, *target;
718 int ret;
719
720 if (!node_online(cpu_nid) || !node_online(mem_nid))
721 return -ENODEV;
722
723 init_node = node_devices[cpu_nid];
724 targ_node = node_devices[mem_nid];
725 initiator = node_init_node_access(init_node, access);
726 target = node_init_node_access(targ_node, access);
727 if (!initiator || !target)
728 return -ENOMEM;
729
730 ret = sysfs_add_link_to_group(&initiator->dev.kobj, "targets",
731 &targ_node->dev.kobj,
732 dev_name(&targ_node->dev));
733 if (ret)
734 return ret;
735
736 ret = sysfs_add_link_to_group(&target->dev.kobj, "initiators",
737 &init_node->dev.kobj,
738 dev_name(&init_node->dev));
739 if (ret)
740 goto err;
741
742 return 0;
743 err:
744 sysfs_remove_link_from_group(&initiator->dev.kobj, "targets",
745 dev_name(&targ_node->dev));
746 return ret;
747}
748
KAMEZAWA Hiroyuki76b67ed2006-06-27 02:53:41 -0700749int unregister_cpu_under_node(unsigned int cpu, unsigned int nid)
750{
Kay Sievers8a25a2f2011-12-21 14:29:42 -0800751 struct device *obj;
Alex Chiangb9d52da2009-12-14 17:59:07 -0800752
753 if (!node_online(nid))
754 return 0;
755
Kay Sievers8a25a2f2011-12-21 14:29:42 -0800756 obj = get_cpu_device(cpu);
Alex Chiangb9d52da2009-12-14 17:59:07 -0800757 if (!obj)
758 return 0;
759
Wen Congyang87327942012-12-11 16:00:56 -0800760 sysfs_remove_link(&node_devices[nid]->dev.kobj,
Alex Chiangb9d52da2009-12-14 17:59:07 -0800761 kobject_name(&obj->kobj));
Alex Chiang18307942009-12-14 17:59:08 -0800762 sysfs_remove_link(&obj->kobj,
Wen Congyang87327942012-12-11 16:00:56 -0800763 kobject_name(&node_devices[nid]->dev.kobj));
Alex Chiangb9d52da2009-12-14 17:59:07 -0800764
KAMEZAWA Hiroyuki76b67ed2006-06-27 02:53:41 -0700765 return 0;
766}
767
Gary Hadec04fc582009-01-06 14:39:14 -0800768#ifdef CONFIG_MEMORY_HOTPLUG_SPARSE
Fabian Frederickbd721ea2016-08-02 14:03:33 -0700769static int __ref get_nid_for_pfn(unsigned long pfn)
Gary Hadec04fc582009-01-06 14:39:14 -0800770{
Gary Hadec04fc582009-01-06 14:39:14 -0800771 if (!pfn_valid_within(pfn))
772 return -1;
Mel Gorman3a80a7f2015-06-30 14:57:02 -0700773#ifdef CONFIG_DEFERRED_STRUCT_PAGE_INIT
Thomas Gleixner8cdde382017-05-16 20:42:39 +0200774 if (system_state < SYSTEM_RUNNING)
Mel Gorman3a80a7f2015-06-30 14:57:02 -0700775 return early_pfn_to_nid(pfn);
776#endif
Gary Hadec04fc582009-01-06 14:39:14 -0800777 return pfn_to_nid(pfn);
778}
779
Laurent Dufour90c7eae2020-10-15 20:09:15 -0700780static void do_register_memory_block_under_node(int nid,
781 struct memory_block *mem_blk)
Laurent Dufourf85086f2020-09-25 21:19:31 -0700782{
783 int ret;
784
785 /*
786 * If this memory block spans multiple nodes, we only indicate
787 * the last processed node.
788 */
789 mem_blk->nid = nid;
790
791 ret = sysfs_create_link_nowarn(&node_devices[nid]->dev.kobj,
792 &mem_blk->dev.kobj,
793 kobject_name(&mem_blk->dev.kobj));
Laurent Dufour90c7eae2020-10-15 20:09:15 -0700794 if (ret && ret != -EEXIST)
795 dev_err_ratelimited(&node_devices[nid]->dev,
796 "can't create link to %s in sysfs (%d)\n",
797 kobject_name(&mem_blk->dev.kobj), ret);
Laurent Dufourf85086f2020-09-25 21:19:31 -0700798
Laurent Dufour90c7eae2020-10-15 20:09:15 -0700799 ret = sysfs_create_link_nowarn(&mem_blk->dev.kobj,
Laurent Dufourf85086f2020-09-25 21:19:31 -0700800 &node_devices[nid]->dev.kobj,
801 kobject_name(&node_devices[nid]->dev.kobj));
Laurent Dufour90c7eae2020-10-15 20:09:15 -0700802 if (ret && ret != -EEXIST)
803 dev_err_ratelimited(&mem_blk->dev,
804 "can't create link to %s in sysfs (%d)\n",
805 kobject_name(&node_devices[nid]->dev.kobj),
806 ret);
Laurent Dufourf85086f2020-09-25 21:19:31 -0700807}
808
Gary Hadec04fc582009-01-06 14:39:14 -0800809/* register memory section under specified node if it spans that node */
Laurent Dufourf85086f2020-09-25 21:19:31 -0700810static int register_mem_block_under_node_early(struct memory_block *mem_blk,
811 void *arg)
Gary Hadec04fc582009-01-06 14:39:14 -0800812{
David Hildenbrandb6c88d32019-09-23 15:35:49 -0700813 unsigned long memory_block_pfns = memory_block_size_bytes() / PAGE_SIZE;
814 unsigned long start_pfn = section_nr_to_pfn(mem_blk->start_section_nr);
815 unsigned long end_pfn = start_pfn + memory_block_pfns - 1;
Laurent Dufourf85086f2020-09-25 21:19:31 -0700816 int nid = *(int *)arg;
David Hildenbrandb6c88d32019-09-23 15:35:49 -0700817 unsigned long pfn;
Gary Hadec04fc582009-01-06 14:39:14 -0800818
David Hildenbrandb6c88d32019-09-23 15:35:49 -0700819 for (pfn = start_pfn; pfn <= end_pfn; pfn++) {
Gary Hadec04fc582009-01-06 14:39:14 -0800820 int page_nid;
821
Yinghai Lu04697852015-09-04 15:42:39 -0700822 /*
823 * memory block could have several absent sections from start.
824 * skip pfn range from absent section
825 */
Pingfan Liue03d1f72020-04-01 21:09:27 -0700826 if (!pfn_in_present_section(pfn)) {
Yinghai Lu04697852015-09-04 15:42:39 -0700827 pfn = round_down(pfn + PAGES_PER_SECTION,
828 PAGES_PER_SECTION) - 1;
829 continue;
830 }
831
Pavel Tatashinfc44f7f2018-04-05 16:22:56 -0700832 /*
Laurent Dufourf85086f2020-09-25 21:19:31 -0700833 * We need to check if page belongs to nid only at the boot
834 * case because node's ranges can be interleaved.
Pavel Tatashinfc44f7f2018-04-05 16:22:56 -0700835 */
Laurent Dufourf85086f2020-09-25 21:19:31 -0700836 page_nid = get_nid_for_pfn(pfn);
837 if (page_nid < 0)
838 continue;
839 if (page_nid != nid)
840 continue;
David Hildenbrandd84f2f52019-09-23 15:35:40 -0700841
Laurent Dufour90c7eae2020-10-15 20:09:15 -0700842 do_register_memory_block_under_node(nid, mem_blk);
843 return 0;
Gary Hadec04fc582009-01-06 14:39:14 -0800844 }
845 /* mem section does not span the specified node */
846 return 0;
847}
848
David Hildenbrand4c4b7f92019-07-18 15:57:06 -0700849/*
Laurent Dufourf85086f2020-09-25 21:19:31 -0700850 * During hotplug we know that all pages in the memory block belong to the same
851 * node.
852 */
853static int register_mem_block_under_node_hotplug(struct memory_block *mem_blk,
854 void *arg)
855{
856 int nid = *(int *)arg;
857
Laurent Dufour90c7eae2020-10-15 20:09:15 -0700858 do_register_memory_block_under_node(nid, mem_blk);
859 return 0;
Laurent Dufourf85086f2020-09-25 21:19:31 -0700860}
861
862/*
David Hildenbrandd84f2f52019-09-23 15:35:40 -0700863 * Unregister a memory block device under the node it spans. Memory blocks
864 * with multiple nodes cannot be offlined and therefore also never be removed.
David Hildenbrand4c4b7f92019-07-18 15:57:06 -0700865 */
David Hildenbranda31b2642019-07-18 15:57:12 -0700866void unregister_memory_block_under_nodes(struct memory_block *mem_blk)
Gary Hadec04fc582009-01-06 14:39:14 -0800867{
David Hildenbrandd84f2f52019-09-23 15:35:40 -0700868 if (mem_blk->nid == NUMA_NO_NODE)
869 return;
Gary Hadec04fc582009-01-06 14:39:14 -0800870
David Hildenbrandd84f2f52019-09-23 15:35:40 -0700871 sysfs_remove_link(&node_devices[mem_blk->nid]->dev.kobj,
872 kobject_name(&mem_blk->dev.kobj));
873 sysfs_remove_link(&mem_blk->dev.kobj,
874 kobject_name(&node_devices[mem_blk->nid]->dev.kobj));
Gary Hadec04fc582009-01-06 14:39:14 -0800875}
876
Laurent Dufour90c7eae2020-10-15 20:09:15 -0700877void link_mem_sections(int nid, unsigned long start_pfn, unsigned long end_pfn,
878 enum meminit_context context)
Gary Hadec04fc582009-01-06 14:39:14 -0800879{
Laurent Dufourf85086f2020-09-25 21:19:31 -0700880 walk_memory_blocks_func_t func;
881
882 if (context == MEMINIT_HOTPLUG)
883 func = register_mem_block_under_node_hotplug;
884 else
885 func = register_mem_block_under_node_early;
886
Laurent Dufour90c7eae2020-10-15 20:09:15 -0700887 walk_memory_blocks(PFN_PHYS(start_pfn), PFN_PHYS(end_pfn - start_pfn),
888 (void *)&nid, func);
889 return;
Gary Hadec04fc582009-01-06 14:39:14 -0800890}
Lee Schermerhorn4faf8d92009-12-14 17:58:35 -0800891
Lee Schermerhorn39da08c2009-12-14 17:58:36 -0800892#ifdef CONFIG_HUGETLBFS
Lee Schermerhorn4faf8d92009-12-14 17:58:35 -0800893/*
894 * Handle per node hstate attribute [un]registration on transistions
895 * to/from memoryless state.
896 */
Lee Schermerhorn39da08c2009-12-14 17:58:36 -0800897static void node_hugetlb_work(struct work_struct *work)
898{
899 struct node *node = container_of(work, struct node, node_work);
900
901 /*
902 * We only get here when a node transitions to/from memoryless state.
903 * We can detect which transition occurred by examining whether the
904 * node has memory now. hugetlb_register_node() already check this
905 * so we try to register the attributes. If that fails, then the
906 * node has transitioned to memoryless, try to unregister the
907 * attributes.
908 */
909 if (!hugetlb_register_node(node))
910 hugetlb_unregister_node(node);
911}
912
913static void init_node_hugetlb_work(int nid)
914{
Wen Congyang87327942012-12-11 16:00:56 -0800915 INIT_WORK(&node_devices[nid]->node_work, node_hugetlb_work);
Lee Schermerhorn39da08c2009-12-14 17:58:36 -0800916}
Lee Schermerhorn4faf8d92009-12-14 17:58:35 -0800917
918static int node_memory_callback(struct notifier_block *self,
919 unsigned long action, void *arg)
920{
921 struct memory_notify *mnb = arg;
922 int nid = mnb->status_change_nid;
923
924 switch (action) {
Lee Schermerhorn39da08c2009-12-14 17:58:36 -0800925 case MEM_ONLINE:
926 case MEM_OFFLINE:
927 /*
928 * offload per node hstate [un]registration to a work thread
929 * when transitioning to/from memoryless state.
930 */
Lee Schermerhorn4faf8d92009-12-14 17:58:35 -0800931 if (nid != NUMA_NO_NODE)
Wen Congyang87327942012-12-11 16:00:56 -0800932 schedule_work(&node_devices[nid]->node_work);
Lee Schermerhorn4faf8d92009-12-14 17:58:35 -0800933 break;
Lee Schermerhorn39da08c2009-12-14 17:58:36 -0800934
Lee Schermerhorn4faf8d92009-12-14 17:58:35 -0800935 case MEM_GOING_ONLINE:
936 case MEM_GOING_OFFLINE:
937 case MEM_CANCEL_ONLINE:
938 case MEM_CANCEL_OFFLINE:
939 default:
940 break;
941 }
942
943 return NOTIFY_OK;
944}
Lee Schermerhorn39da08c2009-12-14 17:58:36 -0800945#endif /* CONFIG_HUGETLBFS */
Michal Hocko9037a992017-07-06 15:37:49 -0700946#endif /* CONFIG_MEMORY_HOTPLUG_SPARSE */
Lee Schermerhorn39da08c2009-12-14 17:58:36 -0800947
948#if !defined(CONFIG_MEMORY_HOTPLUG_SPARSE) || \
949 !defined(CONFIG_HUGETLBFS)
Lee Schermerhorn4faf8d92009-12-14 17:58:35 -0800950static inline int node_memory_callback(struct notifier_block *self,
951 unsigned long action, void *arg)
952{
953 return NOTIFY_OK;
954}
Lee Schermerhorn39da08c2009-12-14 17:58:36 -0800955
956static void init_node_hugetlb_work(int nid) { }
957
958#endif
Gary Hadec04fc582009-01-06 14:39:14 -0800959
Michal Hocko9037a992017-07-06 15:37:49 -0700960int __register_one_node(int nid)
Yasunori Goto0fc44152006-06-27 02:53:38 -0700961{
Michal Hocko9037a992017-07-06 15:37:49 -0700962 int error;
KAMEZAWA Hiroyuki76b67ed2006-06-27 02:53:41 -0700963 int cpu;
Yasunori Goto0fc44152006-06-27 02:53:38 -0700964
Michal Hocko9037a992017-07-06 15:37:49 -0700965 node_devices[nid] = kzalloc(sizeof(struct node), GFP_KERNEL);
966 if (!node_devices[nid])
967 return -ENOMEM;
Yasunori Goto0fc44152006-06-27 02:53:38 -0700968
Dou Liyanga7be6e52017-07-10 15:49:20 -0700969 error = register_node(node_devices[nid], nid);
Wen Congyang87327942012-12-11 16:00:56 -0800970
Michal Hocko9037a992017-07-06 15:37:49 -0700971 /* link cpu under this node */
972 for_each_present_cpu(cpu) {
973 if (cpu_to_node(cpu) == nid)
974 register_cpu_under_node(cpu, nid);
Yasunori Goto0fc44152006-06-27 02:53:38 -0700975 }
976
Keith Busch08d9dbe2019-03-11 14:56:00 -0600977 INIT_LIST_HEAD(&node_devices[nid]->access_list);
Michal Hocko9037a992017-07-06 15:37:49 -0700978 /* initialize work queue for memory hot plug */
979 init_node_hugetlb_work(nid);
Keith Buschacc02a12019-03-11 14:56:02 -0600980 node_init_caches(nid);
Yasunori Goto0fc44152006-06-27 02:53:38 -0700981
Michal Hocko9037a992017-07-06 15:37:49 -0700982 return error;
Yasunori Goto0fc44152006-06-27 02:53:38 -0700983}
984
985void unregister_one_node(int nid)
986{
Xishi Qiu92d585e2014-03-06 17:18:21 +0800987 if (!node_devices[nid])
988 return;
989
Wen Congyang87327942012-12-11 16:00:56 -0800990 unregister_node(node_devices[nid]);
Wen Congyang87327942012-12-11 16:00:56 -0800991 node_devices[nid] = NULL;
Yasunori Goto0fc44152006-06-27 02:53:38 -0700992}
993
Lee Schermerhornbde631a2007-10-16 01:26:27 -0700994/*
995 * node states attributes
996 */
997
Andi Kleenb15f5622010-01-05 12:47:59 +0100998struct node_attr {
Kay Sievers10fbcf42011-12-21 14:48:43 -0800999 struct device_attribute attr;
Andi Kleenb15f5622010-01-05 12:47:59 +01001000 enum node_states state;
1001};
1002
Kay Sievers10fbcf42011-12-21 14:48:43 -08001003static ssize_t show_node_state(struct device *dev,
1004 struct device_attribute *attr, char *buf)
Lee Schermerhornbde631a2007-10-16 01:26:27 -07001005{
Andi Kleenb15f5622010-01-05 12:47:59 +01001006 struct node_attr *na = container_of(attr, struct node_attr, attr);
Joe Perches948b3ed2020-09-16 13:40:42 -07001007
1008 return sysfs_emit(buf, "%*pbl\n",
1009 nodemask_pr_args(&node_states[na->state]));
Lee Schermerhornbde631a2007-10-16 01:26:27 -07001010}
1011
Andi Kleenb15f5622010-01-05 12:47:59 +01001012#define _NODE_ATTR(name, state) \
Kay Sievers10fbcf42011-12-21 14:48:43 -08001013 { __ATTR(name, 0444, show_node_state, NULL), state }
Lee Schermerhornbde631a2007-10-16 01:26:27 -07001014
Andi Kleenb15f5622010-01-05 12:47:59 +01001015static struct node_attr node_state_attr[] = {
Lai Jiangshanfcf07d22012-12-11 16:03:13 -08001016 [N_POSSIBLE] = _NODE_ATTR(possible, N_POSSIBLE),
1017 [N_ONLINE] = _NODE_ATTR(online, N_ONLINE),
1018 [N_NORMAL_MEMORY] = _NODE_ATTR(has_normal_memory, N_NORMAL_MEMORY),
Lee Schermerhornbde631a2007-10-16 01:26:27 -07001019#ifdef CONFIG_HIGHMEM
Lai Jiangshanfcf07d22012-12-11 16:03:13 -08001020 [N_HIGH_MEMORY] = _NODE_ATTR(has_high_memory, N_HIGH_MEMORY),
Lee Schermerhornbde631a2007-10-16 01:26:27 -07001021#endif
Lai Jiangshan20b2f522012-12-12 13:52:00 -08001022 [N_MEMORY] = _NODE_ATTR(has_memory, N_MEMORY),
Lai Jiangshanfcf07d22012-12-11 16:03:13 -08001023 [N_CPU] = _NODE_ATTR(has_cpu, N_CPU),
Jonathan Cameron894c26a2020-09-30 22:05:42 +08001024 [N_GENERIC_INITIATOR] = _NODE_ATTR(has_generic_initiator,
1025 N_GENERIC_INITIATOR),
Lee Schermerhornbde631a2007-10-16 01:26:27 -07001026};
1027
Kay Sievers10fbcf42011-12-21 14:48:43 -08001028static struct attribute *node_state_attrs[] = {
Lai Jiangshanfcf07d22012-12-11 16:03:13 -08001029 &node_state_attr[N_POSSIBLE].attr.attr,
1030 &node_state_attr[N_ONLINE].attr.attr,
1031 &node_state_attr[N_NORMAL_MEMORY].attr.attr,
Andi Kleen3701cde2010-01-05 12:48:04 +01001032#ifdef CONFIG_HIGHMEM
Lai Jiangshanfcf07d22012-12-11 16:03:13 -08001033 &node_state_attr[N_HIGH_MEMORY].attr.attr,
Andi Kleen3701cde2010-01-05 12:48:04 +01001034#endif
Lai Jiangshan20b2f522012-12-12 13:52:00 -08001035 &node_state_attr[N_MEMORY].attr.attr,
Lai Jiangshanfcf07d22012-12-11 16:03:13 -08001036 &node_state_attr[N_CPU].attr.attr,
Jonathan Cameron894c26a2020-09-30 22:05:42 +08001037 &node_state_attr[N_GENERIC_INITIATOR].attr.attr,
Andi Kleen3701cde2010-01-05 12:48:04 +01001038 NULL
1039};
Lee Schermerhornbde631a2007-10-16 01:26:27 -07001040
Kay Sievers10fbcf42011-12-21 14:48:43 -08001041static struct attribute_group memory_root_attr_group = {
1042 .attrs = node_state_attrs,
1043};
1044
1045static const struct attribute_group *cpu_root_attr_groups[] = {
1046 &memory_root_attr_group,
1047 NULL,
1048};
1049
Lee Schermerhorn4faf8d92009-12-14 17:58:35 -08001050#define NODE_CALLBACK_PRI 2 /* lower than SLAB */
Keiichiro Tokunaga4b450992005-05-08 21:28:53 +09001051static int __init register_node_type(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001052{
Lee Schermerhornbde631a2007-10-16 01:26:27 -07001053 int ret;
1054
Andi Kleen3701cde2010-01-05 12:48:04 +01001055 BUILD_BUG_ON(ARRAY_SIZE(node_state_attr) != NR_NODE_STATES);
1056 BUILD_BUG_ON(ARRAY_SIZE(node_state_attrs)-1 != NR_NODE_STATES);
1057
Kay Sievers10fbcf42011-12-21 14:48:43 -08001058 ret = subsys_system_register(&node_subsys, cpu_root_attr_groups);
Lee Schermerhorn4faf8d92009-12-14 17:58:35 -08001059 if (!ret) {
Andrew Morton6e259e72013-04-29 15:08:07 -07001060 static struct notifier_block node_memory_callback_nb = {
1061 .notifier_call = node_memory_callback,
1062 .priority = NODE_CALLBACK_PRI,
1063 };
1064 register_hotmemory_notifier(&node_memory_callback_nb);
Lee Schermerhorn4faf8d92009-12-14 17:58:35 -08001065 }
Lee Schermerhornbde631a2007-10-16 01:26:27 -07001066
1067 /*
1068 * Note: we're not going to unregister the node class if we fail
1069 * to register the node state class attribute files.
1070 */
1071 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001072}
1073postcore_initcall(register_node_type);