blob: 5201b915f631fc9df916e9aa476735323c6d9e62 [file] [log] [blame]
Matthew Wilcox1366c372016-03-17 14:21:45 -07001#ifndef _GFP_H
2#define _GFP_H
3
Valdis Kletnieks117dec92016-08-02 14:02:28 -07004#define __GFP_BITS_SHIFT 26
Matthew Wilcox1366c372016-03-17 14:21:45 -07005#define __GFP_BITS_MASK ((gfp_t)((1 << __GFP_BITS_SHIFT) - 1))
6#define __GFP_WAIT 1
7#define __GFP_ACCOUNT 0
8#define __GFP_NOWARN 0
9
10#endif