|
@@ -70,46 +70,46 @@ struct hmm;
|
|
|
#endif
|
|
|
|
|
|
struct page {
|
|
|
- /* First double word block */
|
|
|
unsigned long flags; /* Atomic flags, some possibly
|
|
|
* updated asynchronously */
|
|
|
+ /* Three words (12/24 bytes) are available in this union. */
|
|
|
union {
|
|
|
- /* See page-flags.h for the definition of PAGE_MAPPING_FLAGS */
|
|
|
- struct address_space *mapping;
|
|
|
-
|
|
|
- struct kmem_cache *slab_cache; /* SL[AU]B: Pointer to slab */
|
|
|
+ struct { /* Page cache and anonymous pages */
|
|
|
+ /* See page-flags.h for PAGE_MAPPING_FLAGS */
|
|
|
+ struct address_space *mapping;
|
|
|
+ pgoff_t index; /* Our offset within mapping. */
|
|
|
+ /**
|
|
|
+ * @private: 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;
|
|
|
+ };
|
|
|
+ struct { /* slab, slob and slub */
|
|
|
+ struct kmem_cache *slab_cache; /* not slob */
|
|
|
+ /* Double-word boundary */
|
|
|
+ void *freelist; /* first free object */
|
|
|
+ union {
|
|
|
+ void *s_mem; /* slab: first object */
|
|
|
+ unsigned long counters; /* SLUB */
|
|
|
+ struct { /* SLUB */
|
|
|
+ unsigned inuse:16;
|
|
|
+ unsigned objects:15;
|
|
|
+ unsigned frozen:1;
|
|
|
+ };
|
|
|
+ };
|
|
|
+ };
|
|
|
atomic_t compound_mapcount; /* first tail page */
|
|
|
- /* page_deferred_list().next -- second tail page */
|
|
|
- };
|
|
|
-
|
|
|
- /* Second double word */
|
|
|
- union {
|
|
|
- pgoff_t index; /* Our offset within mapping. */
|
|
|
- void *freelist; /* sl[aou]b first free object */
|
|
|
- /* 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
|
|
|
+ struct list_head deferred_list; /* second tail page */
|
|
|
+ struct { /* Page table pages */
|
|
|
+ unsigned long _pt_pad_2; /* mapping */
|
|
|
+ unsigned long _pt_pad_3;
|
|
|
#if ALLOC_SPLIT_PTLOCKS
|
|
|
- spinlock_t *ptl;
|
|
|
+ spinlock_t *ptl;
|
|
|
#else
|
|
|
- spinlock_t ptl;
|
|
|
-#endif
|
|
|
+ spinlock_t ptl;
|
|
|
#endif
|
|
|
- void *s_mem; /* slab first object */
|
|
|
- unsigned long counters; /* SLUB */
|
|
|
- struct { /* SLUB */
|
|
|
- unsigned inuse:16;
|
|
|
- unsigned objects:15;
|
|
|
- unsigned frozen:1;
|
|
|
};
|
|
|
};
|
|
|
|