Expand description
Allocation flags.
These are meant to be used in functions that can allocate memory.
Constants§
- Users can not sleep and need the allocation to succeed.
- Typical for kernel-internal allocations. The caller requires ZONE_NORMAL or a lower zone for direct access but can direct reclaim.
- The same as
GFP_KERNEL
, except the allocation is accounted to kmemcg. - For kernel allocations that should not stall for direct reclaim, start physical IO or use any filesystem callback. It is very likely to fail to allocate memory, even for very small allocations.
- Allow the allocation to be in high memory.
- Suppresses allocation failure reports.
- Zeroes out the allocated memory.