Why Kernel Shared Memory is 0 on Ubuntu 12.04?
Can any one explain to me why KSM is not working does that mean that currently my kernel is not utilizing KSM for less ram utilization.
grep KSM /boot/config-3.2.0-23-generic
CONFIG_KSM=y
cat /sys/kernel/mm/ksm/pages_shared
0
cat /sys/kernel/mm/ksm/pages_sharing
0
cat /sys/kernel/mm/ksm/pages_unshared
0
Kernel:3.2.0-23-generic
Ubuntu 12.04 LTS 64 bit Desktop
free -m
total used free shared buffers cached
Mem: 1964 1883 81 0 11 228
-/+ buffers/cache: 1644 320
Swap: 2008 485 1523
ipcs -m
------ Shared Memory Segments --------
key shmid owner perms bytes nattch status
0x00000000 0 myexperiments 600 393216 2 dest
0x00000000 2490369 myexperiments 600 393216 2 dest
0x00000000 98306 myexperiments 600 393216 2 dest
0x00000000 2523139 myexperiments 600 393216 2 dest
0x00000000 13008900 myexperiments 666 262080 1 dest
0x00000000 1245189 myexperiments 666 4 2 dest
0x00000000 1277958 myexperiments 666 4 1 dest
0x00000000 6520839 myexperiments 600 393216 2 dest
0x00000000 14811144 myexperiments 666 1277760 3 dest
0x00000000 12648458 myexperiments 666 300000 1 dest
0x00000000 8060939 myexperiments 666 300000 1 dest
0x00000000 12943373 myexperiments 666 300000 2 dest
0x00000000 12976142 myexperiments 666 262080 2 dest
0x00000000 13271055 myexperiments 666 300000 2 dest
KSMD won't do anything unless application software tells it to by calling madvise(MADV_MERGEABLE)
. Most likely, you aren't using any application software that uses KSMD's services.
MADV_MERGEABLE (since Linux 2.6.32):
Enable Kernel Samepage Merging (KSM) for the pages in the range specified by addr and length. The kernel regularly scans those areas of user memory that have been marked as mergeable, looking for pages with identical content. These are replaced by a single write-protected page (which is automatically copied if a process later wants to update the content of the page). KSM only merges private anonymous pages (see mmap(2)).
The KSM feature is intended for applications that generate many instances of the same data (e.g., virtualization systems such as KVM). It can consume a lot of processing power; use with care. See the kernel source file Documentation/vm/ksm.txt for more details. The MADV_MERGEABLE and MADV_UNMERGEABLE operations are only available if the kernel was configured with CONFIG_KSM.
On top of what David Schwartz said about the need that applications defined via madvise
which page could be authorised for merging, there is one more settings to activate on Ubuntu to allow ksm
to do its work:
sudo bash -c "echo 1 > /sys/kernel/mm/ksm/run"
You can check before what the current value is: cat /sys/kernel/mm/ksm/run
on my Ubuntu 14.04.3 LTS and Ubuntu 15.04 boxes, it's value is 0
. Here are the different values according the Kernel Samepage Merging
kernel documentation:
How to use the Kernel Samepage Merging feature
run - set 0 to stop ksmd from running but keep merged pages, set 1 to run ksmd e.g. "echo 1 > /sys/kernel/mm/ksm/run", set 2 to stop ksmd and unmerge all pages currently merged, but leave mergeable areas registered for next run Default: 0 (must be changed to 1 to activate KSM, except if CONFIG_SYSFS is disabled)