* [PATCH] xen/arm: Replace __ASSEMBLY__ with __ASSEMBLER__ in interface.h
@ 2026-04-21 14:27 Thomas Huth
2026-04-21 22:15 ` Stefano Stabellini
2026-04-22 5:59 ` Jürgen Groß
0 siblings, 2 replies; 4+ messages in thread
From: Thomas Huth @ 2026-04-21 14:27 UTC (permalink / raw)
To: Juergen Gross, Stefano Stabellini
Cc: Oleksandr Tyshchenko, xen-devel, linux-kernel
From: Thomas Huth <thuth@redhat.com>
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.
Signed-off-by: Thomas Huth <thuth@redhat.com>
---
Note: This patch has been split from an earlier patch series of mine
to ease reviewing.
include/xen/arm/interface.h | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/include/xen/arm/interface.h b/include/xen/arm/interface.h
index c3eada2642aa9..61360b89da405 100644
--- a/include/xen/arm/interface.h
+++ b/include/xen/arm/interface.h
@@ -30,7 +30,7 @@
#define __HYPERVISOR_platform_op_raw __HYPERVISOR_platform_op
-#ifndef __ASSEMBLY__
+#ifndef __ASSEMBLER__
/* Explicitly size integers that represent pfns in the interface with
* Xen so that we can have one ABI that works for 32 and 64 bit guests.
* Note that this means that the xen_pfn_t type may be capable of
--
2.53.0
^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: [PATCH] xen/arm: Replace __ASSEMBLY__ with __ASSEMBLER__ in interface.h
2026-04-21 14:27 [PATCH] xen/arm: Replace __ASSEMBLY__ with __ASSEMBLER__ in interface.h Thomas Huth
@ 2026-04-21 22:15 ` Stefano Stabellini
2026-04-22 4:57 ` Thomas Huth
2026-04-22 5:59 ` Jürgen Groß
1 sibling, 1 reply; 4+ messages in thread
From: Stefano Stabellini @ 2026-04-21 22:15 UTC (permalink / raw)
To: Thomas Huth
Cc: Juergen Gross, Stefano Stabellini, Oleksandr Tyshchenko,
xen-devel, linux-kernel
On Tue, 21 Apr 2026, Thomas Huth wrote:
> From: Thomas Huth <thuth@redhat.com>
>
> 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.
>
> Signed-off-by: Thomas Huth <thuth@redhat.com>
I haven't been closely following the __ASSEMBLER__ vs __ASSEMBLY__
discussion. If there is general agreement to use __ASSEMBLER__ in
headers, I am happy to go along with that. Currently, I see more than
140 uses of __ASSEMBLY__ compared to fewer than 20 uses of
__ASSEMBLER__, but I'll defer to your judgment if the project is moving
in that direction.
> ---
> Note: This patch has been split from an earlier patch series of mine
> to ease reviewing.
>
> include/xen/arm/interface.h | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/include/xen/arm/interface.h b/include/xen/arm/interface.h
> index c3eada2642aa9..61360b89da405 100644
> --- a/include/xen/arm/interface.h
> +++ b/include/xen/arm/interface.h
> @@ -30,7 +30,7 @@
>
> #define __HYPERVISOR_platform_op_raw __HYPERVISOR_platform_op
>
> -#ifndef __ASSEMBLY__
> +#ifndef __ASSEMBLER__
> /* Explicitly size integers that represent pfns in the interface with
> * Xen so that we can have one ABI that works for 32 and 64 bit guests.
> * Note that this means that the xen_pfn_t type may be capable of
> --
> 2.53.0
>
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH] xen/arm: Replace __ASSEMBLY__ with __ASSEMBLER__ in interface.h
2026-04-21 22:15 ` Stefano Stabellini
@ 2026-04-22 4:57 ` Thomas Huth
0 siblings, 0 replies; 4+ messages in thread
From: Thomas Huth @ 2026-04-22 4:57 UTC (permalink / raw)
To: Stefano Stabellini
Cc: Juergen Gross, Oleksandr Tyshchenko, xen-devel, linux-kernel
On 22/04/2026 00.15, Stefano Stabellini wrote:
> On Tue, 21 Apr 2026, Thomas Huth wrote:
>> From: Thomas Huth <thuth@redhat.com>
>>
>> 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.
>>
>> Signed-off-by: Thomas Huth <thuth@redhat.com>
>
> I haven't been closely following the __ASSEMBLER__ vs __ASSEMBLY__
> discussion. If there is general agreement to use __ASSEMBLER__ in
> headers, I am happy to go along with that. Currently, I see more than
> 140 uses of __ASSEMBLY__ compared to fewer than 20 uses of
> __ASSEMBLER__, but I'll defer to your judgment if the project is moving
> in that direction.
I assume you only counted the occurrences in the main include/ folder?
Please also take the arch/*/include/ folders into account:
thuth:~/devel/linux$ grep -r __ASSEMBLER__ arch/*/include/ | wc -l
1492
thuth:~/devel/linux$ grep -r __ASSEMBLY__ arch/*/include/ | wc -l
120
So most spots have been converted already. It would be great if you could
help with the xen header!
Thanks,
Thomas
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH] xen/arm: Replace __ASSEMBLY__ with __ASSEMBLER__ in interface.h
2026-04-21 14:27 [PATCH] xen/arm: Replace __ASSEMBLY__ with __ASSEMBLER__ in interface.h Thomas Huth
2026-04-21 22:15 ` Stefano Stabellini
@ 2026-04-22 5:59 ` Jürgen Groß
1 sibling, 0 replies; 4+ messages in thread
From: Jürgen Groß @ 2026-04-22 5:59 UTC (permalink / raw)
To: Thomas Huth, Stefano Stabellini
Cc: Oleksandr Tyshchenko, xen-devel, linux-kernel
[-- Attachment #1.1.1: Type: text/plain, Size: 655 bytes --]
On 21.04.26 16:27, Thomas Huth wrote:
> From: Thomas Huth <thuth@redhat.com>
>
> 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.
>
> Signed-off-by: Thomas Huth <thuth@redhat.com>
Reviewed-by: Juergen Gross <jgross@suse.com>
Juergen
[-- Attachment #1.1.2: OpenPGP public key --]
[-- Type: application/pgp-keys, Size: 3743 bytes --]
[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 495 bytes --]
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2026-04-22 5:59 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-04-21 14:27 [PATCH] xen/arm: Replace __ASSEMBLY__ with __ASSEMBLER__ in interface.h Thomas Huth
2026-04-21 22:15 ` Stefano Stabellini
2026-04-22 4:57 ` Thomas Huth
2026-04-22 5:59 ` Jürgen Groß
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox