blob: aae2402f3791dbc12174cce7ae0552a3c59e5b02 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Kay Sievers10fbcf42011-12-21 14:48:43 -08002 * Basic Node interface support
Linus Torvalds1da177e2005-04-16 15:20:36 -07003 */
4
Linus Torvalds1da177e2005-04-16 15:20:36 -07005#include <linux/module.h>
6#include <linux/init.h>
7#include <linux/mm.h>
Gary Hadec04fc582009-01-06 14:39:14 -08008#include <linux/memory.h>
KOSAKI Motohirofa25c502011-05-24 17:11:28 -07009#include <linux/vmstat.h>
Andrew Morton6e259e72013-04-29 15:08:07 -070010#include <linux/notifier.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070011#include <linux/node.h>
12#include <linux/hugetlb.h>
Mel Gormaned4a6d72010-05-24 14:32:29 -070013#include <linux/compaction.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070014#include <linux/cpumask.h>
15#include <linux/topology.h>
16#include <linux/nodemask.h>
KAMEZAWA Hiroyuki76b67ed2006-06-27 02:53:41 -070017#include <linux/cpu.h>
Lee Schermerhornbde631a2007-10-16 01:26:27 -070018#include <linux/device.h>
Lee Schermerhornaf936a12008-10-18 20:26:53 -070019#include <linux/swap.h>
Tejun Heo18e5b532010-04-06 19:23:33 +090020#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070021
Kay Sievers10fbcf42011-12-21 14:48:43 -080022static struct bus_type node_subsys = {
Kay Sieversaf5ca3f42007-12-20 02:09:39 +010023 .name = "node",
Kay Sievers10fbcf42011-12-21 14:48:43 -080024 .dev_name = "node",
Linus Torvalds1da177e2005-04-16 15:20:36 -070025};
26
27
Sudeep Holla5aaba362014-09-30 14:48:22 +010028static ssize_t node_read_cpumap(struct device *dev, bool list, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -070029{
Zhen Lei064f0e92017-10-13 15:57:50 -070030 ssize_t n;
31 cpumask_var_t mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -070032 struct node *node_dev = to_node(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -070033
Mike Travis39106dc2008-04-08 11:43:03 -070034 /* 2008/04/07: buf currently PAGE_SIZE, need 9 chars per 32 bits. */
35 BUILD_BUG_ON((NR_CPUS/32 * 9) > (PAGE_SIZE-1));
Linus Torvalds1da177e2005-04-16 15:20:36 -070036
Zhen Lei064f0e92017-10-13 15:57:50 -070037 if (!alloc_cpumask_var(&mask, GFP_KERNEL))
38 return 0;
39
40 cpumask_and(mask, cpumask_of_node(node_dev->dev.id), cpu_online_mask);
41 n = cpumap_print_to_pagebuf(list, buf, mask);
42 free_cpumask_var(mask);
43
44 return n;
Linus Torvalds1da177e2005-04-16 15:20:36 -070045}
46
Kay Sievers10fbcf42011-12-21 14:48:43 -080047static inline ssize_t node_read_cpumask(struct device *dev,
48 struct device_attribute *attr, char *buf)
Mike Travis39106dc2008-04-08 11:43:03 -070049{
Sudeep Holla5aaba362014-09-30 14:48:22 +010050 return node_read_cpumap(dev, false, buf);
Mike Travis39106dc2008-04-08 11:43:03 -070051}
Kay Sievers10fbcf42011-12-21 14:48:43 -080052static inline ssize_t node_read_cpulist(struct device *dev,
53 struct device_attribute *attr, char *buf)
Mike Travis39106dc2008-04-08 11:43:03 -070054{
Sudeep Holla5aaba362014-09-30 14:48:22 +010055 return node_read_cpumap(dev, true, buf);
Mike Travis39106dc2008-04-08 11:43:03 -070056}
57
Kay Sievers10fbcf42011-12-21 14:48:43 -080058static DEVICE_ATTR(cpumap, S_IRUGO, node_read_cpumask, NULL);
59static DEVICE_ATTR(cpulist, S_IRUGO, node_read_cpulist, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -070060
61#define K(x) ((x) << (PAGE_SHIFT - 10))
Kay Sievers10fbcf42011-12-21 14:48:43 -080062static ssize_t node_read_meminfo(struct device *dev,
63 struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -070064{
65 int n;
66 int nid = dev->id;
Mel Gorman599d0c92016-07-28 15:45:31 -070067 struct pglist_data *pgdat = NODE_DATA(nid);
Linus Torvalds1da177e2005-04-16 15:20:36 -070068 struct sysinfo i;
Linus Torvalds1da177e2005-04-16 15:20:36 -070069
70 si_meminfo_node(&i, nid);
KOSAKI Motohiro7ee92252010-08-09 17:19:50 -070071 n = sprintf(buf,
Rik van Riel4f98a2f2008-10-18 20:26:32 -070072 "Node %d MemTotal: %8lu kB\n"
73 "Node %d MemFree: %8lu kB\n"
74 "Node %d MemUsed: %8lu kB\n"
75 "Node %d Active: %8lu kB\n"
76 "Node %d Inactive: %8lu kB\n"
77 "Node %d Active(anon): %8lu kB\n"
78 "Node %d Inactive(anon): %8lu kB\n"
79 "Node %d Active(file): %8lu kB\n"
80 "Node %d Inactive(file): %8lu kB\n"
Nick Piggin5344b7e2008-10-18 20:26:51 -070081 "Node %d Unevictable: %8lu kB\n"
KOSAKI Motohiro7ee92252010-08-09 17:19:50 -070082 "Node %d Mlocked: %8lu kB\n",
83 nid, K(i.totalram),
84 nid, K(i.freeram),
85 nid, K(i.totalram - i.freeram),
Mel Gorman599d0c92016-07-28 15:45:31 -070086 nid, K(node_page_state(pgdat, NR_ACTIVE_ANON) +
87 node_page_state(pgdat, NR_ACTIVE_FILE)),
88 nid, K(node_page_state(pgdat, NR_INACTIVE_ANON) +
89 node_page_state(pgdat, NR_INACTIVE_FILE)),
90 nid, K(node_page_state(pgdat, NR_ACTIVE_ANON)),
91 nid, K(node_page_state(pgdat, NR_INACTIVE_ANON)),
92 nid, K(node_page_state(pgdat, NR_ACTIVE_FILE)),
93 nid, K(node_page_state(pgdat, NR_INACTIVE_FILE)),
94 nid, K(node_page_state(pgdat, NR_UNEVICTABLE)),
Mel Gorman75ef7182016-07-28 15:45:24 -070095 nid, K(sum_zone_node_page_state(nid, NR_MLOCK)));
KOSAKI Motohiro7ee92252010-08-09 17:19:50 -070096
Christoph Lameter182e8e22006-09-25 23:31:10 -070097#ifdef CONFIG_HIGHMEM
KOSAKI Motohiro7ee92252010-08-09 17:19:50 -070098 n += sprintf(buf + n,
Rik van Riel4f98a2f2008-10-18 20:26:32 -070099 "Node %d HighTotal: %8lu kB\n"
100 "Node %d HighFree: %8lu kB\n"
101 "Node %d LowTotal: %8lu kB\n"
KOSAKI Motohiro7ee92252010-08-09 17:19:50 -0700102 "Node %d LowFree: %8lu kB\n",
103 nid, K(i.totalhigh),
104 nid, K(i.freehigh),
105 nid, K(i.totalram - i.totalhigh),
106 nid, K(i.freeram - i.freehigh));
Christoph Lameter182e8e22006-09-25 23:31:10 -0700107#endif
KOSAKI Motohiro7ee92252010-08-09 17:19:50 -0700108 n += sprintf(buf + n,
Rik van Riel4f98a2f2008-10-18 20:26:32 -0700109 "Node %d Dirty: %8lu kB\n"
110 "Node %d Writeback: %8lu kB\n"
111 "Node %d FilePages: %8lu kB\n"
112 "Node %d Mapped: %8lu kB\n"
113 "Node %d AnonPages: %8lu kB\n"
KOSAKI Motohiro4b021082009-09-21 17:01:33 -0700114 "Node %d Shmem: %8lu kB\n"
KOSAKI Motohiroc6a7f572009-09-21 17:01:32 -0700115 "Node %d KernelStack: %8lu kB\n"
Rik van Riel4f98a2f2008-10-18 20:26:32 -0700116 "Node %d PageTables: %8lu kB\n"
117 "Node %d NFS_Unstable: %8lu kB\n"
118 "Node %d Bounce: %8lu kB\n"
119 "Node %d WritebackTmp: %8lu kB\n"
120 "Node %d Slab: %8lu kB\n"
121 "Node %d SReclaimable: %8lu kB\n"
David Rientjes05b258e2011-01-13 15:47:14 -0800122 "Node %d SUnreclaim: %8lu kB\n"
123#ifdef CONFIG_TRANSPARENT_HUGEPAGE
124 "Node %d AnonHugePages: %8lu kB\n"
Kirill A. Shutemov65c45372016-07-26 15:26:10 -0700125 "Node %d ShmemHugePages: %8lu kB\n"
126 "Node %d ShmemPmdMapped: %8lu kB\n"
David Rientjes05b258e2011-01-13 15:47:14 -0800127#endif
128 ,
Mel Gorman11fb9982016-07-28 15:46:20 -0700129 nid, K(node_page_state(pgdat, NR_FILE_DIRTY)),
130 nid, K(node_page_state(pgdat, NR_WRITEBACK)),
131 nid, K(node_page_state(pgdat, NR_FILE_PAGES)),
Mel Gorman50658e22016-07-28 15:46:14 -0700132 nid, K(node_page_state(pgdat, NR_FILE_MAPPED)),
Mel Gorman4b9d0fa2016-07-28 15:46:17 -0700133 nid, K(node_page_state(pgdat, NR_ANON_MAPPED)),
Rafael Aquinicc7452b2014-08-06 16:06:38 -0700134 nid, K(i.sharedram),
Andy Lutomirskid30dd8b2016-07-28 15:48:14 -0700135 nid, sum_zone_node_page_state(nid, NR_KERNEL_STACK_KB),
Mel Gorman75ef7182016-07-28 15:45:24 -0700136 nid, K(sum_zone_node_page_state(nid, NR_PAGETABLE)),
Mel Gorman11fb9982016-07-28 15:46:20 -0700137 nid, K(node_page_state(pgdat, NR_UNSTABLE_NFS)),
Mel Gorman75ef7182016-07-28 15:45:24 -0700138 nid, K(sum_zone_node_page_state(nid, NR_BOUNCE)),
Mel Gorman11fb9982016-07-28 15:46:20 -0700139 nid, K(node_page_state(pgdat, NR_WRITEBACK_TEMP)),
Johannes Weiner385386c2017-07-06 15:40:43 -0700140 nid, K(node_page_state(pgdat, NR_SLAB_RECLAIMABLE) +
141 node_page_state(pgdat, NR_SLAB_UNRECLAIMABLE)),
142 nid, K(node_page_state(pgdat, NR_SLAB_RECLAIMABLE)),
David Rientjes05b258e2011-01-13 15:47:14 -0800143#ifdef CONFIG_TRANSPARENT_HUGEPAGE
Johannes Weiner385386c2017-07-06 15:40:43 -0700144 nid, K(node_page_state(pgdat, NR_SLAB_UNRECLAIMABLE)),
Mel Gorman11fb9982016-07-28 15:46:20 -0700145 nid, K(node_page_state(pgdat, NR_ANON_THPS) *
Kirill A. Shutemov65c45372016-07-26 15:26:10 -0700146 HPAGE_PMD_NR),
Mel Gorman11fb9982016-07-28 15:46:20 -0700147 nid, K(node_page_state(pgdat, NR_SHMEM_THPS) *
Kirill A. Shutemov65c45372016-07-26 15:26:10 -0700148 HPAGE_PMD_NR),
Mel Gorman11fb9982016-07-28 15:46:20 -0700149 nid, K(node_page_state(pgdat, NR_SHMEM_PMDMAPPED) *
Kirill A. Shutemov65c45372016-07-26 15:26:10 -0700150 HPAGE_PMD_NR));
Claudio Scordino91a13c22011-11-17 11:08:32 +0100151#else
Johannes Weiner385386c2017-07-06 15:40:43 -0700152 nid, K(node_page_state(pgdat, NR_SLAB_UNRECLAIMABLE)));
David Rientjes05b258e2011-01-13 15:47:14 -0800153#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154 n += hugetlb_report_node_meminfo(nid, buf + n);
155 return n;
156}
157
158#undef K
Kay Sievers10fbcf42011-12-21 14:48:43 -0800159static DEVICE_ATTR(meminfo, S_IRUGO, node_read_meminfo, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160
Kay Sievers10fbcf42011-12-21 14:48:43 -0800161static ssize_t node_read_numastat(struct device *dev,
162 struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164 return sprintf(buf,
165 "numa_hit %lu\n"
166 "numa_miss %lu\n"
167 "numa_foreign %lu\n"
168 "interleave_hit %lu\n"
169 "local_node %lu\n"
170 "other_node %lu\n",
Kemi Wang3a321d22017-09-08 16:12:48 -0700171 sum_zone_numa_state(dev->id, NUMA_HIT),
172 sum_zone_numa_state(dev->id, NUMA_MISS),
173 sum_zone_numa_state(dev->id, NUMA_FOREIGN),
174 sum_zone_numa_state(dev->id, NUMA_INTERLEAVE_HIT),
175 sum_zone_numa_state(dev->id, NUMA_LOCAL),
176 sum_zone_numa_state(dev->id, NUMA_OTHER));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177}
Kay Sievers10fbcf42011-12-21 14:48:43 -0800178static DEVICE_ATTR(numastat, S_IRUGO, node_read_numastat, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179
Kay Sievers10fbcf42011-12-21 14:48:43 -0800180static ssize_t node_read_vmstat(struct device *dev,
181 struct device_attribute *attr, char *buf)
Michael Rubin2ac39032010-10-26 14:21:35 -0700182{
183 int nid = dev->id;
Mel Gorman75ef7182016-07-28 15:45:24 -0700184 struct pglist_data *pgdat = NODE_DATA(nid);
KOSAKI Motohirofa25c502011-05-24 17:11:28 -0700185 int i;
186 int n = 0;
187
188 for (i = 0; i < NR_VM_ZONE_STAT_ITEMS; i++)
189 n += sprintf(buf+n, "%s %lu\n", vmstat_text[i],
Mel Gorman75ef7182016-07-28 15:45:24 -0700190 sum_zone_node_page_state(nid, i));
191
Kemi Wang3a321d22017-09-08 16:12:48 -0700192#ifdef CONFIG_NUMA
193 for (i = 0; i < NR_VM_NUMA_STAT_ITEMS; i++)
Mel Gorman75ef7182016-07-28 15:45:24 -0700194 n += sprintf(buf+n, "%s %lu\n",
195 vmstat_text[i + NR_VM_ZONE_STAT_ITEMS],
Kemi Wang3a321d22017-09-08 16:12:48 -0700196 sum_zone_numa_state(nid, i));
197#endif
198
199 for (i = 0; i < NR_VM_NODE_STAT_ITEMS; i++)
200 n += sprintf(buf+n, "%s %lu\n",
201 vmstat_text[i + NR_VM_ZONE_STAT_ITEMS +
202 NR_VM_NUMA_STAT_ITEMS],
Mel Gorman75ef7182016-07-28 15:45:24 -0700203 node_page_state(pgdat, i));
KOSAKI Motohirofa25c502011-05-24 17:11:28 -0700204
205 return n;
Michael Rubin2ac39032010-10-26 14:21:35 -0700206}
Kay Sievers10fbcf42011-12-21 14:48:43 -0800207static DEVICE_ATTR(vmstat, S_IRUGO, node_read_vmstat, NULL);
Michael Rubin2ac39032010-10-26 14:21:35 -0700208
Kay Sievers10fbcf42011-12-21 14:48:43 -0800209static ssize_t node_read_distance(struct device *dev,
Ana Nedelcu518d3f32015-03-08 12:48:48 +0200210 struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211{
212 int nid = dev->id;
213 int len = 0;
214 int i;
215
David Rientjes12ee3c02010-03-10 14:50:21 -0800216 /*
217 * buf is currently PAGE_SIZE in length and each node needs 4 chars
218 * at the most (distance + space or newline).
219 */
220 BUILD_BUG_ON(MAX_NUMNODES * 4 > PAGE_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221
222 for_each_online_node(i)
223 len += sprintf(buf + len, "%s%d", i ? " " : "", node_distance(nid, i));
224
225 len += sprintf(buf + len, "\n");
226 return len;
227}
Kay Sievers10fbcf42011-12-21 14:48:43 -0800228static DEVICE_ATTR(distance, S_IRUGO, node_read_distance, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229
Takashi Iwai3c9b8aa2015-01-29 12:29:22 +0100230static struct attribute *node_dev_attrs[] = {
231 &dev_attr_cpumap.attr,
232 &dev_attr_cpulist.attr,
233 &dev_attr_meminfo.attr,
234 &dev_attr_numastat.attr,
235 &dev_attr_distance.attr,
236 &dev_attr_vmstat.attr,
237 NULL
238};
Greg Kroah-Hartman7ca7ec42015-03-25 13:47:17 +0100239ATTRIBUTE_GROUPS(node_dev);
Takashi Iwai3c9b8aa2015-01-29 12:29:22 +0100240
Lee Schermerhorn9a3052302009-12-14 17:58:25 -0800241#ifdef CONFIG_HUGETLBFS
242/*
243 * hugetlbfs per node attributes registration interface:
244 * When/if hugetlb[fs] subsystem initializes [sometime after this module],
Lee Schermerhorn4faf8d92009-12-14 17:58:35 -0800245 * it will register its per node attributes for all online nodes with
246 * memory. It will also call register_hugetlbfs_with_node(), below, to
Lee Schermerhorn9a3052302009-12-14 17:58:25 -0800247 * register its attribute registration functions with this node driver.
248 * Once these hooks have been initialized, the node driver will call into
249 * the hugetlb module to [un]register attributes for hot-plugged nodes.
250 */
251static node_registration_func_t __hugetlb_register_node;
252static node_registration_func_t __hugetlb_unregister_node;
253
Lee Schermerhorn39da08c2009-12-14 17:58:36 -0800254static inline bool hugetlb_register_node(struct node *node)
Lee Schermerhorn9a3052302009-12-14 17:58:25 -0800255{
Lee Schermerhorn4faf8d92009-12-14 17:58:35 -0800256 if (__hugetlb_register_node &&
Lai Jiangshan8cebfcd2012-12-12 13:51:36 -0800257 node_state(node->dev.id, N_MEMORY)) {
Lee Schermerhorn9a3052302009-12-14 17:58:25 -0800258 __hugetlb_register_node(node);
Lee Schermerhorn39da08c2009-12-14 17:58:36 -0800259 return true;
260 }
261 return false;
Lee Schermerhorn9a3052302009-12-14 17:58:25 -0800262}
263
264static inline void hugetlb_unregister_node(struct node *node)
265{
266 if (__hugetlb_unregister_node)
267 __hugetlb_unregister_node(node);
268}
269
270void register_hugetlbfs_with_node(node_registration_func_t doregister,
271 node_registration_func_t unregister)
272{
273 __hugetlb_register_node = doregister;
274 __hugetlb_unregister_node = unregister;
275}
276#else
277static inline void hugetlb_register_node(struct node *node) {}
278
279static inline void hugetlb_unregister_node(struct node *node) {}
280#endif
281
Yasuaki Ishimatsu8c7b5b42012-12-11 16:00:57 -0800282static void node_device_release(struct device *dev)
283{
284 struct node *node = to_node(dev);
285
286#if defined(CONFIG_MEMORY_HOTPLUG_SPARSE) && defined(CONFIG_HUGETLBFS)
287 /*
288 * We schedule the work only when a memory section is
289 * onlined/offlined on this node. When we come here,
290 * all the memory on this node has been offlined,
291 * so we won't enqueue new work to this work.
292 *
293 * The work is using node->node_work, so we should
294 * flush work before freeing the memory.
295 */
296 flush_work(&node->node_work);
297#endif
298 kfree(node);
299}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300
301/*
Robert P. J. Day405ae7d2007-02-17 19:13:42 +0100302 * register_node - Setup a sysfs device for a node.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303 * @num - Node number to use when creating the device.
304 *
305 * Initialize and register the node device.
306 */
Dou Liyanga7be6e52017-07-10 15:49:20 -0700307static int register_node(struct node *node, int num)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308{
309 int error;
310
Kay Sievers10fbcf42011-12-21 14:48:43 -0800311 node->dev.id = num;
312 node->dev.bus = &node_subsys;
Yasuaki Ishimatsu8c7b5b42012-12-11 16:00:57 -0800313 node->dev.release = node_device_release;
Greg Kroah-Hartman7ca7ec42015-03-25 13:47:17 +0100314 node->dev.groups = node_dev_groups;
Kay Sievers10fbcf42011-12-21 14:48:43 -0800315 error = device_register(&node->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316
317 if (!error){
Lee Schermerhorn9a3052302009-12-14 17:58:25 -0800318 hugetlb_register_node(node);
Mel Gormaned4a6d72010-05-24 14:32:29 -0700319
320 compaction_register_node(node);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321 }
322 return error;
323}
324
Keiichiro Tokunaga4b450992005-05-08 21:28:53 +0900325/**
326 * unregister_node - unregister a node device
327 * @node: node going away
328 *
329 * Unregisters a node device @node. All the devices on the node must be
330 * unregistered before calling this function.
331 */
332void unregister_node(struct node *node)
333{
Lee Schermerhorn4faf8d92009-12-14 17:58:35 -0800334 hugetlb_unregister_node(node); /* no-op, if memoryless node */
Lee Schermerhornaf936a12008-10-18 20:26:53 -0700335
Kay Sievers10fbcf42011-12-21 14:48:43 -0800336 device_unregister(&node->dev);
Keiichiro Tokunaga4b450992005-05-08 21:28:53 +0900337}
338
Wen Congyang87327942012-12-11 16:00:56 -0800339struct node *node_devices[MAX_NUMNODES];
Yasunori Goto0fc44152006-06-27 02:53:38 -0700340
KAMEZAWA Hiroyuki76b67ed2006-06-27 02:53:41 -0700341/*
342 * register cpu under node
343 */
344int register_cpu_under_node(unsigned int cpu, unsigned int nid)
345{
Alex Chiang18307942009-12-14 17:59:08 -0800346 int ret;
Kay Sievers8a25a2f2011-12-21 14:29:42 -0800347 struct device *obj;
KAMEZAWA Hiroyuki76b67ed2006-06-27 02:53:41 -0700348
Alex Chiangf8246f32009-12-14 17:59:06 -0800349 if (!node_online(nid))
350 return 0;
351
Kay Sievers8a25a2f2011-12-21 14:29:42 -0800352 obj = get_cpu_device(cpu);
Alex Chiangf8246f32009-12-14 17:59:06 -0800353 if (!obj)
354 return 0;
355
Wen Congyang87327942012-12-11 16:00:56 -0800356 ret = sysfs_create_link(&node_devices[nid]->dev.kobj,
Alex Chiangf8246f32009-12-14 17:59:06 -0800357 &obj->kobj,
358 kobject_name(&obj->kobj));
Alex Chiang18307942009-12-14 17:59:08 -0800359 if (ret)
360 return ret;
361
362 return sysfs_create_link(&obj->kobj,
Wen Congyang87327942012-12-11 16:00:56 -0800363 &node_devices[nid]->dev.kobj,
364 kobject_name(&node_devices[nid]->dev.kobj));
KAMEZAWA Hiroyuki76b67ed2006-06-27 02:53:41 -0700365}
366
367int unregister_cpu_under_node(unsigned int cpu, unsigned int nid)
368{
Kay Sievers8a25a2f2011-12-21 14:29:42 -0800369 struct device *obj;
Alex Chiangb9d52da2009-12-14 17:59:07 -0800370
371 if (!node_online(nid))
372 return 0;
373
Kay Sievers8a25a2f2011-12-21 14:29:42 -0800374 obj = get_cpu_device(cpu);
Alex Chiangb9d52da2009-12-14 17:59:07 -0800375 if (!obj)
376 return 0;
377
Wen Congyang87327942012-12-11 16:00:56 -0800378 sysfs_remove_link(&node_devices[nid]->dev.kobj,
Alex Chiangb9d52da2009-12-14 17:59:07 -0800379 kobject_name(&obj->kobj));
Alex Chiang18307942009-12-14 17:59:08 -0800380 sysfs_remove_link(&obj->kobj,
Wen Congyang87327942012-12-11 16:00:56 -0800381 kobject_name(&node_devices[nid]->dev.kobj));
Alex Chiangb9d52da2009-12-14 17:59:07 -0800382
KAMEZAWA Hiroyuki76b67ed2006-06-27 02:53:41 -0700383 return 0;
384}
385
Gary Hadec04fc582009-01-06 14:39:14 -0800386#ifdef CONFIG_MEMORY_HOTPLUG_SPARSE
Fabian Frederickbd721ea2016-08-02 14:03:33 -0700387static int __ref get_nid_for_pfn(unsigned long pfn)
Gary Hadec04fc582009-01-06 14:39:14 -0800388{
Gary Hadec04fc582009-01-06 14:39:14 -0800389 if (!pfn_valid_within(pfn))
390 return -1;
Mel Gorman3a80a7f2015-06-30 14:57:02 -0700391#ifdef CONFIG_DEFERRED_STRUCT_PAGE_INIT
Thomas Gleixner8cdde382017-05-16 20:42:39 +0200392 if (system_state < SYSTEM_RUNNING)
Mel Gorman3a80a7f2015-06-30 14:57:02 -0700393 return early_pfn_to_nid(pfn);
394#endif
Gary Hadec04fc582009-01-06 14:39:14 -0800395 return pfn_to_nid(pfn);
396}
397
398/* register memory section under specified node if it spans that node */
399int register_mem_sect_under_node(struct memory_block *mem_blk, int nid)
400{
Alex Chiangdee5d0d2009-12-14 17:59:05 -0800401 int ret;
Gary Hadec04fc582009-01-06 14:39:14 -0800402 unsigned long pfn, sect_start_pfn, sect_end_pfn;
403
404 if (!mem_blk)
405 return -EFAULT;
406 if (!node_online(nid))
407 return 0;
Nathan Fontenotd3360162011-01-20 10:44:29 -0600408
409 sect_start_pfn = section_nr_to_pfn(mem_blk->start_section_nr);
410 sect_end_pfn = section_nr_to_pfn(mem_blk->end_section_nr);
411 sect_end_pfn += PAGES_PER_SECTION - 1;
Gary Hadec04fc582009-01-06 14:39:14 -0800412 for (pfn = sect_start_pfn; pfn <= sect_end_pfn; pfn++) {
413 int page_nid;
414
Yinghai Lu04697852015-09-04 15:42:39 -0700415 /*
416 * memory block could have several absent sections from start.
417 * skip pfn range from absent section
418 */
419 if (!pfn_present(pfn)) {
420 pfn = round_down(pfn + PAGES_PER_SECTION,
421 PAGES_PER_SECTION) - 1;
422 continue;
423 }
424
Gary Hadec04fc582009-01-06 14:39:14 -0800425 page_nid = get_nid_for_pfn(pfn);
426 if (page_nid < 0)
427 continue;
428 if (page_nid != nid)
429 continue;
Wen Congyang87327942012-12-11 16:00:56 -0800430 ret = sysfs_create_link_nowarn(&node_devices[nid]->dev.kobj,
Kay Sievers10fbcf42011-12-21 14:48:43 -0800431 &mem_blk->dev.kobj,
432 kobject_name(&mem_blk->dev.kobj));
Alex Chiangdee5d0d2009-12-14 17:59:05 -0800433 if (ret)
434 return ret;
435
Kay Sievers10fbcf42011-12-21 14:48:43 -0800436 return sysfs_create_link_nowarn(&mem_blk->dev.kobj,
Wen Congyang87327942012-12-11 16:00:56 -0800437 &node_devices[nid]->dev.kobj,
438 kobject_name(&node_devices[nid]->dev.kobj));
Gary Hadec04fc582009-01-06 14:39:14 -0800439 }
440 /* mem section does not span the specified node */
441 return 0;
442}
443
444/* unregister memory section under all nodes that it spans */
Nathan Fontenotd3360162011-01-20 10:44:29 -0600445int unregister_mem_sect_under_nodes(struct memory_block *mem_blk,
446 unsigned long phys_index)
Gary Hadec04fc582009-01-06 14:39:14 -0800447{
David Rientjes9ae49fa2009-12-14 17:59:46 -0800448 NODEMASK_ALLOC(nodemask_t, unlinked_nodes, GFP_KERNEL);
Gary Hadec04fc582009-01-06 14:39:14 -0800449 unsigned long pfn, sect_start_pfn, sect_end_pfn;
450
David Rientjes9ae49fa2009-12-14 17:59:46 -0800451 if (!mem_blk) {
452 NODEMASK_FREE(unlinked_nodes);
Gary Hadec04fc582009-01-06 14:39:14 -0800453 return -EFAULT;
David Rientjes9ae49fa2009-12-14 17:59:46 -0800454 }
455 if (!unlinked_nodes)
456 return -ENOMEM;
457 nodes_clear(*unlinked_nodes);
Nathan Fontenotd3360162011-01-20 10:44:29 -0600458
459 sect_start_pfn = section_nr_to_pfn(phys_index);
Gary Hadec04fc582009-01-06 14:39:14 -0800460 sect_end_pfn = sect_start_pfn + PAGES_PER_SECTION - 1;
461 for (pfn = sect_start_pfn; pfn <= sect_end_pfn; pfn++) {
Roel Kluin47504982009-03-10 12:55:45 -0700462 int nid;
Gary Hadec04fc582009-01-06 14:39:14 -0800463
464 nid = get_nid_for_pfn(pfn);
465 if (nid < 0)
466 continue;
467 if (!node_online(nid))
468 continue;
David Rientjes9ae49fa2009-12-14 17:59:46 -0800469 if (node_test_and_set(nid, *unlinked_nodes))
Gary Hadec04fc582009-01-06 14:39:14 -0800470 continue;
Wen Congyang87327942012-12-11 16:00:56 -0800471 sysfs_remove_link(&node_devices[nid]->dev.kobj,
Kay Sievers10fbcf42011-12-21 14:48:43 -0800472 kobject_name(&mem_blk->dev.kobj));
473 sysfs_remove_link(&mem_blk->dev.kobj,
Wen Congyang87327942012-12-11 16:00:56 -0800474 kobject_name(&node_devices[nid]->dev.kobj));
Gary Hadec04fc582009-01-06 14:39:14 -0800475 }
David Rientjes9ae49fa2009-12-14 17:59:46 -0800476 NODEMASK_FREE(unlinked_nodes);
Gary Hadec04fc582009-01-06 14:39:14 -0800477 return 0;
478}
479
Michal Hocko9037a992017-07-06 15:37:49 -0700480int link_mem_sections(int nid, unsigned long start_pfn, unsigned long nr_pages)
Gary Hadec04fc582009-01-06 14:39:14 -0800481{
Michal Hocko9037a992017-07-06 15:37:49 -0700482 unsigned long end_pfn = start_pfn + nr_pages;
Gary Hadec04fc582009-01-06 14:39:14 -0800483 unsigned long pfn;
Robin Holt63d027a2010-09-29 14:00:56 -0500484 struct memory_block *mem_blk = NULL;
Gary Hadec04fc582009-01-06 14:39:14 -0800485 int err = 0;
486
487 for (pfn = start_pfn; pfn < end_pfn; pfn += PAGES_PER_SECTION) {
488 unsigned long section_nr = pfn_to_section_nr(pfn);
489 struct mem_section *mem_sect;
Gary Hadec04fc582009-01-06 14:39:14 -0800490 int ret;
491
492 if (!present_section_nr(section_nr))
493 continue;
494 mem_sect = __nr_to_section(section_nr);
Yinghai Lu321bf4e2012-01-30 13:57:12 -0800495
496 /* same memblock ? */
497 if (mem_blk)
498 if ((section_nr >= mem_blk->start_section_nr) &&
499 (section_nr <= mem_blk->end_section_nr))
500 continue;
501
Robin Holt63d027a2010-09-29 14:00:56 -0500502 mem_blk = find_memory_block_hinted(mem_sect, mem_blk);
Yinghai Lu321bf4e2012-01-30 13:57:12 -0800503
Gary Hadec04fc582009-01-06 14:39:14 -0800504 ret = register_mem_sect_under_node(mem_blk, nid);
505 if (!err)
506 err = ret;
507
508 /* discard ref obtained in find_memory_block() */
Gary Hadec04fc582009-01-06 14:39:14 -0800509 }
Robin Holt63d027a2010-09-29 14:00:56 -0500510
511 if (mem_blk)
Kay Sievers10fbcf42011-12-21 14:48:43 -0800512 kobject_put(&mem_blk->dev.kobj);
Gary Hadec04fc582009-01-06 14:39:14 -0800513 return err;
514}
Lee Schermerhorn4faf8d92009-12-14 17:58:35 -0800515
Lee Schermerhorn39da08c2009-12-14 17:58:36 -0800516#ifdef CONFIG_HUGETLBFS
Lee Schermerhorn4faf8d92009-12-14 17:58:35 -0800517/*
518 * Handle per node hstate attribute [un]registration on transistions
519 * to/from memoryless state.
520 */
Lee Schermerhorn39da08c2009-12-14 17:58:36 -0800521static void node_hugetlb_work(struct work_struct *work)
522{
523 struct node *node = container_of(work, struct node, node_work);
524
525 /*
526 * We only get here when a node transitions to/from memoryless state.
527 * We can detect which transition occurred by examining whether the
528 * node has memory now. hugetlb_register_node() already check this
529 * so we try to register the attributes. If that fails, then the
530 * node has transitioned to memoryless, try to unregister the
531 * attributes.
532 */
533 if (!hugetlb_register_node(node))
534 hugetlb_unregister_node(node);
535}
536
537static void init_node_hugetlb_work(int nid)
538{
Wen Congyang87327942012-12-11 16:00:56 -0800539 INIT_WORK(&node_devices[nid]->node_work, node_hugetlb_work);
Lee Schermerhorn39da08c2009-12-14 17:58:36 -0800540}
Lee Schermerhorn4faf8d92009-12-14 17:58:35 -0800541
542static int node_memory_callback(struct notifier_block *self,
543 unsigned long action, void *arg)
544{
545 struct memory_notify *mnb = arg;
546 int nid = mnb->status_change_nid;
547
548 switch (action) {
Lee Schermerhorn39da08c2009-12-14 17:58:36 -0800549 case MEM_ONLINE:
550 case MEM_OFFLINE:
551 /*
552 * offload per node hstate [un]registration to a work thread
553 * when transitioning to/from memoryless state.
554 */
Lee Schermerhorn4faf8d92009-12-14 17:58:35 -0800555 if (nid != NUMA_NO_NODE)
Wen Congyang87327942012-12-11 16:00:56 -0800556 schedule_work(&node_devices[nid]->node_work);
Lee Schermerhorn4faf8d92009-12-14 17:58:35 -0800557 break;
Lee Schermerhorn39da08c2009-12-14 17:58:36 -0800558
Lee Schermerhorn4faf8d92009-12-14 17:58:35 -0800559 case MEM_GOING_ONLINE:
560 case MEM_GOING_OFFLINE:
561 case MEM_CANCEL_ONLINE:
562 case MEM_CANCEL_OFFLINE:
563 default:
564 break;
565 }
566
567 return NOTIFY_OK;
568}
Lee Schermerhorn39da08c2009-12-14 17:58:36 -0800569#endif /* CONFIG_HUGETLBFS */
Michal Hocko9037a992017-07-06 15:37:49 -0700570#endif /* CONFIG_MEMORY_HOTPLUG_SPARSE */
Lee Schermerhorn39da08c2009-12-14 17:58:36 -0800571
572#if !defined(CONFIG_MEMORY_HOTPLUG_SPARSE) || \
573 !defined(CONFIG_HUGETLBFS)
Lee Schermerhorn4faf8d92009-12-14 17:58:35 -0800574static inline int node_memory_callback(struct notifier_block *self,
575 unsigned long action, void *arg)
576{
577 return NOTIFY_OK;
578}
Lee Schermerhorn39da08c2009-12-14 17:58:36 -0800579
580static void init_node_hugetlb_work(int nid) { }
581
582#endif
Gary Hadec04fc582009-01-06 14:39:14 -0800583
Michal Hocko9037a992017-07-06 15:37:49 -0700584int __register_one_node(int nid)
Yasunori Goto0fc44152006-06-27 02:53:38 -0700585{
Michal Hocko9037a992017-07-06 15:37:49 -0700586 int error;
KAMEZAWA Hiroyuki76b67ed2006-06-27 02:53:41 -0700587 int cpu;
Yasunori Goto0fc44152006-06-27 02:53:38 -0700588
Michal Hocko9037a992017-07-06 15:37:49 -0700589 node_devices[nid] = kzalloc(sizeof(struct node), GFP_KERNEL);
590 if (!node_devices[nid])
591 return -ENOMEM;
Yasunori Goto0fc44152006-06-27 02:53:38 -0700592
Dou Liyanga7be6e52017-07-10 15:49:20 -0700593 error = register_node(node_devices[nid], nid);
Wen Congyang87327942012-12-11 16:00:56 -0800594
Michal Hocko9037a992017-07-06 15:37:49 -0700595 /* link cpu under this node */
596 for_each_present_cpu(cpu) {
597 if (cpu_to_node(cpu) == nid)
598 register_cpu_under_node(cpu, nid);
Yasunori Goto0fc44152006-06-27 02:53:38 -0700599 }
600
Michal Hocko9037a992017-07-06 15:37:49 -0700601 /* initialize work queue for memory hot plug */
602 init_node_hugetlb_work(nid);
Yasunori Goto0fc44152006-06-27 02:53:38 -0700603
Michal Hocko9037a992017-07-06 15:37:49 -0700604 return error;
Yasunori Goto0fc44152006-06-27 02:53:38 -0700605}
606
607void unregister_one_node(int nid)
608{
Xishi Qiu92d585e2014-03-06 17:18:21 +0800609 if (!node_devices[nid])
610 return;
611
Wen Congyang87327942012-12-11 16:00:56 -0800612 unregister_node(node_devices[nid]);
Wen Congyang87327942012-12-11 16:00:56 -0800613 node_devices[nid] = NULL;
Yasunori Goto0fc44152006-06-27 02:53:38 -0700614}
615
Lee Schermerhornbde631a2007-10-16 01:26:27 -0700616/*
617 * node states attributes
618 */
619
620static ssize_t print_nodes_state(enum node_states state, char *buf)
621{
622 int n;
623
Tejun Heof799b1a2015-02-13 14:37:56 -0800624 n = scnprintf(buf, PAGE_SIZE - 1, "%*pbl",
625 nodemask_pr_args(&node_states[state]));
Ryota Ozakif6238812012-05-29 15:06:20 -0700626 buf[n++] = '\n';
627 buf[n] = '\0';
Lee Schermerhornbde631a2007-10-16 01:26:27 -0700628 return n;
629}
630
Andi Kleenb15f5622010-01-05 12:47:59 +0100631struct node_attr {
Kay Sievers10fbcf42011-12-21 14:48:43 -0800632 struct device_attribute attr;
Andi Kleenb15f5622010-01-05 12:47:59 +0100633 enum node_states state;
634};
635
Kay Sievers10fbcf42011-12-21 14:48:43 -0800636static ssize_t show_node_state(struct device *dev,
637 struct device_attribute *attr, char *buf)
Lee Schermerhornbde631a2007-10-16 01:26:27 -0700638{
Andi Kleenb15f5622010-01-05 12:47:59 +0100639 struct node_attr *na = container_of(attr, struct node_attr, attr);
640 return print_nodes_state(na->state, buf);
Lee Schermerhornbde631a2007-10-16 01:26:27 -0700641}
642
Andi Kleenb15f5622010-01-05 12:47:59 +0100643#define _NODE_ATTR(name, state) \
Kay Sievers10fbcf42011-12-21 14:48:43 -0800644 { __ATTR(name, 0444, show_node_state, NULL), state }
Lee Schermerhornbde631a2007-10-16 01:26:27 -0700645
Andi Kleenb15f5622010-01-05 12:47:59 +0100646static struct node_attr node_state_attr[] = {
Lai Jiangshanfcf07d22012-12-11 16:03:13 -0800647 [N_POSSIBLE] = _NODE_ATTR(possible, N_POSSIBLE),
648 [N_ONLINE] = _NODE_ATTR(online, N_ONLINE),
649 [N_NORMAL_MEMORY] = _NODE_ATTR(has_normal_memory, N_NORMAL_MEMORY),
Lee Schermerhornbde631a2007-10-16 01:26:27 -0700650#ifdef CONFIG_HIGHMEM
Lai Jiangshanfcf07d22012-12-11 16:03:13 -0800651 [N_HIGH_MEMORY] = _NODE_ATTR(has_high_memory, N_HIGH_MEMORY),
Lee Schermerhornbde631a2007-10-16 01:26:27 -0700652#endif
Lai Jiangshan20b2f522012-12-12 13:52:00 -0800653 [N_MEMORY] = _NODE_ATTR(has_memory, N_MEMORY),
Lai Jiangshanfcf07d22012-12-11 16:03:13 -0800654 [N_CPU] = _NODE_ATTR(has_cpu, N_CPU),
Lee Schermerhornbde631a2007-10-16 01:26:27 -0700655};
656
Kay Sievers10fbcf42011-12-21 14:48:43 -0800657static struct attribute *node_state_attrs[] = {
Lai Jiangshanfcf07d22012-12-11 16:03:13 -0800658 &node_state_attr[N_POSSIBLE].attr.attr,
659 &node_state_attr[N_ONLINE].attr.attr,
660 &node_state_attr[N_NORMAL_MEMORY].attr.attr,
Andi Kleen3701cde2010-01-05 12:48:04 +0100661#ifdef CONFIG_HIGHMEM
Lai Jiangshanfcf07d22012-12-11 16:03:13 -0800662 &node_state_attr[N_HIGH_MEMORY].attr.attr,
Andi Kleen3701cde2010-01-05 12:48:04 +0100663#endif
Lai Jiangshan20b2f522012-12-12 13:52:00 -0800664 &node_state_attr[N_MEMORY].attr.attr,
Lai Jiangshanfcf07d22012-12-11 16:03:13 -0800665 &node_state_attr[N_CPU].attr.attr,
Andi Kleen3701cde2010-01-05 12:48:04 +0100666 NULL
667};
Lee Schermerhornbde631a2007-10-16 01:26:27 -0700668
Kay Sievers10fbcf42011-12-21 14:48:43 -0800669static struct attribute_group memory_root_attr_group = {
670 .attrs = node_state_attrs,
671};
672
673static const struct attribute_group *cpu_root_attr_groups[] = {
674 &memory_root_attr_group,
675 NULL,
676};
677
Lee Schermerhorn4faf8d92009-12-14 17:58:35 -0800678#define NODE_CALLBACK_PRI 2 /* lower than SLAB */
Keiichiro Tokunaga4b450992005-05-08 21:28:53 +0900679static int __init register_node_type(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700680{
Lee Schermerhornbde631a2007-10-16 01:26:27 -0700681 int ret;
682
Andi Kleen3701cde2010-01-05 12:48:04 +0100683 BUILD_BUG_ON(ARRAY_SIZE(node_state_attr) != NR_NODE_STATES);
684 BUILD_BUG_ON(ARRAY_SIZE(node_state_attrs)-1 != NR_NODE_STATES);
685
Kay Sievers10fbcf42011-12-21 14:48:43 -0800686 ret = subsys_system_register(&node_subsys, cpu_root_attr_groups);
Lee Schermerhorn4faf8d92009-12-14 17:58:35 -0800687 if (!ret) {
Andrew Morton6e259e72013-04-29 15:08:07 -0700688 static struct notifier_block node_memory_callback_nb = {
689 .notifier_call = node_memory_callback,
690 .priority = NODE_CALLBACK_PRI,
691 };
692 register_hotmemory_notifier(&node_memory_callback_nb);
Lee Schermerhorn4faf8d92009-12-14 17:58:35 -0800693 }
Lee Schermerhornbde631a2007-10-16 01:26:27 -0700694
695 /*
696 * Note: we're not going to unregister the node class if we fail
697 * to register the node state class attribute files.
698 */
699 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700}
701postcore_initcall(register_node_type);