blob: 908456565796770c44065eb432622071bf8cbcf2 (
plain)
1
2
3
4
5
6
7
8
9
10
|
config ZSMALLOC
tristate "Memory allocator for compressed pages"
default n
help
zsmalloc is a slab-based memory allocator designed to store
compressed RAM pages. zsmalloc uses virtual memory mapping
in order to reduce fragmentation. However, this results in a
non-standard allocator interface where a handle, not a pointer, is
returned by an alloc(). This handle must be mapped in order to
access the allocated space.
|