summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorChristoph Lameter <clameter@sgi.com>2008-03-01 21:40:44 (GMT)
committerChristoph Lameter <clameter@sgi.com>2008-03-03 20:22:30 (GMT)
commita973e9dd1e140a65bed694a2c5c8d53e9cba1a23 (patch)
tree5a164080dae237d09c57abab9e84b750863a2ff7 /include
parent27710bf6febe8323f78bceca002ca7d71e5012a7 (diff)
downloadlinux-fsl-qoriq-a973e9dd1e140a65bed694a2c5c8d53e9cba1a23.tar.xz
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.h5
1 files changed, 1 insertions, 4 deletions
diff --git a/include/linux/mm_types.h b/include/linux/mm_types.h
index bfee0bd..34023c6 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 {