blob: 26383af9900ccdb62dd74a801f0f68abb96d59b5 [file] [log] [blame]
Dave Hansen3947be12005-10-29 18:16:54 -07001/*
Kay Sievers10fbcf42011-12-21 14:48:43 -08002 * Memory subsystem support
Dave Hansen3947be12005-10-29 18:16:54 -07003 *
4 * Written by Matt Tolentino <matthew.e.tolentino@intel.com>
5 * Dave Hansen <haveblue@us.ibm.com>
6 *
7 * This file provides the necessary infrastructure to represent
8 * a SPARSEMEM-memory-model system's physical memory in /sysfs.
9 * All arch-independent code that assumes MEMORY_HOTPLUG requires
10 * SPARSEMEM should be contained here, or in mm/memory_hotplug.c.
11 */
12
Dave Hansen3947be12005-10-29 18:16:54 -070013#include <linux/module.h>
14#include <linux/init.h>
Dave Hansen3947be12005-10-29 18:16:54 -070015#include <linux/topology.h>
Randy.Dunlapc59ede72006-01-11 12:17:46 -080016#include <linux/capability.h>
Dave Hansen3947be12005-10-29 18:16:54 -070017#include <linux/device.h>
18#include <linux/memory.h>
Dave Hansen3947be12005-10-29 18:16:54 -070019#include <linux/memory_hotplug.h>
20#include <linux/mm.h>
Daniel Walkerda19cbc2008-02-04 23:35:47 -080021#include <linux/mutex.h>
Shaohua Li9f1b16a2008-10-18 20:27:12 -070022#include <linux/stat.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090023#include <linux/slab.h>
Shaohua Li9f1b16a2008-10-18 20:27:12 -070024
Arun Sharma600634972011-07-26 16:09:06 -070025#include <linux/atomic.h>
Linus Torvalds7c0f6ba2016-12-24 11:46:01 -080026#include <linux/uaccess.h>
Dave Hansen3947be12005-10-29 18:16:54 -070027
Nathan Fontenot2938ffb2010-10-19 12:45:24 -050028static DEFINE_MUTEX(mem_sysfs_mutex);
29
Dave Hansen3947be12005-10-29 18:16:54 -070030#define MEMORY_CLASS_NAME "memory"
Nathan Fontenot0c2c99b2011-01-20 10:43:34 -060031
Gu Zheng7315f0c2013-08-28 14:38:27 +080032#define to_memory_block(dev) container_of(dev, struct memory_block, dev)
33
Nathan Fontenot0c2c99b2011-01-20 10:43:34 -060034static int sections_per_block;
35
36static inline int base_memory_block_id(int section_nr)
37{
38 return section_nr / sections_per_block;
39}
Dave Hansen3947be12005-10-29 18:16:54 -070040
Rafael J. Wysocki4960e052013-05-08 14:18:37 +020041static int memory_subsys_online(struct device *dev);
42static int memory_subsys_offline(struct device *dev);
43
Kay Sievers10fbcf42011-12-21 14:48:43 -080044static struct bus_type memory_subsys = {
Kay Sieversaf5ca3f2007-12-20 02:09:39 +010045 .name = MEMORY_CLASS_NAME,
Kay Sievers10fbcf42011-12-21 14:48:43 -080046 .dev_name = MEMORY_CLASS_NAME,
Rafael J. Wysocki4960e052013-05-08 14:18:37 +020047 .online = memory_subsys_online,
48 .offline = memory_subsys_offline,
Dave Hansen3947be12005-10-29 18:16:54 -070049};
50
Alan Sterne041c682006-03-27 01:16:30 -080051static BLOCKING_NOTIFIER_HEAD(memory_chain);
Dave Hansen3947be12005-10-29 18:16:54 -070052
Andy Whitcroft98a38eb2006-01-06 00:10:35 -080053int register_memory_notifier(struct notifier_block *nb)
Dave Hansen3947be12005-10-29 18:16:54 -070054{
Ioana Ciornei2aeebca2015-03-08 12:48:35 +020055 return blocking_notifier_chain_register(&memory_chain, nb);
Dave Hansen3947be12005-10-29 18:16:54 -070056}
Hannes Hering3c82c302008-05-07 14:43:01 +020057EXPORT_SYMBOL(register_memory_notifier);
Dave Hansen3947be12005-10-29 18:16:54 -070058
Andy Whitcroft98a38eb2006-01-06 00:10:35 -080059void unregister_memory_notifier(struct notifier_block *nb)
Dave Hansen3947be12005-10-29 18:16:54 -070060{
Ioana Ciornei2aeebca2015-03-08 12:48:35 +020061 blocking_notifier_chain_unregister(&memory_chain, nb);
Dave Hansen3947be12005-10-29 18:16:54 -070062}
Hannes Hering3c82c302008-05-07 14:43:01 +020063EXPORT_SYMBOL(unregister_memory_notifier);
Dave Hansen3947be12005-10-29 18:16:54 -070064
Robert Jennings925cc712009-12-17 14:44:38 +000065static ATOMIC_NOTIFIER_HEAD(memory_isolate_chain);
66
67int register_memory_isolate_notifier(struct notifier_block *nb)
68{
69 return atomic_notifier_chain_register(&memory_isolate_chain, nb);
70}
71EXPORT_SYMBOL(register_memory_isolate_notifier);
72
73void unregister_memory_isolate_notifier(struct notifier_block *nb)
74{
75 atomic_notifier_chain_unregister(&memory_isolate_chain, nb);
76}
77EXPORT_SYMBOL(unregister_memory_isolate_notifier);
78
Yasuaki Ishimatsufa7194e2012-12-11 16:00:44 -080079static void memory_block_release(struct device *dev)
80{
Gu Zheng7315f0c2013-08-28 14:38:27 +080081 struct memory_block *mem = to_memory_block(dev);
Yasuaki Ishimatsufa7194e2012-12-11 16:00:44 -080082
83 kfree(mem);
84}
85
Nathan Fontenot0c2c99b2011-01-20 10:43:34 -060086unsigned long __weak memory_block_size_bytes(void)
87{
88 return MIN_MEMORY_BLOCK_SIZE;
89}
90
91static unsigned long get_memory_block_size(void)
92{
93 unsigned long block_sz;
94
95 block_sz = memory_block_size_bytes();
96
97 /* Validate blk_sz is a power of 2 and not less than section size */
98 if ((block_sz & (block_sz - 1)) || (block_sz < MIN_MEMORY_BLOCK_SIZE)) {
99 WARN_ON(1);
100 block_sz = MIN_MEMORY_BLOCK_SIZE;
101 }
102
103 return block_sz;
104}
105
Dave Hansen3947be12005-10-29 18:16:54 -0700106/*
107 * use this as the physical section index that this memsection
108 * uses.
109 */
110
Kay Sievers10fbcf42011-12-21 14:48:43 -0800111static ssize_t show_mem_start_phys_index(struct device *dev,
112 struct device_attribute *attr, char *buf)
Dave Hansen3947be12005-10-29 18:16:54 -0700113{
Gu Zheng7315f0c2013-08-28 14:38:27 +0800114 struct memory_block *mem = to_memory_block(dev);
Nathan Fontenotd3360162011-01-20 10:44:29 -0600115 unsigned long phys_index;
116
117 phys_index = mem->start_section_nr / sections_per_block;
118 return sprintf(buf, "%08lx\n", phys_index);
119}
120
Dave Hansen3947be12005-10-29 18:16:54 -0700121/*
Badari Pulavarty5c755e92008-07-23 21:28:19 -0700122 * Show whether the section of memory is likely to be hot-removable
123 */
Kay Sievers10fbcf42011-12-21 14:48:43 -0800124static ssize_t show_mem_removable(struct device *dev,
125 struct device_attribute *attr, char *buf)
Badari Pulavarty5c755e92008-07-23 21:28:19 -0700126{
Nathan Fontenot0c2c99b2011-01-20 10:43:34 -0600127 unsigned long i, pfn;
128 int ret = 1;
Gu Zheng7315f0c2013-08-28 14:38:27 +0800129 struct memory_block *mem = to_memory_block(dev);
Badari Pulavarty5c755e92008-07-23 21:28:19 -0700130
Michal Hocko8b0662f2017-07-06 15:37:53 -0700131 if (mem->state != MEM_ONLINE)
132 goto out;
133
Nathan Fontenot0c2c99b2011-01-20 10:43:34 -0600134 for (i = 0; i < sections_per_block; i++) {
Russ Anderson21ea9f52013-08-28 16:35:18 -0700135 if (!present_section_nr(mem->start_section_nr + i))
136 continue;
Nathan Fontenotd3360162011-01-20 10:44:29 -0600137 pfn = section_nr_to_pfn(mem->start_section_nr + i);
Nathan Fontenot0c2c99b2011-01-20 10:43:34 -0600138 ret &= is_mem_section_removable(pfn, PAGES_PER_SECTION);
139 }
140
Michal Hocko8b0662f2017-07-06 15:37:53 -0700141out:
Badari Pulavarty5c755e92008-07-23 21:28:19 -0700142 return sprintf(buf, "%d\n", ret);
143}
144
145/*
Dave Hansen3947be12005-10-29 18:16:54 -0700146 * online, offline, going offline, etc.
147 */
Kay Sievers10fbcf42011-12-21 14:48:43 -0800148static ssize_t show_mem_state(struct device *dev,
149 struct device_attribute *attr, char *buf)
Dave Hansen3947be12005-10-29 18:16:54 -0700150{
Gu Zheng7315f0c2013-08-28 14:38:27 +0800151 struct memory_block *mem = to_memory_block(dev);
Dave Hansen3947be12005-10-29 18:16:54 -0700152 ssize_t len = 0;
153
154 /*
155 * We can probably put these states in a nice little array
156 * so that they're not open-coded
157 */
158 switch (mem->state) {
Ioana Ciornei3d3af6a2015-03-08 12:29:04 +0200159 case MEM_ONLINE:
160 len = sprintf(buf, "online\n");
161 break;
162 case MEM_OFFLINE:
163 len = sprintf(buf, "offline\n");
164 break;
165 case MEM_GOING_OFFLINE:
166 len = sprintf(buf, "going-offline\n");
167 break;
168 default:
169 len = sprintf(buf, "ERROR-UNKNOWN-%ld\n",
170 mem->state);
171 WARN_ON(1);
172 break;
Dave Hansen3947be12005-10-29 18:16:54 -0700173 }
174
175 return len;
176}
177
Yasunori Goto7b78d332007-10-21 16:41:36 -0700178int memory_notify(unsigned long val, void *v)
Dave Hansen3947be12005-10-29 18:16:54 -0700179{
Alan Sterne041c682006-03-27 01:16:30 -0800180 return blocking_notifier_call_chain(&memory_chain, val, v);
Dave Hansen3947be12005-10-29 18:16:54 -0700181}
182
Robert Jennings925cc712009-12-17 14:44:38 +0000183int memory_isolate_notify(unsigned long val, void *v)
184{
185 return atomic_notifier_call_chain(&memory_isolate_chain, val, v);
186}
187
Dave Hansen3947be12005-10-29 18:16:54 -0700188/*
Mel Gorman2bbcb8782011-10-17 16:38:20 +0200189 * The probe routines leave the pages reserved, just as the bootmem code does.
190 * Make sure they're still that way.
191 */
Tang Chen6056d612013-04-29 15:08:40 -0700192static bool pages_correctly_reserved(unsigned long start_pfn)
Mel Gorman2bbcb8782011-10-17 16:38:20 +0200193{
194 int i, j;
195 struct page *page;
196 unsigned long pfn = start_pfn;
197
198 /*
199 * memmap between sections is not contiguous except with
200 * SPARSEMEM_VMEMMAP. We lookup the page once per section
201 * and assume memmap is contiguous within each section
202 */
203 for (i = 0; i < sections_per_block; i++, pfn += PAGES_PER_SECTION) {
204 if (WARN_ON_ONCE(!pfn_valid(pfn)))
205 return false;
206 page = pfn_to_page(pfn);
207
208 for (j = 0; j < PAGES_PER_SECTION; j++) {
209 if (PageReserved(page + j))
210 continue;
211
212 printk(KERN_WARNING "section number %ld page number %d "
213 "not reserved, was it already online?\n",
214 pfn_to_section_nr(pfn), j);
215
216 return false;
217 }
218 }
219
220 return true;
221}
222
223/*
Dave Hansen3947be12005-10-29 18:16:54 -0700224 * MEMORY_HOTPLUG depends on SPARSEMEM in mm/Kconfig, so it is
225 * OK to have direct references to sparsemem variables in here.
David Rientjes30467e02015-04-14 15:45:11 -0700226 * Must already be protected by mem_hotplug_begin().
Dave Hansen3947be12005-10-29 18:16:54 -0700227 */
228static int
Lai Jiangshan511c2ab2012-12-11 16:03:16 -0800229memory_block_action(unsigned long phys_index, unsigned long action, int online_type)
Dave Hansen3947be12005-10-29 18:16:54 -0700230{
Wen Congyanga16cee12012-10-08 16:33:58 -0700231 unsigned long start_pfn;
Anton Blanchard5409d2c2011-05-11 17:25:14 +1000232 unsigned long nr_pages = PAGES_PER_SECTION * sections_per_block;
Dave Hansen3947be12005-10-29 18:16:54 -0700233 int ret;
Dave Hansen3947be12005-10-29 18:16:54 -0700234
Sheng Yong19c07d52015-04-14 15:44:54 -0700235 start_pfn = section_nr_to_pfn(phys_index);
Greg Kroah-Hartmande0ed362011-10-18 14:00:57 -0700236
Dave Hansen3947be12005-10-29 18:16:54 -0700237 switch (action) {
Ioana Ciornei3d3af6a2015-03-08 12:29:04 +0200238 case MEM_ONLINE:
239 if (!pages_correctly_reserved(start_pfn))
240 return -EBUSY;
Mel Gorman2bbcb8782011-10-17 16:38:20 +0200241
Ioana Ciornei3d3af6a2015-03-08 12:29:04 +0200242 ret = online_pages(start_pfn, nr_pages, online_type);
243 break;
244 case MEM_OFFLINE:
245 ret = offline_pages(start_pfn, nr_pages);
246 break;
247 default:
248 WARN(1, KERN_WARNING "%s(%ld, %ld) unknown action: "
249 "%ld\n", __func__, phys_index, action, action);
250 ret = -EINVAL;
Dave Hansen3947be12005-10-29 18:16:54 -0700251 }
Dave Hansen3947be12005-10-29 18:16:54 -0700252
253 return ret;
254}
255
Nathan Fontenotdc18d702017-02-24 15:00:02 -0800256static int memory_block_change_state(struct memory_block *mem,
Seth Jenningsfa2be402013-08-20 16:05:05 -0500257 unsigned long to_state, unsigned long from_state_req)
Dave Hansen3947be12005-10-29 18:16:54 -0700258{
Greg Kroah-Hartmande0ed362011-10-18 14:00:57 -0700259 int ret = 0;
Nathan Fontenot0c2c99b2011-01-20 10:43:34 -0600260
Rafael J. Wysocki4960e052013-05-08 14:18:37 +0200261 if (mem->state != from_state_req)
262 return -EINVAL;
Dave Hansen3947be12005-10-29 18:16:54 -0700263
Nathan Fontenot0c2c99b2011-01-20 10:43:34 -0600264 if (to_state == MEM_OFFLINE)
265 mem->state = MEM_GOING_OFFLINE;
266
Seth Jenningsfa2be402013-08-20 16:05:05 -0500267 ret = memory_block_action(mem->start_section_nr, to_state,
268 mem->online_type);
269
Rafael J. Wysockib2c064b2013-05-23 10:38:55 +0200270 mem->state = ret ? from_state_req : to_state;
Seth Jenningsfa2be402013-08-20 16:05:05 -0500271
Rafael J. Wysocki4960e052013-05-08 14:18:37 +0200272 return ret;
273}
Nathan Fontenot0c2c99b2011-01-20 10:43:34 -0600274
Seth Jenningsfa2be402013-08-20 16:05:05 -0500275/* The device lock serializes operations on memory_subsys_[online|offline] */
Rafael J. Wysocki4960e052013-05-08 14:18:37 +0200276static int memory_subsys_online(struct device *dev)
277{
Gu Zheng7315f0c2013-08-28 14:38:27 +0800278 struct memory_block *mem = to_memory_block(dev);
Rafael J. Wysocki4960e052013-05-08 14:18:37 +0200279 int ret;
Dave Hansen3947be12005-10-29 18:16:54 -0700280
Seth Jenningsfa2be402013-08-20 16:05:05 -0500281 if (mem->state == MEM_ONLINE)
282 return 0;
Rafael J. Wysocki4960e052013-05-08 14:18:37 +0200283
Seth Jenningsfa2be402013-08-20 16:05:05 -0500284 /*
285 * If we are called from store_mem_state(), online_type will be
286 * set >= 0 Otherwise we were called from the device online
287 * attribute and need to set the online_type.
288 */
289 if (mem->online_type < 0)
Tang Chen4f7c6b42014-08-06 16:05:13 -0700290 mem->online_type = MMOP_ONLINE_KEEP;
Rafael J. Wysocki4960e052013-05-08 14:18:37 +0200291
David Rientjes30467e02015-04-14 15:45:11 -0700292 /* Already under protection of mem_hotplug_begin() */
Seth Jenningsfa2be402013-08-20 16:05:05 -0500293 ret = memory_block_change_state(mem, MEM_ONLINE, MEM_OFFLINE);
294
295 /* clear online_type */
296 mem->online_type = -1;
297
Rafael J. Wysocki4960e052013-05-08 14:18:37 +0200298 return ret;
299}
300
301static int memory_subsys_offline(struct device *dev)
302{
Gu Zheng7315f0c2013-08-28 14:38:27 +0800303 struct memory_block *mem = to_memory_block(dev);
Rafael J. Wysocki4960e052013-05-08 14:18:37 +0200304
Seth Jenningsfa2be402013-08-20 16:05:05 -0500305 if (mem->state == MEM_OFFLINE)
306 return 0;
Rafael J. Wysocki4960e052013-05-08 14:18:37 +0200307
Seth Jennings26bbe7e2015-12-11 13:40:57 -0800308 /* Can't offline block with non-present sections */
309 if (mem->section_count != sections_per_block)
310 return -EINVAL;
311
Seth Jenningsfa2be402013-08-20 16:05:05 -0500312 return memory_block_change_state(mem, MEM_OFFLINE, MEM_ONLINE);
Rafael J. Wysocki4960e052013-05-08 14:18:37 +0200313}
314
Dave Hansen3947be12005-10-29 18:16:54 -0700315static ssize_t
Kay Sievers10fbcf42011-12-21 14:48:43 -0800316store_mem_state(struct device *dev,
317 struct device_attribute *attr, const char *buf, size_t count)
Dave Hansen3947be12005-10-29 18:16:54 -0700318{
Gu Zheng7315f0c2013-08-28 14:38:27 +0800319 struct memory_block *mem = to_memory_block(dev);
Seth Jenningsfa2be402013-08-20 16:05:05 -0500320 int ret, online_type;
Dave Hansen3947be12005-10-29 18:16:54 -0700321
Rafael J. Wysocki5e33bc42013-08-28 21:41:01 +0200322 ret = lock_device_hotplug_sysfs();
323 if (ret)
324 return ret;
Rafael J. Wysocki4960e052013-05-08 14:18:37 +0200325
Tang Chen1f6a6cc2014-08-06 16:05:11 -0700326 if (sysfs_streq(buf, "online_kernel"))
Tang Chen4f7c6b42014-08-06 16:05:13 -0700327 online_type = MMOP_ONLINE_KERNEL;
Tang Chen1f6a6cc2014-08-06 16:05:11 -0700328 else if (sysfs_streq(buf, "online_movable"))
Tang Chen4f7c6b42014-08-06 16:05:13 -0700329 online_type = MMOP_ONLINE_MOVABLE;
Tang Chen1f6a6cc2014-08-06 16:05:11 -0700330 else if (sysfs_streq(buf, "online"))
Tang Chen4f7c6b42014-08-06 16:05:13 -0700331 online_type = MMOP_ONLINE_KEEP;
Tang Chen1f6a6cc2014-08-06 16:05:11 -0700332 else if (sysfs_streq(buf, "offline"))
Tang Chen4f7c6b42014-08-06 16:05:13 -0700333 online_type = MMOP_OFFLINE;
Yasuaki Ishimatsua37f8632013-10-11 15:36:25 +0900334 else {
335 ret = -EINVAL;
336 goto err;
337 }
Seth Jenningsfa2be402013-08-20 16:05:05 -0500338
David Rientjes30467e02015-04-14 15:45:11 -0700339 /*
340 * Memory hotplug needs to hold mem_hotplug_begin() for probe to find
341 * the correct memory block to online before doing device_online(dev),
342 * which will take dev->mutex. Take the lock early to prevent an
343 * inversion, memory_subsys_online() callbacks will be implemented by
344 * assuming it's already protected.
345 */
346 mem_hotplug_begin();
347
Seth Jenningsfa2be402013-08-20 16:05:05 -0500348 switch (online_type) {
Tang Chen4f7c6b42014-08-06 16:05:13 -0700349 case MMOP_ONLINE_KERNEL:
350 case MMOP_ONLINE_MOVABLE:
351 case MMOP_ONLINE_KEEP:
Seth Jenningsfa2be402013-08-20 16:05:05 -0500352 mem->online_type = online_type;
353 ret = device_online(&mem->dev);
354 break;
Tang Chen4f7c6b42014-08-06 16:05:13 -0700355 case MMOP_OFFLINE:
Seth Jenningsfa2be402013-08-20 16:05:05 -0500356 ret = device_offline(&mem->dev);
357 break;
358 default:
359 ret = -EINVAL; /* should never happen */
Rafael J. Wysocki4960e052013-05-08 14:18:37 +0200360 }
Rafael J. Wysocki4960e052013-05-08 14:18:37 +0200361
David Rientjes30467e02015-04-14 15:45:11 -0700362 mem_hotplug_done();
Yasuaki Ishimatsua37f8632013-10-11 15:36:25 +0900363err:
Rafael J. Wysocki4960e052013-05-08 14:18:37 +0200364 unlock_device_hotplug();
Nathan Fontenot0c2c99b2011-01-20 10:43:34 -0600365
Reza Arbabd66ba152016-10-07 17:00:15 -0700366 if (ret < 0)
Dave Hansen3947be12005-10-29 18:16:54 -0700367 return ret;
Reza Arbabd66ba152016-10-07 17:00:15 -0700368 if (ret)
369 return -EINVAL;
370
Dave Hansen3947be12005-10-29 18:16:54 -0700371 return count;
372}
373
374/*
375 * phys_device is a bad name for this. What I really want
376 * is a way to differentiate between memory ranges that
377 * are part of physical devices that constitute
378 * a complete removable unit or fru.
379 * i.e. do these ranges belong to the same physical device,
380 * s.t. if I offline all of these sections I can then
381 * remove the physical device?
382 */
Kay Sievers10fbcf42011-12-21 14:48:43 -0800383static ssize_t show_phys_device(struct device *dev,
384 struct device_attribute *attr, char *buf)
Dave Hansen3947be12005-10-29 18:16:54 -0700385{
Gu Zheng7315f0c2013-08-28 14:38:27 +0800386 struct memory_block *mem = to_memory_block(dev);
Dave Hansen3947be12005-10-29 18:16:54 -0700387 return sprintf(buf, "%d\n", mem->phys_device);
388}
389
Zhang Zhened2f2402014-10-09 15:26:31 -0700390#ifdef CONFIG_MEMORY_HOTREMOVE
Michal Hockoe5e68932017-09-06 16:19:37 -0700391static void print_allowed_zone(char *buf, int nid, unsigned long start_pfn,
392 unsigned long nr_pages, int online_type,
393 struct zone *default_zone)
394{
395 struct zone *zone;
396
397 if (!allow_online_pfn_range(nid, start_pfn, nr_pages, online_type))
398 return;
399
400 zone = zone_for_pfn_range(online_type, nid, start_pfn, nr_pages);
401 if (zone != default_zone) {
402 strcat(buf, " ");
403 strcat(buf, zone->name);
404 }
405}
406
Zhang Zhened2f2402014-10-09 15:26:31 -0700407static ssize_t show_valid_zones(struct device *dev,
408 struct device_attribute *attr, char *buf)
409{
410 struct memory_block *mem = to_memory_block(dev);
Michal Hockof1dd2cd2017-07-06 15:38:11 -0700411 unsigned long start_pfn = section_nr_to_pfn(mem->start_section_nr);
Zhang Zhened2f2402014-10-09 15:26:31 -0700412 unsigned long nr_pages = PAGES_PER_SECTION * sections_per_block;
Michal Hockof1dd2cd2017-07-06 15:38:11 -0700413 unsigned long valid_start_pfn, valid_end_pfn;
Michal Hockoe5e68932017-09-06 16:19:37 -0700414 struct zone *default_zone;
Michal Hockof1dd2cd2017-07-06 15:38:11 -0700415 int nid;
Zhang Zhened2f2402014-10-09 15:26:31 -0700416
Michal Hockof1dd2cd2017-07-06 15:38:11 -0700417 /*
418 * The block contains more than one zone can not be offlined.
419 * This can happen e.g. for ZONE_DMA and ZONE_DMA32
420 */
421 if (!test_pages_in_a_zone(start_pfn, start_pfn + nr_pages, &valid_start_pfn, &valid_end_pfn))
Zhang Zhened2f2402014-10-09 15:26:31 -0700422 return sprintf(buf, "none\n");
423
Michal Hockof1dd2cd2017-07-06 15:38:11 -0700424 start_pfn = valid_start_pfn;
425 nr_pages = valid_end_pfn - start_pfn;
Zhang Zhened2f2402014-10-09 15:26:31 -0700426
Michal Hockof1dd2cd2017-07-06 15:38:11 -0700427 /*
428 * Check the existing zone. Make sure that we do that only on the
429 * online nodes otherwise the page_zone is not reliable
430 */
431 if (mem->state == MEM_ONLINE) {
432 strcat(buf, page_zone(pfn_to_page(start_pfn))->name);
433 goto out;
Zhang Zhened2f2402014-10-09 15:26:31 -0700434 }
435
Michal Hockof1dd2cd2017-07-06 15:38:11 -0700436 nid = pfn_to_nid(start_pfn);
Michal Hockoe5e68932017-09-06 16:19:37 -0700437 default_zone = zone_for_pfn_range(MMOP_ONLINE_KEEP, nid, start_pfn, nr_pages);
438 strcat(buf, default_zone->name);
Zhang Zhened2f2402014-10-09 15:26:31 -0700439
Michal Hockoe5e68932017-09-06 16:19:37 -0700440 print_allowed_zone(buf, nid, start_pfn, nr_pages, MMOP_ONLINE_KERNEL,
441 default_zone);
442 print_allowed_zone(buf, nid, start_pfn, nr_pages, MMOP_ONLINE_MOVABLE,
443 default_zone);
Michal Hockof1dd2cd2017-07-06 15:38:11 -0700444out:
Reza Arbaba371d9f2016-07-26 15:22:27 -0700445 strcat(buf, "\n");
446
447 return strlen(buf);
Zhang Zhened2f2402014-10-09 15:26:31 -0700448}
449static DEVICE_ATTR(valid_zones, 0444, show_valid_zones, NULL);
450#endif
451
Kay Sievers10fbcf42011-12-21 14:48:43 -0800452static DEVICE_ATTR(phys_index, 0444, show_mem_start_phys_index, NULL);
Kay Sievers10fbcf42011-12-21 14:48:43 -0800453static DEVICE_ATTR(state, 0644, show_mem_state, store_mem_state);
454static DEVICE_ATTR(phys_device, 0444, show_phys_device, NULL);
455static DEVICE_ATTR(removable, 0444, show_mem_removable, NULL);
Dave Hansen3947be12005-10-29 18:16:54 -0700456
Dave Hansen3947be12005-10-29 18:16:54 -0700457/*
458 * Block size attribute stuff
459 */
460static ssize_t
Kay Sievers10fbcf42011-12-21 14:48:43 -0800461print_block_size(struct device *dev, struct device_attribute *attr,
Andi Kleen8564a6c2010-01-05 12:48:06 +0100462 char *buf)
Dave Hansen3947be12005-10-29 18:16:54 -0700463{
Nathan Fontenot0c2c99b2011-01-20 10:43:34 -0600464 return sprintf(buf, "%lx\n", get_memory_block_size());
Dave Hansen3947be12005-10-29 18:16:54 -0700465}
466
Kay Sievers10fbcf42011-12-21 14:48:43 -0800467static DEVICE_ATTR(block_size_bytes, 0444, print_block_size, NULL);
Dave Hansen3947be12005-10-29 18:16:54 -0700468
Dave Hansen3947be12005-10-29 18:16:54 -0700469/*
Vitaly Kuznetsov31bc3852016-03-15 14:56:48 -0700470 * Memory auto online policy.
471 */
472
473static ssize_t
474show_auto_online_blocks(struct device *dev, struct device_attribute *attr,
475 char *buf)
476{
477 if (memhp_auto_online)
478 return sprintf(buf, "online\n");
479 else
480 return sprintf(buf, "offline\n");
481}
482
483static ssize_t
484store_auto_online_blocks(struct device *dev, struct device_attribute *attr,
485 const char *buf, size_t count)
486{
487 if (sysfs_streq(buf, "online"))
488 memhp_auto_online = true;
489 else if (sysfs_streq(buf, "offline"))
490 memhp_auto_online = false;
491 else
492 return -EINVAL;
493
494 return count;
495}
496
497static DEVICE_ATTR(auto_online_blocks, 0644, show_auto_online_blocks,
498 store_auto_online_blocks);
499
500/*
Dave Hansen3947be12005-10-29 18:16:54 -0700501 * Some architectures will have custom drivers to do this, and
502 * will not need to do it from userspace. The fake hot-add code
503 * as well as ppc64 will do all of their discovery in userspace
504 * and will require this interface.
505 */
506#ifdef CONFIG_ARCH_MEMORY_PROBE
507static ssize_t
Kay Sievers10fbcf42011-12-21 14:48:43 -0800508memory_probe_store(struct device *dev, struct device_attribute *attr,
Andi Kleen28812fe2010-01-05 12:48:07 +0100509 const char *buf, size_t count)
Dave Hansen3947be12005-10-29 18:16:54 -0700510{
511 u64 phys_addr;
John Allencb5490a2016-01-14 15:22:16 -0800512 int nid, ret;
Anton Blanchard61b94fe2011-09-15 06:26:15 +1000513 unsigned long pages_per_block = PAGES_PER_SECTION * sections_per_block;
Dave Hansen3947be12005-10-29 18:16:54 -0700514
Zhang Zhenb69deb22014-08-06 16:06:06 -0700515 ret = kstrtoull(buf, 0, &phys_addr);
516 if (ret)
517 return ret;
Dave Hansen3947be12005-10-29 18:16:54 -0700518
Anton Blanchard61b94fe2011-09-15 06:26:15 +1000519 if (phys_addr & ((pages_per_block << PAGE_SHIFT) - 1))
520 return -EINVAL;
521
John Allencb5490a2016-01-14 15:22:16 -0800522 nid = memory_add_physaddr_to_nid(phys_addr);
523 ret = add_memory(nid, phys_addr,
524 MIN_MEMORY_BLOCK_SIZE * sections_per_block);
Nathan Fontenot6add7cd2011-01-31 10:55:23 -0600525
John Allencb5490a2016-01-14 15:22:16 -0800526 if (ret)
527 goto out;
Dave Hansen3947be12005-10-29 18:16:54 -0700528
Nikanth Karthikesan9f0af692011-03-24 11:46:18 +0530529 ret = count;
530out:
531 return ret;
Dave Hansen3947be12005-10-29 18:16:54 -0700532}
Dave Hansen3947be12005-10-29 18:16:54 -0700533
Nathan Fontenot96b2c0f2013-06-04 14:42:28 -0500534static DEVICE_ATTR(probe, S_IWUSR, NULL, memory_probe_store);
Dave Hansen3947be12005-10-29 18:16:54 -0700535#endif
536
Andi Kleenfacb6012009-12-16 12:20:00 +0100537#ifdef CONFIG_MEMORY_FAILURE
538/*
539 * Support for offlining pages of memory
540 */
541
542/* Soft offline a page */
543static ssize_t
Kay Sievers10fbcf42011-12-21 14:48:43 -0800544store_soft_offline_page(struct device *dev,
545 struct device_attribute *attr,
Andi Kleen28812fe2010-01-05 12:48:07 +0100546 const char *buf, size_t count)
Andi Kleenfacb6012009-12-16 12:20:00 +0100547{
548 int ret;
549 u64 pfn;
550 if (!capable(CAP_SYS_ADMIN))
551 return -EPERM;
Jingoo Han34da5e62013-07-26 13:10:22 +0900552 if (kstrtoull(buf, 0, &pfn) < 0)
Andi Kleenfacb6012009-12-16 12:20:00 +0100553 return -EINVAL;
554 pfn >>= PAGE_SHIFT;
555 if (!pfn_valid(pfn))
556 return -ENXIO;
557 ret = soft_offline_page(pfn_to_page(pfn), 0);
558 return ret == 0 ? count : ret;
559}
560
561/* Forcibly offline a page, including killing processes. */
562static ssize_t
Kay Sievers10fbcf42011-12-21 14:48:43 -0800563store_hard_offline_page(struct device *dev,
564 struct device_attribute *attr,
Andi Kleen28812fe2010-01-05 12:48:07 +0100565 const char *buf, size_t count)
Andi Kleenfacb6012009-12-16 12:20:00 +0100566{
567 int ret;
568 u64 pfn;
569 if (!capable(CAP_SYS_ADMIN))
570 return -EPERM;
Jingoo Han34da5e62013-07-26 13:10:22 +0900571 if (kstrtoull(buf, 0, &pfn) < 0)
Andi Kleenfacb6012009-12-16 12:20:00 +0100572 return -EINVAL;
573 pfn >>= PAGE_SHIFT;
Tony Luckcd42f4a2011-12-15 10:48:12 -0800574 ret = memory_failure(pfn, 0, 0);
Andi Kleenfacb6012009-12-16 12:20:00 +0100575 return ret ? ret : count;
576}
577
Felipe Balbi74fef7a2013-02-18 21:09:03 +0200578static DEVICE_ATTR(soft_offline_page, S_IWUSR, NULL, store_soft_offline_page);
579static DEVICE_ATTR(hard_offline_page, S_IWUSR, NULL, store_hard_offline_page);
Andi Kleenfacb6012009-12-16 12:20:00 +0100580#endif
581
Dave Hansen3947be12005-10-29 18:16:54 -0700582/*
583 * Note that phys_device is optional. It is here to allow for
584 * differentiation between which *physical* devices each
585 * section belongs to...
586 */
Heiko Carstensbc32df02010-03-15 00:35:03 -0400587int __weak arch_get_memory_phys_device(unsigned long start_pfn)
588{
589 return 0;
590}
Dave Hansen3947be12005-10-29 18:16:54 -0700591
Kay Sievers10fbcf42011-12-21 14:48:43 -0800592/*
593 * A reference for the returned object is held and the reference for the
594 * hinted object is released.
595 */
Robin Holt98383032010-09-29 14:00:55 -0500596struct memory_block *find_memory_block_hinted(struct mem_section *section,
597 struct memory_block *hint)
598{
Nathan Fontenot0c2c99b2011-01-20 10:43:34 -0600599 int block_id = base_memory_block_id(__section_nr(section));
Kay Sievers10fbcf42011-12-21 14:48:43 -0800600 struct device *hintdev = hint ? &hint->dev : NULL;
601 struct device *dev;
Robin Holt98383032010-09-29 14:00:55 -0500602
Kay Sievers10fbcf42011-12-21 14:48:43 -0800603 dev = subsys_find_device_by_id(&memory_subsys, block_id, hintdev);
604 if (hint)
605 put_device(&hint->dev);
606 if (!dev)
Robin Holt98383032010-09-29 14:00:55 -0500607 return NULL;
Gu Zheng7315f0c2013-08-28 14:38:27 +0800608 return to_memory_block(dev);
Robin Holt98383032010-09-29 14:00:55 -0500609}
610
Dave Hansen3947be12005-10-29 18:16:54 -0700611/*
612 * For now, we have a linear search to go find the appropriate
613 * memory_block corresponding to a particular phys_index. If
614 * this gets to be a real problem, we can always use a radix
615 * tree or something here.
616 *
Kay Sievers10fbcf42011-12-21 14:48:43 -0800617 * This could be made generic for all device subsystems.
Dave Hansen3947be12005-10-29 18:16:54 -0700618 */
Gary Hadec04fc582009-01-06 14:39:14 -0800619struct memory_block *find_memory_block(struct mem_section *section)
Dave Hansen3947be12005-10-29 18:16:54 -0700620{
Robin Holt98383032010-09-29 14:00:55 -0500621 return find_memory_block_hinted(section, NULL);
Dave Hansen3947be12005-10-29 18:16:54 -0700622}
623
Nathan Fontenot96b2c0f2013-06-04 14:42:28 -0500624static struct attribute *memory_memblk_attrs[] = {
625 &dev_attr_phys_index.attr,
Nathan Fontenot96b2c0f2013-06-04 14:42:28 -0500626 &dev_attr_state.attr,
627 &dev_attr_phys_device.attr,
628 &dev_attr_removable.attr,
Zhang Zhened2f2402014-10-09 15:26:31 -0700629#ifdef CONFIG_MEMORY_HOTREMOVE
630 &dev_attr_valid_zones.attr,
631#endif
Nathan Fontenot96b2c0f2013-06-04 14:42:28 -0500632 NULL
633};
634
635static struct attribute_group memory_memblk_attr_group = {
636 .attrs = memory_memblk_attrs,
637};
638
639static const struct attribute_group *memory_memblk_attr_groups[] = {
640 &memory_memblk_attr_group,
641 NULL,
642};
643
644/*
645 * register_memory - Setup a sysfs device for a memory block
646 */
647static
648int register_memory(struct memory_block *memory)
649{
Nathan Fontenot96b2c0f2013-06-04 14:42:28 -0500650 memory->dev.bus = &memory_subsys;
651 memory->dev.id = memory->start_section_nr / sections_per_block;
652 memory->dev.release = memory_block_release;
653 memory->dev.groups = memory_memblk_attr_groups;
Linus Torvaldsf991fae2013-07-03 14:35:40 -0700654 memory->dev.offline = memory->state == MEM_OFFLINE;
Nathan Fontenot96b2c0f2013-06-04 14:42:28 -0500655
Seth Jennings879f1be2013-08-20 12:12:58 -0500656 return device_register(&memory->dev);
Nathan Fontenot96b2c0f2013-06-04 14:42:28 -0500657}
658
Nathan Fontenot0c2c99b2011-01-20 10:43:34 -0600659static int init_memory_block(struct memory_block **memory,
660 struct mem_section *section, unsigned long state)
Nathan Fontenote4619c82010-10-19 12:44:20 -0500661{
Nathan Fontenot0c2c99b2011-01-20 10:43:34 -0600662 struct memory_block *mem;
Nathan Fontenote4619c82010-10-19 12:44:20 -0500663 unsigned long start_pfn;
Nathan Fontenot0c2c99b2011-01-20 10:43:34 -0600664 int scn_nr;
Nathan Fontenote4619c82010-10-19 12:44:20 -0500665 int ret = 0;
666
Nathan Fontenot0c2c99b2011-01-20 10:43:34 -0600667 mem = kzalloc(sizeof(*mem), GFP_KERNEL);
Nathan Fontenote4619c82010-10-19 12:44:20 -0500668 if (!mem)
669 return -ENOMEM;
670
Nathan Fontenot0c2c99b2011-01-20 10:43:34 -0600671 scn_nr = __section_nr(section);
Nathan Fontenotd3360162011-01-20 10:44:29 -0600672 mem->start_section_nr =
673 base_memory_block_id(scn_nr) * sections_per_block;
674 mem->end_section_nr = mem->start_section_nr + sections_per_block - 1;
Nathan Fontenote4619c82010-10-19 12:44:20 -0500675 mem->state = state;
Nathan Fontenotd3360162011-01-20 10:44:29 -0600676 start_pfn = section_nr_to_pfn(mem->start_section_nr);
Nathan Fontenote4619c82010-10-19 12:44:20 -0500677 mem->phys_device = arch_get_memory_phys_device(start_pfn);
678
Nathan Fontenot0c2c99b2011-01-20 10:43:34 -0600679 ret = register_memory(mem);
Nathan Fontenot0c2c99b2011-01-20 10:43:34 -0600680
681 *memory = mem;
682 return ret;
683}
684
Seth Jenningscb5e39b2013-08-20 12:13:03 -0500685static int add_memory_block(int base_section_nr)
Nathan Fontenot0c2c99b2011-01-20 10:43:34 -0600686{
Seth Jenningscb5e39b2013-08-20 12:13:03 -0500687 struct memory_block *mem;
688 int i, ret, section_count = 0, section_nr;
Nathan Fontenot0c2c99b2011-01-20 10:43:34 -0600689
Seth Jenningscb5e39b2013-08-20 12:13:03 -0500690 for (i = base_section_nr;
691 (i < base_section_nr + sections_per_block) && i < NR_MEM_SECTIONS;
692 i++) {
693 if (!present_section_nr(i))
694 continue;
695 if (section_count == 0)
696 section_nr = i;
697 section_count++;
Yinghai Lu321bf4e2012-01-30 13:57:12 -0800698 }
Nathan Fontenot0c2c99b2011-01-20 10:43:34 -0600699
Seth Jenningscb5e39b2013-08-20 12:13:03 -0500700 if (section_count == 0)
701 return 0;
702 ret = init_memory_block(&mem, __nr_to_section(section_nr), MEM_ONLINE);
703 if (ret)
704 return ret;
705 mem->section_count = section_count;
706 return 0;
Nathan Fontenote4619c82010-10-19 12:44:20 -0500707}
708
David Rientjes4edd7ce2013-04-29 15:08:22 -0700709/*
710 * need an interface for the VM to add new memory regions,
711 * but without onlining it.
712 */
713int register_new_memory(int nid, struct mem_section *section)
714{
Seth Jenningsd7f80532013-08-20 12:13:00 -0500715 int ret = 0;
716 struct memory_block *mem;
Seth Jenningsb1eaef32013-08-20 12:12:57 -0500717
718 mutex_lock(&mem_sysfs_mutex);
Seth Jenningsb1eaef32013-08-20 12:12:57 -0500719
Seth Jenningsd7f80532013-08-20 12:13:00 -0500720 mem = find_memory_block(section);
721 if (mem) {
722 mem->section_count++;
723 put_device(&mem->dev);
724 } else {
725 ret = init_memory_block(&mem, section, MEM_OFFLINE);
726 if (ret)
727 goto out;
Seth Jennings56c6b5d2016-01-14 15:20:21 -0800728 mem->section_count++;
Seth Jenningsd7f80532013-08-20 12:13:00 -0500729 }
730
731 if (mem->section_count == sections_per_block)
732 ret = register_mem_sect_under_node(mem, nid);
733out:
734 mutex_unlock(&mem_sysfs_mutex);
Seth Jenningsb1eaef32013-08-20 12:12:57 -0500735 return ret;
David Rientjes4edd7ce2013-04-29 15:08:22 -0700736}
737
738#ifdef CONFIG_MEMORY_HOTREMOVE
739static void
740unregister_memory(struct memory_block *memory)
741{
742 BUG_ON(memory->dev.bus != &memory_subsys);
743
744 /* drop the ref. we got in remove_memory_block() */
Seth Jenningsdf2b7172013-08-20 12:12:59 -0500745 put_device(&memory->dev);
David Rientjes4edd7ce2013-04-29 15:08:22 -0700746 device_unregister(&memory->dev);
747}
748
Seth Jenningscc292b02016-01-14 15:20:24 -0800749static int remove_memory_section(unsigned long node_id,
David Rientjes4edd7ce2013-04-29 15:08:22 -0700750 struct mem_section *section, int phys_device)
Dave Hansen3947be12005-10-29 18:16:54 -0700751{
752 struct memory_block *mem;
753
Nathan Fontenot2938ffb2010-10-19 12:45:24 -0500754 mutex_lock(&mem_sysfs_mutex);
Michal Hocko1b862ae2017-07-06 15:37:45 -0700755
756 /*
757 * Some users of the memory hotplug do not want/need memblock to
758 * track all sections. Skip over those.
759 */
Dave Hansen3947be12005-10-29 18:16:54 -0700760 mem = find_memory_block(section);
Michal Hocko1b862ae2017-07-06 15:37:45 -0700761 if (!mem)
762 goto out_unlock;
763
Nathan Fontenotd3360162011-01-20 10:44:29 -0600764 unregister_mem_sect_under_nodes(mem, __section_nr(section));
Nathan Fontenot07681212010-10-19 12:46:19 -0500765
766 mem->section_count--;
Nathan Fontenot96b2c0f2013-06-04 14:42:28 -0500767 if (mem->section_count == 0)
Nathan Fontenot0c2c99b2011-01-20 10:43:34 -0600768 unregister_memory(mem);
Nathan Fontenot96b2c0f2013-06-04 14:42:28 -0500769 else
Seth Jenningsdf2b7172013-08-20 12:12:59 -0500770 put_device(&mem->dev);
Dave Hansen3947be12005-10-29 18:16:54 -0700771
Michal Hocko1b862ae2017-07-06 15:37:45 -0700772out_unlock:
Nathan Fontenot2938ffb2010-10-19 12:45:24 -0500773 mutex_unlock(&mem_sysfs_mutex);
Dave Hansen3947be12005-10-29 18:16:54 -0700774 return 0;
775}
776
Dave Hansen3947be12005-10-29 18:16:54 -0700777int unregister_memory_section(struct mem_section *section)
778{
Andy Whitcroft540557b2007-10-16 01:24:11 -0700779 if (!present_section(section))
Dave Hansen3947be12005-10-29 18:16:54 -0700780 return -EINVAL;
781
Seth Jenningscc292b02016-01-14 15:20:24 -0800782 return remove_memory_section(0, section, 0);
Dave Hansen3947be12005-10-29 18:16:54 -0700783}
David Rientjes4edd7ce2013-04-29 15:08:22 -0700784#endif /* CONFIG_MEMORY_HOTREMOVE */
Dave Hansen3947be12005-10-29 18:16:54 -0700785
Yasuaki Ishimatsu6677e3e2013-02-22 16:32:52 -0800786/* return true if the memory block is offlined, otherwise, return false */
787bool is_memblock_offlined(struct memory_block *mem)
788{
789 return mem->state == MEM_OFFLINE;
790}
791
Nathan Fontenot96b2c0f2013-06-04 14:42:28 -0500792static struct attribute *memory_root_attrs[] = {
793#ifdef CONFIG_ARCH_MEMORY_PROBE
794 &dev_attr_probe.attr,
795#endif
796
797#ifdef CONFIG_MEMORY_FAILURE
798 &dev_attr_soft_offline_page.attr,
799 &dev_attr_hard_offline_page.attr,
800#endif
801
802 &dev_attr_block_size_bytes.attr,
Vitaly Kuznetsov31bc3852016-03-15 14:56:48 -0700803 &dev_attr_auto_online_blocks.attr,
Nathan Fontenot96b2c0f2013-06-04 14:42:28 -0500804 NULL
805};
806
807static struct attribute_group memory_root_attr_group = {
808 .attrs = memory_root_attrs,
809};
810
811static const struct attribute_group *memory_root_attr_groups[] = {
812 &memory_root_attr_group,
813 NULL,
814};
815
Wen Congyange90bdb72012-10-08 16:34:01 -0700816/*
Dave Hansen3947be12005-10-29 18:16:54 -0700817 * Initialize the sysfs support for memory devices...
818 */
819int __init memory_dev_init(void)
820{
821 unsigned int i;
822 int ret;
Andrew Morton28ec24e2006-12-06 20:37:29 -0800823 int err;
Nathan Fontenot0c2c99b2011-01-20 10:43:34 -0600824 unsigned long block_sz;
Dave Hansen3947be12005-10-29 18:16:54 -0700825
Nathan Fontenot96b2c0f2013-06-04 14:42:28 -0500826 ret = subsys_system_register(&memory_subsys, memory_root_attr_groups);
Andrew Morton28ec24e2006-12-06 20:37:29 -0800827 if (ret)
828 goto out;
Dave Hansen3947be12005-10-29 18:16:54 -0700829
Nathan Fontenot0c2c99b2011-01-20 10:43:34 -0600830 block_sz = get_memory_block_size();
831 sections_per_block = block_sz / MIN_MEMORY_BLOCK_SIZE;
832
Dave Hansen3947be12005-10-29 18:16:54 -0700833 /*
834 * Create entries for memory sections that were found
835 * during boot and have been initialized
836 */
Seth Jenningsb1eaef32013-08-20 12:12:57 -0500837 mutex_lock(&mem_sysfs_mutex);
Seth Jenningscb5e39b2013-08-20 12:13:03 -0500838 for (i = 0; i < NR_MEM_SECTIONS; i += sections_per_block) {
Dave Hansenc4e1be92017-07-06 15:36:44 -0700839 /* Don't iterate over sections we know are !present: */
840 if (i > __highest_present_section_nr)
841 break;
842
Seth Jenningscb5e39b2013-08-20 12:13:03 -0500843 err = add_memory_block(i);
Andrew Morton28ec24e2006-12-06 20:37:29 -0800844 if (!ret)
845 ret = err;
Dave Hansen3947be12005-10-29 18:16:54 -0700846 }
Seth Jenningsb1eaef32013-08-20 12:12:57 -0500847 mutex_unlock(&mem_sysfs_mutex);
Dave Hansen3947be12005-10-29 18:16:54 -0700848
Andrew Morton28ec24e2006-12-06 20:37:29 -0800849out:
850 if (ret)
Harvey Harrison2b3a3022008-03-04 16:41:05 -0800851 printk(KERN_ERR "%s() failed: %d\n", __func__, ret);
Dave Hansen3947be12005-10-29 18:16:54 -0700852 return ret;
853}