2016-03-18 05:21:45 +08:00
|
|
|
#ifndef _GFP_H
|
|
|
|
#define _GFP_H
|
|
|
|
|
2016-12-17 03:53:45 +08:00
|
|
|
#include <linux/types.h>
|
|
|
|
|
2016-08-03 05:02:28 +08:00
|
|
|
#define __GFP_BITS_SHIFT 26
|
2016-03-18 05:21:45 +08:00
|
|
|
#define __GFP_BITS_MASK ((gfp_t)((1 << __GFP_BITS_SHIFT) - 1))
|
2016-12-15 07:07:59 +08:00
|
|
|
|
|
|
|
#define __GFP_HIGH 0x20u
|
|
|
|
#define __GFP_IO 0x40u
|
|
|
|
#define __GFP_FS 0x80u
|
|
|
|
#define __GFP_NOWARN 0x200u
|
|
|
|
#define __GFP_ATOMIC 0x80000u
|
|
|
|
#define __GFP_ACCOUNT 0x100000u
|
|
|
|
#define __GFP_DIRECT_RECLAIM 0x400000u
|
|
|
|
#define __GFP_KSWAPD_RECLAIM 0x2000000u
|
|
|
|
|
2016-12-20 23:27:56 +08:00
|
|
|
#define __GFP_RECLAIM (__GFP_DIRECT_RECLAIM|__GFP_KSWAPD_RECLAIM)
|
|
|
|
|
|
|
|
#define GFP_ATOMIC (__GFP_HIGH|__GFP_ATOMIC|__GFP_KSWAPD_RECLAIM)
|
|
|
|
#define GFP_KERNEL (__GFP_RECLAIM | __GFP_IO | __GFP_FS)
|
|
|
|
#define GFP_NOWAIT (__GFP_KSWAPD_RECLAIM)
|
2016-12-15 07:07:59 +08:00
|
|
|
|
|
|
|
|
|
|
|
static inline bool gfpflags_allow_blocking(const gfp_t gfp_flags)
|
|
|
|
{
|
|
|
|
return !!(gfp_flags & __GFP_DIRECT_RECLAIM);
|
|
|
|
}
|
2016-03-18 05:21:45 +08:00
|
|
|
|
|
|
|
#endif
|