Merge branches 'slab/next' and 'slub/partial' into slab/for-linus
[pandora-kernel.git] / include / linux / mm_types.h
index 7870e47..c93d00a 100644 (file)
@@ -147,6 +147,17 @@ struct page {
 #endif
 ;
 
+struct page_frag {
+       struct page *page;
+#if (BITS_PER_LONG > 32) || (PAGE_SIZE >= 65536)
+       __u32 offset;
+       __u32 size;
+#else
+       __u16 offset;
+       __u16 size;
+#endif
+};
+
 typedef unsigned long __nocast vm_flags_t;
 
 /*