[v1,1/1] x86/fred: Fix a build warning with allmodconfig

Message ID 20240202090225.322544-1-xin@zytor.com
State New
Headers
Series [v1,1/1] x86/fred: Fix a build warning with allmodconfig |

Commit Message

Xin Li (Intel) Feb. 2, 2024, 9:02 a.m. UTC
  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>
Link: https://lore.kernel.org/lkml/20240201111453.0ee3beff@canb.auug.org.au/
Signed-off-by: Xin Li (Intel) <xin@zytor.com>
---
 arch/x86/include/asm/barrier.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)


base-commit: 208d8c79fd0f155bce1b23d8d78926653f7603b7
  

Patch

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;