diff options
author | Christoph Lameter <clameter@sgi.com> | 2008-03-01 13:40:44 -0800 |
---|---|---|
committer | Christoph Lameter <clameter@sgi.com> | 2008-03-03 12:22:30 -0800 |
commit | a973e9dd1e140a65bed694a2c5c8d53e9cba1a23 (patch) | |
tree | 5a164080dae237d09c57abab9e84b750863a2ff7 /include | |
parent | 27710bf6febe8323f78bceca002ca7d71e5012a7 (diff) | |
download | linux-3.10-a973e9dd1e140a65bed694a2c5c8d53e9cba1a23.tar.gz linux-3.10-a973e9dd1e140a65bed694a2c5c8d53e9cba1a23.tar.bz2 linux-3.10-a973e9dd1e140a65bed694a2c5c8d53e9cba1a23.zip |
Revert "unique end pointer" patch
This only made sense for the alternate fastpath which was reverted last week.
Mathieu is working on a new version that addresses the fastpath issues but that
new code first needs to go through mm and it is not clear if we need the
unique end pointers with his new scheme.
Reviewed-by: Pekka Enberg <penberg@cs.helsinki.fi>
Signed-off-by: Christoph Lameter <clameter@sgi.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/linux/mm_types.h | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/include/linux/mm_types.h b/include/linux/mm_types.h index bfee0bd1d43..34023c65d46 100644 --- a/include/linux/mm_types.h +++ b/include/linux/mm_types.h @@ -64,10 +64,7 @@ struct page { #if NR_CPUS >= CONFIG_SPLIT_PTLOCK_CPUS spinlock_t ptl; #endif - struct { - struct kmem_cache *slab; /* SLUB: Pointer to slab */ - void *end; /* SLUB: end marker */ - }; + struct kmem_cache *slab; /* SLUB: Pointer to slab */ struct page *first_page; /* Compound tail pages */ }; union { |