Kernel same-page merging
Kernel same-page merging (abbreviated to KSM, and also known as kernel shared memory or memory merging) lets the hypervisor system share identical memory pages amongst different processes or virtualized guests. While not directly linked, KVM can use KSM to merge pages of Virtual machines.
This is done by scanning through the memory finding duplicate pages. The duplicate pair is then merged into a single page, and mapped into both original locations. The page is also marked as "copy-on-write", so the kernel will automatically separate them again should one process modify its data.[1]
KSM was originally intended to run more virtual machines on one host by sharing memory between processes as well as virtual machines. Upon implementation, it was found to be useful for non-virtualized environments as well where memory is at a premium.[2][3] An experimental implementation of KSM by Red Hat found that 52 virtual instances of Windows XP with 1GB of memory, could run on a host computer that had only 16GB of RAM.[4]
KSM first appeared in Linux kernel version 2.6.32.[2] To be effective, the operating system kernel must find identical memory pages held by different processes. As well it needs to decide whether the pages are going to update infrequently enough that SamePage Merging would be an efficient use of processor resources.[3] A concern is that although memory usage is reduced, CPU usage is increased, thus negating potential increases in performance.[1] Another concern is that KSM may pose security risks.[5]
References
- ^ a b "KSM tries again". lwn.net. kernel.org. Retrieved 2010-08-21.
- ^ a b "Anatomy of Linux Kernel Shared Memory". IBM DeveloperWorks. IBM. Retrieved 2010-08-21.
- ^ a b "Increasing memory density by using KSM" (PDF). kernel.org. kernel.org. Retrieved 2010-08-21.
- ^ "Kernel Samepage Merging (memory deduplication)". kernelnewbies. kernelnewbies. Retrieved 2010-08-21.
- ^ "Memory Deduplication as a Threat to the Guest OS" (PDF).
{{cite web}}
: Unknown parameter|authors=
ignored (help)
External links
- Using KSM
- Fedora KSM page
- Kernel-based virtual machine site - KSM
- Detailed overview of the KSM merging process
- Best practices for the Kernel-based Virtual Machine, IBM, second edition, April 2012, pp. 11–17