How much RAM does the kernel use?

Kernel is a bit of a misnomer. The Linux kernel is comprised of several proceses/threads + the modules (lsmod) so to get a complete picture you'd need to look at the whole ball and not just a single component.

Incidentally mine shows slabtop:

 Active / Total Size (% used)       : 173428.30K / 204497.61K (84.8%)

The man page for slabtop also had this to say:

The slabtop statistic header is tracking how many bytes of slabs are being used and it not a measure of physical memory. The 'Slab' field in the /proc/meminfo file is tracking information about used slab physical memory.

Dropping caches

Dropping my caches as @derobert suggested in the comments under your question does the following for me:

$ sudo sh -c 'echo 3 > /proc/sys/vm/drop_caches'
$

 Active / Total Size (% used)       : 61858.78K / 90524.77K (68.3%)

Sending a 3 does the following: free pagecache, dentries and inodes. I discuss this more in this U&L Q&A titled: Are there any ways or tools to dump the memory cache and buffer?". So 110MB of my space was being used by just maintaining the info regarding pagecache, dentries and inodes.

Additional Information

  • If you're interested I found this blog post that discusses slabtop in a bit more details. It's titled: Linux command of the day: slabtop.
  • The Slab Cache is discussed in more detail here on Wikipedia, titled: Slab allocation.

So how much RAM is my Kernel using?

This picture is a bit foggier to me, but here are the things that I "think" we know.

Slab

We can get a snapshot of the Slab usage using this technique. Essentially we can pull this information out of /proc/meminfo.

$ grep Slab /proc/meminfo
Slab:             100728 kB

Modules

Also we can get a size value for Kernel modules (unclear whether it's their size from on disk or when in RAM) by pulling these values from /proc/modules:

$ awk '{print $1 " " $2 }' /proc/modules | head -5
cpufreq_powersave 1154
tcp_lp 2111
aesni_intel 12131
cryptd 7111
aes_x86_64 7758

Slabinfo

Much of the details about the SLAB are accessible in this proc structure, /proc/slabinfo:

$ less /proc/slabinfo | head -5
slabinfo - version: 2.1
# name            <active_objs> <num_objs> <objsize> <objperslab> <pagesperslab> : tunables <limit> <batchcount> <sharedfactor> : slabdata <active_slabs> <num_slabs> <sharedavail>
nf_conntrack_ffff8801f2b30000      0      0    320   25    2 : tunables    0    0    0 : slabdata      0      0      0
fuse_request         100    125    632   25    4 : tunables    0    0    0 : slabdata      5      5      0
fuse_inode            21     21    768   21    4 : tunables    0    0    0 : slabdata      1      1      0

Dmesg

When your system boots there is a line that reports memory usage of the Linux kernel just after it's loaded.

$ dmesg |grep Memory:
[    0.000000] Memory: 7970012k/9371648k available (4557k kernel code, 1192276k absent, 209360k reserved, 7251k data, 948k init)

References


How about this:

Active / Total Size (% used)       : 4709.24K / 5062.03K

That's on a freshly booted, very small machine running headless with a normal kernel. So it doesn't require much.

As derobert hints, the kernel will make use of available memory for caching and that's a lot of what you see in slabtop. In addition to the file cache, this has to do with sharable memory from userspace processes that is no longer in use. The kernel leaves it there until either the same stuff is required again, or else something actively needs RAM, in which case it gets forgotten. An analogy would be taking a book off a shelf and laying it open to read on a table: when you are done reading, you can leave the book open on the table in case you need to look at it again.


On this 512 GB RAM server running Solaris, the kernel uses 25 GB:

Page Summary                Pages                MB  %Tot
------------     ----------------  ----------------  ----
Kernel                    3210102             25078    5%
Anon                     15266226            119267   23%
Exec and libs               41457               323    0%
Page cache                3539331             27651    5%
Free (cachelist)         13799571            107809   21%
Free (freelist)          30093164            235102   46%

Total                    65949851            515233
Physical                 65927406            515057

That smaller one has more than half of its RAM used by the kernel:

Page Summary                Pages                MB  %Tot
------------     ----------------  ----------------  ----
Kernel                    2149699             16794   52%
Anon                       517016              4039   13%
Exec and libs               15420               120    0%
Page cache                  21840               170    1%
Free (cachelist)             8768                68    0%
Free (freelist)           1404862             10975   34%

Total                     4117605             32168
Physical                  4096002             32000

Nothing to worry about, unused RAM is wasted RAM anyway.

Tags:

Linux

Kernel

Ram