This is a note to let you know that I've just added the patch titled selftests: sched: Fix incorrect kernel headers search path to the 6.1-stable tree which can be found at: http://www.kernel.org/git/?p=linux/kernel/git/stable/stable-queue.git;a=summary The filename of the patch is: selftests-sched-fix-incorrect-kernel-headers-search-path.patch and it can be found in the queue-6.1 subdirectory. If you, or anyone else, feels it should not be added to the stable tree, please let <stable@xxxxxxxxxxxxxxx> know about it. >From 0d2cace5af50806a6b32ab73d367b80e46acda0f Mon Sep 17 00:00:00 2001 From: Mathieu Desnoyers <mathieu.desnoyers@xxxxxxxxxxxx> Date: Fri, 27 Jan 2023 08:57:45 -0500 Subject: selftests: sched: Fix incorrect kernel headers search path From: Mathieu Desnoyers <mathieu.desnoyers@xxxxxxxxxxxx> commit 0d2cace5af50806a6b32ab73d367b80e46acda0f upstream. Use $(KHDR_INCLUDES) as lookup path for kernel headers. This prevents building against kernel headers from the build environment in scenarios where kernel headers are installed into a specific output directory (O=...). Signed-off-by: Mathieu Desnoyers <mathieu.desnoyers@xxxxxxxxxxxx> Cc: Shuah Khan <shuah@xxxxxxxxxx> Cc: linux-kselftest@xxxxxxxxxxxxxxx Cc: Ingo Molnar <mingo@xxxxxxxxxx> Cc: <stable@xxxxxxxxxxxxxxx> # 5.18+ Signed-off-by: Shuah Khan <skhan@xxxxxxxxxxxxxxxxxxx> Signed-off-by: Greg Kroah-Hartman <gregkh@xxxxxxxxxxxxxxxxxxx> --- tools/testing/selftests/sched/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/testing/selftests/sched/Makefile b/tools/testing/selftests/sched/Makefile index 10c72f14fea9..099ee9213557 100644 --- a/tools/testing/selftests/sched/Makefile +++ b/tools/testing/selftests/sched/Makefile @@ -4,7 +4,7 @@ ifneq ($(shell $(CC) --version 2>&1 | head -n 1 | grep clang),) CLANG_FLAGS += -no-integrated-as endif -CFLAGS += -O2 -Wall -g -I./ -I../../../../usr/include/ -Wl,-rpath=./ \ +CFLAGS += -O2 -Wall -g -I./ $(KHDR_INCLUDES) -Wl,-rpath=./ \ $(CLANG_FLAGS) LDLIBS += -lpthread -- 2.39.2 Patches currently in stable-queue which might be from mathieu.desnoyers@xxxxxxxxxxxx are queue-6.1/srcu-delegate-work-to-the-boot-cpu-if-using-srcu_siz.patch queue-6.1/selftests-x86-fix-incorrect-kernel-headers-search-path.patch queue-6.1/selftests-sched-fix-incorrect-kernel-headers-search-path.patch queue-6.1/rcu-make-rcu_lockdep_warn-avoid-early-lockdep-checks.patch queue-6.1/selftests-core-fix-incorrect-kernel-headers-search-path.patch queue-6.1/selftests-powerpc-fix-incorrect-kernel-headers-search-path.patch