aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
Diffstat (limited to 'include')
-rw-r--r--include/linux/mm.h4
-rw-r--r--include/linux/mm_types.h9
2 files changed, 2 insertions, 11 deletions
diff --git a/include/linux/mm.h b/include/linux/mm.h
index 6a68d41444f8..292c68623759 100644
--- a/include/linux/mm.h
+++ b/include/linux/mm.h
@@ -568,10 +568,6 @@ static inline struct address_space *page_mapping(struct page *page)
568 VM_BUG_ON(PageSlab(page)); 568 VM_BUG_ON(PageSlab(page));
569 if (unlikely(PageSwapCache(page))) 569 if (unlikely(PageSwapCache(page)))
570 mapping = &swapper_space; 570 mapping = &swapper_space;
571#ifdef CONFIG_SLUB
572 else if (unlikely(PageSlab(page)))
573 mapping = NULL;
574#endif
575 else if (unlikely((unsigned long)mapping & PAGE_MAPPING_ANON)) 571 else if (unlikely((unsigned long)mapping & PAGE_MAPPING_ANON))
576 mapping = NULL; 572 mapping = NULL;
577 return mapping; 573 return mapping;
diff --git a/include/linux/mm_types.h b/include/linux/mm_types.h
index 145b3d053048..0cdc8fbf6431 100644
--- a/include/linux/mm_types.h
+++ b/include/linux/mm_types.h
@@ -62,13 +62,8 @@ struct page {
62#if NR_CPUS >= CONFIG_SPLIT_PTLOCK_CPUS 62#if NR_CPUS >= CONFIG_SPLIT_PTLOCK_CPUS
63 spinlock_t ptl; 63 spinlock_t ptl;
64#endif 64#endif
65 struct { /* SLUB uses */ 65 struct kmem_cache *slab; /* SLUB: Pointer to slab */
66 void **lockless_freelist; 66 struct page *first_page; /* Compound tail pages */
67 struct kmem_cache *slab; /* Pointer to slab */
68 };
69 struct {
70 struct page *first_page; /* Compound pages */
71 };
72 }; 67 };
73 union { 68 union {
74 pgoff_t index; /* Our offset within mapping. */ 69 pgoff_t index; /* Our offset within mapping. */