blob: d5952f7549115534359fad78e38a04347a106284 [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;
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
Shakeel Buttf0c0c112020-12-14 19:07:17 -0800453 nid, K(node_page_state(pgdat, NR_PAGETABLE)),
Joe Perches948b3ed2020-09-16 13:40:42 -0700454 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 ,
Muchun Song69473e52021-02-24 12:03:23 -0800464 nid, K(node_page_state(pgdat, NR_ANON_THPS)),
Joe Perches948b3ed2020-09-16 13:40:42 -0700465 nid, K(node_page_state(pgdat, NR_SHMEM_THPS) *
466 HPAGE_PMD_NR),
467 nid, K(node_page_state(pgdat, NR_SHMEM_PMDMAPPED) *
468 HPAGE_PMD_NR),
Muchun Songbf9ecea2021-02-24 12:03:27 -0800469 nid, K(node_page_state(pgdat, NR_FILE_THPS)),
Joe Perches948b3ed2020-09-16 13:40:42 -0700470 nid, K(node_page_state(pgdat, NR_FILE_PMDMAPPED) *
471 HPAGE_PMD_NR)
David Rientjes05b258e2011-01-13 15:47:14 -0800472#endif
Joe Perches948b3ed2020-09-16 13:40:42 -0700473 );
Joe Perches79815932020-09-16 13:40:43 -0700474 len += hugetlb_report_node_meminfo(buf, len, nid);
Joe Perches948b3ed2020-09-16 13:40:42 -0700475 return len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476}
477
478#undef K
Joe Perches948b3ed2020-09-16 13:40:42 -0700479static DEVICE_ATTR(meminfo, 0444, node_read_meminfo, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480
Kay Sievers10fbcf42011-12-21 14:48:43 -0800481static ssize_t node_read_numastat(struct device *dev,
Joe Perches948b3ed2020-09-16 13:40:42 -0700482 struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483{
Joe Perchesaa838892020-09-16 13:40:39 -0700484 return sysfs_emit(buf,
485 "numa_hit %lu\n"
486 "numa_miss %lu\n"
487 "numa_foreign %lu\n"
488 "interleave_hit %lu\n"
489 "local_node %lu\n"
490 "other_node %lu\n",
491 sum_zone_numa_state(dev->id, NUMA_HIT),
492 sum_zone_numa_state(dev->id, NUMA_MISS),
493 sum_zone_numa_state(dev->id, NUMA_FOREIGN),
494 sum_zone_numa_state(dev->id, NUMA_INTERLEAVE_HIT),
495 sum_zone_numa_state(dev->id, NUMA_LOCAL),
496 sum_zone_numa_state(dev->id, NUMA_OTHER));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497}
Joe Perches948b3ed2020-09-16 13:40:42 -0700498static DEVICE_ATTR(numastat, 0444, node_read_numastat, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499
Kay Sievers10fbcf42011-12-21 14:48:43 -0800500static ssize_t node_read_vmstat(struct device *dev,
501 struct device_attribute *attr, char *buf)
Michael Rubin2ac39032010-10-26 14:21:35 -0700502{
503 int nid = dev->id;
Mel Gorman75ef7182016-07-28 15:45:24 -0700504 struct pglist_data *pgdat = NODE_DATA(nid);
KOSAKI Motohirofa25c502011-05-24 17:11:28 -0700505 int i;
Joe Perches948b3ed2020-09-16 13:40:42 -0700506 int len = 0;
KOSAKI Motohirofa25c502011-05-24 17:11:28 -0700507
508 for (i = 0; i < NR_VM_ZONE_STAT_ITEMS; i++)
Joe Perches948b3ed2020-09-16 13:40:42 -0700509 len += sysfs_emit_at(buf, len, "%s %lu\n",
510 zone_stat_name(i),
511 sum_zone_node_page_state(nid, i));
Mel Gorman75ef7182016-07-28 15:45:24 -0700512
Kemi Wang3a321d22017-09-08 16:12:48 -0700513#ifdef CONFIG_NUMA
514 for (i = 0; i < NR_VM_NUMA_STAT_ITEMS; i++)
Joe Perches948b3ed2020-09-16 13:40:42 -0700515 len += sysfs_emit_at(buf, len, "%s %lu\n",
516 numa_stat_name(i),
517 sum_zone_numa_state(nid, i));
518
Kemi Wang3a321d22017-09-08 16:12:48 -0700519#endif
Muchun Song69473e52021-02-24 12:03:23 -0800520 for (i = 0; i < NR_VM_NODE_STAT_ITEMS; i++) {
521 unsigned long pages = node_page_state_pages(pgdat, i);
522
523 if (vmstat_item_print_in_thp(i))
524 pages /= HPAGE_PMD_NR;
525 len += sysfs_emit_at(buf, len, "%s %lu\n", node_stat_name(i),
526 pages);
527 }
KOSAKI Motohirofa25c502011-05-24 17:11:28 -0700528
Joe Perches948b3ed2020-09-16 13:40:42 -0700529 return len;
Michael Rubin2ac39032010-10-26 14:21:35 -0700530}
Joe Perches948b3ed2020-09-16 13:40:42 -0700531static DEVICE_ATTR(vmstat, 0444, node_read_vmstat, NULL);
Michael Rubin2ac39032010-10-26 14:21:35 -0700532
Kay Sievers10fbcf42011-12-21 14:48:43 -0800533static ssize_t node_read_distance(struct device *dev,
Joe Perches948b3ed2020-09-16 13:40:42 -0700534 struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535{
536 int nid = dev->id;
537 int len = 0;
538 int i;
539
David Rientjes12ee3c02010-03-10 14:50:21 -0800540 /*
541 * buf is currently PAGE_SIZE in length and each node needs 4 chars
542 * at the most (distance + space or newline).
543 */
544 BUILD_BUG_ON(MAX_NUMNODES * 4 > PAGE_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545
Joe Perches948b3ed2020-09-16 13:40:42 -0700546 for_each_online_node(i) {
547 len += sysfs_emit_at(buf, len, "%s%d",
548 i ? " " : "", node_distance(nid, i));
549 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550
Joe Perches948b3ed2020-09-16 13:40:42 -0700551 len += sysfs_emit_at(buf, len, "\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552 return len;
553}
Joe Perches948b3ed2020-09-16 13:40:42 -0700554static DEVICE_ATTR(distance, 0444, node_read_distance, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555
Takashi Iwai3c9b8aa2015-01-29 12:29:22 +0100556static struct attribute *node_dev_attrs[] = {
557 &dev_attr_cpumap.attr,
558 &dev_attr_cpulist.attr,
559 &dev_attr_meminfo.attr,
560 &dev_attr_numastat.attr,
561 &dev_attr_distance.attr,
562 &dev_attr_vmstat.attr,
563 NULL
564};
Greg Kroah-Hartman7ca7ec42015-03-25 13:47:17 +0100565ATTRIBUTE_GROUPS(node_dev);
Takashi Iwai3c9b8aa2015-01-29 12:29:22 +0100566
Lee Schermerhorn9a3052302009-12-14 17:58:25 -0800567#ifdef CONFIG_HUGETLBFS
568/*
569 * hugetlbfs per node attributes registration interface:
570 * When/if hugetlb[fs] subsystem initializes [sometime after this module],
Lee Schermerhorn4faf8d92009-12-14 17:58:35 -0800571 * it will register its per node attributes for all online nodes with
572 * memory. It will also call register_hugetlbfs_with_node(), below, to
Lee Schermerhorn9a3052302009-12-14 17:58:25 -0800573 * register its attribute registration functions with this node driver.
574 * Once these hooks have been initialized, the node driver will call into
575 * the hugetlb module to [un]register attributes for hot-plugged nodes.
576 */
577static node_registration_func_t __hugetlb_register_node;
578static node_registration_func_t __hugetlb_unregister_node;
579
Lee Schermerhorn39da08c2009-12-14 17:58:36 -0800580static inline bool hugetlb_register_node(struct node *node)
Lee Schermerhorn9a3052302009-12-14 17:58:25 -0800581{
Lee Schermerhorn4faf8d92009-12-14 17:58:35 -0800582 if (__hugetlb_register_node &&
Lai Jiangshan8cebfcd2012-12-12 13:51:36 -0800583 node_state(node->dev.id, N_MEMORY)) {
Lee Schermerhorn9a3052302009-12-14 17:58:25 -0800584 __hugetlb_register_node(node);
Lee Schermerhorn39da08c2009-12-14 17:58:36 -0800585 return true;
586 }
587 return false;
Lee Schermerhorn9a3052302009-12-14 17:58:25 -0800588}
589
590static inline void hugetlb_unregister_node(struct node *node)
591{
592 if (__hugetlb_unregister_node)
593 __hugetlb_unregister_node(node);
594}
595
596void register_hugetlbfs_with_node(node_registration_func_t doregister,
597 node_registration_func_t unregister)
598{
599 __hugetlb_register_node = doregister;
600 __hugetlb_unregister_node = unregister;
601}
602#else
603static inline void hugetlb_register_node(struct node *node) {}
604
605static inline void hugetlb_unregister_node(struct node *node) {}
606#endif
607
Yasuaki Ishimatsu8c7b5b42012-12-11 16:00:57 -0800608static void node_device_release(struct device *dev)
609{
610 struct node *node = to_node(dev);
611
612#if defined(CONFIG_MEMORY_HOTPLUG_SPARSE) && defined(CONFIG_HUGETLBFS)
613 /*
614 * We schedule the work only when a memory section is
615 * onlined/offlined on this node. When we come here,
616 * all the memory on this node has been offlined,
617 * so we won't enqueue new work to this work.
618 *
619 * The work is using node->node_work, so we should
620 * flush work before freeing the memory.
621 */
622 flush_work(&node->node_work);
623#endif
624 kfree(node);
625}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626
627/*
Robert P. J. Day405ae7d2007-02-17 19:13:42 +0100628 * register_node - Setup a sysfs device for a node.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629 * @num - Node number to use when creating the device.
630 *
631 * Initialize and register the node device.
632 */
Dou Liyanga7be6e52017-07-10 15:49:20 -0700633static int register_node(struct node *node, int num)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634{
635 int error;
636
Kay Sievers10fbcf42011-12-21 14:48:43 -0800637 node->dev.id = num;
638 node->dev.bus = &node_subsys;
Yasuaki Ishimatsu8c7b5b42012-12-11 16:00:57 -0800639 node->dev.release = node_device_release;
Greg Kroah-Hartman7ca7ec42015-03-25 13:47:17 +0100640 node->dev.groups = node_dev_groups;
Kay Sievers10fbcf42011-12-21 14:48:43 -0800641 error = device_register(&node->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642
Arvind Yadavc1cc0d52018-03-11 11:25:50 +0530643 if (error)
644 put_device(&node->dev);
645 else {
Lee Schermerhorn9a3052302009-12-14 17:58:25 -0800646 hugetlb_register_node(node);
Mel Gormaned4a6d72010-05-24 14:32:29 -0700647
648 compaction_register_node(node);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649 }
650 return error;
651}
652
Keiichiro Tokunaga4b450992005-05-08 21:28:53 +0900653/**
654 * unregister_node - unregister a node device
655 * @node: node going away
656 *
657 * Unregisters a node device @node. All the devices on the node must be
658 * unregistered before calling this function.
659 */
660void unregister_node(struct node *node)
661{
Lee Schermerhorn4faf8d92009-12-14 17:58:35 -0800662 hugetlb_unregister_node(node); /* no-op, if memoryless node */
Keith Busch08d9dbe2019-03-11 14:56:00 -0600663 node_remove_accesses(node);
Keith Buschacc02a12019-03-11 14:56:02 -0600664 node_remove_caches(node);
Kay Sievers10fbcf42011-12-21 14:48:43 -0800665 device_unregister(&node->dev);
Keiichiro Tokunaga4b450992005-05-08 21:28:53 +0900666}
667
Wen Congyang87327942012-12-11 16:00:56 -0800668struct node *node_devices[MAX_NUMNODES];
Yasunori Goto0fc44152006-06-27 02:53:38 -0700669
KAMEZAWA Hiroyuki76b67ed2006-06-27 02:53:41 -0700670/*
671 * register cpu under node
672 */
673int register_cpu_under_node(unsigned int cpu, unsigned int nid)
674{
Alex Chiang18307942009-12-14 17:59:08 -0800675 int ret;
Kay Sievers8a25a2f2011-12-21 14:29:42 -0800676 struct device *obj;
KAMEZAWA Hiroyuki76b67ed2006-06-27 02:53:41 -0700677
Alex Chiangf8246f32009-12-14 17:59:06 -0800678 if (!node_online(nid))
679 return 0;
680
Kay Sievers8a25a2f2011-12-21 14:29:42 -0800681 obj = get_cpu_device(cpu);
Alex Chiangf8246f32009-12-14 17:59:06 -0800682 if (!obj)
683 return 0;
684
Wen Congyang87327942012-12-11 16:00:56 -0800685 ret = sysfs_create_link(&node_devices[nid]->dev.kobj,
Alex Chiangf8246f32009-12-14 17:59:06 -0800686 &obj->kobj,
687 kobject_name(&obj->kobj));
Alex Chiang18307942009-12-14 17:59:08 -0800688 if (ret)
689 return ret;
690
691 return sysfs_create_link(&obj->kobj,
Wen Congyang87327942012-12-11 16:00:56 -0800692 &node_devices[nid]->dev.kobj,
693 kobject_name(&node_devices[nid]->dev.kobj));
KAMEZAWA Hiroyuki76b67ed2006-06-27 02:53:41 -0700694}
695
Keith Busch08d9dbe2019-03-11 14:56:00 -0600696/**
697 * register_memory_node_under_compute_node - link memory node to its compute
698 * node for a given access class.
Mauro Carvalho Chehab58cb3462019-06-18 15:55:12 -0300699 * @mem_nid: Memory node number
700 * @cpu_nid: Cpu node number
Keith Busch08d9dbe2019-03-11 14:56:00 -0600701 * @access: Access class to register
702 *
703 * Description:
704 * For use with platforms that may have separate memory and compute nodes.
705 * This function will export node relationships linking which memory
706 * initiator nodes can access memory targets at a given ranked access
707 * class.
708 */
709int register_memory_node_under_compute_node(unsigned int mem_nid,
710 unsigned int cpu_nid,
711 unsigned access)
712{
713 struct node *init_node, *targ_node;
714 struct node_access_nodes *initiator, *target;
715 int ret;
716
717 if (!node_online(cpu_nid) || !node_online(mem_nid))
718 return -ENODEV;
719
720 init_node = node_devices[cpu_nid];
721 targ_node = node_devices[mem_nid];
722 initiator = node_init_node_access(init_node, access);
723 target = node_init_node_access(targ_node, access);
724 if (!initiator || !target)
725 return -ENOMEM;
726
727 ret = sysfs_add_link_to_group(&initiator->dev.kobj, "targets",
728 &targ_node->dev.kobj,
729 dev_name(&targ_node->dev));
730 if (ret)
731 return ret;
732
733 ret = sysfs_add_link_to_group(&target->dev.kobj, "initiators",
734 &init_node->dev.kobj,
735 dev_name(&init_node->dev));
736 if (ret)
737 goto err;
738
739 return 0;
740 err:
741 sysfs_remove_link_from_group(&initiator->dev.kobj, "targets",
742 dev_name(&targ_node->dev));
743 return ret;
744}
745
KAMEZAWA Hiroyuki76b67ed2006-06-27 02:53:41 -0700746int unregister_cpu_under_node(unsigned int cpu, unsigned int nid)
747{
Kay Sievers8a25a2f2011-12-21 14:29:42 -0800748 struct device *obj;
Alex Chiangb9d52da2009-12-14 17:59:07 -0800749
750 if (!node_online(nid))
751 return 0;
752
Kay Sievers8a25a2f2011-12-21 14:29:42 -0800753 obj = get_cpu_device(cpu);
Alex Chiangb9d52da2009-12-14 17:59:07 -0800754 if (!obj)
755 return 0;
756
Wen Congyang87327942012-12-11 16:00:56 -0800757 sysfs_remove_link(&node_devices[nid]->dev.kobj,
Alex Chiangb9d52da2009-12-14 17:59:07 -0800758 kobject_name(&obj->kobj));
Alex Chiang18307942009-12-14 17:59:08 -0800759 sysfs_remove_link(&obj->kobj,
Wen Congyang87327942012-12-11 16:00:56 -0800760 kobject_name(&node_devices[nid]->dev.kobj));
Alex Chiangb9d52da2009-12-14 17:59:07 -0800761
KAMEZAWA Hiroyuki76b67ed2006-06-27 02:53:41 -0700762 return 0;
763}
764
Gary Hadec04fc582009-01-06 14:39:14 -0800765#ifdef CONFIG_MEMORY_HOTPLUG_SPARSE
Fabian Frederickbd721ea2016-08-02 14:03:33 -0700766static int __ref get_nid_for_pfn(unsigned long pfn)
Gary Hadec04fc582009-01-06 14:39:14 -0800767{
Gary Hadec04fc582009-01-06 14:39:14 -0800768 if (!pfn_valid_within(pfn))
769 return -1;
Mel Gorman3a80a7f2015-06-30 14:57:02 -0700770#ifdef CONFIG_DEFERRED_STRUCT_PAGE_INIT
Thomas Gleixner8cdde382017-05-16 20:42:39 +0200771 if (system_state < SYSTEM_RUNNING)
Mel Gorman3a80a7f2015-06-30 14:57:02 -0700772 return early_pfn_to_nid(pfn);
773#endif
Gary Hadec04fc582009-01-06 14:39:14 -0800774 return pfn_to_nid(pfn);
775}
776
Laurent Dufour90c7eae2020-10-15 20:09:15 -0700777static void do_register_memory_block_under_node(int nid,
778 struct memory_block *mem_blk)
Laurent Dufourf85086f2020-09-25 21:19:31 -0700779{
780 int ret;
781
782 /*
783 * If this memory block spans multiple nodes, we only indicate
784 * the last processed node.
785 */
786 mem_blk->nid = nid;
787
788 ret = sysfs_create_link_nowarn(&node_devices[nid]->dev.kobj,
789 &mem_blk->dev.kobj,
790 kobject_name(&mem_blk->dev.kobj));
Laurent Dufour90c7eae2020-10-15 20:09:15 -0700791 if (ret && ret != -EEXIST)
792 dev_err_ratelimited(&node_devices[nid]->dev,
793 "can't create link to %s in sysfs (%d)\n",
794 kobject_name(&mem_blk->dev.kobj), ret);
Laurent Dufourf85086f2020-09-25 21:19:31 -0700795
Laurent Dufour90c7eae2020-10-15 20:09:15 -0700796 ret = sysfs_create_link_nowarn(&mem_blk->dev.kobj,
Laurent Dufourf85086f2020-09-25 21:19:31 -0700797 &node_devices[nid]->dev.kobj,
798 kobject_name(&node_devices[nid]->dev.kobj));
Laurent Dufour90c7eae2020-10-15 20:09:15 -0700799 if (ret && ret != -EEXIST)
800 dev_err_ratelimited(&mem_blk->dev,
801 "can't create link to %s in sysfs (%d)\n",
802 kobject_name(&node_devices[nid]->dev.kobj),
803 ret);
Laurent Dufourf85086f2020-09-25 21:19:31 -0700804}
805
Gary Hadec04fc582009-01-06 14:39:14 -0800806/* register memory section under specified node if it spans that node */
Laurent Dufourf85086f2020-09-25 21:19:31 -0700807static int register_mem_block_under_node_early(struct memory_block *mem_blk,
808 void *arg)
Gary Hadec04fc582009-01-06 14:39:14 -0800809{
David Hildenbrandb6c88d32019-09-23 15:35:49 -0700810 unsigned long memory_block_pfns = memory_block_size_bytes() / PAGE_SIZE;
811 unsigned long start_pfn = section_nr_to_pfn(mem_blk->start_section_nr);
812 unsigned long end_pfn = start_pfn + memory_block_pfns - 1;
Laurent Dufourf85086f2020-09-25 21:19:31 -0700813 int nid = *(int *)arg;
David Hildenbrandb6c88d32019-09-23 15:35:49 -0700814 unsigned long pfn;
Gary Hadec04fc582009-01-06 14:39:14 -0800815
David Hildenbrandb6c88d32019-09-23 15:35:49 -0700816 for (pfn = start_pfn; pfn <= end_pfn; pfn++) {
Gary Hadec04fc582009-01-06 14:39:14 -0800817 int page_nid;
818
Yinghai Lu04697852015-09-04 15:42:39 -0700819 /*
820 * memory block could have several absent sections from start.
821 * skip pfn range from absent section
822 */
Pingfan Liue03d1f72020-04-01 21:09:27 -0700823 if (!pfn_in_present_section(pfn)) {
Yinghai Lu04697852015-09-04 15:42:39 -0700824 pfn = round_down(pfn + PAGES_PER_SECTION,
825 PAGES_PER_SECTION) - 1;
826 continue;
827 }
828
Pavel Tatashinfc44f7f2018-04-05 16:22:56 -0700829 /*
Laurent Dufourf85086f2020-09-25 21:19:31 -0700830 * We need to check if page belongs to nid only at the boot
831 * case because node's ranges can be interleaved.
Pavel Tatashinfc44f7f2018-04-05 16:22:56 -0700832 */
Laurent Dufourf85086f2020-09-25 21:19:31 -0700833 page_nid = get_nid_for_pfn(pfn);
834 if (page_nid < 0)
835 continue;
836 if (page_nid != nid)
837 continue;
David Hildenbrandd84f2f52019-09-23 15:35:40 -0700838
Laurent Dufour90c7eae2020-10-15 20:09:15 -0700839 do_register_memory_block_under_node(nid, mem_blk);
840 return 0;
Gary Hadec04fc582009-01-06 14:39:14 -0800841 }
842 /* mem section does not span the specified node */
843 return 0;
844}
845
David Hildenbrand4c4b7f92019-07-18 15:57:06 -0700846/*
Laurent Dufourf85086f2020-09-25 21:19:31 -0700847 * During hotplug we know that all pages in the memory block belong to the same
848 * node.
849 */
850static int register_mem_block_under_node_hotplug(struct memory_block *mem_blk,
851 void *arg)
852{
853 int nid = *(int *)arg;
854
Laurent Dufour90c7eae2020-10-15 20:09:15 -0700855 do_register_memory_block_under_node(nid, mem_blk);
856 return 0;
Laurent Dufourf85086f2020-09-25 21:19:31 -0700857}
858
859/*
David Hildenbrandd84f2f52019-09-23 15:35:40 -0700860 * Unregister a memory block device under the node it spans. Memory blocks
861 * with multiple nodes cannot be offlined and therefore also never be removed.
David Hildenbrand4c4b7f92019-07-18 15:57:06 -0700862 */
David Hildenbranda31b2642019-07-18 15:57:12 -0700863void unregister_memory_block_under_nodes(struct memory_block *mem_blk)
Gary Hadec04fc582009-01-06 14:39:14 -0800864{
David Hildenbrandd84f2f52019-09-23 15:35:40 -0700865 if (mem_blk->nid == NUMA_NO_NODE)
866 return;
Gary Hadec04fc582009-01-06 14:39:14 -0800867
David Hildenbrandd84f2f52019-09-23 15:35:40 -0700868 sysfs_remove_link(&node_devices[mem_blk->nid]->dev.kobj,
869 kobject_name(&mem_blk->dev.kobj));
870 sysfs_remove_link(&mem_blk->dev.kobj,
871 kobject_name(&node_devices[mem_blk->nid]->dev.kobj));
Gary Hadec04fc582009-01-06 14:39:14 -0800872}
873
Laurent Dufour90c7eae2020-10-15 20:09:15 -0700874void link_mem_sections(int nid, unsigned long start_pfn, unsigned long end_pfn,
875 enum meminit_context context)
Gary Hadec04fc582009-01-06 14:39:14 -0800876{
Laurent Dufourf85086f2020-09-25 21:19:31 -0700877 walk_memory_blocks_func_t func;
878
879 if (context == MEMINIT_HOTPLUG)
880 func = register_mem_block_under_node_hotplug;
881 else
882 func = register_mem_block_under_node_early;
883
Laurent Dufour90c7eae2020-10-15 20:09:15 -0700884 walk_memory_blocks(PFN_PHYS(start_pfn), PFN_PHYS(end_pfn - start_pfn),
885 (void *)&nid, func);
886 return;
Gary Hadec04fc582009-01-06 14:39:14 -0800887}
Lee Schermerhorn4faf8d92009-12-14 17:58:35 -0800888
Lee Schermerhorn39da08c2009-12-14 17:58:36 -0800889#ifdef CONFIG_HUGETLBFS
Lee Schermerhorn4faf8d92009-12-14 17:58:35 -0800890/*
891 * Handle per node hstate attribute [un]registration on transistions
892 * to/from memoryless state.
893 */
Lee Schermerhorn39da08c2009-12-14 17:58:36 -0800894static void node_hugetlb_work(struct work_struct *work)
895{
896 struct node *node = container_of(work, struct node, node_work);
897
898 /*
899 * We only get here when a node transitions to/from memoryless state.
900 * We can detect which transition occurred by examining whether the
901 * node has memory now. hugetlb_register_node() already check this
902 * so we try to register the attributes. If that fails, then the
903 * node has transitioned to memoryless, try to unregister the
904 * attributes.
905 */
906 if (!hugetlb_register_node(node))
907 hugetlb_unregister_node(node);
908}
909
910static void init_node_hugetlb_work(int nid)
911{
Wen Congyang87327942012-12-11 16:00:56 -0800912 INIT_WORK(&node_devices[nid]->node_work, node_hugetlb_work);
Lee Schermerhorn39da08c2009-12-14 17:58:36 -0800913}
Lee Schermerhorn4faf8d92009-12-14 17:58:35 -0800914
915static int node_memory_callback(struct notifier_block *self,
916 unsigned long action, void *arg)
917{
918 struct memory_notify *mnb = arg;
919 int nid = mnb->status_change_nid;
920
921 switch (action) {
Lee Schermerhorn39da08c2009-12-14 17:58:36 -0800922 case MEM_ONLINE:
923 case MEM_OFFLINE:
924 /*
925 * offload per node hstate [un]registration to a work thread
926 * when transitioning to/from memoryless state.
927 */
Lee Schermerhorn4faf8d92009-12-14 17:58:35 -0800928 if (nid != NUMA_NO_NODE)
Wen Congyang87327942012-12-11 16:00:56 -0800929 schedule_work(&node_devices[nid]->node_work);
Lee Schermerhorn4faf8d92009-12-14 17:58:35 -0800930 break;
Lee Schermerhorn39da08c2009-12-14 17:58:36 -0800931
Lee Schermerhorn4faf8d92009-12-14 17:58:35 -0800932 case MEM_GOING_ONLINE:
933 case MEM_GOING_OFFLINE:
934 case MEM_CANCEL_ONLINE:
935 case MEM_CANCEL_OFFLINE:
936 default:
937 break;
938 }
939
940 return NOTIFY_OK;
941}
Lee Schermerhorn39da08c2009-12-14 17:58:36 -0800942#endif /* CONFIG_HUGETLBFS */
Michal Hocko9037a992017-07-06 15:37:49 -0700943#endif /* CONFIG_MEMORY_HOTPLUG_SPARSE */
Lee Schermerhorn39da08c2009-12-14 17:58:36 -0800944
945#if !defined(CONFIG_MEMORY_HOTPLUG_SPARSE) || \
946 !defined(CONFIG_HUGETLBFS)
Lee Schermerhorn4faf8d92009-12-14 17:58:35 -0800947static inline int node_memory_callback(struct notifier_block *self,
948 unsigned long action, void *arg)
949{
950 return NOTIFY_OK;
951}
Lee Schermerhorn39da08c2009-12-14 17:58:36 -0800952
953static void init_node_hugetlb_work(int nid) { }
954
955#endif
Gary Hadec04fc582009-01-06 14:39:14 -0800956
Michal Hocko9037a992017-07-06 15:37:49 -0700957int __register_one_node(int nid)
Yasunori Goto0fc44152006-06-27 02:53:38 -0700958{
Michal Hocko9037a992017-07-06 15:37:49 -0700959 int error;
KAMEZAWA Hiroyuki76b67ed2006-06-27 02:53:41 -0700960 int cpu;
Yasunori Goto0fc44152006-06-27 02:53:38 -0700961
Michal Hocko9037a992017-07-06 15:37:49 -0700962 node_devices[nid] = kzalloc(sizeof(struct node), GFP_KERNEL);
963 if (!node_devices[nid])
964 return -ENOMEM;
Yasunori Goto0fc44152006-06-27 02:53:38 -0700965
Dou Liyanga7be6e52017-07-10 15:49:20 -0700966 error = register_node(node_devices[nid], nid);
Wen Congyang87327942012-12-11 16:00:56 -0800967
Michal Hocko9037a992017-07-06 15:37:49 -0700968 /* link cpu under this node */
969 for_each_present_cpu(cpu) {
970 if (cpu_to_node(cpu) == nid)
971 register_cpu_under_node(cpu, nid);
Yasunori Goto0fc44152006-06-27 02:53:38 -0700972 }
973
Keith Busch08d9dbe2019-03-11 14:56:00 -0600974 INIT_LIST_HEAD(&node_devices[nid]->access_list);
Michal Hocko9037a992017-07-06 15:37:49 -0700975 /* initialize work queue for memory hot plug */
976 init_node_hugetlb_work(nid);
Keith Buschacc02a12019-03-11 14:56:02 -0600977 node_init_caches(nid);
Yasunori Goto0fc44152006-06-27 02:53:38 -0700978
Michal Hocko9037a992017-07-06 15:37:49 -0700979 return error;
Yasunori Goto0fc44152006-06-27 02:53:38 -0700980}
981
982void unregister_one_node(int nid)
983{
Xishi Qiu92d585e2014-03-06 17:18:21 +0800984 if (!node_devices[nid])
985 return;
986
Wen Congyang87327942012-12-11 16:00:56 -0800987 unregister_node(node_devices[nid]);
Wen Congyang87327942012-12-11 16:00:56 -0800988 node_devices[nid] = NULL;
Yasunori Goto0fc44152006-06-27 02:53:38 -0700989}
990
Lee Schermerhornbde631a2007-10-16 01:26:27 -0700991/*
992 * node states attributes
993 */
994
Andi Kleenb15f5622010-01-05 12:47:59 +0100995struct node_attr {
Kay Sievers10fbcf42011-12-21 14:48:43 -0800996 struct device_attribute attr;
Andi Kleenb15f5622010-01-05 12:47:59 +0100997 enum node_states state;
998};
999
Kay Sievers10fbcf42011-12-21 14:48:43 -08001000static ssize_t show_node_state(struct device *dev,
1001 struct device_attribute *attr, char *buf)
Lee Schermerhornbde631a2007-10-16 01:26:27 -07001002{
Andi Kleenb15f5622010-01-05 12:47:59 +01001003 struct node_attr *na = container_of(attr, struct node_attr, attr);
Joe Perches948b3ed2020-09-16 13:40:42 -07001004
1005 return sysfs_emit(buf, "%*pbl\n",
1006 nodemask_pr_args(&node_states[na->state]));
Lee Schermerhornbde631a2007-10-16 01:26:27 -07001007}
1008
Andi Kleenb15f5622010-01-05 12:47:59 +01001009#define _NODE_ATTR(name, state) \
Kay Sievers10fbcf42011-12-21 14:48:43 -08001010 { __ATTR(name, 0444, show_node_state, NULL), state }
Lee Schermerhornbde631a2007-10-16 01:26:27 -07001011
Andi Kleenb15f5622010-01-05 12:47:59 +01001012static struct node_attr node_state_attr[] = {
Lai Jiangshanfcf07d22012-12-11 16:03:13 -08001013 [N_POSSIBLE] = _NODE_ATTR(possible, N_POSSIBLE),
1014 [N_ONLINE] = _NODE_ATTR(online, N_ONLINE),
1015 [N_NORMAL_MEMORY] = _NODE_ATTR(has_normal_memory, N_NORMAL_MEMORY),
Lee Schermerhornbde631a2007-10-16 01:26:27 -07001016#ifdef CONFIG_HIGHMEM
Lai Jiangshanfcf07d22012-12-11 16:03:13 -08001017 [N_HIGH_MEMORY] = _NODE_ATTR(has_high_memory, N_HIGH_MEMORY),
Lee Schermerhornbde631a2007-10-16 01:26:27 -07001018#endif
Lai Jiangshan20b2f522012-12-12 13:52:00 -08001019 [N_MEMORY] = _NODE_ATTR(has_memory, N_MEMORY),
Lai Jiangshanfcf07d22012-12-11 16:03:13 -08001020 [N_CPU] = _NODE_ATTR(has_cpu, N_CPU),
Jonathan Cameron894c26a2020-09-30 22:05:42 +08001021 [N_GENERIC_INITIATOR] = _NODE_ATTR(has_generic_initiator,
1022 N_GENERIC_INITIATOR),
Lee Schermerhornbde631a2007-10-16 01:26:27 -07001023};
1024
Kay Sievers10fbcf42011-12-21 14:48:43 -08001025static struct attribute *node_state_attrs[] = {
Lai Jiangshanfcf07d22012-12-11 16:03:13 -08001026 &node_state_attr[N_POSSIBLE].attr.attr,
1027 &node_state_attr[N_ONLINE].attr.attr,
1028 &node_state_attr[N_NORMAL_MEMORY].attr.attr,
Andi Kleen3701cde2010-01-05 12:48:04 +01001029#ifdef CONFIG_HIGHMEM
Lai Jiangshanfcf07d22012-12-11 16:03:13 -08001030 &node_state_attr[N_HIGH_MEMORY].attr.attr,
Andi Kleen3701cde2010-01-05 12:48:04 +01001031#endif
Lai Jiangshan20b2f522012-12-12 13:52:00 -08001032 &node_state_attr[N_MEMORY].attr.attr,
Lai Jiangshanfcf07d22012-12-11 16:03:13 -08001033 &node_state_attr[N_CPU].attr.attr,
Jonathan Cameron894c26a2020-09-30 22:05:42 +08001034 &node_state_attr[N_GENERIC_INITIATOR].attr.attr,
Andi Kleen3701cde2010-01-05 12:48:04 +01001035 NULL
1036};
Lee Schermerhornbde631a2007-10-16 01:26:27 -07001037
Kay Sievers10fbcf42011-12-21 14:48:43 -08001038static struct attribute_group memory_root_attr_group = {
1039 .attrs = node_state_attrs,
1040};
1041
1042static const struct attribute_group *cpu_root_attr_groups[] = {
1043 &memory_root_attr_group,
1044 NULL,
1045};
1046
Lee Schermerhorn4faf8d92009-12-14 17:58:35 -08001047#define NODE_CALLBACK_PRI 2 /* lower than SLAB */
Keiichiro Tokunaga4b450992005-05-08 21:28:53 +09001048static int __init register_node_type(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001049{
Lee Schermerhornbde631a2007-10-16 01:26:27 -07001050 int ret;
1051
Andi Kleen3701cde2010-01-05 12:48:04 +01001052 BUILD_BUG_ON(ARRAY_SIZE(node_state_attr) != NR_NODE_STATES);
1053 BUILD_BUG_ON(ARRAY_SIZE(node_state_attrs)-1 != NR_NODE_STATES);
1054
Kay Sievers10fbcf42011-12-21 14:48:43 -08001055 ret = subsys_system_register(&node_subsys, cpu_root_attr_groups);
Lee Schermerhorn4faf8d92009-12-14 17:58:35 -08001056 if (!ret) {
Andrew Morton6e259e72013-04-29 15:08:07 -07001057 static struct notifier_block node_memory_callback_nb = {
1058 .notifier_call = node_memory_callback,
1059 .priority = NODE_CALLBACK_PRI,
1060 };
1061 register_hotmemory_notifier(&node_memory_callback_nb);
Lee Schermerhorn4faf8d92009-12-14 17:58:35 -08001062 }
Lee Schermerhornbde631a2007-10-16 01:26:27 -07001063
1064 /*
1065 * Note: we're not going to unregister the node class if we fail
1066 * to register the node state class attribute files.
1067 */
1068 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001069}
1070postcore_initcall(register_node_type);