git: https://android.googlesource.com/kernel/common branch: android-4.9 commit: 03fcc2fe71308c2d164b4e6cbfc738c63e670444
11 lines
198 B
C
11 lines
198 B
C
#ifndef _GFP_H
|
|
#define _GFP_H
|
|
|
|
#define __GFP_BITS_SHIFT 26
|
|
#define __GFP_BITS_MASK ((gfp_t)((1 << __GFP_BITS_SHIFT) - 1))
|
|
#define __GFP_WAIT 1
|
|
#define __GFP_ACCOUNT 0
|
|
#define __GFP_NOWARN 0
|
|
|
|
#endif
|