]> git.ipfire.org Git - thirdparty/kernel/linux.git/commitdiff
selftests/hid: fix bpf compilations due to -fms-extensions
authorBenjamin Tissoires <bentiss@kernel.org>
Tue, 6 Jan 2026 15:30:55 +0000 (16:30 +0100)
committerBenjamin Tissoires <bentiss@kernel.org>
Wed, 7 Jan 2026 14:03:49 +0000 (15:03 +0100)
Similar to commit 835a50753579 ("selftests/bpf: Add -fms-extensions to
bpf build flags") and commit 639f58a0f480 ("bpftool: Fix build warnings
due to MS extensions")

The kernel is now built with -fms-extensions, therefore
generated vmlinux.h contains types like:
struct slab {
   ..
   struct freelist_counters;
};

Use -fms-extensions and -Wno-microsoft-anon-tag flags
to build bpf programs that #include "vmlinux.h"

Signed-off-by: Benjamin Tissoires <bentiss@kernel.org>
tools/testing/selftests/hid/Makefile

index 2839d2612ce3a70f4332f8e886586e9cca6f03cb..50ec9e0406abaf316fba232c5da1967e27d0fa9b 100644 (file)
@@ -184,6 +184,8 @@ MENDIAN=$(if $(IS_LITTLE_ENDIAN),-mlittle-endian,-mbig-endian)
 
 CLANG_SYS_INCLUDES = $(call get_sys_includes,$(CLANG))
 BPF_CFLAGS = -g -Werror -D__TARGET_ARCH_$(SRCARCH) $(MENDIAN)          \
+            -Wno-microsoft-anon-tag                                    \
+            -fms-extensions                                            \
             -I$(INCLUDE_DIR)
 
 CLANG_CFLAGS = $(CLANG_SYS_INCLUDES) \