[tip: locking/core] static_call / jump_label: Replace __ASSEMBLY__ with __ASSEMBLER__ in headers

From: tip-bot2 for Thomas Huth

Date: Mon Aug 03 2026 - 04:10:51 EST


The following commit has been merged into the locking/core branch of tip:

Commit-ID: 6cb423c96e842248ac4131ae0a25f0a50cef2776
Gitweb: https://git.kernel.org/tip/6cb423c96e842248ac4131ae0a25f0a50cef2776
Author: Thomas Huth <thuth@xxxxxxxxxx>
AuthorDate: Fri, 19 Jun 2026 14:49:36 +02:00
Committer: Peter Zijlstra <peterz@xxxxxxxxxxxxx>
CommitterDate: Fri, 31 Jul 2026 10:32:24 +02:00

static_call / jump_label: Replace __ASSEMBLY__ with __ASSEMBLER__ in headers

While the GCC and Clang compilers already define __ASSEMBLER__
automatically when compiling assembly code, __ASSEMBLY__ is a
macro that only gets defined by the Makefiles in the kernel.
This can be very confusing when switching between userspace
and kernelspace coding, or when dealing with uapi headers that
rather should use __ASSEMBLER__ instead. So let's standardize now
on the __ASSEMBLER__ macro that is provided by the compilers.

This is a completely mechanical patch (done with a simple "sed -i"
statement).

Signed-off-by: Thomas Huth <thuth@xxxxxxxxxx>
Signed-off-by: Peter Zijlstra (Intel) <peterz@xxxxxxxxxxxxx>
Link: https://patch.msgid.link/20260619124936.208519-1-thuth@xxxxxxxxxx
---
arch/arm/include/asm/jump_label.h | 4 ++--
include/linux/jump_label.h | 10 +++++-----
include/linux/static_call_types.h | 4 ++--
tools/include/linux/static_call_types.h | 4 ++--
4 files changed, 11 insertions(+), 11 deletions(-)

diff --git a/arch/arm/include/asm/jump_label.h b/arch/arm/include/asm/jump_label.h
index a35aba7..11024b7 100644
--- a/arch/arm/include/asm/jump_label.h
+++ b/arch/arm/include/asm/jump_label.h
@@ -2,7 +2,7 @@
#ifndef _ASM_ARM_JUMP_LABEL_H
#define _ASM_ARM_JUMP_LABEL_H

-#ifndef __ASSEMBLY__
+#ifndef __ASSEMBLER__

#include <linux/types.h>
#include <asm/unified.h>
@@ -49,5 +49,5 @@ struct jump_entry {
jump_label_t key;
};

-#endif /* __ASSEMBLY__ */
+#endif /* __ASSEMBLER__ */
#endif
diff --git a/include/linux/jump_label.h b/include/linux/jump_label.h
index b9c7b0e..c95350a 100644
--- a/include/linux/jump_label.h
+++ b/include/linux/jump_label.h
@@ -71,7 +71,7 @@
* Additional babbling in: Documentation/staging/static-keys.rst
*/

-#ifndef __ASSEMBLY__
+#ifndef __ASSEMBLER__

#include <linux/types.h>
#include <linux/compiler.h>
@@ -100,12 +100,12 @@ struct static_key {
#endif /* CONFIG_JUMP_LABEL */
};

-#endif /* __ASSEMBLY__ */
+#endif /* __ASSEMBLER__ */

#ifdef CONFIG_JUMP_LABEL
#include <asm/jump_label.h>

-#ifndef __ASSEMBLY__
+#ifndef __ASSEMBLER__
#ifdef CONFIG_HAVE_ARCH_JUMP_LABEL_RELATIVE

struct jump_entry {
@@ -180,7 +180,7 @@ static inline int jump_entry_size(struct jump_entry *entry)
#endif
#endif

-#ifndef __ASSEMBLY__
+#ifndef __ASSEMBLER__

enum jump_label_type {
JUMP_LABEL_NOP = 0,
@@ -524,6 +524,6 @@ extern bool ____wrong_branch_error(void);
#define static_branch_enable_cpuslocked(x) static_key_enable_cpuslocked(&(x)->key)
#define static_branch_disable_cpuslocked(x) static_key_disable_cpuslocked(&(x)->key)

-#endif /* __ASSEMBLY__ */
+#endif /* __ASSEMBLER__ */

#endif /* _LINUX_JUMP_LABEL_H */
diff --git a/include/linux/static_call_types.h b/include/linux/static_call_types.h
index cfb6dde..ac55bc9 100644
--- a/include/linux/static_call_types.h
+++ b/include/linux/static_call_types.h
@@ -25,7 +25,7 @@
#define STATIC_CALL_SITE_INIT 2UL /* init section */
#define STATIC_CALL_SITE_FLAGS 3UL

-#ifndef __ASSEMBLY__
+#ifndef __ASSEMBLER__

/*
* The static call site table needs to be created by external tooling (objtool
@@ -102,6 +102,6 @@ struct static_call_key {

#endif /* CONFIG_HAVE_STATIC_CALL */

-#endif /* __ASSEMBLY__ */
+#endif /* __ASSEMBLER__ */

#endif /* _STATIC_CALL_TYPES_H */
diff --git a/tools/include/linux/static_call_types.h b/tools/include/linux/static_call_types.h
index cfb6dde..ac55bc9 100644
--- a/tools/include/linux/static_call_types.h
+++ b/tools/include/linux/static_call_types.h
@@ -25,7 +25,7 @@
#define STATIC_CALL_SITE_INIT 2UL /* init section */
#define STATIC_CALL_SITE_FLAGS 3UL

-#ifndef __ASSEMBLY__
+#ifndef __ASSEMBLER__

/*
* The static call site table needs to be created by external tooling (objtool
@@ -102,6 +102,6 @@ struct static_call_key {

#endif /* CONFIG_HAVE_STATIC_CALL */

-#endif /* __ASSEMBLY__ */
+#endif /* __ASSEMBLER__ */

#endif /* _STATIC_CALL_TYPES_H */