-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
yaml --- r: 288948 b: refs/heads/master c: 61989a8 h: refs/heads/master v: v3
- Loading branch information
Nitin Gupta
authored and
Greg Kroah-Hartman
committed
Feb 9, 2012
1 parent
7a70539
commit f3a71be
Showing
6 changed files
with
928 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
--- | ||
refs/heads/master: 17dd9f831a3c70588d54cc3a24594f274f9ec3a1 | ||
refs/heads/master: 61989a80fb3ac9d7837d03053624d5ea034a0d02 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
config ZSMALLOC | ||
tristate "Memory allocator for compressed pages" | ||
depends on SPARSEMEM | ||
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. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
zsmalloc-y := zsmalloc-main.o | ||
|
||
obj-$(CONFIG_ZSMALLOC) += zsmalloc.o |
Oops, something went wrong.