diff options
-rw-r--r-- | Documentation/admin-guide/mm/memory-hotplug.rst | 42 |
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 | ||
10 | This document is about memory hotplug including how-to-use and current status. | 10 | This document is about memory hotplug including how-to-use and current status. |
11 | Because Memory Hotplug is still under development, contents of this text will | 11 | Because 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 | |||
396 | Locking Internals | ||
397 | ================= | ||
398 | |||
399 | When adding/removing memory that uses memory block devices (i.e. ordinary RAM), | ||
400 | the 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 | |||
408 | Especially, there is a possible lock inversion that is avoided using | ||
409 | device_hotplug_lock when adding memory and user space tries to online that | ||
410 | memory 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 | |||
417 | As the device is visible to user space before taking the device_lock(), this | ||
418 | can result in a lock inversion. | ||
419 | |||
420 | onlining/offlining of memory should be done via device_online()/ | ||
421 | device_offline() - to make sure it is properly synchronized to actions | ||
422 | via sysfs. Holding device_hotplug_lock is advised (to e.g. protect online_type) | ||
423 | |||
424 | When adding/removing/onlining/offlining memory or adding/removing | ||
425 | heterogeneous/device memory, we should always hold the mem_hotplug_lock in | ||
426 | write mode to serialise memory hotplug (e.g. access to global/zone | ||
427 | variables). | ||
428 | |||
429 | In addition, mem_hotplug_lock (in contrast to device_hotplug_lock) in read | ||
430 | mode allows for a quite efficient get_online_mems/put_online_mems | ||
431 | implementation, so code accessing memory can protect from that memory | ||
432 | vanishing. | ||
433 | |||
434 | |||
395 | Future Work | 435 | Future Work |
396 | =========== | 436 | =========== |
397 | 437 | ||