The page is being locked for exclusive access, e.g. by undergoing read/write
    IO.
 7 - SLAB
-   The page is managed by the SLAB/SLOB/SLUB/SLQB kernel memory allocator.
-   When compound page is used, SLUB/SLQB will only set this flag on the head
-   page; SLOB will not flag it at all.
+   The page is managed by the SLAB/SLUB kernel memory allocator.
+   When compound page is used, either will only set this flag on the head
+   page.
 10 - BUDDY
     A free memory block managed by the buddy system allocator.
     The buddy system organizes free memory in blocks of various orders.
 
        /*
         * pseudo flags for the well known (anonymous) memory mapped pages
         *
-        * Note that page->_mapcount is overloaded in SLOB/SLUB/SLQB, so the
+        * Note that page->_mapcount is overloaded in SLAB, so the
         * simple test in page_mapped() is not enough.
         */
        if (!PageSlab(page) && page_mapped(page))
 
 
        /*
-        * Caveats on high order pages: page->_refcount will only be set
-        * -1 on the head page; SLUB/SLQB do the same for PG_slab;
-        * SLOB won't set PG_slab at all on compound pages.
+        * Caveats on high order pages: PG_buddy and PG_slab will only be set
+        * on the head page.
         */
        if (PageBuddy(page))
                u |= 1 << KPF_BUDDY;
        u |= kpf_copy_bit(k, KPF_LOCKED,        PG_locked);
 
        u |= kpf_copy_bit(k, KPF_SLAB,          PG_slab);
-       if (PageTail(page) && PageSlab(compound_head(page)))
+       if (PageTail(page) && PageSlab(page))
                u |= 1 << KPF_SLAB;
 
        u |= kpf_copy_bit(k, KPF_ERROR,         PG_error);