diff options
author | David Rientjes <rientjes@google.com> | 2009-02-22 20:40:07 -0500 |
---|---|---|
committer | Pekka Enberg <penberg@cs.helsinki.fi> | 2009-02-23 05:05:41 -0500 |
commit | 3b89d7d881a1dbb4da158f7eb5d6b3ceefc72810 (patch) | |
tree | 48c119937a204172677a5fa3a829019890670350 /include/linux/slub_def.h | |
parent | b578f3fcca1e78624dfb5f358776e63711d7fda2 (diff) |
slub: move min_partial to struct kmem_cache
Although it allows for better cacheline use, it is unnecessary to save a
copy of the cache's min_partial value in each kmem_cache_node.
Cc: Christoph Lameter <cl@linux-foundation.org>
Signed-off-by: David Rientjes <rientjes@google.com>
Signed-off-by: Pekka Enberg <penberg@cs.helsinki.fi>
Diffstat (limited to 'include/linux/slub_def.h')
-rw-r--r-- | include/linux/slub_def.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/slub_def.h b/include/linux/slub_def.h index 2f5c16b1aacd..f20a89e4d52c 100644 --- a/include/linux/slub_def.h +++ b/include/linux/slub_def.h | |||
@@ -46,7 +46,6 @@ struct kmem_cache_cpu { | |||
46 | struct kmem_cache_node { | 46 | struct kmem_cache_node { |
47 | spinlock_t list_lock; /* Protect partial list and nr_partial */ | 47 | spinlock_t list_lock; /* Protect partial list and nr_partial */ |
48 | unsigned long nr_partial; | 48 | unsigned long nr_partial; |
49 | unsigned long min_partial; | ||
50 | struct list_head partial; | 49 | struct list_head partial; |
51 | #ifdef CONFIG_SLUB_DEBUG | 50 | #ifdef CONFIG_SLUB_DEBUG |
52 | atomic_long_t nr_slabs; | 51 | atomic_long_t nr_slabs; |
@@ -89,6 +88,7 @@ struct kmem_cache { | |||
89 | void (*ctor)(void *); | 88 | void (*ctor)(void *); |
90 | int inuse; /* Offset to metadata */ | 89 | int inuse; /* Offset to metadata */ |
91 | int align; /* Alignment */ | 90 | int align; /* Alignment */ |
91 | unsigned long min_partial; | ||
92 | const char *name; /* Name (only for display!) */ | 92 | const char *name; /* Name (only for display!) */ |
93 | struct list_head list; /* List of slab caches */ | 93 | struct list_head list; /* List of slab caches */ |
94 | #ifdef CONFIG_SLUB_DEBUG | 94 | #ifdef CONFIG_SLUB_DEBUG |