|
@@ -30,6 +30,7 @@ struct vm_area_struct;
|
|
|
#define ___GFP_HARDWALL 0x20000u
|
|
|
#define ___GFP_THISNODE 0x40000u
|
|
|
#define ___GFP_RECLAIMABLE 0x80000u
|
|
|
+#define ___GFP_KMEMCG 0x100000u
|
|
|
#define ___GFP_NOTRACK 0x200000u
|
|
|
#define ___GFP_NO_KSWAPD 0x400000u
|
|
|
#define ___GFP_OTHER_NODE 0x800000u
|
|
@@ -89,6 +90,7 @@ struct vm_area_struct;
|
|
|
|
|
|
#define __GFP_NO_KSWAPD ((__force gfp_t)___GFP_NO_KSWAPD)
|
|
|
#define __GFP_OTHER_NODE ((__force gfp_t)___GFP_OTHER_NODE) /* On behalf of other node */
|
|
|
+#define __GFP_KMEMCG ((__force gfp_t)___GFP_KMEMCG) /* Allocation comes from a memcg-accounted resource */
|
|
|
#define __GFP_WRITE ((__force gfp_t)___GFP_WRITE) /* Allocator intends to dirty page */
|
|
|
|
|
|
/*
|