linux-doc.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH v3 10/11] Documentation: kselftest: "make headers" is a prerequisite
       [not found] <20230606071637.267103-1-jhubbard@nvidia.com>
@ 2023-06-06  7:16 ` John Hubbard
  2023-06-06  7:57   ` Muhammad Usama Anjum
  2023-07-10 14:20   ` Mark Brown
  2023-06-06  7:16 ` [PATCH v3 11/11] selftests: error out if kernel header files are not yet built John Hubbard
  1 sibling, 2 replies; 20+ messages in thread
From: John Hubbard @ 2023-06-06  7:16 UTC (permalink / raw)
  To: Andrew Morton
  Cc: David Hildenbrand, Peter Xu, Shuah Khan, Nathan Chancellor,
	linux-mm, linux-kselftest, LKML, John Hubbard,
	Muhammad Usama Anjum, Jonathan Corbet, linux-doc

As per a discussion with Muhammad Usama Anjum [1], the following is how
one is supposed to build selftests:

    make headers && make -C tools/testing/selftests/mm

However, that's not yet documented anywhere. So add it to
Documentation/dev-tools/kselftest.rst .

[1] https://lore.kernel.org/all/bf910fa5-0c96-3707-cce4-5bcc656b6274@collabora.com/

Cc: Peter Xu <peterx@redhat.com>
Cc: Muhammad Usama Anjum <usama.anjum@collabora.com>
Cc: Jonathan Corbet <corbet@lwn.net>
Cc: linux-doc@vger.kernel.org
Reviewed-by: David Hildenbrand <david@redhat.com>
Signed-off-by: John Hubbard <jhubbard@nvidia.com>
---
 Documentation/dev-tools/kselftest.rst | 1 +
 1 file changed, 1 insertion(+)

diff --git a/Documentation/dev-tools/kselftest.rst b/Documentation/dev-tools/kselftest.rst
index 12b575b76b20..6e35d042199c 100644
--- a/Documentation/dev-tools/kselftest.rst
+++ b/Documentation/dev-tools/kselftest.rst
@@ -36,6 +36,7 @@ Running the selftests (hotplug tests are run in limited mode)
 
 To build the tests::
 
+  $ make headers
   $ make -C tools/testing/selftests
 
 To run the tests::
-- 
2.40.1


^ permalink raw reply related	[flat|nested] 20+ messages in thread

* [PATCH v3 11/11] selftests: error out if kernel header files are not yet built
       [not found] <20230606071637.267103-1-jhubbard@nvidia.com>
  2023-06-06  7:16 ` [PATCH v3 10/11] Documentation: kselftest: "make headers" is a prerequisite John Hubbard
@ 2023-06-06  7:16 ` John Hubbard
  2023-06-06  7:38   ` Muhammad Usama Anjum
                     ` (3 more replies)
  1 sibling, 4 replies; 20+ messages in thread
From: John Hubbard @ 2023-06-06  7:16 UTC (permalink / raw)
  To: Andrew Morton
  Cc: David Hildenbrand, Peter Xu, Shuah Khan, Nathan Chancellor,
	linux-mm, linux-kselftest, LKML, John Hubbard,
	Muhammad Usama Anjum, Jonathan Corbet, linux-doc

As per a discussion with Muhammad Usama Anjum [1], the following is how
one is supposed to build selftests:

    make headers && make -C tools/testing/selftests/mm

Change the selftest build system's lib.mk to fail out with a helpful
message if that prerequisite "make headers" has not been done yet.

[1] https://lore.kernel.org/all/bf910fa5-0c96-3707-cce4-5bcc656b6274@collabora.com/

Cc: David Hildenbrand <david@redhat.com>
Cc: Peter Xu <peterx@redhat.com>
Cc: Muhammad Usama Anjum <usama.anjum@collabora.com>
Cc: Jonathan Corbet <corbet@lwn.net>
Cc: linux-doc@vger.kernel.org
Signed-off-by: John Hubbard <jhubbard@nvidia.com>
---
 tools/testing/selftests/lib.mk | 36 +++++++++++++++++++++++++++++++---
 1 file changed, 33 insertions(+), 3 deletions(-)

diff --git a/tools/testing/selftests/lib.mk b/tools/testing/selftests/lib.mk
index 05400462c779..b8ea03b9a015 100644
--- a/tools/testing/selftests/lib.mk
+++ b/tools/testing/selftests/lib.mk
@@ -44,10 +44,22 @@ endif
 selfdir = $(realpath $(dir $(filter %/lib.mk,$(MAKEFILE_LIST))))
 top_srcdir = $(selfdir)/../../..
 
-ifeq ($(KHDR_INCLUDES),)
-KHDR_INCLUDES := -isystem $(top_srcdir)/usr/include
+ifneq ($(KBUILD_OUTPUT),)
+  # Make's built-in functions such as $(abspath ...), $(realpath ...) cannot
+  # expand a shell special character '~'. We use a somewhat tedious way here.
+  abs_objtree := $(shell cd $(top_srcdir) && mkdir -p $(KBUILD_OUTPUT) && cd $(KBUILD_OUTPUT) && pwd)
+  $(if $(abs_objtree),, \
+    $(error failed to create output directory "$(KBUILD_OUTPUT)"))
+  # $(realpath ...) resolves symlinks
+  abs_objtree := $(realpath $(abs_objtree))
+  KHDR_DIR := ${abs_objtree}/usr/include
+else
+  abs_srctree := $(shell cd $(top_srcdir) && pwd)
+  KHDR_DIR := ${abs_srctree}/usr/include
 endif
 
+KHDR_INCLUDES := -isystem $(KHDR_DIR)
+
 # The following are built by lib.mk common compile rules.
 # TEST_CUSTOM_PROGS should be used by tests that require
 # custom build rule and prevent common build rule use.
@@ -58,7 +70,25 @@ TEST_GEN_PROGS := $(patsubst %,$(OUTPUT)/%,$(TEST_GEN_PROGS))
 TEST_GEN_PROGS_EXTENDED := $(patsubst %,$(OUTPUT)/%,$(TEST_GEN_PROGS_EXTENDED))
 TEST_GEN_FILES := $(patsubst %,$(OUTPUT)/%,$(TEST_GEN_FILES))
 
-all: $(TEST_GEN_PROGS) $(TEST_GEN_PROGS_EXTENDED) $(TEST_GEN_FILES)
+all: kernel_header_files $(TEST_GEN_PROGS) $(TEST_GEN_PROGS_EXTENDED) \
+     $(TEST_GEN_FILES)
+
+kernel_header_files:
+	@ls $(KHDR_DIR)/linux/*.h >/dev/null 2>/dev/null;                      \
+	if [ $$? -ne 0 ]; then                                                 \
+            RED='\033[1;31m';                                                  \
+            NOCOLOR='\033[0m';                                                 \
+            echo;                                                              \
+            echo -e "$${RED}error$${NOCOLOR}: missing kernel header files.";   \
+            echo "Please run this and try again:";                             \
+            echo;                                                              \
+            echo "    cd $(top_srcdir)";                                       \
+            echo "    make headers";                                           \
+            echo;                                                              \
+	    exit 1; \
+	fi
+
+.PHONY: kernel_header_files
 
 define RUN_TESTS
 	BASE_DIR="$(selfdir)";			\
-- 
2.40.1


^ permalink raw reply related	[flat|nested] 20+ messages in thread

* Re: [PATCH v3 11/11] selftests: error out if kernel header files are not yet built
  2023-06-06  7:16 ` [PATCH v3 11/11] selftests: error out if kernel header files are not yet built John Hubbard
@ 2023-06-06  7:38   ` Muhammad Usama Anjum
  2023-06-06 20:10     ` John Hubbard
  2023-06-06  7:57   ` Muhammad Usama Anjum
                     ` (2 subsequent siblings)
  3 siblings, 1 reply; 20+ messages in thread
From: Muhammad Usama Anjum @ 2023-06-06  7:38 UTC (permalink / raw)
  To: John Hubbard, Andrew Morton
  Cc: Muhammad Usama Anjum, David Hildenbrand, Peter Xu, Shuah Khan,
	Nathan Chancellor, linux-mm, linux-kselftest, LKML,
	Jonathan Corbet, linux-doc

[-- Attachment #1: Type: text/plain, Size: 4749 bytes --]



On 6/6/23 12:16 PM, John Hubbard wrote:
> As per a discussion with Muhammad Usama Anjum [1], the following is how
> one is supposed to build selftests:
> 
>     make headers && make -C tools/testing/selftests/mm
> 
> Change the selftest build system's lib.mk to fail out with a helpful
> message if that prerequisite "make headers" has not been done yet.
> 
> [1] https://lore.kernel.org/all/bf910fa5-0c96-3707-cce4-5bcc656b6274@collabora.com/
> 
> Cc: David Hildenbrand <david@redhat.com>
> Cc: Peter Xu <peterx@redhat.com>
> Cc: Muhammad Usama Anjum <usama.anjum@collabora.com>
> Cc: Jonathan Corbet <corbet@lwn.net>
> Cc: linux-doc@vger.kernel.org
> Signed-off-by: John Hubbard <jhubbard@nvidia.com>
> ---
>  tools/testing/selftests/lib.mk | 36 +++++++++++++++++++++++++++++++---
>  1 file changed, 33 insertions(+), 3 deletions(-)
> 
> diff --git a/tools/testing/selftests/lib.mk b/tools/testing/selftests/lib.mk
> index 05400462c779..b8ea03b9a015 100644
> --- a/tools/testing/selftests/lib.mk
> +++ b/tools/testing/selftests/lib.mk
> @@ -44,10 +44,22 @@ endif
>  selfdir = $(realpath $(dir $(filter %/lib.mk,$(MAKEFILE_LIST))))
>  top_srcdir = $(selfdir)/../../..
>  
> -ifeq ($(KHDR_INCLUDES),)
> -KHDR_INCLUDES := -isystem $(top_srcdir)/usr/include
> +ifneq ($(KBUILD_OUTPUT),)
> +  # Make's built-in functions such as $(abspath ...), $(realpath ...) cannot
> +  # expand a shell special character '~'. We use a somewhat tedious way here.
> +  abs_objtree := $(shell cd $(top_srcdir) && mkdir -p $(KBUILD_OUTPUT) && cd $(KBUILD_OUTPUT) && pwd)
> +  $(if $(abs_objtree),, \
> +    $(error failed to create output directory "$(KBUILD_OUTPUT)"))
> +  # $(realpath ...) resolves symlinks
> +  abs_objtree := $(realpath $(abs_objtree))
> +  KHDR_DIR := ${abs_objtree}/usr/include
> +else
> +  abs_srctree := $(shell cd $(top_srcdir) && pwd)
> +  KHDR_DIR := ${abs_srctree}/usr/include
>  endif
>  
> +KHDR_INCLUDES := -isystem $(KHDR_DIR)
> +
>  # The following are built by lib.mk common compile rules.
>  # TEST_CUSTOM_PROGS should be used by tests that require
>  # custom build rule and prevent common build rule use.
> @@ -58,7 +70,25 @@ TEST_GEN_PROGS := $(patsubst %,$(OUTPUT)/%,$(TEST_GEN_PROGS))
>  TEST_GEN_PROGS_EXTENDED := $(patsubst %,$(OUTPUT)/%,$(TEST_GEN_PROGS_EXTENDED))
>  TEST_GEN_FILES := $(patsubst %,$(OUTPUT)/%,$(TEST_GEN_FILES))
>  
> -all: $(TEST_GEN_PROGS) $(TEST_GEN_PROGS_EXTENDED) $(TEST_GEN_FILES)
> +all: kernel_header_files $(TEST_GEN_PROGS) $(TEST_GEN_PROGS_EXTENDED) \
> +     $(TEST_GEN_FILES)
> +
> +kernel_header_files:
> +	@ls $(KHDR_DIR)/linux/*.h >/dev/null 2>/dev/null;                      \
> +	if [ $$? -ne 0 ]; then                                                 \
> +            RED='\033[1;31m';                                                  \
> +            NOCOLOR='\033[0m';                                                 \
> +            echo;                                                              \
> +            echo -e "$${RED}error$${NOCOLOR}: missing kernel header files.";   \
> +            echo "Please run this and try again:";                             \
> +            echo;                                                              \
> +            echo "    cd $(top_srcdir)";                                       \
> +            echo "    make headers";                                           \
> +            echo;                                                              \
> +	    exit 1; \
> +	fi
Thank you for adding this. This is outputting error for every selftest
directory. We should try to make it even better by just aborting the
Make-ing process the first time headers aren't detected. We can do this now
or later, fine by me.


make[1]: Entering directory
'/home/usama/repos/kernel/linux_mainline/tools/testing/selftests/futex'

-e error: missing kernel header files.
Please run this and try again:

    cd /home/usama/repos/kernel/linux_mainline/tools/testing/selftests/../../..
    make headers

make[1]: *** [../lib.mk:77: kernel_header_files] Error 1
make[1]: Leaving directory
'/home/usama/repos/kernel/linux_mainline/tools/testing/selftests/futex'
make[1]: Entering directory
'/home/usama/repos/kernel/linux_mainline/tools/testing/selftests/gpio'

-e error: missing kernel header files.
Please run this and try again:

    cd /home/usama/repos/kernel/linux_mainline/tools/testing/selftests/../../..
    make headers

make[1]: *** [../lib.mk:77: kernel_header_files] Error 1
make[1]: Leaving directory
'/home/usama/repos/kernel/linux_mainline/tools/testing/selftests/gpio'
m

Complete error log file is attached.


> +
> +.PHONY: kernel_header_files
>  
>  define RUN_TESTS
>  	BASE_DIR="$(selfdir)";			\

-- 
BR,
Muhammad Usama Anjum

[-- Attachment #2: log --]
[-- Type: text/plain, Size: 33996 bytes --]

make: Entering directory '/home/usama/repos/kernel/linux_mainline/tools/testing/selftests'
make[1]: Entering directory '/home/usama/repos/kernel/linux_mainline/tools/testing/selftests/alsa'

-e ^[[1;31merror^[[0m: missing kernel header files.
Please run this and try again:

    cd /home/usama/repos/kernel/linux_mainline/tools/testing/selftests/../../..
    make headers

make[1]: Leaving directory '/home/usama/repos/kernel/linux_mainline/tools/testing/selftests/alsa'
make[1]: Entering directory '/home/usama/repos/kernel/linux_mainline/tools/testing/selftests/amd-pstate'

-e ^[[1;31merror^[[0m: missing kernel header files.
Please run this and try again:

    cd /home/usama/repos/kernel/linux_mainline/tools/testing/selftests/../../..
    make headers

make[1]: Leaving directory '/home/usama/repos/kernel/linux_mainline/tools/testing/selftests/amd-pstate'
make[1]: Entering directory '/home/usama/repos/kernel/linux_mainline/tools/testing/selftests/arm64'
make[1]: Leaving directory '/home/usama/repos/kernel/linux_mainline/tools/testing/selftests/arm64'
make[1]: Entering directory '/home/usama/repos/kernel/linux_mainline/tools/testing/selftests/breakpoints'

-e ^[[1;31merror^[[0m: missing kernel header files.
Please run this and try again:

    cd /home/usama/repos/kernel/linux_mainline/tools/testing/selftests/../../..
    make headers

make[1]: Leaving directory '/home/usama/repos/kernel/linux_mainline/tools/testing/selftests/breakpoints'
make[1]: Entering directory '/home/usama/repos/kernel/linux_mainline/tools/testing/selftests/cachestat'

-e ^[[1;31merror^[[0m: missing kernel header files.
Please run this and try again:

    cd /home/usama/repos/kernel/linux_mainline/tools/testing/selftests/../../..
    make headers

make[1]: Leaving directory '/home/usama/repos/kernel/linux_mainline/tools/testing/selftests/cachestat'
make[1]: Entering directory '/home/usama/repos/kernel/linux_mainline/tools/testing/selftests/capabilities'

-e ^[[1;31merror^[[0m: missing kernel header files.
Please run this and try again:

    cd /home/usama/repos/kernel/linux_mainline/tools/testing/selftests/../../..
    make headers

make[1]: Leaving directory '/home/usama/repos/kernel/linux_mainline/tools/testing/selftests/capabilities'
make[1]: Entering directory '/home/usama/repos/kernel/linux_mainline/tools/testing/selftests/cgroup'

-e ^[[1;31merror^[[0m: missing kernel header files.
Please run this and try again:

    cd /home/usama/repos/kernel/linux_mainline/tools/testing/selftests/../../..
    make headers

make[1]: Leaving directory '/home/usama/repos/kernel/linux_mainline/tools/testing/selftests/cgroup'
make[1]: Entering directory '/home/usama/repos/kernel/linux_mainline/tools/testing/selftests/clone3'

-e ^[[1;31merror^[[0m: missing kernel header files.
Please run this and try again:

    cd /home/usama/repos/kernel/linux_mainline/tools/testing/selftests/../../..
    make headers

make[1]: Leaving directory '/home/usama/repos/kernel/linux_mainline/tools/testing/selftests/clone3'
make[1]: Entering directory '/home/usama/repos/kernel/linux_mainline/tools/testing/selftests/core'

-e ^[[1;31merror^[[0m: missing kernel header files.
Please run this and try again:

    cd /home/usama/repos/kernel/linux_mainline/tools/testing/selftests/../../..
    make headers

make[1]: Leaving directory '/home/usama/repos/kernel/linux_mainline/tools/testing/selftests/core'
make[1]: Entering directory '/home/usama/repos/kernel/linux_mainline/tools/testing/selftests/cpufreq'

-e ^[[1;31merror^[[0m: missing kernel header files.
Please run this and try again:

    cd /home/usama/repos/kernel/linux_mainline/tools/testing/selftests/../../..
    make headers

make[1]: Leaving directory '/home/usama/repos/kernel/linux_mainline/tools/testing/selftests/cpufreq'
make[1]: Entering directory '/home/usama/repos/kernel/linux_mainline/tools/testing/selftests/cpu-hotplug'

-e ^[[1;31merror^[[0m: missing kernel header files.
Please run this and try again:

    cd /home/usama/repos/kernel/linux_mainline/tools/testing/selftests/../../..
    make headers

make[1]: Leaving directory '/home/usama/repos/kernel/linux_mainline/tools/testing/selftests/cpu-hotplug'
make[1]: Entering directory '/home/usama/repos/kernel/linux_mainline/tools/testing/selftests/damon'

-e ^[[1;31merror^[[0m: missing kernel header files.
Please run this and try again:

    cd /home/usama/repos/kernel/linux_mainline/tools/testing/selftests/../../..
    make headers

make[1]: Leaving directory '/home/usama/repos/kernel/linux_mainline/tools/testing/selftests/damon'
make[1]: Entering directory '/home/usama/repos/kernel/linux_mainline/tools/testing/selftests/drivers/dma-buf'

-e ^[[1;31merror^[[0m: missing kernel header files.
Please run this and try again:

    cd /home/usama/repos/kernel/linux_mainline/tools/testing/selftests/../../..
    make headers

make[1]: Leaving directory '/home/usama/repos/kernel/linux_mainline/tools/testing/selftests/drivers/dma-buf'
make[1]: Entering directory '/home/usama/repos/kernel/linux_mainline/tools/testing/selftests/drivers/s390x/uvdevice'
make[1]: Leaving directory '/home/usama/repos/kernel/linux_mainline/tools/testing/selftests/drivers/s390x/uvdevice'
make[1]: Entering directory '/home/usama/repos/kernel/linux_mainline/tools/testing/selftests/drivers/net/bonding'

-e ^[[1;31merror^[[0m: missing kernel header files.
Please run this and try again:

    cd /home/usama/repos/kernel/linux_mainline/tools/testing/selftests/../../..
    make headers

make[1]: Leaving directory '/home/usama/repos/kernel/linux_mainline/tools/testing/selftests/drivers/net/bonding'
make[1]: Entering directory '/home/usama/repos/kernel/linux_mainline/tools/testing/selftests/drivers/net/team'

-e ^[[1;31merror^[[0m: missing kernel header files.
Please run this and try again:

    cd /home/usama/repos/kernel/linux_mainline/tools/testing/selftests/../../..
    make headers

make[1]: Leaving directory '/home/usama/repos/kernel/linux_mainline/tools/testing/selftests/drivers/net/team'
make[1]: Entering directory '/home/usama/repos/kernel/linux_mainline/tools/testing/selftests/efivarfs'

-e ^[[1;31merror^[[0m: missing kernel header files.
Please run this and try again:

    cd /home/usama/repos/kernel/linux_mainline/tools/testing/selftests/../../..
    make headers

make[1]: Leaving directory '/home/usama/repos/kernel/linux_mainline/tools/testing/selftests/efivarfs'
make[1]: Entering directory '/home/usama/repos/kernel/linux_mainline/tools/testing/selftests/exec'

-e ^[[1;31merror^[[0m: missing kernel header files.
Please run this and try again:

    cd /home/usama/repos/kernel/linux_mainline/tools/testing/selftests/../../..
    make headers

make[1]: Leaving directory '/home/usama/repos/kernel/linux_mainline/tools/testing/selftests/exec'
make[1]: Entering directory '/home/usama/repos/kernel/linux_mainline/tools/testing/selftests/filesystems'

-e ^[[1;31merror^[[0m: missing kernel header files.
Please run this and try again:

    cd /home/usama/repos/kernel/linux_mainline/tools/testing/selftests/../../..
    make headers

make[1]: Leaving directory '/home/usama/repos/kernel/linux_mainline/tools/testing/selftests/filesystems'
make[1]: Entering directory '/home/usama/repos/kernel/linux_mainline/tools/testing/selftests/filesystems/binderfs'
make[1]: 'binderfs_test' is up to date.
make[1]: Leaving directory '/home/usama/repos/kernel/linux_mainline/tools/testing/selftests/filesystems/binderfs'
make[1]: Entering directory '/home/usama/repos/kernel/linux_mainline/tools/testing/selftests/filesystems/epoll'

-e ^[[1;31merror^[[0m: missing kernel header files.
Please run this and try again:

    cd /home/usama/repos/kernel/linux_mainline/tools/testing/selftests/../../..
    make headers

make[1]: Leaving directory '/home/usama/repos/kernel/linux_mainline/tools/testing/selftests/filesystems/epoll'
make[1]: Entering directory '/home/usama/repos/kernel/linux_mainline/tools/testing/selftests/filesystems/fat'

-e ^[[1;31merror^[[0m: missing kernel header files.
Please run this and try again:

    cd /home/usama/repos/kernel/linux_mainline/tools/testing/selftests/../../..
    make headers

make[1]: Leaving directory '/home/usama/repos/kernel/linux_mainline/tools/testing/selftests/filesystems/fat'
make[1]: Entering directory '/home/usama/repos/kernel/linux_mainline/tools/testing/selftests/firmware'

-e ^[[1;31merror^[[0m: missing kernel header files.
Please run this and try again:

    cd /home/usama/repos/kernel/linux_mainline/tools/testing/selftests/../../..
    make headers

make[1]: Leaving directory '/home/usama/repos/kernel/linux_mainline/tools/testing/selftests/firmware'
make[1]: Entering directory '/home/usama/repos/kernel/linux_mainline/tools/testing/selftests/fpu'

-e ^[[1;31merror^[[0m: missing kernel header files.
Please run this and try again:

    cd /home/usama/repos/kernel/linux_mainline/tools/testing/selftests/../../..
    make headers

make[1]: Leaving directory '/home/usama/repos/kernel/linux_mainline/tools/testing/selftests/fpu'
make[1]: Entering directory '/home/usama/repos/kernel/linux_mainline/tools/testing/selftests/ftrace'

-e ^[[1;31merror^[[0m: missing kernel header files.
Please run this and try again:

    cd /home/usama/repos/kernel/linux_mainline/tools/testing/selftests/../../..
    make headers

make[1]: Leaving directory '/home/usama/repos/kernel/linux_mainline/tools/testing/selftests/ftrace'
make[1]: Entering directory '/home/usama/repos/kernel/linux_mainline/tools/testing/selftests/futex'

-e ^[[1;31merror^[[0m: missing kernel header files.
Please run this and try again:

    cd /home/usama/repos/kernel/linux_mainline/tools/testing/selftests/../../..
    make headers

make[1]: Leaving directory '/home/usama/repos/kernel/linux_mainline/tools/testing/selftests/futex'
make[1]: Entering directory '/home/usama/repos/kernel/linux_mainline/tools/testing/selftests/gpio'

-e ^[[1;31merror^[[0m: missing kernel header files.
Please run this and try again:

    cd /home/usama/repos/kernel/linux_mainline/tools/testing/selftests/../../..
    make headers

make[1]: Leaving directory '/home/usama/repos/kernel/linux_mainline/tools/testing/selftests/gpio'
make[1]: Entering directory '/home/usama/repos/kernel/linux_mainline/tools/testing/selftests/hid'

-e ^[[1;31merror^[[0m: missing kernel header files.
Please run this and try again:

    cd /home/usama/repos/kernel/linux_mainline/tools/testing/selftests/../../..
    make headers

make[1]: Leaving directory '/home/usama/repos/kernel/linux_mainline/tools/testing/selftests/hid'
make[1]: Entering directory '/home/usama/repos/kernel/linux_mainline/tools/testing/selftests/intel_pstate'

-e ^[[1;31merror^[[0m: missing kernel header files.
Please run this and try again:

    cd /home/usama/repos/kernel/linux_mainline/tools/testing/selftests/../../..
    make headers

make[1]: Leaving directory '/home/usama/repos/kernel/linux_mainline/tools/testing/selftests/intel_pstate'
make[1]: Entering directory '/home/usama/repos/kernel/linux_mainline/tools/testing/selftests/iommu'

-e ^[[1;31merror^[[0m: missing kernel header files.
Please run this and try again:

    cd /home/usama/repos/kernel/linux_mainline/tools/testing/selftests/../../..
    make headers

make[1]: Leaving directory '/home/usama/repos/kernel/linux_mainline/tools/testing/selftests/iommu'
make[1]: Entering directory '/home/usama/repos/kernel/linux_mainline/tools/testing/selftests/ipc'

-e ^[[1;31merror^[[0m: missing kernel header files.
Please run this and try again:

    cd /home/usama/repos/kernel/linux_mainline/tools/testing/selftests/../../..
    make headers

make[1]: Leaving directory '/home/usama/repos/kernel/linux_mainline/tools/testing/selftests/ipc'
make[1]: Entering directory '/home/usama/repos/kernel/linux_mainline/tools/testing/selftests/ir'

-e ^[[1;31merror^[[0m: missing kernel header files.
Please run this and try again:

    cd /home/usama/repos/kernel/linux_mainline/tools/testing/selftests/../../..
    make headers

make[1]: Leaving directory '/home/usama/repos/kernel/linux_mainline/tools/testing/selftests/ir'
make[1]: Entering directory '/home/usama/repos/kernel/linux_mainline/tools/testing/selftests/kcmp'

-e ^[[1;31merror^[[0m: missing kernel header files.
Please run this and try again:

    cd /home/usama/repos/kernel/linux_mainline/tools/testing/selftests/../../..
    make headers

make[1]: Leaving directory '/home/usama/repos/kernel/linux_mainline/tools/testing/selftests/kcmp'
make[1]: Entering directory '/home/usama/repos/kernel/linux_mainline/tools/testing/selftests/kexec'

-e ^[[1;31merror^[[0m: missing kernel header files.
Please run this and try again:

    cd /home/usama/repos/kernel/linux_mainline/tools/testing/selftests/../../..
    make headers

make[1]: Leaving directory '/home/usama/repos/kernel/linux_mainline/tools/testing/selftests/kexec'
make[1]: Entering directory '/home/usama/repos/kernel/linux_mainline/tools/testing/selftests/kvm'

-e ^[[1;31merror^[[0m: missing kernel header files.
Please run this and try again:

    cd /home/usama/repos/kernel/linux_mainline/tools/testing/selftests/../../..
    make headers

make[1]: Leaving directory '/home/usama/repos/kernel/linux_mainline/tools/testing/selftests/kvm'
make[1]: Entering directory '/home/usama/repos/kernel/linux_mainline/tools/testing/selftests/landlock'

-e ^[[1;31merror^[[0m: missing kernel header files.
Please run this and try again:

    cd /home/usama/repos/kernel/linux_mainline/tools/testing/selftests/../../..
    make headers

make[1]: Leaving directory '/home/usama/repos/kernel/linux_mainline/tools/testing/selftests/landlock'
make[1]: Entering directory '/home/usama/repos/kernel/linux_mainline/tools/testing/selftests/lib'

-e ^[[1;31merror^[[0m: missing kernel header files.
Please run this and try again:

    cd /home/usama/repos/kernel/linux_mainline/tools/testing/selftests/../../..
    make headers

make[1]: Leaving directory '/home/usama/repos/kernel/linux_mainline/tools/testing/selftests/lib'
make[1]: Entering directory '/home/usama/repos/kernel/linux_mainline/tools/testing/selftests/livepatch'

-e ^[[1;31merror^[[0m: missing kernel header files.
Please run this and try again:

    cd /home/usama/repos/kernel/linux_mainline/tools/testing/selftests/../../..
    make headers

make[1]: Leaving directory '/home/usama/repos/kernel/linux_mainline/tools/testing/selftests/livepatch'
make[1]: Entering directory '/home/usama/repos/kernel/linux_mainline/tools/testing/selftests/lkdtm'

-e ^[[1;31merror^[[0m: missing kernel header files.
Please run this and try again:

    cd /home/usama/repos/kernel/linux_mainline/tools/testing/selftests/../../..
    make headers

make[1]: Leaving directory '/home/usama/repos/kernel/linux_mainline/tools/testing/selftests/lkdtm'
make[1]: Entering directory '/home/usama/repos/kernel/linux_mainline/tools/testing/selftests/membarrier'

-e ^[[1;31merror^[[0m: missing kernel header files.
Please run this and try again:

    cd /home/usama/repos/kernel/linux_mainline/tools/testing/selftests/../../..
    make headers

make[1]: Leaving directory '/home/usama/repos/kernel/linux_mainline/tools/testing/selftests/membarrier'
make[1]: Entering directory '/home/usama/repos/kernel/linux_mainline/tools/testing/selftests/memfd'

-e ^[[1;31merror^[[0m: missing kernel header files.
Please run this and try again:

    cd /home/usama/repos/kernel/linux_mainline/tools/testing/selftests/../../..
    make headers

make[1]: Leaving directory '/home/usama/repos/kernel/linux_mainline/tools/testing/selftests/memfd'
make[1]: Entering directory '/home/usama/repos/kernel/linux_mainline/tools/testing/selftests/memory-hotplug'

-e ^[[1;31merror^[[0m: missing kernel header files.
Please run this and try again:

    cd /home/usama/repos/kernel/linux_mainline/tools/testing/selftests/../../..
    make headers

make[1]: Leaving directory '/home/usama/repos/kernel/linux_mainline/tools/testing/selftests/memory-hotplug'
make[1]: Entering directory '/home/usama/repos/kernel/linux_mainline/tools/testing/selftests/mincore'

-e ^[[1;31merror^[[0m: missing kernel header files.
Please run this and try again:

    cd /home/usama/repos/kernel/linux_mainline/tools/testing/selftests/../../..
    make headers

make[1]: Leaving directory '/home/usama/repos/kernel/linux_mainline/tools/testing/selftests/mincore'
make[1]: Entering directory '/home/usama/repos/kernel/linux_mainline/tools/testing/selftests/mount'

-e ^[[1;31merror^[[0m: missing kernel header files.
Please run this and try again:

    cd /home/usama/repos/kernel/linux_mainline/tools/testing/selftests/../../..
    make headers

make[1]: Leaving directory '/home/usama/repos/kernel/linux_mainline/tools/testing/selftests/mount'
make[1]: Entering directory '/home/usama/repos/kernel/linux_mainline/tools/testing/selftests/mount_setattr'

-e ^[[1;31merror^[[0m: missing kernel header files.
Please run this and try again:

    cd /home/usama/repos/kernel/linux_mainline/tools/testing/selftests/../../..
    make headers

make[1]: Leaving directory '/home/usama/repos/kernel/linux_mainline/tools/testing/selftests/mount_setattr'
make[1]: Entering directory '/home/usama/repos/kernel/linux_mainline/tools/testing/selftests/move_mount_set_group'

-e ^[[1;31merror^[[0m: missing kernel header files.
Please run this and try again:

    cd /home/usama/repos/kernel/linux_mainline/tools/testing/selftests/../../..
    make headers

make[1]: Leaving directory '/home/usama/repos/kernel/linux_mainline/tools/testing/selftests/move_mount_set_group'
make[1]: Entering directory '/home/usama/repos/kernel/linux_mainline/tools/testing/selftests/mqueue'

-e ^[[1;31merror^[[0m: missing kernel header files.
Please run this and try again:

    cd /home/usama/repos/kernel/linux_mainline/tools/testing/selftests/../../..
    make headers

make[1]: Leaving directory '/home/usama/repos/kernel/linux_mainline/tools/testing/selftests/mqueue'
make[1]: Entering directory '/home/usama/repos/kernel/linux_mainline/tools/testing/selftests/nci'

-e ^[[1;31merror^[[0m: missing kernel header files.
Please run this and try again:

    cd /home/usama/repos/kernel/linux_mainline/tools/testing/selftests/../../..
    make headers

make[1]: Leaving directory '/home/usama/repos/kernel/linux_mainline/tools/testing/selftests/nci'
make[1]: Entering directory '/home/usama/repos/kernel/linux_mainline/tools/testing/selftests/net'

-e ^[[1;31merror^[[0m: missing kernel header files.
Please run this and try again:

    cd /home/usama/repos/kernel/linux_mainline/tools/testing/selftests/../../..
    make headers

make[1]: Leaving directory '/home/usama/repos/kernel/linux_mainline/tools/testing/selftests/net'
make[1]: Entering directory '/home/usama/repos/kernel/linux_mainline/tools/testing/selftests/net/af_unix'

-e ^[[1;31merror^[[0m: missing kernel header files.
Please run this and try again:

    cd /home/usama/repos/kernel/linux_mainline/tools/testing/selftests/../../..
    make headers

make[1]: Leaving directory '/home/usama/repos/kernel/linux_mainline/tools/testing/selftests/net/af_unix'
make[1]: Entering directory '/home/usama/repos/kernel/linux_mainline/tools/testing/selftests/net/forwarding'

-e ^[[1;31merror^[[0m: missing kernel header files.
Please run this and try again:

    cd /home/usama/repos/kernel/linux_mainline/tools/testing/selftests/../../..
    make headers

make[1]: Leaving directory '/home/usama/repos/kernel/linux_mainline/tools/testing/selftests/net/forwarding'
make[1]: Entering directory '/home/usama/repos/kernel/linux_mainline/tools/testing/selftests/net/hsr'

-e ^[[1;31merror^[[0m: missing kernel header files.
Please run this and try again:

    cd /home/usama/repos/kernel/linux_mainline/tools/testing/selftests/../../..
    make headers

make[1]: Leaving directory '/home/usama/repos/kernel/linux_mainline/tools/testing/selftests/net/hsr'
make[1]: Entering directory '/home/usama/repos/kernel/linux_mainline/tools/testing/selftests/net/mptcp'

-e ^[[1;31merror^[[0m: missing kernel header files.
Please run this and try again:

    cd /home/usama/repos/kernel/linux_mainline/tools/testing/selftests/../../..
    make headers

make[1]: Leaving directory '/home/usama/repos/kernel/linux_mainline/tools/testing/selftests/net/mptcp'
make[1]: Entering directory '/home/usama/repos/kernel/linux_mainline/tools/testing/selftests/net/openvswitch'

-e ^[[1;31merror^[[0m: missing kernel header files.
Please run this and try again:

    cd /home/usama/repos/kernel/linux_mainline/tools/testing/selftests/../../..
    make headers

make[1]: Leaving directory '/home/usama/repos/kernel/linux_mainline/tools/testing/selftests/net/openvswitch'
make[1]: Entering directory '/home/usama/repos/kernel/linux_mainline/tools/testing/selftests/netfilter'

-e ^[[1;31merror^[[0m: missing kernel header files.
Please run this and try again:

    cd /home/usama/repos/kernel/linux_mainline/tools/testing/selftests/../../..
    make headers

make[1]: Leaving directory '/home/usama/repos/kernel/linux_mainline/tools/testing/selftests/netfilter'
make[1]: Entering directory '/home/usama/repos/kernel/linux_mainline/tools/testing/selftests/nsfs'

-e ^[[1;31merror^[[0m: missing kernel header files.
Please run this and try again:

    cd /home/usama/repos/kernel/linux_mainline/tools/testing/selftests/../../..
    make headers

make[1]: Leaving directory '/home/usama/repos/kernel/linux_mainline/tools/testing/selftests/nsfs'
make[1]: Entering directory '/home/usama/repos/kernel/linux_mainline/tools/testing/selftests/pidfd'

-e ^[[1;31merror^[[0m: missing kernel header files.
Please run this and try again:

    cd /home/usama/repos/kernel/linux_mainline/tools/testing/selftests/../../..
    make headers

make[1]: Leaving directory '/home/usama/repos/kernel/linux_mainline/tools/testing/selftests/pidfd'
make[1]: Entering directory '/home/usama/repos/kernel/linux_mainline/tools/testing/selftests/pid_namespace'

-e ^[[1;31merror^[[0m: missing kernel header files.
Please run this and try again:

    cd /home/usama/repos/kernel/linux_mainline/tools/testing/selftests/../../..
    make headers

make[1]: Leaving directory '/home/usama/repos/kernel/linux_mainline/tools/testing/selftests/pid_namespace'
make[1]: Entering directory '/home/usama/repos/kernel/linux_mainline/tools/testing/selftests/powerpc'

-e ^[[1;31merror^[[0m: missing kernel header files.
Please run this and try again:

    cd /home/usama/repos/kernel/linux_mainline/tools/testing/selftests/../../..
    make headers

make[1]: Leaving directory '/home/usama/repos/kernel/linux_mainline/tools/testing/selftests/powerpc'
make[1]: Entering directory '/home/usama/repos/kernel/linux_mainline/tools/testing/selftests/prctl'

-e ^[[1;31merror^[[0m: missing kernel header files.
Please run this and try again:

    cd /home/usama/repos/kernel/linux_mainline/tools/testing/selftests/../../..
    make headers

make[1]: Leaving directory '/home/usama/repos/kernel/linux_mainline/tools/testing/selftests/prctl'
make[1]: Entering directory '/home/usama/repos/kernel/linux_mainline/tools/testing/selftests/proc'

-e ^[[1;31merror^[[0m: missing kernel header files.
Please run this and try again:

    cd /home/usama/repos/kernel/linux_mainline/tools/testing/selftests/../../..
    make headers

make[1]: Leaving directory '/home/usama/repos/kernel/linux_mainline/tools/testing/selftests/proc'
make[1]: Entering directory '/home/usama/repos/kernel/linux_mainline/tools/testing/selftests/pstore'

-e ^[[1;31merror^[[0m: missing kernel header files.
Please run this and try again:

    cd /home/usama/repos/kernel/linux_mainline/tools/testing/selftests/../../..
    make headers

make[1]: Leaving directory '/home/usama/repos/kernel/linux_mainline/tools/testing/selftests/pstore'
make[1]: Entering directory '/home/usama/repos/kernel/linux_mainline/tools/testing/selftests/ptrace'

-e ^[[1;31merror^[[0m: missing kernel header files.
Please run this and try again:

    cd /home/usama/repos/kernel/linux_mainline/tools/testing/selftests/../../..
    make headers

make[1]: Leaving directory '/home/usama/repos/kernel/linux_mainline/tools/testing/selftests/ptrace'
make[1]: Entering directory '/home/usama/repos/kernel/linux_mainline/tools/testing/selftests/openat2'

-e ^[[1;31merror^[[0m: missing kernel header files.
Please run this and try again:

    cd /home/usama/repos/kernel/linux_mainline/tools/testing/selftests/../../..
    make headers

make[1]: Leaving directory '/home/usama/repos/kernel/linux_mainline/tools/testing/selftests/openat2'
make[1]: Entering directory '/home/usama/repos/kernel/linux_mainline/tools/testing/selftests/resctrl'

-e ^[[1;31merror^[[0m: missing kernel header files.
Please run this and try again:

    cd /home/usama/repos/kernel/linux_mainline/tools/testing/selftests/../../..
    make headers

make[1]: Leaving directory '/home/usama/repos/kernel/linux_mainline/tools/testing/selftests/resctrl'
make[1]: Entering directory '/home/usama/repos/kernel/linux_mainline/tools/testing/selftests/riscv'
make[1]: Leaving directory '/home/usama/repos/kernel/linux_mainline/tools/testing/selftests/riscv'
make[1]: Entering directory '/home/usama/repos/kernel/linux_mainline/tools/testing/selftests/rlimits'

-e ^[[1;31merror^[[0m: missing kernel header files.
Please run this and try again:

    cd /home/usama/repos/kernel/linux_mainline/tools/testing/selftests/../../..
    make headers

make[1]: Leaving directory '/home/usama/repos/kernel/linux_mainline/tools/testing/selftests/rlimits'
make[1]: Entering directory '/home/usama/repos/kernel/linux_mainline/tools/testing/selftests/rseq'

-e ^[[1;31merror^[[0m: missing kernel header files.
Please run this and try again:

    cd /home/usama/repos/kernel/linux_mainline/tools/testing/selftests/../../..
    make headers

make[1]: Leaving directory '/home/usama/repos/kernel/linux_mainline/tools/testing/selftests/rseq'
make[1]: Entering directory '/home/usama/repos/kernel/linux_mainline/tools/testing/selftests/rtc'

-e ^[[1;31merror^[[0m: missing kernel header files.
Please run this and try again:

    cd /home/usama/repos/kernel/linux_mainline/tools/testing/selftests/../../..
    make headers

make[1]: Leaving directory '/home/usama/repos/kernel/linux_mainline/tools/testing/selftests/rtc'
make[1]: Entering directory '/home/usama/repos/kernel/linux_mainline/tools/testing/selftests/seccomp'

-e ^[[1;31merror^[[0m: missing kernel header files.
Please run this and try again:

    cd /home/usama/repos/kernel/linux_mainline/tools/testing/selftests/../../..
    make headers

make[1]: Leaving directory '/home/usama/repos/kernel/linux_mainline/tools/testing/selftests/seccomp'
make[1]: Entering directory '/home/usama/repos/kernel/linux_mainline/tools/testing/selftests/sgx'

-e ^[[1;31merror^[[0m: missing kernel header files.
Please run this and try again:

    cd /home/usama/repos/kernel/linux_mainline/tools/testing/selftests/../../..
    make headers

make[1]: Leaving directory '/home/usama/repos/kernel/linux_mainline/tools/testing/selftests/sgx'
make[1]: Entering directory '/home/usama/repos/kernel/linux_mainline/tools/testing/selftests/sigaltstack'

-e ^[[1;31merror^[[0m: missing kernel header files.
Please run this and try again:

    cd /home/usama/repos/kernel/linux_mainline/tools/testing/selftests/../../..
    make headers

make[1]: Leaving directory '/home/usama/repos/kernel/linux_mainline/tools/testing/selftests/sigaltstack'
make[1]: Entering directory '/home/usama/repos/kernel/linux_mainline/tools/testing/selftests/size'

-e ^[[1;31merror^[[0m: missing kernel header files.
Please run this and try again:

    cd /home/usama/repos/kernel/linux_mainline/tools/testing/selftests/../../..
    make headers

make[1]: Leaving directory '/home/usama/repos/kernel/linux_mainline/tools/testing/selftests/size'
make[1]: Entering directory '/home/usama/repos/kernel/linux_mainline/tools/testing/selftests/sparc64'
make[1]: Leaving directory '/home/usama/repos/kernel/linux_mainline/tools/testing/selftests/sparc64'
make[1]: Entering directory '/home/usama/repos/kernel/linux_mainline/tools/testing/selftests/splice'

-e ^[[1;31merror^[[0m: missing kernel header files.
Please run this and try again:

    cd /home/usama/repos/kernel/linux_mainline/tools/testing/selftests/../../..
    make headers

make[1]: Leaving directory '/home/usama/repos/kernel/linux_mainline/tools/testing/selftests/splice'
make[1]: Entering directory '/home/usama/repos/kernel/linux_mainline/tools/testing/selftests/static_keys'

-e ^[[1;31merror^[[0m: missing kernel header files.
Please run this and try again:

    cd /home/usama/repos/kernel/linux_mainline/tools/testing/selftests/../../..
    make headers

make[1]: Leaving directory '/home/usama/repos/kernel/linux_mainline/tools/testing/selftests/static_keys'
make[1]: Entering directory '/home/usama/repos/kernel/linux_mainline/tools/testing/selftests/sync'

-e ^[[1;31merror^[[0m: missing kernel header files.
Please run this and try again:

    cd /home/usama/repos/kernel/linux_mainline/tools/testing/selftests/../../..
    make headers

make[1]: Leaving directory '/home/usama/repos/kernel/linux_mainline/tools/testing/selftests/sync'
make[1]: Entering directory '/home/usama/repos/kernel/linux_mainline/tools/testing/selftests/syscall_user_dispatch'

-e ^[[1;31merror^[[0m: missing kernel header files.
Please run this and try again:

    cd /home/usama/repos/kernel/linux_mainline/tools/testing/selftests/../../..
    make headers

make[1]: Leaving directory '/home/usama/repos/kernel/linux_mainline/tools/testing/selftests/syscall_user_dispatch'
make[1]: Entering directory '/home/usama/repos/kernel/linux_mainline/tools/testing/selftests/sysctl'

-e ^[[1;31merror^[[0m: missing kernel header files.
Please run this and try again:

    cd /home/usama/repos/kernel/linux_mainline/tools/testing/selftests/../../..
    make headers

make[1]: Leaving directory '/home/usama/repos/kernel/linux_mainline/tools/testing/selftests/sysctl'
make[1]: Entering directory '/home/usama/repos/kernel/linux_mainline/tools/testing/selftests/tc-testing'

-e ^[[1;31merror^[[0m: missing kernel header files.
Please run this and try again:

    cd /home/usama/repos/kernel/linux_mainline/tools/testing/selftests/../../..
    make headers

make[1]: Leaving directory '/home/usama/repos/kernel/linux_mainline/tools/testing/selftests/tc-testing'
make[1]: Entering directory '/home/usama/repos/kernel/linux_mainline/tools/testing/selftests/tdx'

-e ^[[1;31merror^[[0m: missing kernel header files.
Please run this and try again:

    cd /home/usama/repos/kernel/linux_mainline/tools/testing/selftests/../../..
    make headers

make[1]: Leaving directory '/home/usama/repos/kernel/linux_mainline/tools/testing/selftests/tdx'
make[1]: Entering directory '/home/usama/repos/kernel/linux_mainline/tools/testing/selftests/timens'

-e ^[[1;31merror^[[0m: missing kernel header files.
Please run this and try again:

    cd /home/usama/repos/kernel/linux_mainline/tools/testing/selftests/../../..
    make headers

make[1]: Leaving directory '/home/usama/repos/kernel/linux_mainline/tools/testing/selftests/timens'
make[1]: Entering directory '/home/usama/repos/kernel/linux_mainline/tools/testing/selftests/timers'

-e ^[[1;31merror^[[0m: missing kernel header files.
Please run this and try again:

    cd /home/usama/repos/kernel/linux_mainline/tools/testing/selftests/../../..
    make headers

make[1]: Leaving directory '/home/usama/repos/kernel/linux_mainline/tools/testing/selftests/timers'
make[1]: Entering directory '/home/usama/repos/kernel/linux_mainline/tools/testing/selftests/tmpfs'

-e ^[[1;31merror^[[0m: missing kernel header files.
Please run this and try again:

    cd /home/usama/repos/kernel/linux_mainline/tools/testing/selftests/../../..
    make headers

make[1]: Leaving directory '/home/usama/repos/kernel/linux_mainline/tools/testing/selftests/tmpfs'
make[1]: Entering directory '/home/usama/repos/kernel/linux_mainline/tools/testing/selftests/tpm2'

-e ^[[1;31merror^[[0m: missing kernel header files.
Please run this and try again:

    cd /home/usama/repos/kernel/linux_mainline/tools/testing/selftests/../../..
    make headers

make[1]: Leaving directory '/home/usama/repos/kernel/linux_mainline/tools/testing/selftests/tpm2'
make[1]: Entering directory '/home/usama/repos/kernel/linux_mainline/tools/testing/selftests/user'

-e ^[[1;31merror^[[0m: missing kernel header files.
Please run this and try again:

    cd /home/usama/repos/kernel/linux_mainline/tools/testing/selftests/../../..
    make headers

make[1]: Leaving directory '/home/usama/repos/kernel/linux_mainline/tools/testing/selftests/user'
make[1]: Entering directory '/home/usama/repos/kernel/linux_mainline/tools/testing/selftests/vDSO'

-e ^[[1;31merror^[[0m: missing kernel header files.
Please run this and try again:

    cd /home/usama/repos/kernel/linux_mainline/tools/testing/selftests/../../..
    make headers

make[1]: Leaving directory '/home/usama/repos/kernel/linux_mainline/tools/testing/selftests/vDSO'
make[1]: Entering directory '/home/usama/repos/kernel/linux_mainline/tools/testing/selftests/mm'

-e ^[[1;31merror^[[0m: missing kernel header files.
Please run this and try again:

    cd /home/usama/repos/kernel/linux_mainline/tools/testing/selftests/../../..
    make headers

make[1]: Leaving directory '/home/usama/repos/kernel/linux_mainline/tools/testing/selftests/mm'
make[1]: Entering directory '/home/usama/repos/kernel/linux_mainline/tools/testing/selftests/x86'

-e ^[[1;31merror^[[0m: missing kernel header files.
Please run this and try again:

    cd /home/usama/repos/kernel/linux_mainline/tools/testing/selftests/../../..
    make headers

make[1]: Leaving directory '/home/usama/repos/kernel/linux_mainline/tools/testing/selftests/x86'
make[1]: Entering directory '/home/usama/repos/kernel/linux_mainline/tools/testing/selftests/zram'

-e ^[[1;31merror^[[0m: missing kernel header files.
Please run this and try again:

    cd /home/usama/repos/kernel/linux_mainline/tools/testing/selftests/../../..
    make headers

make[1]: Leaving directory '/home/usama/repos/kernel/linux_mainline/tools/testing/selftests/zram'
make: Leaving directory '/home/usama/repos/kernel/linux_mainline/tools/testing/selftests'

^ permalink raw reply	[flat|nested] 20+ messages in thread

* Re: [PATCH v3 10/11] Documentation: kselftest: "make headers" is a prerequisite
  2023-06-06  7:16 ` [PATCH v3 10/11] Documentation: kselftest: "make headers" is a prerequisite John Hubbard
@ 2023-06-06  7:57   ` Muhammad Usama Anjum
  2023-07-10 14:20   ` Mark Brown
  1 sibling, 0 replies; 20+ messages in thread
From: Muhammad Usama Anjum @ 2023-06-06  7:57 UTC (permalink / raw)
  To: John Hubbard, Andrew Morton
  Cc: Muhammad Usama Anjum, David Hildenbrand, Peter Xu, Shuah Khan,
	Nathan Chancellor, linux-mm, linux-kselftest, LKML,
	Jonathan Corbet, linux-doc

On 6/6/23 12:16 PM, John Hubbard wrote:
> As per a discussion with Muhammad Usama Anjum [1], the following is how
> one is supposed to build selftests:
> 
>     make headers && make -C tools/testing/selftests/mm
> 
> However, that's not yet documented anywhere. So add it to
> Documentation/dev-tools/kselftest.rst .
> 
> [1] https://lore.kernel.org/all/bf910fa5-0c96-3707-cce4-5bcc656b6274@collabora.com/
> 
> Cc: Peter Xu <peterx@redhat.com>
> Cc: Muhammad Usama Anjum <usama.anjum@collabora.com>
> Cc: Jonathan Corbet <corbet@lwn.net>
> Cc: linux-doc@vger.kernel.org
> Reviewed-by: David Hildenbrand <david@redhat.com>
> Signed-off-by: John Hubbard <jhubbard@nvidia.com>
Reviewed-by: Muhammad Usama Anjum <usama.anjum@collabora.com>

> ---
>  Documentation/dev-tools/kselftest.rst | 1 +
>  1 file changed, 1 insertion(+)
> 
> diff --git a/Documentation/dev-tools/kselftest.rst b/Documentation/dev-tools/kselftest.rst
> index 12b575b76b20..6e35d042199c 100644
> --- a/Documentation/dev-tools/kselftest.rst
> +++ b/Documentation/dev-tools/kselftest.rst
> @@ -36,6 +36,7 @@ Running the selftests (hotplug tests are run in limited mode)
>  
>  To build the tests::
>  
> +  $ make headers
>    $ make -C tools/testing/selftests
>  
>  To run the tests::

-- 
BR,
Muhammad Usama Anjum

^ permalink raw reply	[flat|nested] 20+ messages in thread

* Re: [PATCH v3 11/11] selftests: error out if kernel header files are not yet built
  2023-06-06  7:16 ` [PATCH v3 11/11] selftests: error out if kernel header files are not yet built John Hubbard
  2023-06-06  7:38   ` Muhammad Usama Anjum
@ 2023-06-06  7:57   ` Muhammad Usama Anjum
  2023-11-03 12:16   ` Peter Zijlstra
  2023-12-08 12:44   ` Miroslav Benes
  3 siblings, 0 replies; 20+ messages in thread
From: Muhammad Usama Anjum @ 2023-06-06  7:57 UTC (permalink / raw)
  To: John Hubbard, Andrew Morton
  Cc: Muhammad Usama Anjum, David Hildenbrand, Peter Xu, Shuah Khan,
	Nathan Chancellor, linux-mm, linux-kselftest, LKML,
	Jonathan Corbet, linux-doc

On 6/6/23 12:16 PM, John Hubbard wrote:
> As per a discussion with Muhammad Usama Anjum [1], the following is how
> one is supposed to build selftests:
> 
>     make headers && make -C tools/testing/selftests/mm
> 
> Change the selftest build system's lib.mk to fail out with a helpful
> message if that prerequisite "make headers" has not been done yet.
> 
> [1] https://lore.kernel.org/all/bf910fa5-0c96-3707-cce4-5bcc656b6274@collabora.com/
> 
> Cc: David Hildenbrand <david@redhat.com>
> Cc: Peter Xu <peterx@redhat.com>
> Cc: Muhammad Usama Anjum <usama.anjum@collabora.com>
> Cc: Jonathan Corbet <corbet@lwn.net>
> Cc: linux-doc@vger.kernel.org
> Signed-off-by: John Hubbard <jhubbard@nvidia.com>
Reviewed-by: Muhammad Usama Anjum <usama.anjum@collabora.com>

> ---
>  tools/testing/selftests/lib.mk | 36 +++++++++++++++++++++++++++++++---
>  1 file changed, 33 insertions(+), 3 deletions(-)
> 
> diff --git a/tools/testing/selftests/lib.mk b/tools/testing/selftests/lib.mk
> index 05400462c779..b8ea03b9a015 100644
> --- a/tools/testing/selftests/lib.mk
> +++ b/tools/testing/selftests/lib.mk
> @@ -44,10 +44,22 @@ endif
>  selfdir = $(realpath $(dir $(filter %/lib.mk,$(MAKEFILE_LIST))))
>  top_srcdir = $(selfdir)/../../..
>  
> -ifeq ($(KHDR_INCLUDES),)
> -KHDR_INCLUDES := -isystem $(top_srcdir)/usr/include
> +ifneq ($(KBUILD_OUTPUT),)
> +  # Make's built-in functions such as $(abspath ...), $(realpath ...) cannot
> +  # expand a shell special character '~'. We use a somewhat tedious way here.
> +  abs_objtree := $(shell cd $(top_srcdir) && mkdir -p $(KBUILD_OUTPUT) && cd $(KBUILD_OUTPUT) && pwd)
> +  $(if $(abs_objtree),, \
> +    $(error failed to create output directory "$(KBUILD_OUTPUT)"))
> +  # $(realpath ...) resolves symlinks
> +  abs_objtree := $(realpath $(abs_objtree))
> +  KHDR_DIR := ${abs_objtree}/usr/include
> +else
> +  abs_srctree := $(shell cd $(top_srcdir) && pwd)
> +  KHDR_DIR := ${abs_srctree}/usr/include
>  endif
>  
> +KHDR_INCLUDES := -isystem $(KHDR_DIR)
> +
>  # The following are built by lib.mk common compile rules.
>  # TEST_CUSTOM_PROGS should be used by tests that require
>  # custom build rule and prevent common build rule use.
> @@ -58,7 +70,25 @@ TEST_GEN_PROGS := $(patsubst %,$(OUTPUT)/%,$(TEST_GEN_PROGS))
>  TEST_GEN_PROGS_EXTENDED := $(patsubst %,$(OUTPUT)/%,$(TEST_GEN_PROGS_EXTENDED))
>  TEST_GEN_FILES := $(patsubst %,$(OUTPUT)/%,$(TEST_GEN_FILES))
>  
> -all: $(TEST_GEN_PROGS) $(TEST_GEN_PROGS_EXTENDED) $(TEST_GEN_FILES)
> +all: kernel_header_files $(TEST_GEN_PROGS) $(TEST_GEN_PROGS_EXTENDED) \
> +     $(TEST_GEN_FILES)
> +
> +kernel_header_files:
> +	@ls $(KHDR_DIR)/linux/*.h >/dev/null 2>/dev/null;                      \
> +	if [ $$? -ne 0 ]; then                                                 \
> +            RED='\033[1;31m';                                                  \
> +            NOCOLOR='\033[0m';                                                 \
> +            echo;                                                              \
> +            echo -e "$${RED}error$${NOCOLOR}: missing kernel header files.";   \
> +            echo "Please run this and try again:";                             \
> +            echo;                                                              \
> +            echo "    cd $(top_srcdir)";                                       \
> +            echo "    make headers";                                           \
> +            echo;                                                              \
> +	    exit 1; \
> +	fi
> +
> +.PHONY: kernel_header_files
>  
>  define RUN_TESTS
>  	BASE_DIR="$(selfdir)";			\

-- 
BR,
Muhammad Usama Anjum

^ permalink raw reply	[flat|nested] 20+ messages in thread

* Re: [PATCH v3 11/11] selftests: error out if kernel header files are not yet built
  2023-06-06  7:38   ` Muhammad Usama Anjum
@ 2023-06-06 20:10     ` John Hubbard
  2023-06-07  5:37       ` Muhammad Usama Anjum
  0 siblings, 1 reply; 20+ messages in thread
From: John Hubbard @ 2023-06-06 20:10 UTC (permalink / raw)
  To: Muhammad Usama Anjum, Andrew Morton
  Cc: David Hildenbrand, Peter Xu, Shuah Khan, Nathan Chancellor,
	linux-mm, linux-kselftest, LKML, Jonathan Corbet, linux-doc

[-- Attachment #1: Type: text/plain, Size: 4091 bytes --]

On 6/6/23 00:38, Muhammad Usama Anjum wrote:
...
>> +kernel_header_files:
>> +	@ls $(KHDR_DIR)/linux/*.h >/dev/null 2>/dev/null;                      \
>> +	if [ $$? -ne 0 ]; then                                                 \
>> +            RED='\033[1;31m';                                                  \
>> +            NOCOLOR='\033[0m';                                                 \
>> +            echo;                                                              \
>> +            echo -e "$${RED}error$${NOCOLOR}: missing kernel header files.";   \
>> +            echo "Please run this and try again:";                             \
>> +            echo;                                                              \
>> +            echo "    cd $(top_srcdir)";                                       \
>> +            echo "    make headers";                                           \
>> +            echo;                                                              \
>> +	    exit 1; \
>> +	fi
> Thank you for adding this. This is outputting error for every selftest
> directory. We should try to make it even better by just aborting the
> Make-ing process the first time headers aren't detected. We can do this now
> or later, fine by me.
> 
OK, I see. Yes, this can be improved by adding the same mechanism to the 
selftests/Makefile, that is in selftests/mm/Makefile.

I'd like to keep both, because as I mentioned earlier, mm folks like to
run just that one Makefile, sometimes, and selftests/mm/Makefile is not
invoking the top level Makefile. Rather, it includes lib.mk--which the
top level Makefile does *not* include.

Arguably, using includes instead of recursive Make, would improve this
framework: reduce duplication such as the above. But that's a larger
project and just food for thought at this point.

Anyway, this works nicely on my system, and I'll attach it as a patch
also in case you want to try it out. What do you think of this:

diff --git a/tools/testing/selftests/Makefile b/tools/testing/selftests/Makefile
index 90a62cf75008..bdca160063d8 100644
--- a/tools/testing/selftests/Makefile
+++ b/tools/testing/selftests/Makefile
@@ -144,10 +144,12 @@ ifneq ($(KBUILD_OUTPUT),)
   abs_objtree := $(realpath $(abs_objtree))
   BUILD := $(abs_objtree)/kselftest
   KHDR_INCLUDES := -isystem ${abs_objtree}/usr/include
+  KHDR_DIR := ${abs_objtree}/usr/include
 else
   BUILD := $(CURDIR)
   abs_srctree := $(shell cd $(top_srcdir) && pwd)
   KHDR_INCLUDES := -isystem ${abs_srctree}/usr/include
+  KHDR_DIR := ${abs_srctree}/usr/include
   DEFAULT_INSTALL_HDR_PATH := 1
 endif
 
@@ -161,7 +163,7 @@ export KHDR_INCLUDES
 # all isn't the first target in the file.
 .DEFAULT_GOAL := all
 
-all:
+all: kernel_header_files
 	@ret=1;							\
 	for TARGET in $(TARGETS); do				\
 		BUILD_TARGET=$$BUILD/$$TARGET;			\
@@ -172,6 +174,23 @@ all:
 		ret=$$((ret * $$?));				\
 	done; exit $$ret;
 
+kernel_header_files:
+	@ls $(KHDR_DIR)/linux/*.h >/dev/null 2>/dev/null;                          \
+	if [ $$? -ne 0 ]; then                                                     \
+            RED='\033[1;31m';                                                  \
+            NOCOLOR='\033[0m';                                                 \
+            echo;                                                              \
+            echo -e "$${RED}error$${NOCOLOR}: missing kernel header files.";   \
+            echo "Please run this and try again:";                             \
+            echo;                                                              \
+            echo "    cd $(top_srcdir)";                                       \
+            echo "    make headers";                                           \
+            echo;                                                              \
+	    exit 1;                                                                \
+	fi
+
+.PHONY: kernel_header_files
+
 run_tests: all
 	@for TARGET in $(TARGETS); do \
 		BUILD_TARGET=$$BUILD/$$TARGET;	\



thanks,
-- 
John Hubbard
NVIDIA

[-- Attachment #2: selftests-makefile.patch --]
[-- Type: text/x-patch, Size: 2076 bytes --]

diff --git a/tools/testing/selftests/Makefile b/tools/testing/selftests/Makefile
index 90a62cf75008..bdca160063d8 100644
--- a/tools/testing/selftests/Makefile
+++ b/tools/testing/selftests/Makefile
@@ -144,10 +144,12 @@ ifneq ($(KBUILD_OUTPUT),)
   abs_objtree := $(realpath $(abs_objtree))
   BUILD := $(abs_objtree)/kselftest
   KHDR_INCLUDES := -isystem ${abs_objtree}/usr/include
+  KHDR_DIR := ${abs_objtree}/usr/include
 else
   BUILD := $(CURDIR)
   abs_srctree := $(shell cd $(top_srcdir) && pwd)
   KHDR_INCLUDES := -isystem ${abs_srctree}/usr/include
+  KHDR_DIR := ${abs_srctree}/usr/include
   DEFAULT_INSTALL_HDR_PATH := 1
 endif
 
@@ -161,7 +163,7 @@ export KHDR_INCLUDES
 # all isn't the first target in the file.
 .DEFAULT_GOAL := all
 
-all:
+all: kernel_header_files
 	@ret=1;							\
 	for TARGET in $(TARGETS); do				\
 		BUILD_TARGET=$$BUILD/$$TARGET;			\
@@ -172,6 +174,23 @@ all:
 		ret=$$((ret * $$?));				\
 	done; exit $$ret;
 
+kernel_header_files:
+	@ls $(KHDR_DIR)/linux/*.h >/dev/null 2>/dev/null;                          \
+	if [ $$? -ne 0 ]; then                                                     \
+            RED='\033[1;31m';                                                  \
+            NOCOLOR='\033[0m';                                                 \
+            echo;                                                              \
+            echo -e "$${RED}error$${NOCOLOR}: missing kernel header files.";   \
+            echo "Please run this and try again:";                             \
+            echo;                                                              \
+            echo "    cd $(top_srcdir)";                                       \
+            echo "    make headers";                                           \
+            echo;                                                              \
+	    exit 1;                                                                \
+	fi
+
+.PHONY: kernel_header_files
+
 run_tests: all
 	@for TARGET in $(TARGETS); do \
 		BUILD_TARGET=$$BUILD/$$TARGET;	\

^ permalink raw reply related	[flat|nested] 20+ messages in thread

* Re: [PATCH v3 11/11] selftests: error out if kernel header files are not yet built
  2023-06-06 20:10     ` John Hubbard
@ 2023-06-07  5:37       ` Muhammad Usama Anjum
  0 siblings, 0 replies; 20+ messages in thread
From: Muhammad Usama Anjum @ 2023-06-07  5:37 UTC (permalink / raw)
  To: John Hubbard
  Cc: Muhammad Usama Anjum, David Hildenbrand, Peter Xu, Shuah Khan,
	Nathan Chancellor, linux-mm, linux-kselftest, LKML,
	Jonathan Corbet, linux-doc, Andrew Morton

On 6/7/23 1:10 AM, John Hubbard wrote:
> On 6/6/23 00:38, Muhammad Usama Anjum wrote:
> ...
>>> +kernel_header_files:
>>> +	@ls $(KHDR_DIR)/linux/*.h >/dev/null 2>/dev/null;                      \
>>> +	if [ $$? -ne 0 ]; then                                                 \
>>> +            RED='\033[1;31m';                                                  \
>>> +            NOCOLOR='\033[0m';                                                 \
>>> +            echo;                                                              \
>>> +            echo -e "$${RED}error$${NOCOLOR}: missing kernel header files.";   \
>>> +            echo "Please run this and try again:";                             \
>>> +            echo;                                                              \
>>> +            echo "    cd $(top_srcdir)";                                       \
>>> +            echo "    make headers";                                           \
>>> +            echo;                                                              \
>>> +	    exit 1; \
>>> +	fi
>> Thank you for adding this. This is outputting error for every selftest
>> directory. We should try to make it even better by just aborting the
>> Make-ing process the first time headers aren't detected. We can do this now
>> or later, fine by me.
>>
> OK, I see. Yes, this can be improved by adding the same mechanism to the 
> selftests/Makefile, that is in selftests/mm/Makefile.
> 
> I'd like to keep both, because as I mentioned earlier, mm folks like to
> run just that one Makefile, sometimes, and selftests/mm/Makefile is not
> invoking the top level Makefile. Rather, it includes lib.mk--which the
> top level Makefile does *not* include.
> 
> Arguably, using includes instead of recursive Make, would improve this
> framework: reduce duplication such as the above. But that's a larger
> project and just food for thought at this point.
> 
> Anyway, this works nicely on my system, and I'll attach it as a patch
> also in case you want to try it out. What do you think of this:
Nice patch. Thanks. Lets add this patch as well. Please add the tag for
this new patch:

Tested-by: Muhammad Usama Anjum <usama.anjum@collabora.com>

> 
> diff --git a/tools/testing/selftests/Makefile b/tools/testing/selftests/Makefile
> index 90a62cf75008..bdca160063d8 100644
> --- a/tools/testing/selftests/Makefile
> +++ b/tools/testing/selftests/Makefile
> @@ -144,10 +144,12 @@ ifneq ($(KBUILD_OUTPUT),)
>    abs_objtree := $(realpath $(abs_objtree))
>    BUILD := $(abs_objtree)/kselftest
>    KHDR_INCLUDES := -isystem ${abs_objtree}/usr/include
> +  KHDR_DIR := ${abs_objtree}/usr/include
>  else
>    BUILD := $(CURDIR)
>    abs_srctree := $(shell cd $(top_srcdir) && pwd)
>    KHDR_INCLUDES := -isystem ${abs_srctree}/usr/include
> +  KHDR_DIR := ${abs_srctree}/usr/include
>    DEFAULT_INSTALL_HDR_PATH := 1
>  endif
>  
> @@ -161,7 +163,7 @@ export KHDR_INCLUDES
>  # all isn't the first target in the file.
>  .DEFAULT_GOAL := all
>  
> -all:
> +all: kernel_header_files
>  	@ret=1;							\
>  	for TARGET in $(TARGETS); do				\
>  		BUILD_TARGET=$$BUILD/$$TARGET;			\
> @@ -172,6 +174,23 @@ all:
>  		ret=$$((ret * $$?));				\
>  	done; exit $$ret;
>  
> +kernel_header_files:
> +	@ls $(KHDR_DIR)/linux/*.h >/dev/null 2>/dev/null;                          \
> +	if [ $$? -ne 0 ]; then                                                     \
> +            RED='\033[1;31m';                                                  \
> +            NOCOLOR='\033[0m';                                                 \
> +            echo;                                                              \
> +            echo -e "$${RED}error$${NOCOLOR}: missing kernel header files.";   \
> +            echo "Please run this and try again:";                             \
> +            echo;                                                              \
> +            echo "    cd $(top_srcdir)";                                       \
> +            echo "    make headers";                                           \
> +            echo;                                                              \
> +	    exit 1;                                                                \
> +	fi
> +
> +.PHONY: kernel_header_files
> +
>  run_tests: all
>  	@for TARGET in $(TARGETS); do \
>  		BUILD_TARGET=$$BUILD/$$TARGET;	\
> 
> 
> 
> thanks,

-- 
BR,
Muhammad Usama Anjum

^ permalink raw reply	[flat|nested] 20+ messages in thread

* Re: [PATCH v3 10/11] Documentation: kselftest: "make headers" is a prerequisite
  2023-06-06  7:16 ` [PATCH v3 10/11] Documentation: kselftest: "make headers" is a prerequisite John Hubbard
  2023-06-06  7:57   ` Muhammad Usama Anjum
@ 2023-07-10 14:20   ` Mark Brown
  1 sibling, 0 replies; 20+ messages in thread
From: Mark Brown @ 2023-07-10 14:20 UTC (permalink / raw)
  To: John Hubbard
  Cc: Andrew Morton, David Hildenbrand, Peter Xu, Shuah Khan,
	Nathan Chancellor, linux-mm, linux-kselftest, LKML,
	Muhammad Usama Anjum, Jonathan Corbet, linux-doc

[-- Attachment #1: Type: text/plain, Size: 556 bytes --]

On Tue, Jun 06, 2023 at 12:16:36AM -0700, John Hubbard wrote:
> As per a discussion with Muhammad Usama Anjum [1], the following is how
> one is supposed to build selftests:
> 
>     make headers && make -C tools/testing/selftests/mm
> 
> However, that's not yet documented anywhere. So add it to
> Documentation/dev-tools/kselftest.rst .

This is breaking the arm64 selftests, I've sent a revert:

   https://lore.kernel.org/linux-kselftest/20230710-kselftest-fix-arm64-v1-1-48e872844f25@kernel.org/T/#u

(logs included in the above patch.)

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 488 bytes --]

^ permalink raw reply	[flat|nested] 20+ messages in thread

* Re: [PATCH v3 11/11] selftests: error out if kernel header files are not yet built
  2023-06-06  7:16 ` [PATCH v3 11/11] selftests: error out if kernel header files are not yet built John Hubbard
  2023-06-06  7:38   ` Muhammad Usama Anjum
  2023-06-06  7:57   ` Muhammad Usama Anjum
@ 2023-11-03 12:16   ` Peter Zijlstra
  2023-11-03 12:22     ` David Hildenbrand
  2023-12-08 12:44   ` Miroslav Benes
  3 siblings, 1 reply; 20+ messages in thread
From: Peter Zijlstra @ 2023-11-03 12:16 UTC (permalink / raw)
  To: John Hubbard, Linus Torvalds
  Cc: Andrew Morton, David Hildenbrand, Peter Xu, Shuah Khan,
	Nathan Chancellor, linux-mm, linux-kselftest, LKML,
	Muhammad Usama Anjum, Jonathan Corbet, linux-doc

On Tue, Jun 06, 2023 at 12:16:37AM -0700, John Hubbard wrote:
> As per a discussion with Muhammad Usama Anjum [1], the following is how
> one is supposed to build selftests:
> 
>     make headers && make -C tools/testing/selftests/mm
> 
> Change the selftest build system's lib.mk to fail out with a helpful
> message if that prerequisite "make headers" has not been done yet.
> 

NAK NAK NAK

This now means I can no longer run selftests, I thank you very much! :-/

root@spr:/usr/src/linux-2.6# make O=defconfig-build/ -j64
make[1]: Entering directory '/usr/src/linux-2.6/defconfig-build'
***
*** The source tree is not clean, please run 'make mrproper'
*** in /usr/src/linux-2.6


I've always done:

  cd tools/testing/selftests/x86; make

and that has always worked

Now I can't bloody well build *any* selftest or risk not being able to
do builds.


^ permalink raw reply	[flat|nested] 20+ messages in thread

* Re: [PATCH v3 11/11] selftests: error out if kernel header files are not yet built
  2023-11-03 12:16   ` Peter Zijlstra
@ 2023-11-03 12:22     ` David Hildenbrand
  2023-11-03 12:46       ` Peter Zijlstra
  2023-12-08 15:14       ` Peter Zijlstra
  0 siblings, 2 replies; 20+ messages in thread
From: David Hildenbrand @ 2023-11-03 12:22 UTC (permalink / raw)
  To: Peter Zijlstra, John Hubbard, Linus Torvalds
  Cc: Andrew Morton, Peter Xu, Shuah Khan, Nathan Chancellor, linux-mm,
	linux-kselftest, LKML, Muhammad Usama Anjum, Jonathan Corbet,
	linux-doc

On 03.11.23 13:16, Peter Zijlstra wrote:
> On Tue, Jun 06, 2023 at 12:16:37AM -0700, John Hubbard wrote:
>> As per a discussion with Muhammad Usama Anjum [1], the following is how
>> one is supposed to build selftests:
>>
>>      make headers && make -C tools/testing/selftests/mm
>>
>> Change the selftest build system's lib.mk to fail out with a helpful
>> message if that prerequisite "make headers" has not been done yet.
>>
> 
> NAK NAK NAK
> 
> This now means I can no longer run selftests, I thank you very much! :-/
> 
> root@spr:/usr/src/linux-2.6# make O=defconfig-build/ -j64
> make[1]: Entering directory '/usr/src/linux-2.6/defconfig-build'
> ***
> *** The source tree is not clean, please run 'make mrproper'
> *** in /usr/src/linux-2.6
> 
> 
> I've always done:
> 
>    cd tools/testing/selftests/x86; make
> 
> and that has always worked
> 
> Now I can't bloody well build *any* selftest or risk not being able to
> do builds.

This change landed in 6.5, no? And 6.6 was just released. Just curious 
why you notice that now.

-- 
Cheers,

David / dhildenb


^ permalink raw reply	[flat|nested] 20+ messages in thread

* Re: [PATCH v3 11/11] selftests: error out if kernel header files are not yet built
  2023-11-03 12:22     ` David Hildenbrand
@ 2023-11-03 12:46       ` Peter Zijlstra
  2023-11-03 12:59         ` David Hildenbrand
  2023-12-08 15:14       ` Peter Zijlstra
  1 sibling, 1 reply; 20+ messages in thread
From: Peter Zijlstra @ 2023-11-03 12:46 UTC (permalink / raw)
  To: David Hildenbrand
  Cc: John Hubbard, Linus Torvalds, Andrew Morton, Peter Xu,
	Shuah Khan, Nathan Chancellor, linux-mm, linux-kselftest, LKML,
	Muhammad Usama Anjum, Jonathan Corbet, linux-doc

On Fri, Nov 03, 2023 at 01:22:54PM +0100, David Hildenbrand wrote:
> On 03.11.23 13:16, Peter Zijlstra wrote:
> > On Tue, Jun 06, 2023 at 12:16:37AM -0700, John Hubbard wrote:
> > > As per a discussion with Muhammad Usama Anjum [1], the following is how
> > > one is supposed to build selftests:
> > > 
> > >      make headers && make -C tools/testing/selftests/mm
> > > 
> > > Change the selftest build system's lib.mk to fail out with a helpful
> > > message if that prerequisite "make headers" has not been done yet.
> > > 
> > 
> > NAK NAK NAK
> > 
> > This now means I can no longer run selftests, I thank you very much! :-/
> > 
> > root@spr:/usr/src/linux-2.6# make O=defconfig-build/ -j64
> > make[1]: Entering directory '/usr/src/linux-2.6/defconfig-build'
> > ***
> > *** The source tree is not clean, please run 'make mrproper'
> > *** in /usr/src/linux-2.6
> > 
> > 
> > I've always done:
> > 
> >    cd tools/testing/selftests/x86; make
> > 
> > and that has always worked
> > 
> > Now I can't bloody well build *any* selftest or risk not being able to
> > do builds.
> 
> This change landed in 6.5, no? And 6.6 was just released. Just curious why
> you notice that now.

Dunno, last time I edited the selftests and needed to recompile was a
few weeks ago.

^ permalink raw reply	[flat|nested] 20+ messages in thread

* Re: [PATCH v3 11/11] selftests: error out if kernel header files are not yet built
  2023-11-03 12:46       ` Peter Zijlstra
@ 2023-11-03 12:59         ` David Hildenbrand
  2023-11-03 13:00           ` David Hildenbrand
  2023-11-03 13:08           ` Peter Zijlstra
  0 siblings, 2 replies; 20+ messages in thread
From: David Hildenbrand @ 2023-11-03 12:59 UTC (permalink / raw)
  To: Peter Zijlstra
  Cc: John Hubbard, Linus Torvalds, Andrew Morton, Peter Xu,
	Shuah Khan, Nathan Chancellor, linux-mm, linux-kselftest, LKML,
	Muhammad Usama Anjum, Jonathan Corbet, linux-doc

On 03.11.23 13:46, Peter Zijlstra wrote:
> On Fri, Nov 03, 2023 at 01:22:54PM +0100, David Hildenbrand wrote:
>> On 03.11.23 13:16, Peter Zijlstra wrote:
>>> On Tue, Jun 06, 2023 at 12:16:37AM -0700, John Hubbard wrote:
>>>> As per a discussion with Muhammad Usama Anjum [1], the following is how
>>>> one is supposed to build selftests:
>>>>
>>>>       make headers && make -C tools/testing/selftests/mm
>>>>
>>>> Change the selftest build system's lib.mk to fail out with a helpful
>>>> message if that prerequisite "make headers" has not been done yet.
>>>>
>>>
>>> NAK NAK NAK
>>>
>>> This now means I can no longer run selftests, I thank you very much! :-/
>>>
>>> root@spr:/usr/src/linux-2.6# make O=defconfig-build/ -j64
>>> make[1]: Entering directory '/usr/src/linux-2.6/defconfig-build'
>>> ***
>>> *** The source tree is not clean, please run 'make mrproper'
>>> *** in /usr/src/linux-2.6
>>>
>>>
>>> I've always done:
>>>
>>>     cd tools/testing/selftests/x86; make
>>>
>>> and that has always worked
>>>
>>> Now I can't bloody well build *any* selftest or risk not being able to
>>> do builds.
>>
>> This change landed in 6.5, no? And 6.6 was just released. Just curious why
>> you notice that now.
> 
> Dunno, last time I edited the selftests and needed to recompile was a
> few weeks ago.

Okay. the question is if your workflow can be easily adjusted, or if we 
can improve that header handling as a whole.

The problem I had with this recently: just because we did a "make 
headers" once in a git tree doesn't mean that it is still up-to-date.

So once some selftest changes showed up that require newer headers, 
building the selftests again fails without a hint that another round of 
"make headers" would be required.

-- 
Cheers,

David / dhildenb


^ permalink raw reply	[flat|nested] 20+ messages in thread

* Re: [PATCH v3 11/11] selftests: error out if kernel header files are not yet built
  2023-11-03 12:59         ` David Hildenbrand
@ 2023-11-03 13:00           ` David Hildenbrand
  2023-11-03 13:08           ` Peter Zijlstra
  1 sibling, 0 replies; 20+ messages in thread
From: David Hildenbrand @ 2023-11-03 13:00 UTC (permalink / raw)
  To: Peter Zijlstra
  Cc: John Hubbard, Linus Torvalds, Andrew Morton, Peter Xu,
	Shuah Khan, Nathan Chancellor, linux-mm, linux-kselftest, LKML,
	Muhammad Usama Anjum, Jonathan Corbet, linux-doc

On 03.11.23 13:59, David Hildenbrand wrote:
> On 03.11.23 13:46, Peter Zijlstra wrote:
>> On Fri, Nov 03, 2023 at 01:22:54PM +0100, David Hildenbrand wrote:
>>> On 03.11.23 13:16, Peter Zijlstra wrote:
>>>> On Tue, Jun 06, 2023 at 12:16:37AM -0700, John Hubbard wrote:
>>>>> As per a discussion with Muhammad Usama Anjum [1], the following is how
>>>>> one is supposed to build selftests:
>>>>>
>>>>>        make headers && make -C tools/testing/selftests/mm
>>>>>
>>>>> Change the selftest build system's lib.mk to fail out with a helpful
>>>>> message if that prerequisite "make headers" has not been done yet.
>>>>>
>>>>
>>>> NAK NAK NAK
>>>>
>>>> This now means I can no longer run selftests, I thank you very much! :-/
>>>>
>>>> root@spr:/usr/src/linux-2.6# make O=defconfig-build/ -j64
>>>> make[1]: Entering directory '/usr/src/linux-2.6/defconfig-build'
>>>> ***
>>>> *** The source tree is not clean, please run 'make mrproper'
>>>> *** in /usr/src/linux-2.6
>>>>
>>>>
>>>> I've always done:
>>>>
>>>>      cd tools/testing/selftests/x86; make
>>>>
>>>> and that has always worked
>>>>
>>>> Now I can't bloody well build *any* selftest or risk not being able to
>>>> do builds.
>>>
>>> This change landed in 6.5, no? And 6.6 was just released. Just curious why
>>> you notice that now.
>>
>> Dunno, last time I edited the selftests and needed to recompile was a
>> few weeks ago.
> 
> Okay. the question is if your workflow can be easily adjusted, or if we
> can improve that header handling as a whole.
> 
> The problem I had with this recently: just because we did a "make
> headers" once in a git tree doesn't mean that it is still up-to-date.
> 
> So once some selftest changes showed up that require newer headers,
> building the selftests again fails without a hint that another round of
> "make headers" would be required.

To clarify: maybe some kind of a warning would be better, ideally that 
the headers might be outdated and that another "make headers" would be 
required in case there are any build errors.

-- 
Cheers,

David / dhildenb


^ permalink raw reply	[flat|nested] 20+ messages in thread

* Re: [PATCH v3 11/11] selftests: error out if kernel header files are not yet built
  2023-11-03 12:59         ` David Hildenbrand
  2023-11-03 13:00           ` David Hildenbrand
@ 2023-11-03 13:08           ` Peter Zijlstra
  1 sibling, 0 replies; 20+ messages in thread
From: Peter Zijlstra @ 2023-11-03 13:08 UTC (permalink / raw)
  To: David Hildenbrand
  Cc: John Hubbard, Linus Torvalds, Andrew Morton, Peter Xu,
	Shuah Khan, Nathan Chancellor, linux-mm, linux-kselftest, LKML,
	Muhammad Usama Anjum, Jonathan Corbet, linux-doc

On Fri, Nov 03, 2023 at 01:59:28PM +0100, David Hildenbrand wrote:

> Okay. the question is if your workflow can be easily adjusted, or if we can
> improve that header handling as a whole.

So on IRC the following was suggested:

  make O=defconfig-build headers ; make O=defconfig-build -C tools/testing/selftests/x86

But that makes absolutely no sense to me; because the headers and
selftests are not .config dependent. Furthermore I don't want them in a
kernel build dir.

> The problem I had with this recently: just because we did a "make headers"
> once in a git tree doesn't mean that it is still up-to-date.
> 
> So once some selftest changes showed up that require newer headers, building
> the selftests again fails without a hint that another round of "make
> headers" would be required.

Yeah, so I've been adding #ifndef guards all over the place for decades
and that just works. You need it in normal userspace too.

This super reliance on the very latestesetst headers is just a total
pain.

^ permalink raw reply	[flat|nested] 20+ messages in thread

* Re: [PATCH v3 11/11] selftests: error out if kernel header files are not yet built
  2023-06-06  7:16 ` [PATCH v3 11/11] selftests: error out if kernel header files are not yet built John Hubbard
                     ` (2 preceding siblings ...)
  2023-11-03 12:16   ` Peter Zijlstra
@ 2023-12-08 12:44   ` Miroslav Benes
  3 siblings, 0 replies; 20+ messages in thread
From: Miroslav Benes @ 2023-12-08 12:44 UTC (permalink / raw)
  To: John Hubbard
  Cc: Andrew Morton, David Hildenbrand, Peter Xu, Shuah Khan,
	Nathan Chancellor, linux-mm, linux-kselftest, LKML,
	Muhammad Usama Anjum, Jonathan Corbet, linux-doc, live-patching

Hi John, Muhammad,

On Tue, 6 Jun 2023, John Hubbard wrote:

> As per a discussion with Muhammad Usama Anjum [1], the following is how
> one is supposed to build selftests:
> 
>     make headers && make -C tools/testing/selftests/mm
> 
> Change the selftest build system's lib.mk to fail out with a helpful
> message if that prerequisite "make headers" has not been done yet.
> 
> [1] https://lore.kernel.org/all/bf910fa5-0c96-3707-cce4-5bcc656b6274@collabora.com/

could you, please, elaborate more on that one is supposed to build 
selftests with 'make headers'? Yes, Documentation/dev-tools/kselftest.rst 
mentions that because you might need headers but...

The common way how we test the kernel is to build the kernel, install it 
somewhere and run selftests on top. The sequence basically being "make 
rpm-pkg; rpm -ivh; cd tools/testing/selftest/livepatch/ in source tree; 
sudo make run_tests" (or a similar variation of the procedure). The point 
is that we want to test the running kernel with its respective environment 
installed in /lib/modules/`uname -r`/ (if needed). This way we can run 
newer selftests from the current mainline tree on older kernels among 
others.

The commit breaks the use case which worked for a long long time.

It also breaks what Marcos proposed for livepatch selftests in 
https://lore.kernel.org/all/20231031-send-lp-kselftests-v3-0-2b1655c2605f@suse.com/

I guess we can always work around it by letting subsystem selftests to 
override KHDR_DIR but I am not comfortable with the behaviour that your 
commit introduced in the first place to be honest.

Thank you,
Miroslav

^ permalink raw reply	[flat|nested] 20+ messages in thread

* Re: [PATCH v3 11/11] selftests: error out if kernel header files are not yet built
  2023-11-03 12:22     ` David Hildenbrand
  2023-11-03 12:46       ` Peter Zijlstra
@ 2023-12-08 15:14       ` Peter Zijlstra
  2023-12-08 15:21         ` David Hildenbrand
  1 sibling, 1 reply; 20+ messages in thread
From: Peter Zijlstra @ 2023-12-08 15:14 UTC (permalink / raw)
  To: David Hildenbrand
  Cc: John Hubbard, Linus Torvalds, Andrew Morton, Peter Xu,
	Shuah Khan, Nathan Chancellor, linux-mm, linux-kselftest, LKML,
	Muhammad Usama Anjum, Jonathan Corbet, linux-doc

On Fri, Nov 03, 2023 at 01:22:54PM +0100, David Hildenbrand wrote:
> On 03.11.23 13:16, Peter Zijlstra wrote:
> > On Tue, Jun 06, 2023 at 12:16:37AM -0700, John Hubbard wrote:
> > > As per a discussion with Muhammad Usama Anjum [1], the following is how
> > > one is supposed to build selftests:
> > > 
> > >      make headers && make -C tools/testing/selftests/mm
> > > 
> > > Change the selftest build system's lib.mk to fail out with a helpful
> > > message if that prerequisite "make headers" has not been done yet.
> > > 
> > 
> > NAK NAK NAK
> > 
> > This now means I can no longer run selftests, I thank you very much! :-/
> > 
> > root@spr:/usr/src/linux-2.6# make O=defconfig-build/ -j64
> > make[1]: Entering directory '/usr/src/linux-2.6/defconfig-build'
> > ***
> > *** The source tree is not clean, please run 'make mrproper'
> > *** in /usr/src/linux-2.6
> > 
> > 
> > I've always done:
> > 
> >    cd tools/testing/selftests/x86; make
> > 
> > and that has always worked
> > 
> > Now I can't bloody well build *any* selftest or risk not being able to
> > do builds.
> 
> This change landed in 6.5, no? And 6.6 was just released. Just curious why
> you notice that now.

And I hit it again (different box etc..)

Can we please get this garbage fixed already?

^ permalink raw reply	[flat|nested] 20+ messages in thread

* Re: [PATCH v3 11/11] selftests: error out if kernel header files are not yet built
  2023-12-08 15:14       ` Peter Zijlstra
@ 2023-12-08 15:21         ` David Hildenbrand
  2023-12-08 20:29           ` John Hubbard
  0 siblings, 1 reply; 20+ messages in thread
From: David Hildenbrand @ 2023-12-08 15:21 UTC (permalink / raw)
  To: Peter Zijlstra
  Cc: John Hubbard, Linus Torvalds, Andrew Morton, Peter Xu,
	Shuah Khan, Nathan Chancellor, linux-mm, linux-kselftest, LKML,
	Muhammad Usama Anjum, Jonathan Corbet, linux-doc

On 08.12.23 16:14, Peter Zijlstra wrote:
> On Fri, Nov 03, 2023 at 01:22:54PM +0100, David Hildenbrand wrote:
>> On 03.11.23 13:16, Peter Zijlstra wrote:
>>> On Tue, Jun 06, 2023 at 12:16:37AM -0700, John Hubbard wrote:
>>>> As per a discussion with Muhammad Usama Anjum [1], the following is how
>>>> one is supposed to build selftests:
>>>>
>>>>       make headers && make -C tools/testing/selftests/mm
>>>>
>>>> Change the selftest build system's lib.mk to fail out with a helpful
>>>> message if that prerequisite "make headers" has not been done yet.
>>>>
>>>
>>> NAK NAK NAK
>>>
>>> This now means I can no longer run selftests, I thank you very much! :-/
>>>
>>> root@spr:/usr/src/linux-2.6# make O=defconfig-build/ -j64
>>> make[1]: Entering directory '/usr/src/linux-2.6/defconfig-build'
>>> ***
>>> *** The source tree is not clean, please run 'make mrproper'
>>> *** in /usr/src/linux-2.6
>>>
>>>
>>> I've always done:
>>>
>>>     cd tools/testing/selftests/x86; make
>>>
>>> and that has always worked
>>>
>>> Now I can't bloody well build *any* selftest or risk not being able to
>>> do builds.
>>
>> This change landed in 6.5, no? And 6.6 was just released. Just curious why
>> you notice that now.
> 
> And I hit it again (different box etc..)
> 
> Can we please get this garbage fixed already?

I'd suggest to either revert or turn into a warning.

@John?

-- 
Cheers,

David / dhildenb


^ permalink raw reply	[flat|nested] 20+ messages in thread

* Re: [PATCH v3 11/11] selftests: error out if kernel header files are not yet built
  2023-12-08 15:21         ` David Hildenbrand
@ 2023-12-08 20:29           ` John Hubbard
  2023-12-08 22:10             ` Peter Zijlstra
  0 siblings, 1 reply; 20+ messages in thread
From: John Hubbard @ 2023-12-08 20:29 UTC (permalink / raw)
  To: David Hildenbrand, Peter Zijlstra
  Cc: Linus Torvalds, Andrew Morton, Peter Xu, Shuah Khan,
	Nathan Chancellor, linux-mm, linux-kselftest, LKML,
	Muhammad Usama Anjum, Jonathan Corbet, linux-doc

On 12/8/23 07:21, David Hildenbrand wrote:
> On 08.12.23 16:14, Peter Zijlstra wrote:
>> On Fri, Nov 03, 2023 at 01:22:54PM +0100, David Hildenbrand wrote:
>>> On 03.11.23 13:16, Peter Zijlstra wrote:
>>>> On Tue, Jun 06, 2023 at 12:16:37AM -0700, John Hubbard wrote:
>>>>> As per a discussion with Muhammad Usama Anjum [1], the following is 
>>>>> how
>>>>> one is supposed to build selftests:
>>>>>
>>>>>       make headers && make -C tools/testing/selftests/mm
>>>>>
>>>>> Change the selftest build system's lib.mk to fail out with a helpful
>>>>> message if that prerequisite "make headers" has not been done yet.
>>>>>
>>>>
>>>> NAK NAK NAK
>>>>
>>>> This now means I can no longer run selftests, I thank you very much! 
>>>> :-/
>>>>
>>>> root@spr:/usr/src/linux-2.6# make O=defconfig-build/ -j64
>>>> make[1]: Entering directory '/usr/src/linux-2.6/defconfig-build'
>>>> ***
>>>> *** The source tree is not clean, please run 'make mrproper'
>>>> *** in /usr/src/linux-2.6
>>>>
>>>>
>>>> I've always done:
>>>>
>>>>     cd tools/testing/selftests/x86; make
>>>>
>>>> and that has always worked
>>>>
>>>> Now I can't bloody well build *any* selftest or risk not being able to
>>>> do builds.
>>>
>>> This change landed in 6.5, no? And 6.6 was just released. Just 
>>> curious why
>>> you notice that now.
>>
>> And I hit it again (different box etc..)
>>
>> Can we please get this garbage fixed already?
> 
> I'd suggest to either revert or turn into a warning.

That would put us back into a half-broken sort of situation, though...
see below.

> 
> @John?
> 

I don't have a strong opinion about how this should be done, and in
fact I believed at the time that I was bringing the system into
compliance with what everyone wanted here. :)

There seem to be two conflicting visions:

a) The way it was (much) earlier: use ifdefs and defines to get by
without the latest kernel headers, or

b) Requiring recent kernel headers to build the various selftests.

Shuah, Peter, others: can we choose a direction please? Either
way will work, and I personally don't care which one we choose.


thanks,
-- 
John Hubbard
NVIDIA


^ permalink raw reply	[flat|nested] 20+ messages in thread

* Re: [PATCH v3 11/11] selftests: error out if kernel header files are not yet built
  2023-12-08 20:29           ` John Hubbard
@ 2023-12-08 22:10             ` Peter Zijlstra
  2023-12-09  1:39               ` John Hubbard
  0 siblings, 1 reply; 20+ messages in thread
From: Peter Zijlstra @ 2023-12-08 22:10 UTC (permalink / raw)
  To: John Hubbard
  Cc: David Hildenbrand, Linus Torvalds, Andrew Morton, Peter Xu,
	Shuah Khan, Nathan Chancellor, linux-mm, linux-kselftest, LKML,
	Muhammad Usama Anjum, Jonathan Corbet, linux-doc

On Fri, Dec 08, 2023 at 12:29:37PM -0800, John Hubbard wrote:

> I don't have a strong opinion about how this should be done, and in
> fact I believed at the time that I was bringing the system into
> compliance with what everyone wanted here. :)
> 
> There seem to be two conflicting visions:
> 
> a) The way it was (much) earlier: use ifdefs and defines to get by
> without the latest kernel headers, or
> 
> b) Requiring recent kernel headers to build the various selftests.
> 
> Shuah, Peter, others: can we choose a direction please? Either
> way will work, and I personally don't care which one we choose.

So as David already argued, the current thing does not in fact help with
b. You just have to install once and the error goes away, then carry
that tree for a year and you're running old crap again.

My biggest beef with the whole thing is that I simply do not want to use
'make headers', it doesn't work for me.

I have a ton of output directories and I don't care to build tools into
the output dirs, in fact some of them flat out refuse to work that way
(bpf comes to mind).

^ permalink raw reply	[flat|nested] 20+ messages in thread

* Re: [PATCH v3 11/11] selftests: error out if kernel header files are not yet built
  2023-12-08 22:10             ` Peter Zijlstra
@ 2023-12-09  1:39               ` John Hubbard
  0 siblings, 0 replies; 20+ messages in thread
From: John Hubbard @ 2023-12-09  1:39 UTC (permalink / raw)
  To: Peter Zijlstra
  Cc: David Hildenbrand, Linus Torvalds, Andrew Morton, Peter Xu,
	Shuah Khan, Nathan Chancellor, linux-mm, linux-kselftest, LKML,
	Muhammad Usama Anjum, Jonathan Corbet, linux-doc

On 12/8/23 14:10, Peter Zijlstra wrote:
> So as David already argued, the current thing does not in fact help with
> b. You just have to install once and the error goes away, then carry
> that tree for a year and you're running old crap again.
> 
> My biggest beef with the whole thing is that I simply do not want to use
> 'make headers', it doesn't work for me.
> 
> I have a ton of output directories and I don't care to build tools into
> the output dirs, in fact some of them flat out refuse to work that way
> (bpf comes to mind).

Going with that, then, I believe it is best to simply revert commit
9fc96c7c19df ("selftests: error out if kernel header files are not
yet built"). And then follow up with a series of (many) changes to
wean the various selftests off of the kernel headers.

I'll post the revert shortly.

thanks,
-- 
John Hubbard
NVIDIA


^ permalink raw reply	[flat|nested] 20+ messages in thread

end of thread, other threads:[~2023-12-09  1:39 UTC | newest]

Thread overview: 20+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
     [not found] <20230606071637.267103-1-jhubbard@nvidia.com>
2023-06-06  7:16 ` [PATCH v3 10/11] Documentation: kselftest: "make headers" is a prerequisite John Hubbard
2023-06-06  7:57   ` Muhammad Usama Anjum
2023-07-10 14:20   ` Mark Brown
2023-06-06  7:16 ` [PATCH v3 11/11] selftests: error out if kernel header files are not yet built John Hubbard
2023-06-06  7:38   ` Muhammad Usama Anjum
2023-06-06 20:10     ` John Hubbard
2023-06-07  5:37       ` Muhammad Usama Anjum
2023-06-06  7:57   ` Muhammad Usama Anjum
2023-11-03 12:16   ` Peter Zijlstra
2023-11-03 12:22     ` David Hildenbrand
2023-11-03 12:46       ` Peter Zijlstra
2023-11-03 12:59         ` David Hildenbrand
2023-11-03 13:00           ` David Hildenbrand
2023-11-03 13:08           ` Peter Zijlstra
2023-12-08 15:14       ` Peter Zijlstra
2023-12-08 15:21         ` David Hildenbrand
2023-12-08 20:29           ` John Hubbard
2023-12-08 22:10             ` Peter Zijlstra
2023-12-09  1:39               ` John Hubbard
2023-12-08 12:44   ` Miroslav Benes

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).