Changeset 615 for GPL/branches/uniaud32-next/include/linux/mm.h
- Timestamp:
- Jan 1, 2021, 5:31:48 AM (5 years ago)
- Location:
- GPL/branches/uniaud32-next
- Files:
-
- 1 edited
- 1 copied
Legend:
- Unmodified
- Added
- Removed
-
GPL/branches/uniaud32-next/include/linux/mm.h
r598 r615 4 4 #include <linux/sched.h> 5 5 #include <linux/errno.h> 6 #include <linux/gfp.h> 6 7 #include <asm/page.h> 7 8 #include <asm/atomic.h> … … 16 17 #define __GFP_IO 0x10 17 18 #define __GFP_SWAP 0x20 18 #ifdef CONFIG_HIGHMEM19 #define __GFP_HIGHMEM 0x4020 #else21 #define __GFP_HIGHMEM 0x0 /* noop */22 #endif23 24 #define __GFP_DMA 0x8025 19 26 20 #ifdef TARGET_OS2 … … 125 119 unsigned long flags; /* atomic flags, some possibly updated asynchronously */ 126 120 unsigned long virtual; /* nonzero if kmapped */ 121 struct kmem_cache *slab_cache; /* SL[AU]B: Pointer to slab */ 122 struct page *first_page; /* Compound tail pages */ 127 123 } mem_map_t; 128 124 … … 174 170 #define ClearPageReserved(a) a 175 171 struct page *vmalloc_to_page(void *addr); 172 176 173 #endif
Note:
See TracChangeset
for help on using the changeset viewer.