aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Documentation/admin-guide/mm/memory-hotplug.rst42
1 files changed, 41 insertions, 1 deletions
diff --git a/Documentation/admin-guide/mm/memory-hotplug.rst b/Documentation/admin-guide/mm/memory-hotplug.rst
index 25157aec5b31..5c4432c96c4b 100644
--- a/Documentation/admin-guide/mm/memory-hotplug.rst
+++ b/Documentation/admin-guide/mm/memory-hotplug.rst
@@ -5,7 +5,7 @@ Memory Hotplug
5============== 5==============
6 6
7:Created: Jul 28 2007 7:Created: Jul 28 2007
8:Updated: Add description of notifier of memory hotplug: Oct 11 2007 8:Updated: Add some details about locking internals: Aug 20 2018
9 9
10This document is about memory hotplug including how-to-use and current status. 10This document is about memory hotplug including how-to-use and current status.
11Because Memory Hotplug is still under development, contents of this text will 11Because Memory Hotplug is still under development, contents of this text will
@@ -392,6 +392,46 @@ Need more implementation yet....
392 - Notification completion of remove works by OS to firmware. 392 - Notification completion of remove works by OS to firmware.
393 - Guard from remove if not yet. 393 - Guard from remove if not yet.
394 394
395
396Locking Internals
397=================
398
399When adding/removing memory that uses memory block devices (i.e. ordinary RAM),
400the device_hotplug_lock should be held to:
401
402- synchronize against online/offline requests (e.g. via sysfs). This way, memory
403 block devices can only be accessed (.online/.state attributes) by user
404 space once memory has been fully added. And when removing memory, we
405 know nobody is in critical sections.
406- synchronize against CPU hotplug and similar (e.g. relevant for ACPI and PPC)
407
408Especially, there is a possible lock inversion that is avoided using
409device_hotplug_lock when adding memory and user space tries to online that
410memory faster than expected:
411
412- device_online() will first take the device_lock(), followed by
413 mem_hotplug_lock
414- add_memory_resource() will first take the mem_hotplug_lock, followed by
415 the device_lock() (while creating the devices, during bus_add_device()).
416
417As the device is visible to user space before taking the device_lock(), this
418can result in a lock inversion.
419
420onlining/offlining of memory should be done via device_online()/
421device_offline() - to make sure it is properly synchronized to actions
422via sysfs. Holding device_hotplug_lock is advised (to e.g. protect online_type)
423
424When adding/removing/onlining/offlining memory or adding/removing
425heterogeneous/device memory, we should always hold the mem_hotplug_lock in
426write mode to serialise memory hotplug (e.g. access to global/zone
427variables).
428
429In addition, mem_hotplug_lock (in contrast to device_hotplug_lock) in read
430mode allows for a quite efficient get_online_mems/put_online_mems
431implementation, so code accessing memory can protect from that memory
432vanishing.
433
434
395Future Work 435Future Work
396=========== 436===========
397 437