Changeset 728 for GPL/branches/uniaud32-next/include/linux/mm.h
- Timestamp:
- Sep 8, 2022, 11:20:01 AM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
GPL/branches/uniaud32-next/include/linux/mm.h
r662 r728 11 11 12 12 #define NUMA_NO_NODE (-1) 13 /*14 * GFP bitmasks..15 */16 #define __GFP_WAIT 0x0117 #define __GFP_LOW 0x0218 #define __GFP_MED 0x0419 #define __GFP_HIGH 0x0820 #define __GFP_IO 0x1021 #define __GFP_SWAP 0x2022 #define ___GFP_ZERO 0x100u23 #define __GFP_ZERO ((__force gfp_t)___GFP_ZERO)24 25 #ifdef TARGET_OS226 #define __GFP_DMAHIGHMEM 0x10027 #define GFP_DMAHIGHMEM __GFP_DMAHIGHMEM28 #endif29 30 #define GFP_BUFFER (__GFP_LOW | __GFP_WAIT)31 #define GFP_ATOMIC (__GFP_HIGH)32 #define GFP_USER (__GFP_LOW | __GFP_WAIT | __GFP_IO)33 #define GFP_HIGHUSER (GFP_USER | __GFP_HIGHMEM)34 #define GFP_KERNEL (__GFP_MED | __GFP_WAIT | __GFP_IO)35 #define GFP_NFS (__GFP_HIGH | __GFP_WAIT | __GFP_IO)36 #define GFP_KSWAPD (__GFP_IO | __GFP_SWAP)37 38 /* Flag - indicates that the buffer will be suitable for DMA. Ignored on some39 platforms, used as appropriate on others */40 41 #define GFP_DMA __GFP_DMA42 43 /* Flag - indicates that the buffer can be taken from high memory which is not44 directly addressable by the kernel */45 46 #define GFP_HIGHMEM __GFP_HIGHMEM47 13 48 14 /*
Note:
See TracChangeset
for help on using the changeset viewer.