Re: [PATCH v4 04/11] qemu-thread: Replace __linux__ with CONFIG_LINUX

2025-05-26 Thread Philippe Mathieu-Daudé
On 26/5/25 07:29, Akihiko Odaki wrote: scripts/checkpatch.pl warns for __linux__ saying "architecture specific defines should be avoided". Signed-off-by: Akihiko Odaki --- include/qemu/thread-posix.h | 2 +- util/qemu-thread-posix.c| 6 +++--- 2 files changed, 4 insertions(+), 4 deletio

[PATCH v4 04/11] qemu-thread: Replace __linux__ with CONFIG_LINUX

2025-05-25 Thread Akihiko Odaki
scripts/checkpatch.pl warns for __linux__ saying "architecture specific defines should be avoided". Signed-off-by: Akihiko Odaki --- include/qemu/thread-posix.h | 2 +- util/qemu-thread-posix.c| 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/include/qemu/thread-posi