*/
 #ifdef CONFIG_HAVE_ALIGNED_STRUCT_PAGE
 #define _struct_page_alignment __aligned(2 * sizeof(unsigned long))
-#if defined(CONFIG_HAVE_CMPXCHG_DOUBLE)
-#define _slub_counter_t                unsigned long
 #else
-#define _slub_counter_t                unsigned int
-#endif
-#else /* !CONFIG_HAVE_ALIGNED_STRUCT_PAGE */
 #define _struct_page_alignment
-#define _slub_counter_t                unsigned int
-#endif /* !CONFIG_HAVE_ALIGNED_STRUCT_PAGE */
+#endif
 
 struct page {
        /* First double word block */
                /* page_deferred_list().prev    -- second tail page */
        };
 
+       union {
+               /*
+                * Mapping-private opaque data:
+                * Usually used for buffer_heads if PagePrivate
+                * Used for swp_entry_t if PageSwapCache
+                * Indicates order in the buddy system if PageBuddy
+                */
+               unsigned long private;
+#if USE_SPLIT_PTE_PTLOCKS
+#if ALLOC_SPLIT_PTLOCKS
+               spinlock_t *ptl;
+#else
+               spinlock_t ptl;
+#endif
+#endif
+               void *s_mem;                    /* slab first object */
+               unsigned long counters;         /* SLUB */
+               struct {                        /* SLUB */
+                       unsigned inuse:16;
+                       unsigned objects:15;
+                       unsigned frozen:1;
+               };
+       };
+
        union {
                /*
                 * If the page is neither PageSlab nor mappable to userspace,
                 */
                unsigned int page_type;
 
-               _slub_counter_t counters;
                unsigned int active;            /* SLAB */
-               struct {                        /* SLUB */
-                       unsigned inuse:16;
-                       unsigned objects:15;
-                       unsigned frozen:1;
-               };
                int units;                      /* SLOB */
 
                struct {                        /* Page cache */
 #endif
        };
 
-       union {
-               /*
-                * Mapping-private opaque data:
-                * Usually used for buffer_heads if PagePrivate
-                * Used for swp_entry_t if PageSwapCache
-                * Indicates order in the buddy system if PageBuddy
-                */
-               unsigned long private;
-#if USE_SPLIT_PTE_PTLOCKS
-#if ALLOC_SPLIT_PTLOCKS
-               spinlock_t *ptl;
-#else
-               spinlock_t ptl;
-#endif
-#endif
-               void *s_mem;                    /* slab first object */
-       };
-
 #ifdef CONFIG_MEMCG
        struct mem_cgroup *mem_cgroup;
 #endif
 
        __bit_spin_unlock(PG_locked, &page->flags);
 }
 
-static inline void set_page_slub_counters(struct page *page, unsigned long counters_new)
-{
-       struct page tmp;
-       tmp.counters = counters_new;
-       /*
-        * page->counters can cover frozen/inuse/objects as well
-        * as page->_refcount.  If we assign to ->counters directly
-        * we run the risk of losing updates to page->_refcount, so
-        * be careful and only assign to the fields we need.
-        */
-       page->frozen  = tmp.frozen;
-       page->inuse   = tmp.inuse;
-       page->objects = tmp.objects;
-}
-
 /* Interrupts must be disabled (for the fallback code to work right) */
 static inline bool __cmpxchg_double_slab(struct kmem_cache *s, struct page *page,
                void *freelist_old, unsigned long counters_old,
                if (page->freelist == freelist_old &&
                                        page->counters == counters_old) {
                        page->freelist = freelist_new;
-                       set_page_slub_counters(page, counters_new);
+                       page->counters = counters_new;
                        slab_unlock(page);
                        return true;
                }
                if (page->freelist == freelist_old &&
                                        page->counters == counters_old) {
                        page->freelist = freelist_new;
-                       set_page_slub_counters(page, counters_new);
+                       page->counters = counters_new;
                        slab_unlock(page);
                        local_irq_restore(flags);
                        return true;
        __ClearPageSlabPfmemalloc(page);
        __ClearPageSlab(page);
 
-       page_mapcount_reset(page);
        page->mapping = NULL;
        if (current->reclaim_state)
                current->reclaim_state->reclaimed_slab += pages;