The GFP_ATOMIC flag is to be used in atomic context where user cannot sleep and need the allocation to succeed. However, it does not support contexts where preemption or interrupt is disabled under PREEMPT_RT like raw_spin_lock_irqsave() or plain preempt_disable(). With the advance of the ALLOC_TRYLOCK allocation flag in the v7.1 kernel, it is possible to allocate memory under such contexts by using spin_trylock to acquire the spinlock in the memory allocation path. This does increase the chance that the allocation can fail due to the presence of concurrent memory allocation requests. So its users must be able to handle such memory allocation failure gracefully. The ALLOC_TRYLOCK flag will only be enabled if none of the ___GFP_DIRECT_RECLAIM and ___GFP_KSWAPD_RECLAIM flags are set. Introduce a new GFP_ATOMIC_RT gfp flag for those PREEMPT_RT atomic contexts. This new flag will fall back to GFP_ATOMIC in non-PREEMPT_RT kernel. GFP_ATOMIC can continue to be used in contexts where preemption and interrupt are not disabled in PREEMPT_RT kernel like spin_lock_irqsave(). Signed-off-by: Waiman Long --- include/linux/gfp_types.h | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/include/linux/gfp_types.h b/include/linux/gfp_types.h index cd4972a7c97c..ac30882b6cd4 100644 --- a/include/linux/gfp_types.h +++ b/include/linux/gfp_types.h @@ -316,6 +316,13 @@ enum { * preempt_disable() - see "Memory allocation" in * Documentation/core-api/real-time/differences.rst for more info. * + * %GFP_ATOMIC_RT is similar to %GFP_ATOMIC with the addition that it can also + * be used in context where preemption and/or interrupt is disabled under + * PREEMPT_RT, but not in NMI or hardirq contexts. The allocation is more + * likely to fail under PREEMPT_RT due to the spin_trylock() nature of lock + * acquisition. So the caller must be ready to handle memory allocation failure + * gracefully. + * * %GFP_KERNEL is typical for kernel-internal allocations. The caller requires * %ZONE_NORMAL or a lower zone for direct access but can direct reclaim. * @@ -388,4 +395,10 @@ enum { __GFP_NOMEMALLOC | __GFP_NOWARN) & ~__GFP_RECLAIM) #define GFP_TRANSHUGE (GFP_TRANSHUGE_LIGHT | __GFP_DIRECT_RECLAIM) +#ifdef CONFIG_PREEMPT_RT +# define GFP_ATOMIC_RT __GFP_HIGH +#else +# define GFP_ATOMIC_RT GFP_ATOMIC +#endif + #endif /* __LINUX_GFP_TYPES_H */ -- 2.54.0