Linux kernel memory overcommiting

Linux specific questions/information are gathered here. The main thrust of topics are applied to Centos/RedHat(RH)/Debian/Ubuntu/Gentoo distributives

Linux kernel memory overcommiting

Postby lik » Mon Sep 14, 2009 10:54 pm

1 The Linux kernel supports the following overcommit handling modes
2
3 0 - Heuristic overcommit handling. Obvious overcommits of
4 address space are refused. Used for a typical system. It
5 ensures a seriously wild allocation fails while allowing
6 overcommit to reduce swap usage. root is allowed to
7 allocate slighly more memory in this mode. This is the
8 default.
9
10 1 - Always overcommit. Appropriate for some scientific
11 applications.
12
13 2 - Don't overcommit. The total address space commit
14 for the system is not permitted to exceed swap + a
15 configurable percentage (default is 50) of physical RAM.
16 Depending on the percentage you use, in most situations
17 this means a process will not be killed while accessing
18 pages but will receive errors on memory allocation as
19 appropriate.
20
21 The overcommit policy is set via the sysctl `vm.overcommit_memory'.
22
23 The overcommit percentage is set via `vm.overcommit_ratio'.
24
25 The current overcommit limit and amount committed are viewable in
26 /proc/meminfo as CommitLimit and Committed_AS respectively.

http://www.mjmwired.net/kernel/Documentation/vm/overcommit-accounting
lik
Founder
Founder
 
Posts: 497
Joined: Wed Dec 15, 2010 3:21 am

Return to Linux specific

 


  • Related topics
    Replies
    Views
    Last post
cron