]> git.karo-electronics.de Git - karo-tx-linux.git/commit
slab: ignore internal flags in cache creation
authorGlauber Costa <glommer@parallels.com>
Thu, 25 Oct 2012 01:14:52 +0000 (12:14 +1100)
committerStephen Rothwell <sfr@canb.auug.org.au>
Mon, 29 Oct 2012 03:17:23 +0000 (14:17 +1100)
commit93c4593e9f8ad1caf35cf44ca1d5e47d6a07b4cf
tree2d27dfaabcfab65503067decf4a8f34d04d65a34
parentc0ee73626bd53374d7f70333f6e796cc683aea9c
slab: ignore internal flags in cache creation

Some flags are used internally by the allocators for management purposes.
One example of that is the CFLGS_OFF_SLAB flag that slab uses to mark that
the metadata for that cache is stored outside of the slab.

No cache should ever pass those as a creation flags.  We can just ignore
this bit if it happens to be passed (such as when duplicating a cache in
the kmem memcg patches).

Because such flags can vary from allocator to allocator, we allow them to
make their own decisions on that, defining SLAB_AVAILABLE_FLAGS with all
flags that are valid at creation time.  Allocators that doesn't have any
specific flag requirement should define that to mean all flags.

Common code will mask out all flags not belonging to that set.

Signed-off-by: Glauber Costa <glommer@parallels.com>
Acked-by: Christoph Lameter <cl@linux.com>
Acked-by: David Rientjes <rientjes@google.com>
Cc: Pekka Enberg <penberg@cs.helsinki.fi>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
mm/slab.c
mm/slab.h
mm/slab_common.c
mm/slub.c