diff options
author | Xin Li (Intel) <xin@zytor.com> | 2024-02-02 01:02:24 -0800 |
---|---|---|
committer | Ingo Molnar <mingo@kernel.org> | 2024-02-02 10:05:55 +0100 |
commit | cba9ff33451162a6aa9b1424b32503354d7ef20e (patch) | |
tree | 4e13ff2d22f6603a829a3b909c9f4b246e17bb9c | |
parent | 208d8c79fd0f155bce1b23d8d78926653f7603b7 (diff) | |
download | lwn-cba9ff33451162a6aa9b1424b32503354d7ef20e.tar.gz lwn-cba9ff33451162a6aa9b1424b32503354d7ef20e.zip |
x86/fred: Fix a build warning with allmodconfig due to 'inline' failing to inline properly
Change array_index_mask_nospec() to __always_inline because "inline" is
broken as https://www.kernel.org/doc/local/inline.html.
Fixes: 6786137bf8fd ("x86/fred: FRED entry/exit and dispatch code")
Reported-by: Stephen Rothwell <sfr@canb.auug.org.au>
Signed-off-by: Xin Li (Intel) <xin@zytor.com>
Signed-off-by: Ingo Molnar <mingo@kernel.org>
Link: https://lore.kernel.org/r/20240202090225.322544-1-xin@zytor.com
-rw-r--r-- | arch/x86/include/asm/barrier.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/x86/include/asm/barrier.h b/arch/x86/include/asm/barrier.h index 0216f63a366b..fe1e7e3cc844 100644 --- a/arch/x86/include/asm/barrier.h +++ b/arch/x86/include/asm/barrier.h @@ -33,7 +33,7 @@ * Returns: * 0 - (index < size) */ -static inline unsigned long array_index_mask_nospec(unsigned long index, +static __always_inline unsigned long array_index_mask_nospec(unsigned long index, unsigned long size) { unsigned long mask; |