(no title)
LordGrey | 2 months ago
The Linux kernel supports the following overcommit handling modes
0 - Heuristic overcommit handling. Obvious overcommits of address space are refused. Used for a typical system. It ensures a seriously wild allocation fails while allowing overcommit to reduce swap usage. root is allowed to allocate slightly more memory in this mode. This is the default.
1 - Always overcommit. Appropriate for some scientific applications. Classic example is code using sparse arrays and just relying on the virtual memory consisting almost entirely of zero pages.
2 - Don't overcommit. The total address space commit for the system is not permitted to exceed swap + a configurable amount (default is 50%) of physical RAM. Depending on the amount you use, in most situations this means a process will not be killed while accessing pages but will receive errors on memory allocation as appropriate. Useful for applications that want to guarantee their memory allocations will be available in the future without having to initialize every page.
dbdr|2 months ago
Naive question: why is this default 50%, and more generally why is this not the entire RAM, what happens to the rest?
godelski|2 months ago
vin10|2 months ago
dasil003|2 months ago
crote|2 months ago
unknown|2 months ago
[deleted]
throw0101c|2 months ago
Source:
* https://www.kernel.org/doc/Documentation/vm/overcommit-accou...
sidewndr46|2 months ago
LordGrey|2 months ago
If successful, calloc(), malloc(), realloc(), reallocf(), valloc(), and aligned_alloc() functions return a pointer to allocated memory. If there is an error, they return a NULL pointer and set errno to ENOMEM.
In practice, I find a lot of code that does not check for NULL, which is rather distressing.
themafia|2 months ago
fulafel|2 months ago