summaryrefslogtreecommitdiff
path: root/backport/backport-include/linux/gfp.h
blob: 42f818f1fee351ef19fad6c12c738dd3e2cda7e7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#ifndef __BACKPORT_LINUX_GFP_H
#define __BACKPORT_LINUX_GFP_H
#include_next <linux/gfp.h>

#ifndef ___GFP_KSWAPD_RECLAIM
#define ___GFP_KSWAPD_RECLAIM	0x0u
#endif

#ifndef __GFP_KSWAPD_RECLAIM
#define __GFP_KSWAPD_RECLAIM	((__force gfp_t)___GFP_KSWAPD_RECLAIM) /* kswapd can wake */
#endif

#endif /* __BACKPORT_LINUX_GFP_H */