projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
4c493a5
)
slub: fix slub_max_order Documentation
author
Eric Dumazet
<
[email protected]
>
Tue, 22 Nov 2011 05:59:09 +0000
(06:59 +0100)
committer
Pekka Enberg
<
[email protected]
>
Sun, 27 Nov 2011 20:08:28 +0000
(22:08 +0200)
slub_max_order default is 3 (aka PAGE_ALLOC_COSTLY_ORDER), not 1
Acked-by: David Rientjes <
[email protected]
>
Acked-by: Christoph Lameter <
[email protected]
>
Signed-off-by: Eric Dumazet <
[email protected]
>
Signed-off-by: Pekka Enberg <
[email protected]
>
Documentation/vm/slub.txt
patch
|
blob
|
history
diff --git
a/Documentation/vm/slub.txt
b/Documentation/vm/slub.txt
index f464f47bc60dacd77fecc7797dfe658708acb41e..2acdda9601b097958ad4ea732ba784a1ed4fffce 100644
(file)
--- a/
Documentation/vm/slub.txt
+++ b/
Documentation/vm/slub.txt
@@
-117,7
+117,7
@@
can be influenced by kernel parameters:
slub_min_objects=x (default 4)
slub_min_order=x (default 0)
-slub_max_order=x (default
1
)
+slub_max_order=x (default
3 (PAGE_ALLOC_COSTLY_ORDER)
)
slub_min_objects allows to specify how many objects must at least fit
into one slab in order for the allocation order to be acceptable.