2020-11-18 10:50:35

by Giuseppe Scrivano

[permalink] [raw]
Subject: [PATCH v3 2/2] selftests: core: add tests for CLOSE_RANGE_CLOEXEC

check that close_range(initial_fd, last_fd, CLOSE_RANGE_CLOEXEC)
correctly sets the close-on-exec bit for the specified file
descriptors.

Open 100 file descriptors and set the close-on-exec flag for a subset
of them first, then set it for every file descriptor above 2. Make
sure RLIMIT_NOFILE doesn't affect the result.

Signed-off-by: Giuseppe Scrivano <[email protected]>
---
.../testing/selftests/core/close_range_test.c | 74 +++++++++++++++++++
1 file changed, 74 insertions(+)

diff --git a/tools/testing/selftests/core/close_range_test.c b/tools/testing/selftests/core/close_range_test.c
index c99b98b0d461..18992c383852 100644
--- a/tools/testing/selftests/core/close_range_test.c
+++ b/tools/testing/selftests/core/close_range_test.c
@@ -11,6 +11,7 @@
#include <string.h>
#include <syscall.h>
#include <unistd.h>
+#include <sys/resource.h>

#include "../kselftest_harness.h"
#include "../clone3/clone3_selftests.h"
@@ -23,6 +24,10 @@
#define CLOSE_RANGE_UNSHARE (1U << 1)
#endif

+#ifndef CLOSE_RANGE_CLOEXEC
+#define CLOSE_RANGE_CLOEXEC (1U << 2)
+#endif
+
static inline int sys_close_range(unsigned int fd, unsigned int max_fd,
unsigned int flags)
{
@@ -224,4 +229,73 @@ TEST(close_range_unshare_capped)
EXPECT_EQ(0, WEXITSTATUS(status));
}

+TEST(close_range_cloexec)
+{
+ int i, ret;
+ int open_fds[101];
+ struct rlimit rlimit;
+
+ for (i = 0; i < ARRAY_SIZE(open_fds); i++) {
+ int fd;
+
+ fd = open("/dev/null", O_RDONLY);
+ ASSERT_GE(fd, 0) {
+ if (errno == ENOENT)
+ XFAIL(return, "Skipping test since /dev/null does not exist");
+ }
+
+ open_fds[i] = fd;
+ }
+
+ ret = sys_close_range(1000, 1000, CLOSE_RANGE_CLOEXEC);
+ if (ret < 0) {
+ if (errno == ENOSYS)
+ XFAIL(return, "close_range() syscall not supported");
+ if (errno == EINVAL)
+ XFAIL(return, "close_range() doesn't support CLOSE_RANGE_CLOEXEC");
+ }
+
+ /* Ensure the FD_CLOEXEC bit is set also with a resource limit in place. */
+ ASSERT_EQ(0, getrlimit(RLIMIT_NOFILE, &rlimit));
+ rlimit.rlim_cur = 25;
+ ASSERT_EQ(0, setrlimit(RLIMIT_NOFILE, &rlimit));
+
+ /* Set close-on-exec for two ranges: [0-50] and [75-100]. */
+ ret = sys_close_range(open_fds[0], open_fds[50], CLOSE_RANGE_CLOEXEC);
+ ASSERT_EQ(0, ret);
+ ret = sys_close_range(open_fds[75], open_fds[100], CLOSE_RANGE_CLOEXEC);
+ ASSERT_EQ(0, ret);
+
+ for (i = 0; i <= 50; i++) {
+ int flags = fcntl(open_fds[i], F_GETFD);
+
+ EXPECT_GT(flags, -1);
+ EXPECT_EQ(flags & FD_CLOEXEC, FD_CLOEXEC);
+ }
+
+ for (i = 51; i <= 74; i++) {
+ int flags = fcntl(open_fds[i], F_GETFD);
+
+ EXPECT_GT(flags, -1);
+ EXPECT_EQ(flags & FD_CLOEXEC, 0);
+ }
+
+ for (i = 75; i <= 100; i++) {
+ int flags = fcntl(open_fds[i], F_GETFD);
+
+ EXPECT_GT(flags, -1);
+ EXPECT_EQ(flags & FD_CLOEXEC, FD_CLOEXEC);
+ }
+
+ /* Test a common pattern. */
+ ret = sys_close_range(3, UINT_MAX, CLOSE_RANGE_CLOEXEC);
+ for (i = 0; i <= 100; i++) {
+ int flags = fcntl(open_fds[i], F_GETFD);
+
+ EXPECT_GT(flags, -1);
+ EXPECT_EQ(flags & FD_CLOEXEC, FD_CLOEXEC);
+ }
+}
+
+
TEST_HARNESS_MAIN
--
2.28.0


2020-11-22 13:32:17

by kernel test robot

[permalink] [raw]
Subject: [selftests] 4d9c16a494: kernel-selftests.core.make_fail



Greeting,

FYI, we noticed the following commit (built with gcc-9):

commit: 4d9c16a4949b8b027efc8d4214a4c8b11379cb28 ("[PATCH v3 2/2] selftests: core: add tests for CLOSE_RANGE_CLOEXEC")
url: https://github.com/0day-ci/linux/commits/Giuseppe-Scrivano/fs-close_range-add-flag-CLOSE_RANGE_CLOEXEC/20201118-185135
base: https://git.kernel.org/cgit/linux/kernel/git/torvalds/linux.git 09162bc32c880a791c6c0668ce0745cf7958f576

in testcase: kernel-selftests
version: kernel-selftests-x86_64-b5a583fb-1_20201015
with following parameters:

group: group-01
ucode: 0xe2

test-description: The kernel contains a set of "self tests" under the tools/testing/selftests/ directory. These are intended to be small unit tests to exercise individual code paths in the kernel.
test-url: https://www.kernel.org/doc/Documentation/kselftest.txt


on test machine: 8 threads Intel(R) Core(TM) i7-6770HQ CPU @ 2.60GHz with 32G memory

caused below changes (please refer to attached dmesg/kmsg for entire log/backtrace):




If you fix the issue, kindly add following tag
Reported-by: kernel test robot <[email protected]>

KERNEL SELFTESTS: linux_headers_dir is /usr/src/linux-headers-x86_64-rhel-7.6-kselftests-4d9c16a4949b8b027efc8d4214a4c8b11379cb28
2020-11-20 16:58:42 ln -sf /usr/bin/clang
2020-11-20 16:58:42 ln -sf /usr/bin/llc
2020-11-20 16:58:42 sed -i s/default_timeout=45/default_timeout=300/ kselftest/runner.sh
2020-11-20 16:58:42 make run_tests -C capabilities
make: Entering directory '/usr/src/perf_selftests-x86_64-rhel-7.6-kselftests-4d9c16a4949b8b027efc8d4214a4c8b11379cb28/tools/testing/selftests/capabilities'
gcc -O2 -g -std=gnu99 -Wall test_execve.c -lcap-ng -lrt -ldl -o /usr/src/perf_selftests-x86_64-rhel-7.6-kselftests-4d9c16a4949b8b027efc8d4214a4c8b11379cb28/tools/testing/selftests/capabilities/test_execve
gcc -O2 -g -std=gnu99 -Wall validate_cap.c -lcap-ng -lrt -ldl -o /usr/src/perf_selftests-x86_64-rhel-7.6-kselftests-4d9c16a4949b8b027efc8d4214a4c8b11379cb28/tools/testing/selftests/capabilities/validate_cap
TAP version 13
1..1
# selftests: capabilities: test_execve
# # validate_cap:: Capabilities after execve were correct
# # validate_cap:: Capabilities after execve were correct
# # validate_cap:: Capabilities after execve were correct
# # validate_cap:: Capabilities after execve were correct
# # validate_cap:: Capabilities after execve were correct
# # validate_cap:: Capabilities after execve were correct
# # validate_cap:: Capabilities after execve were correct
# # validate_cap:: Capabilities after execve were correct
# TAP version 13
# 1..12
# # [RUN] +++ Tests with uid == 0 +++
# # [NOTE] Using global UIDs for tests
# # [RUN] Root => ep
# ok 1 Passed
# # Check cap_ambient manipulation rules
# ok 2 PR_CAP_AMBIENT_RAISE failed on non-inheritable cap
# ok 3 PR_CAP_AMBIENT_RAISE failed on non-permitted cap
# ok 4 PR_CAP_AMBIENT_RAISE worked
# ok 5 Basic manipulation appears to work
# # [RUN] Root +i => eip
# ok 6 Passed
# # [RUN] UID 0 +ia => eipa
# ok 7 Passed
# # [RUN] Root +ia, suidroot => eipa
# ok 8 Passed
# # [RUN] Root +ia, suidnonroot => ip
# ok 9 Passed
# # [RUN] Root +ia, sgidroot => eipa
# ok 10 Passed
# ok 11 Passed
# # [RUN] Root +ia, sgidnonroot => eip
# ok 12 Passed
# # Totals: pass:12 fail:0 xfail:0 xpass:0 skip:0 error:0
# # validate_cap:: Capabilities after execve were correct
# # validate_cap:: Capabilities after execve were correct
# # validate_cap:: Capabilities after execve were correct
# # validate_cap:: Capabilities after execve were correct
# # validate_cap:: Capabilities after execve were correct
# # ==================================================
# TAP version 13
# 1..9
# # [RUN] +++ Tests with uid != 0 +++
# # [NOTE] Using global UIDs for tests
# # [RUN] Non-root => no caps
# ok 1 Passed
# # Check cap_ambient manipulation rules
# ok 2 PR_CAP_AMBIENT_RAISE failed on non-inheritable cap
# ok 3 PR_CAP_AMBIENT_RAISE failed on non-permitted cap
# ok 4 PR_CAP_AMBIENT_RAISE worked
# ok 5 Basic manipulation appears to work
# # [RUN] Non-root +i => i
# ok 6 Passed
# # [RUN] UID 1 +ia => eipa
# ok 7 Passed
# # [RUN] Non-root +ia, sgidnonroot => i
# ok 8 Passed
# ok 9 Passed
# # Totals: pass:9 fail:0 xfail:0 xpass:0 skip:0 error:0
# # ==================================================
ok 1 selftests: capabilities: test_execve
make: Leaving directory '/usr/src/perf_selftests-x86_64-rhel-7.6-kselftests-4d9c16a4949b8b027efc8d4214a4c8b11379cb28/tools/testing/selftests/capabilities'
LKP SKIP cgroup
2020-11-20 16:58:42 make run_tests -C clone3
make: Entering directory '/usr/src/perf_selftests-x86_64-rhel-7.6-kselftests-4d9c16a4949b8b027efc8d4214a4c8b11379cb28/tools/testing/selftests/clone3'
gcc -g -I../../../../usr/include/ clone3.c -lcap -o /usr/src/perf_selftests-x86_64-rhel-7.6-kselftests-4d9c16a4949b8b027efc8d4214a4c8b11379cb28/tools/testing/selftests/clone3/clone3
gcc -g -I../../../../usr/include/ clone3_clear_sighand.c -lcap -o /usr/src/perf_selftests-x86_64-rhel-7.6-kselftests-4d9c16a4949b8b027efc8d4214a4c8b11379cb28/tools/testing/selftests/clone3/clone3_clear_sighand
gcc -g -I../../../../usr/include/ clone3_set_tid.c -lcap -o /usr/src/perf_selftests-x86_64-rhel-7.6-kselftests-4d9c16a4949b8b027efc8d4214a4c8b11379cb28/tools/testing/selftests/clone3/clone3_set_tid
gcc -g -I../../../../usr/include/ clone3_cap_checkpoint_restore.c -lcap -o /usr/src/perf_selftests-x86_64-rhel-7.6-kselftests-4d9c16a4949b8b027efc8d4214a4c8b11379cb28/tools/testing/selftests/clone3/clone3_cap_checkpoint_restore
TAP version 13
1..4
# selftests: clone3: clone3
# TAP version 13
# 1..17
# # clone3() syscall supported
# # [1354] Trying clone3() with flags 0 (size 0)
# # I am the parent (1354). My child's pid is 1355
# # [1354] clone3() with flags says: 0 expected 0
# ok 1 [1354] Result (0) matches expectation (0)
# # [1354] Trying clone3() with flags 0x20000000 (size 0)
# # I am the parent (1354). My child's pid is 1356
# # [1354] clone3() with flags says: 0 expected 0
# ok 2 [1354] Result (0) matches expectation (0)
# # [1354] Trying clone3() with flags 0 (size 64)
# # I am the parent (1354). My child's pid is 1357
# # [1354] clone3() with flags says: 0 expected 0
# ok 3 [1354] Result (0) matches expectation (0)
# # [1354] Trying clone3() with flags 0 (size 56)
# # Invalid argument - Failed to create new process
# # [1354] clone3() with flags says: -22 expected -22
# ok 4 [1354] Result (-22) matches expectation (-22)
# # [1354] Trying clone3() with flags 0 (size 96)
# # I am the parent (1354). My child's pid is 1358
# # [1354] clone3() with flags says: 0 expected 0
# ok 5 [1354] Result (0) matches expectation (0)
# # [1354] Trying clone3() with flags 0 (size 0)
# # Invalid argument - Failed to create new process
# # [1354] clone3() with flags says: -22 expected -22
# ok 6 [1354] Result (-22) matches expectation (-22)
# # [1354] Trying clone3() with flags 0 (size 0)
# # Invalid argument - Failed to create new process
# # [1354] clone3() with flags says: -22 expected -22
# ok 7 [1354] Result (-22) matches expectation (-22)
# # [1354] Trying clone3() with flags 0 (size 0)
# # Invalid argument - Failed to create new process
# # [1354] clone3() with flags says: -22 expected -22
# ok 8 [1354] Result (-22) matches expectation (-22)
# # [1354] Trying clone3() with flags 0 (size 0)
# # Invalid argument - Failed to create new process
# # [1354] clone3() with flags says: -22 expected -22
# ok 9 [1354] Result (-22) matches expectation (-22)
# # [1354] Trying clone3() with flags 0 (size 96)
# # I am the parent (1354). My child's pid is 1359
# # [1354] clone3() with flags says: 0 expected 0
# ok 10 [1354] Result (0) matches expectation (0)
# # [1354] Trying clone3() with flags 0 (size 104)
# # Argument list too long - Failed to create new process
# # [1354] clone3() with flags says: -7 expected -7
# ok 11 [1354] Result (-7) matches expectation (-7)
# # [1354] Trying clone3() with flags 0 (size 176)
# # Argument list too long - Failed to create new process
# # [1354] clone3() with flags says: -7 expected -7
# ok 12 [1354] Result (-7) matches expectation (-7)
# # [1354] Trying clone3() with flags 0 (size 4104)
# # Argument list too long - Failed to create new process
# # [1354] clone3() with flags says: -7 expected -7
# ok 13 [1354] Result (-7) matches expectation (-7)
# # [1354] Trying clone3() with flags 0x20000000 (size 64)
# # I am the parent (1354). My child's pid is 1360
# # [1354] clone3() with flags says: 0 expected 0
# ok 14 [1354] Result (0) matches expectation (0)
# # [1354] Trying clone3() with flags 0x20000000 (size 56)
# # Invalid argument - Failed to create new process
# # [1354] clone3() with flags says: -22 expected -22
# ok 15 [1354] Result (-22) matches expectation (-22)
# # [1354] Trying clone3() with flags 0x20000000 (size 96)
# # I am the parent (1354). My child's pid is 1361
# # [1354] clone3() with flags says: 0 expected 0
# ok 16 [1354] Result (0) matches expectation (0)
# # [1354] Trying clone3() with flags 0x20000000 (size 4104)
# # Argument list too long - Failed to create new process
# # [1354] clone3() with flags says: -7 expected -7
# ok 17 [1354] Result (-7) matches expectation (-7)
# # Totals: pass:17 fail:0 xfail:0 xpass:0 skip:0 error:0
ok 1 selftests: clone3: clone3
# selftests: clone3: clone3_clear_sighand
# TAP version 13
# 1..1
# # clone3() syscall supported
# ok 1 Cleared signal handlers for child process
# # Totals: pass:1 fail:0 xfail:0 xpass:0 skip:0 error:0
ok 2 selftests: clone3: clone3_clear_sighand
# selftests: clone3: clone3_set_tid
# TAP version 13
# 1..29
# # clone3() syscall supported
# # /proc/sys/kernel/pid_max 32768
# # [1386] Trying clone3() with CLONE_SET_TID to 0 and 0x0
# # Invalid argument - Failed to create new process
# # [1386] clone3() with CLONE_SET_TID 0 says :-22 - expected -22
# ok 1 [1386] Result (-22) matches expectation (-22)
# # [1386] Trying clone3() with CLONE_SET_TID to 0 and 0x0
# # Invalid argument - Failed to create new process
# # [1386] clone3() with CLONE_SET_TID 0 says :-22 - expected -22
# ok 2 [1386] Result (-22) matches expectation (-22)
# # [1386] Trying clone3() with CLONE_SET_TID to 0 and 0x0
# # Invalid argument - Failed to create new process
# # [1386] clone3() with CLONE_SET_TID 0 says :-22 - expected -22
# ok 3 [1386] Result (-22) matches expectation (-22)
# # [1386] Trying clone3() with CLONE_SET_TID to 0 and 0x0
# # Invalid argument - Failed to create new process
# # [1386] clone3() with CLONE_SET_TID 0 says :-22 - expected -22
# ok 4 [1386] Result (-22) matches expectation (-22)
# # [1386] Trying clone3() with CLONE_SET_TID to 0 and 0x0
# # Invalid argument - Failed to create new process
# # [1386] clone3() with CLONE_SET_TID 0 says :-22 - expected -22
# ok 5 [1386] Result (-22) matches expectation (-22)
# # [1386] Trying clone3() with CLONE_SET_TID to -1 and 0x0
# # Invalid argument - Failed to create new process
# # [1386] clone3() with CLONE_SET_TID -1 says :-22 - expected -22
# ok 6 [1386] Result (-22) matches expectation (-22)
# # [1386] Trying clone3() with CLONE_SET_TID to -1 and 0x0
# # Invalid argument - Failed to create new process
# # [1386] clone3() with CLONE_SET_TID -1 says :-22 - expected -22
# ok 7 [1386] Result (-22) matches expectation (-22)
# # [1386] Trying clone3() with CLONE_SET_TID to -1 and 0x0
# # Invalid argument - Failed to create new process
# # [1386] clone3() with CLONE_SET_TID -1 says :-22 - expected -22
# ok 8 [1386] Result (-22) matches expectation (-22)
# # [1386] Trying clone3() with CLONE_SET_TID to -1 and 0x0
# # Invalid argument - Failed to create new process
# # [1386] clone3() with CLONE_SET_TID -1 says :-22 - expected -22
# ok 9 [1386] Result (-22) matches expectation (-22)
# # [1386] Trying clone3() with CLONE_SET_TID to -1 and 0x0
# # Invalid argument - Failed to create new process
# # [1386] clone3() with CLONE_SET_TID -1 says :-22 - expected -22
# ok 10 [1386] Result (-22) matches expectation (-22)
# # [1386] Trying clone3() with CLONE_SET_TID to 0 and 0x0
# # Invalid argument - Failed to create new process
# # [1386] clone3() with CLONE_SET_TID 0 says :-22 - expected -22
# ok 11 [1386] Result (-22) matches expectation (-22)
# # [1386] Trying clone3() with CLONE_SET_TID to -1 and 0x0
# # Invalid argument - Failed to create new process
# # [1386] clone3() with CLONE_SET_TID -1 says :-22 - expected -22
# ok 12 [1386] Result (-22) matches expectation (-22)
# # [1386] Trying clone3() with CLONE_SET_TID to -1 and 0x0
# # Invalid argument - Failed to create new process
# # [1386] clone3() with CLONE_SET_TID -1 says :-22 - expected -22
# ok 13 [1386] Result (-22) matches expectation (-22)
# # [1386] Trying clone3() with CLONE_SET_TID to -1 and 0x20000000
# # Invalid argument - Failed to create new process
# # [1386] clone3() with CLONE_SET_TID -1 says :-22 - expected -22
# ok 14 [1386] Result (-22) matches expectation (-22)
# # [1386] Trying clone3() with CLONE_SET_TID to 1 and 0x0
# # File exists - Failed to create new process
# # [1386] clone3() with CLONE_SET_TID 1 says :-17 - expected -17
# ok 15 [1386] Result (-17) matches expectation (-17)
# # [1386] Trying clone3() with CLONE_SET_TID to 1 and 0x20000000
# # I am the child, my PID is 1 (expected 1)
# # I am the parent (1386). My child's pid is 1387
# # [1386] clone3() with CLONE_SET_TID 1 says :0 - expected 0
# ok 16 [1386] Result (0) matches expectation (0)
# # [1386] Trying clone3() with CLONE_SET_TID to 32768 and 0x0
# # Invalid argument - Failed to create new process
# # [1386] clone3() with CLONE_SET_TID 32768 says :-22 - expected -22
# ok 17 [1386] Result (-22) matches expectation (-22)
# # [1386] Trying clone3() with CLONE_SET_TID to 32768 and 0x20000000
# # Invalid argument - Failed to create new process
# # [1386] clone3() with CLONE_SET_TID 32768 says :-22 - expected -22
# ok 18 [1386] Result (-22) matches expectation (-22)
# # Child has PID 1388
# # Invalid argument - Failed to create new process
# # [1386] clone3() with CLONE_SET_TID 32768 says :-22 - expected -22
# ok 18 [1386] Result (-22) matches expectation (-22)
# # [1386] Trying clone3() with CLONE_SET_TID to 1388 and 0x0
# # I am the child, my PID is 1388 (expected 1388)
# # I am the parent (1386). My child's pid is 1388
# # [1386] clone3() with CLONE_SET_TID 1388 says :0 - expected 0
# ok 19 [1386] Result (0) matches expectation (0)
# # [1386] Trying clone3() with CLONE_SET_TID to 1388 and 0x20000000
# # Invalid argument - Failed to create new process
# # [1386] clone3() with CLONE_SET_TID 1388 says :-22 - expected -22
# ok 20 [1386] Result (-22) matches expectation (-22)
# # [1386] Trying clone3() with CLONE_SET_TID to 1 and 0x20000000
# # I am the child, my PID is 1 (expected 1)
# # I am the parent (1386). My child's pid is 1388
# # [1386] clone3() with CLONE_SET_TID 1 says :0 - expected 0
# ok 21 [1386] Result (0) matches expectation (0)
# # unshare PID namespace
# # [1386] Trying clone3() with CLONE_SET_TID to 1388 and 0x0
# # Invalid argument - Failed to create new process
# # [1386] clone3() with CLONE_SET_TID 1388 says :-22 - expected -22
# ok 22 [1386] Result (-22) matches expectation (-22)
# # [1] Trying clone3() with CLONE_SET_TID to 43 and 0x0
# # Invalid argument - Failed to create new process
# # [1] clone3() with CLONE_SET_TID 43 says :-22 - expected -22
# ok 23 [1] Result (-22) matches expectation (-22)
# # [1] Trying clone3() with CLONE_SET_TID to 43 and 0x0
# # I am the child, my PID is 43 (expected 43)
# # I am the parent (1). My child's pid is 43
# # [1] clone3() with CLONE_SET_TID 43 says :0 - expected 0
# ok 24 [1] Result (0) matches expectation (0)
# # Child in PID namespace has PID 1
# # [1] Trying clone3() with CLONE_SET_TID to 2 and 0x0
# # I am the child, my PID is 2 (expected 2)
# # I am the parent (1). My child's pid is 2
# # [1] clone3() with CLONE_SET_TID 2 says :0 - expected 0
# ok 25 [1] Result (0) matches expectation (0)
# # [1] Trying clone3() with CLONE_SET_TID to 1 and 0x20000000
# # Invalid argument - Failed to create new process
# # [1] clone3() with CLONE_SET_TID 1 says :-22 - expected -22
# ok 26 [1] Result (-22) matches expectation (-22)
# # [1] Trying clone3() with CLONE_SET_TID to 1 and 0x20000000
# # Invalid argument - Failed to create new process
# # [1] clone3() with CLONE_SET_TID 1 says :-22 - expected -22
# ok 27 [1] Result (-22) matches expectation (-22)
# # [1] Trying clone3() with CLONE_SET_TID to 1 and 0x20000000
# # I am the child, my PID is 1 (expected 1)
# # [1] Child is ready and waiting
# # I am the parent (1). My child's pid is 42
# # [1] clone3() with CLONE_SET_TID 1 says :0 - expected 0
# ok 28 [1] Result (0) matches expectation (0)
# # Invalid argument - Failed to create new process
# # [1386] clone3() with CLONE_SET_TID 1388 says :-22 - expected -22
# ok 22 [1386] Result (-22) matches expectation (-22)
# # [1386] Child is ready and waiting
# ok 29 PIDs in all namespaces as expected (1388,42,1)
# # Totals: pass:29 fail:0 xfail:0 xpass:0 skip:0 error:0
ok 3 selftests: clone3: clone3_set_tid
# selftests: clone3: clone3_cap_checkpoint_restore
# TAP version 13
# 1..1
# # Starting 1 tests from 1 test cases.
# # RUN global.clone3_cap_checkpoint_restore ...
# # clone3_cap_checkpoint_restore.c:155:clone3_cap_checkpoint_restore:Child has PID 1404
# # clone3() syscall supported
# # clone3_cap_checkpoint_restore.c:88:clone3_cap_checkpoint_restore:[1403] Trying clone3() with CLONE_SET_TID to 1404
# # clone3() syscall supported
# # clone3_cap_checkpoint_restore.c:55:clone3_cap_checkpoint_restore:Operation not permitted - Failed to create new process
# # clone3_cap_checkpoint_restore.c:90:clone3_cap_checkpoint_restore:[1403] clone3() with CLONE_SET_TID 1404 says:-1
# # clone3_cap_checkpoint_restore.c:88:clone3_cap_checkpoint_restore:[1403] Trying clone3() with CLONE_SET_TID to 1404
# # clone3_cap_checkpoint_restore.c:70:clone3_cap_checkpoint_restore:I am the parent (1403). My child's pid is 1404
# # clone3_cap_checkpoint_restore.c:63:clone3_cap_checkpoint_restore:I am the child, my PID is 1404 (expected 1404)
# # clone3_cap_checkpoint_restore.c:90:clone3_cap_checkpoint_restore:[1403] clone3() with CLONE_SET_TID 1404 says:0
# # OK global.clone3_cap_checkpoint_restore
# ok 1 global.clone3_cap_checkpoint_restore
# # PASSED: 1 / 1 tests passed.
# # Totals: pass:1 fail:0 xfail:0 xpass:0 skip:0 error:0
ok 4 selftests: clone3: clone3_cap_checkpoint_restore
make: Leaving directory '/usr/src/perf_selftests-x86_64-rhel-7.6-kselftests-4d9c16a4949b8b027efc8d4214a4c8b11379cb28/tools/testing/selftests/clone3'
2020-11-20 16:58:43 make run_tests -C core
make: Entering directory '/usr/src/perf_selftests-x86_64-rhel-7.6-kselftests-4d9c16a4949b8b027efc8d4214a4c8b11379cb28/tools/testing/selftests/core'
gcc -g -I../../../../usr/include/ close_range_test.c -o /usr/src/perf_selftests-x86_64-rhel-7.6-kselftests-4d9c16a4949b8b027efc8d4214a4c8b11379cb28/tools/testing/selftests/core/close_range_test
close_range_test.c: In function ‘close_range_unshare’:
close_range_test.c:122:19: warning: passing argument 1 of ‘sys_clone3’ from incompatible pointer type [-Wincompatible-pointer-types]
pid = sys_clone3(&args, sizeof(args));
^~~~~
In file included from close_range_test.c:17:
../clone3/clone3_selftests.h:49:46: note: expected ‘struct __clone_args *’ but argument is of type ‘struct clone_args *’
static pid_t sys_clone3(struct __clone_args *args, size_t size)
~~~~~~~~~~~~~~~~~~~~~^~~~
close_range_test.c: In function ‘close_range_unshare_capped’:
close_range_test.c:211:19: warning: passing argument 1 of ‘sys_clone3’ from incompatible pointer type [-Wincompatible-pointer-types]
pid = sys_clone3(&args, sizeof(args));
^~~~~
In file included from close_range_test.c:17:
../clone3/clone3_selftests.h:49:46: note: expected ‘struct __clone_args *’ but argument is of type ‘struct clone_args *’
static pid_t sys_clone3(struct __clone_args *args, size_t size)
~~~~~~~~~~~~~~~~~~~~~^~~~
close_range_test.c: In function ‘close_range_cloexec’:
close_range_test.c:244:5: warning: implicit declaration of function ‘XFAIL’ [-Wimplicit-function-declaration]
XFAIL(return, "Skipping test since /dev/null does not exist");
^~~~~
close_range_test.c:244:11: error: expected expression before ‘return’
XFAIL(return, "Skipping test since /dev/null does not exist");
^~~~~~
close_range_test.c:253:10: error: expected expression before ‘return’
XFAIL(return, "close_range() syscall not supported");
^~~~~~
close_range_test.c:255:10: error: expected expression before ‘return’
XFAIL(return, "close_range() doesn't support CLOSE_RANGE_CLOEXEC");
^~~~~~
make: *** [../lib.mk:139: /usr/src/perf_selftests-x86_64-rhel-7.6-kselftests-4d9c16a4949b8b027efc8d4214a4c8b11379cb28/tools/testing/selftests/core/close_range_test] Error 1
make: Leaving directory '/usr/src/perf_selftests-x86_64-rhel-7.6-kselftests-4d9c16a4949b8b027efc8d4214a4c8b11379cb28/tools/testing/selftests/core'
2020-11-20 16:58:43 make run_tests -C cpu-hotplug
make: Entering directory '/usr/src/perf_selftests-x86_64-rhel-7.6-kselftests-4d9c16a4949b8b027efc8d4214a4c8b11379cb28/tools/testing/selftests/cpu-hotplug'
TAP version 13
1..1
# selftests: cpu-hotplug: cpu-on-off-test.sh
# pid 1480's current affinity mask: ff
# pid 1480's new affinity mask: 1
# CPU online/offline summary:
# present_cpus = 0-7 present_max = 7
# Cpus in online state: 0-7
# Cpus in offline state: 0
# Limited scope test: one hotplug cpu
# (leaves cpu in the original state):
# online to offline to online: cpu 7
ok 1 selftests: cpu-hotplug: cpu-on-off-test.sh
make: Leaving directory '/usr/src/perf_selftests-x86_64-rhel-7.6-kselftests-4d9c16a4949b8b027efc8d4214a4c8b11379cb28/tools/testing/selftests/cpu-hotplug'
dmabuf-heaps test: not in Makefile
2020-11-20 16:58:44 make TARGETS=dmabuf-heaps
make --no-builtin-rules ARCH=x86 -C ../../.. headers_install
make[1]: Entering directory '/usr/src/perf_selftests-x86_64-rhel-7.6-kselftests-4d9c16a4949b8b027efc8d4214a4c8b11379cb28'
HOSTCC scripts/basic/fixdep
HOSTCC scripts/unifdef
WRAP arch/x86/include/generated/uapi/asm/bpf_perf_event.h
WRAP arch/x86/include/generated/uapi/asm/errno.h
WRAP arch/x86/include/generated/uapi/asm/fcntl.h
WRAP arch/x86/include/generated/uapi/asm/ioctl.h
WRAP arch/x86/include/generated/uapi/asm/ioctls.h
WRAP arch/x86/include/generated/uapi/asm/ipcbuf.h
WRAP arch/x86/include/generated/uapi/asm/param.h
WRAP arch/x86/include/generated/uapi/asm/poll.h
WRAP arch/x86/include/generated/uapi/asm/resource.h
WRAP arch/x86/include/generated/uapi/asm/socket.h
WRAP arch/x86/include/generated/uapi/asm/sockios.h
WRAP arch/x86/include/generated/uapi/asm/termbits.h
WRAP arch/x86/include/generated/uapi/asm/termios.h
WRAP arch/x86/include/generated/uapi/asm/types.h
SYSTBL arch/x86/include/generated/asm/syscalls_32.h
SYSHDR arch/x86/include/generated/uapi/asm/unistd_32.h
SYSHDR arch/x86/include/generated/uapi/asm/unistd_64.h
SYSHDR arch/x86/include/generated/uapi/asm/unistd_x32.h
HOSTCC arch/x86/tools/relocs_32.o
HOSTCC arch/x86/tools/relocs_64.o
HOSTCC arch/x86/tools/relocs_common.o
HOSTLD arch/x86/tools/relocs
UPD include/generated/uapi/linux/version.h
HDRINST usr/include/video/uvesafb.h
HDRINST usr/include/video/edid.h
HDRINST usr/include/video/sisfb.h
HDRINST usr/include/drm/panfrost_drm.h
HDRINST usr/include/drm/v3d_drm.h
HDRINST usr/include/drm/drm_mode.h
HDRINST usr/include/drm/drm_sarea.h
HDRINST usr/include/drm/via_drm.h
HDRINST usr/include/drm/tegra_drm.h
HDRINST usr/include/drm/i810_drm.h
HDRINST usr/include/drm/radeon_drm.h
HDRINST usr/include/drm/omap_drm.h
HDRINST usr/include/drm/nouveau_drm.h
HDRINST usr/include/drm/mga_drm.h
HDRINST usr/include/drm/etnaviv_drm.h
HDRINST usr/include/drm/msm_drm.h
HDRINST usr/include/drm/armada_drm.h
HDRINST usr/include/drm/qxl_drm.h
HDRINST usr/include/drm/i915_drm.h
HDRINST usr/include/drm/vmwgfx_drm.h
HDRINST usr/include/drm/lima_drm.h
HDRINST usr/include/drm/r128_drm.h
HDRINST usr/include/drm/savage_drm.h
HDRINST usr/include/drm/drm_fourcc.h
HDRINST usr/include/drm/vgem_drm.h
HDRINST usr/include/drm/vc4_drm.h
HDRINST usr/include/drm/amdgpu_drm.h
HDRINST usr/include/drm/exynos_drm.h
HDRINST usr/include/drm/drm.h
HDRINST usr/include/drm/virtgpu_drm.h
HDRINST usr/include/drm/sis_drm.h
HDRINST usr/include/mtd/inftl-user.h
HDRINST usr/include/mtd/mtd-user.h
HDRINST usr/include/mtd/mtd-abi.h
HDRINST usr/include/mtd/ubi-user.h
HDRINST usr/include/mtd/nftl-user.h
HDRINST usr/include/xen/gntalloc.h
HDRINST usr/include/xen/gntdev.h
HDRINST usr/include/xen/evtchn.h
HDRINST usr/include/xen/privcmd.h
HDRINST usr/include/asm-generic/posix_types.h
HDRINST usr/include/asm-generic/termbits.h
HDRINST usr/include/asm-generic/int-ll64.h
HDRINST usr/include/asm-generic/ioctl.h
HDRINST usr/include/asm-generic/ioctls.h
HDRINST usr/include/asm-generic/mman.h
HDRINST usr/include/asm-generic/sockios.h
HDRINST usr/include/asm-generic/termios.h
HDRINST usr/include/asm-generic/types.h
HDRINST usr/include/asm-generic/unistd.h
HDRINST usr/include/asm-generic/bpf_perf_event.h
HDRINST usr/include/asm-generic/siginfo.h
HDRINST usr/include/asm-generic/swab.h
HDRINST usr/include/asm-generic/ipcbuf.h
HDRINST usr/include/asm-generic/mman-common.h
HDRINST usr/include/asm-generic/resource.h
HDRINST usr/include/asm-generic/param.h
HDRINST usr/include/asm-generic/errno-base.h
HDRINST usr/include/asm-generic/poll.h
HDRINST usr/include/asm-generic/socket.h
HDRINST usr/include/asm-generic/fcntl.h
HDRINST usr/include/asm-generic/sembuf.h
HDRINST usr/include/asm-generic/hugetlb_encode.h
HDRINST usr/include/asm-generic/int-l64.h
HDRINST usr/include/asm-generic/bitsperlong.h
HDRINST usr/include/asm-generic/stat.h
HDRINST usr/include/asm-generic/kvm_para.h
HDRINST usr/include/asm-generic/signal-defs.h
HDRINST usr/include/asm-generic/setup.h
HDRINST usr/include/asm-generic/shmbuf.h
HDRINST usr/include/asm-generic/ucontext.h
HDRINST usr/include/asm-generic/statfs.h
HDRINST usr/include/asm-generic/msgbuf.h
HDRINST usr/include/asm-generic/signal.h
HDRINST usr/include/asm-generic/errno.h
HDRINST usr/include/asm-generic/auxvec.h
HDRINST usr/include/rdma/mthca-abi.h
HDRINST usr/include/rdma/ib_user_mad.h
HDRINST usr/include/rdma/rdma_netlink.h
HDRINST usr/include/rdma/ib_user_sa.h
HDRINST usr/include/rdma/siw-abi.h
HDRINST usr/include/rdma/mlx5_user_ioctl_verbs.h
HDRINST usr/include/rdma/hfi/hfi1_user.h
HDRINST usr/include/rdma/hfi/hfi1_ioctl.h
HDRINST usr/include/rdma/rvt-abi.h
HDRINST usr/include/rdma/rdma_user_ioctl.h
HDRINST usr/include/rdma/efa-abi.h
HDRINST usr/include/rdma/ib_user_ioctl_cmds.h
HDRINST usr/include/rdma/mlx5_user_ioctl_cmds.h
HDRINST usr/include/rdma/rdma_user_rxe.h
HDRINST usr/include/rdma/ib_user_verbs.h
HDRINST usr/include/rdma/rdma_user_cm.h
HDRINST usr/include/rdma/vmw_pvrdma-abi.h
HDRINST usr/include/rdma/mlx4-abi.h
HDRINST usr/include/rdma/ib_user_ioctl_verbs.h
HDRINST usr/include/rdma/bnxt_re-abi.h
HDRINST usr/include/rdma/hns-abi.h
HDRINST usr/include/rdma/qedr-abi.h
HDRINST usr/include/rdma/i40iw-abi.h
HDRINST usr/include/rdma/ocrdma-abi.h
HDRINST usr/include/rdma/cxgb4-abi.h
HDRINST usr/include/rdma/rdma_user_ioctl_cmds.h
HDRINST usr/include/rdma/mlx5-abi.h
HDRINST usr/include/misc/ocxl.h
HDRINST usr/include/misc/xilinx_sdfec.h
HDRINST usr/include/misc/habanalabs.h
HDRINST usr/include/misc/fastrpc.h
HDRINST usr/include/misc/cxl.h
HDRINST usr/include/misc/uacce/hisi_qm.h
HDRINST usr/include/misc/uacce/uacce.h
HDRINST usr/include/misc/pvpanic.h
HDRINST usr/include/linux/un.h
HDRINST usr/include/linux/uleds.h
HDRINST usr/include/linux/erspan.h
HDRINST usr/include/linux/if_fc.h
HDRINST usr/include/linux/ivtvfb.h
HDRINST usr/include/linux/edd.h
HDRINST usr/include/linux/shm.h
HDRINST usr/include/linux/xilinx-v4l2-controls.h
HDRINST usr/include/linux/connector.h
HDRINST usr/include/linux/if_team.h
HDRINST usr/include/linux/atmapi.h
HDRINST usr/include/linux/cycx_cfm.h
HDRINST usr/include/linux/if_infiniband.h
HDRINST usr/include/linux/atmmpc.h
HDRINST usr/include/linux/bpfilter.h
HDRINST usr/include/linux/random.h
HDRINST usr/include/linux/watch_queue.h
HDRINST usr/include/linux/pcitest.h
HDRINST usr/include/linux/net_tstamp.h
HDRINST usr/include/linux/msdos_fs.h
HDRINST usr/include/linux/btrfs.h
HDRINST usr/include/linux/meye.h
HDRINST usr/include/linux/bpf.h
HDRINST usr/include/linux/virtio_ids.h
HDRINST usr/include/linux/media.h
HDRINST usr/include/linux/tty_flags.h
HDRINST usr/include/linux/can/error.h
HDRINST usr/include/linux/can/isotp.h
HDRINST usr/include/linux/can/gw.h
HDRINST usr/include/linux/can/raw.h
HDRINST usr/include/linux/can/netlink.h
HDRINST usr/include/linux/can/bcm.h
HDRINST usr/include/linux/can/vxcan.h
HDRINST usr/include/linux/can/j1939.h
HDRINST usr/include/linux/tipc_config.h
HDRINST usr/include/linux/tc_act/tc_vlan.h
HDRINST usr/include/linux/tc_act/tc_gate.h
HDRINST usr/include/linux/tc_act/tc_ct.h
HDRINST usr/include/linux/tc_act/tc_nat.h
HDRINST usr/include/linux/tc_act/tc_skbmod.h
HDRINST usr/include/linux/tc_act/tc_sample.h
HDRINST usr/include/linux/tc_act/tc_ife.h
HDRINST usr/include/linux/tc_act/tc_mpls.h
HDRINST usr/include/linux/tc_act/tc_ctinfo.h
HDRINST usr/include/linux/tc_act/tc_connmark.h
HDRINST usr/include/linux/tc_act/tc_csum.h
HDRINST usr/include/linux/tc_act/tc_defact.h
HDRINST usr/include/linux/tc_act/tc_bpf.h
HDRINST usr/include/linux/tc_act/tc_gact.h
HDRINST usr/include/linux/tc_act/tc_skbedit.h
HDRINST usr/include/linux/tc_act/tc_tunnel_key.h
HDRINST usr/include/linux/tc_act/tc_ipt.h
HDRINST usr/include/linux/tc_act/tc_mirred.h
HDRINST usr/include/linux/tc_act/tc_pedit.h
HDRINST usr/include/linux/prctl.h
HDRINST usr/include/linux/pci_regs.h
HDRINST usr/include/linux/hdlc/ioctl.h
HDRINST usr/include/linux/nfsacl.h
HDRINST usr/include/linux/vbox_err.h
HDRINST usr/include/linux/mptcp.h
HDRINST usr/include/linux/fs.h
HDRINST usr/include/linux/posix_types.h
HDRINST usr/include/linux/tee.h
HDRINST usr/include/linux/ip_vs.h
HDRINST usr/include/linux/vt.h
HDRINST usr/include/linux/thermal.h
HDRINST usr/include/linux/selinux_netlink.h
HDRINST usr/include/linux/cec-funcs.h
HDRINST usr/include/linux/hyperv.h
HDRINST usr/include/linux/hdlcdrv.h
HDRINST usr/include/linux/hdreg.h
HDRINST usr/include/linux/fsi.h
HDRINST usr/include/linux/oom.h
HDRINST usr/include/linux/coda.h
HDRINST usr/include/linux/ipmi_bmc.h
HDRINST usr/include/linux/fd.h
HDRINST usr/include/linux/usbip.h
HDRINST usr/include/linux/pktcdvd.h
HDRINST usr/include/linux/nfs.h
HDRINST usr/include/linux/rfkill.h
HDRINST usr/include/linux/baycom.h
HDRINST usr/include/linux/tcp_metrics.h
HDRINST usr/include/linux/virtio_iommu.h
HDRINST usr/include/linux/mqueue.h
HDRINST usr/include/linux/veth.h
HDRINST usr/include/linux/if_alg.h
HDRINST usr/include/linux/atm_he.h
HDRINST usr/include/linux/atmbr2684.h
HDRINST usr/include/linux/sunrpc/debug.h
HDRINST usr/include/linux/vm_sockets.h
HDRINST usr/include/linux/efs_fs_sb.h
HDRINST usr/include/linux/dns_resolver.h
HDRINST usr/include/linux/tiocl.h
HDRINST usr/include/linux/remoteproc_cdev.h
HDRINST usr/include/linux/filter.h
HDRINST usr/include/linux/if_pppox.h
HDRINST usr/include/linux/if_plip.h
HDRINST usr/include/linux/ife.h
HDRINST usr/include/linux/if_fddi.h
HDRINST usr/include/linux/v4l2-dv-timings.h
HDRINST usr/include/linux/ip6_tunnel.h
HDRINST usr/include/linux/input.h
HDRINST usr/include/linux/netfilter_bridge.h
HDRINST usr/include/linux/msg.h
HDRINST usr/include/linux/times.h
HDRINST usr/include/linux/i2o-dev.h
HDRINST usr/include/linux/atmlec.h
HDRINST usr/include/linux/userfaultfd.h
HDRINST usr/include/linux/ppp-comp.h
HDRINST usr/include/linux/android/binder.h
HDRINST usr/include/linux/android/binderfs.h
HDRINST usr/include/linux/btf.h
HDRINST usr/include/linux/ptrace.h
HDRINST usr/include/linux/posix_acl_xattr.h
HDRINST usr/include/linux/if_ppp.h
HDRINST usr/include/linux/watchdog.h
HDRINST usr/include/linux/ptp_clock.h
HDRINST usr/include/linux/phonet.h
HDRINST usr/include/linux/posix_acl.h
HDRINST usr/include/linux/cciss_ioctl.h
HDRINST usr/include/linux/atm.h
HDRINST usr/include/linux/auto_fs4.h
HDRINST usr/include/linux/dn.h
HDRINST usr/include/linux/affs_hardblocks.h
HDRINST usr/include/linux/vbox_vmmdev_types.h
HDRINST usr/include/linux/switchtec_ioctl.h
HDRINST usr/include/linux/synclink.h
HDRINST usr/include/linux/eventpoll.h
HDRINST usr/include/linux/kernelcapi.h
HDRINST usr/include/linux/pr.h
HDRINST usr/include/linux/atm_nicstar.h
HDRINST usr/include/linux/mmc/ioctl.h
HDRINST usr/include/linux/virtio_console.h
HDRINST usr/include/linux/tty.h
HDRINST usr/include/linux/gameport.h
HDRINST usr/include/linux/caif/caif_socket.h
HDRINST usr/include/linux/caif/if_caif.h
HDRINST usr/include/linux/mrp_bridge.h
HDRINST usr/include/linux/nfs_idmap.h
HDRINST usr/include/linux/dm-ioctl.h
HDRINST usr/include/linux/hsr_netlink.h
HDRINST usr/include/linux/bt-bmc.h
HDRINST usr/include/linux/nfs_mount.h
HDRINST usr/include/linux/irqnr.h
HDRINST usr/include/linux/radeonfb.h
HDRINST usr/include/linux/omap3isp.h
HDRINST usr/include/linux/sysctl.h
HDRINST usr/include/linux/devlink.h
HDRINST usr/include/linux/nexthop.h
HDRINST usr/include/linux/agpgart.h
HDRINST usr/include/linux/string.h
HDRINST usr/include/linux/dcbnl.h
HDRINST usr/include/linux/timerfd.h
HDRINST usr/include/linux/atmsap.h
HDRINST usr/include/linux/ioctl.h
HDRINST usr/include/linux/ipmi_msgdefs.h
HDRINST usr/include/linux/unix_diag.h
HDRINST usr/include/linux/vfio.h
HDRINST usr/include/linux/adb.h
HDRINST usr/include/linux/bpf_common.h
HDRINST usr/include/linux/if_addr.h
HDRINST usr/include/linux/romfs_fs.h
HDRINST usr/include/linux/cn_proc.h
HDRINST usr/include/linux/mman.h
HDRINST usr/include/linux/seg6_genl.h
HDRINST usr/include/linux/if_packet.h
HDRINST usr/include/linux/nilfs2_ondisk.h
HDRINST usr/include/linux/wireguard.h
HDRINST usr/include/linux/gtp.h
HDRINST usr/include/linux/cifs/cifs_mount.h
HDRINST usr/include/linux/sockios.h
HDRINST usr/include/linux/taskstats.h
HDRINST usr/include/linux/in.h
HDRINST usr/include/linux/nsfs.h
HDRINST usr/include/linux/spi/spidev.h
HDRINST usr/include/linux/termios.h
HDRINST usr/include/linux/tipc.h
HDRINST usr/include/linux/hw_breakpoint.h
HDRINST usr/include/linux/raid/md_u.h
HDRINST usr/include/linux/raid/md_p.h
HDRINST usr/include/linux/nilfs2_api.h
HDRINST usr/include/linux/mpls.h
HDRINST usr/include/linux/ip.h
HDRINST usr/include/linux/if_macsec.h
HDRINST usr/include/linux/fib_rules.h
HDRINST usr/include/linux/keyboard.h
HDRINST usr/include/linux/blkzoned.h
HDRINST usr/include/linux/netlink_diag.h
HDRINST usr/include/linux/vboxguest.h
HDRINST usr/include/linux/types.h
HDRINST usr/include/linux/if_ltalk.h
HDRINST usr/include/linux/dlm_plock.h
HDRINST usr/include/linux/inotify.h
HDRINST usr/include/linux/bfs_fs.h
HDRINST usr/include/linux/i2c-dev.h
HDRINST usr/include/linux/falloc.h
HDRINST usr/include/linux/uio.h
HDRINST usr/include/linux/fpga-dfl.h
HDRINST usr/include/linux/acct.h
HDRINST usr/include/linux/errqueue.h
HDRINST usr/include/linux/netfilter_arp.h
HDRINST usr/include/linux/smc_diag.h
HDRINST usr/include/linux/ipsec.h
HDRINST usr/include/linux/nfs4.h
HDRINST usr/include/linux/dlm_device.h
HDRINST usr/include/linux/coresight-stm.h
HDRINST usr/include/linux/xfrm.h
HDRINST usr/include/linux/jffs2.h
HDRINST usr/include/linux/adfs_fs.h
HDRINST usr/include/linux/virtio_scsi.h
HDRINST usr/include/linux/pfkeyv2.h
HDRINST usr/include/linux/dma-heap.h
HDRINST usr/include/linux/if_hippi.h
HDRINST usr/include/linux/uhid.h
HDRINST usr/include/linux/nfsd/nfsfh.h
HDRINST usr/include/linux/nfsd/stats.h
HDRINST usr/include/linux/nfsd/cld.h
HDRINST usr/include/linux/nfsd/export.h
HDRINST usr/include/linux/nfsd/debug.h
HDRINST usr/include/linux/ultrasound.h
HDRINST usr/include/linux/hsi/hsi_char.h
HDRINST usr/include/linux/hsi/cs-protocol.h
HDRINST usr/include/linux/genetlink.h
HDRINST usr/include/linux/pci.h
HDRINST usr/include/linux/auto_fs.h
HDRINST usr/include/linux/hid.h
HDRINST usr/include/linux/dqblk_xfs.h
HDRINST usr/include/linux/vtpm_proxy.h
HDRINST usr/include/linux/btrfs_tree.h
HDRINST usr/include/linux/raw.h
HDRINST usr/include/linux/magic.h
HDRINST usr/include/linux/batman_adv.h
HDRINST usr/include/linux/timex.h
HDRINST usr/include/linux/virtio_balloon.h
HDRINST usr/include/linux/userio.h
HDRINST usr/include/linux/vsockmon.h
HDRINST usr/include/linux/nubus.h
HDRINST usr/include/linux/isdn/capicmd.h
HDRINST usr/include/linux/virtio_9p.h
HDRINST usr/include/linux/fiemap.h
HDRINST usr/include/linux/v4l2-controls.h
HDRINST usr/include/linux/hpet.h
HDRINST usr/include/linux/dvb/dmx.h
HDRINST usr/include/linux/dvb/video.h
HDRINST usr/include/linux/dvb/version.h
HDRINST usr/include/linux/dvb/frontend.h
HDRINST usr/include/linux/dvb/net.h
HDRINST usr/include/linux/dvb/audio.h
HDRINST usr/include/linux/dvb/osd.h
HDRINST usr/include/linux/dvb/ca.h
HDRINST usr/include/linux/sdla.h
HDRINST usr/include/linux/kernel-page-flags.h
HDRINST usr/include/linux/seccomp.h
HDRINST usr/include/linux/psp-sev.h
HDRINST usr/include/linux/icmpv6.h
HDRINST usr/include/linux/io_uring.h
HDRINST usr/include/linux/binfmts.h
HDRINST usr/include/linux/loop.h
HDRINST usr/include/linux/if_pppol2tp.h
HDRINST usr/include/linux/keyctl.h
HDRINST usr/include/linux/in_route.h
HDRINST usr/include/linux/fsmap.h
HDRINST usr/include/linux/openvswitch.h
HDRINST usr/include/linux/mroute.h
HDRINST usr/include/linux/usb/g_printer.h
HDRINST usr/include/linux/usb/midi.h
HDRINST usr/include/linux/usb/raw_gadget.h
HDRINST usr/include/linux/usb/video.h
HDRINST usr/include/linux/usb/cdc.h
HDRINST usr/include/linux/usb/functionfs.h
HDRINST usr/include/linux/usb/charger.h
HDRINST usr/include/linux/usb/g_uvc.h
HDRINST usr/include/linux/usb/ch9.h
HDRINST usr/include/linux/usb/tmc.h
HDRINST usr/include/linux/usb/audio.h
HDRINST usr/include/linux/usb/ch11.h
HDRINST usr/include/linux/usb/gadgetfs.h
HDRINST usr/include/linux/usb/cdc-wdm.h
HDRINST usr/include/linux/sock_diag.h
HDRINST usr/include/linux/unistd.h
HDRINST usr/include/linux/if_x25.h
HDRINST usr/include/linux/sync_file.h
HDRINST usr/include/linux/nvme_ioctl.h
HDRINST usr/include/linux/elf-em.h
HDRINST usr/include/linux/securebits.h
HDRINST usr/include/linux/sched/types.h
HDRINST usr/include/linux/atmioc.h
HDRINST usr/include/linux/net.h
HDRINST usr/include/linux/udmabuf.h
HDRINST usr/include/linux/if_slip.h
HDRINST usr/include/linux/dlmconstants.h
HDRINST usr/include/linux/nfs4_mount.h
HDRINST usr/include/linux/ncsi.h
HDRINST usr/include/linux/memfd.h
HDRINST usr/include/linux/bcm933xx_hcs.h
HDRINST usr/include/linux/kcov.h
HDRINST usr/include/linux/fsverity.h
HDRINST usr/include/linux/ppdev.h
HDRINST usr/include/linux/reboot.h
HDRINST usr/include/linux/serio.h
HDRINST usr/include/linux/atm_idt77105.h
HDRINST usr/include/linux/bpf_perf_event.h
HDRINST usr/include/linux/if_tun.h
HDRINST usr/include/linux/fanotify.h
HDRINST usr/include/linux/module.h
HDRINST usr/include/linux/virtio_fs.h
HDRINST usr/include/linux/route.h
HDRINST usr/include/linux/soundcard.h
HDRINST usr/include/linux/netfilter_ipv4.h
HDRINST usr/include/linux/hiddev.h
HDRINST usr/include/linux/sonypi.h
HDRINST usr/include/linux/psample.h
HDRINST usr/include/linux/in6.h
HDRINST usr/include/linux/mii.h
HDRINST usr/include/linux/stddef.h
HDRINST usr/include/linux/rpl.h
HDRINST usr/include/linux/udf_fs_i.h
HDRINST usr/include/linux/suspend_ioctls.h
HDRINST usr/include/linux/swab.h
HDRINST usr/include/linux/bcache.h
HDRINST usr/include/linux/cgroupstats.h
HDRINST usr/include/linux/cramfs_fs.h
HDRINST usr/include/linux/xdp_diag.h
HDRINST usr/include/linux/kvm.h
HDRINST usr/include/linux/patchkey.h
HDRINST usr/include/linux/if_eql.h
HDRINST usr/include/linux/pps.h
HDRINST usr/include/linux/mount.h
HDRINST usr/include/linux/firewire-cdev.h
HDRINST usr/include/linux/if_arp.h
HDRINST usr/include/linux/scif_ioctl.h
HDRINST usr/include/linux/libc-compat.h
HDRINST usr/include/linux/wimax/i2400m.h
HDRINST usr/include/linux/kexec.h
HDRINST usr/include/linux/vfio_ccw.h
HDRINST usr/include/linux/signalfd.h
HDRINST usr/include/linux/hidraw.h
HDRINST usr/include/linux/if_phonet.h
HDRINST usr/include/linux/hash_info.h
HDRINST usr/include/linux/tls.h
HDRINST usr/include/linux/if_ether.h
HDRINST usr/include/linux/capi.h
HDRINST usr/include/linux/pkt_cls.h
HDRINST usr/include/linux/bpqether.h
HDRINST usr/include/linux/if_link.h
HDRINST usr/include/linux/mempolicy.h
HDRINST usr/include/linux/arcfb.h
HDRINST usr/include/linux/openat2.h
HDRINST usr/include/linux/virtio_ring.h
HDRINST usr/include/linux/llc.h
HDRINST usr/include/linux/kcm.h
HDRINST usr/include/linux/kd.h
HDRINST usr/include/linux/resource.h
HDRINST usr/include/linux/qrtr.h
HDRINST usr/include/linux/zorro_ids.h
HDRINST usr/include/linux/fuse.h
HDRINST usr/include/linux/virtio_mmio.h
HDRINST usr/include/linux/smiapp.h
HDRINST usr/include/linux/fadvise.h
HDRINST usr/include/linux/mpls_iptunnel.h
HDRINST usr/include/linux/virtio_pci.h
HDRINST usr/include/linux/wireless.h
HDRINST usr/include/linux/scc.h
HDRINST usr/include/linux/qnx4_fs.h
HDRINST usr/include/linux/lirc.h
HDRINST usr/include/linux/param.h
HDRINST usr/include/linux/iommu.h
HDRINST usr/include/linux/idxd.h
HDRINST usr/include/linux/seg6.h
HDRINST usr/include/linux/v4l2-mediabus.h
HDRINST usr/include/linux/virtio_config.h
HDRINST usr/include/linux/wait.h
HDRINST usr/include/linux/dm-log-userspace.h
HDRINST usr/include/linux/sched.h
HDRINST usr/include/linux/input-event-codes.h
HDRINST usr/include/linux/n_r3964.h
HDRINST usr/include/linux/dlm.h
HDRINST usr/include/linux/personality.h
HDRINST usr/include/linux/atmppp.h
HDRINST usr/include/linux/iso_fs.h
HDRINST usr/include/linux/atmclip.h
HDRINST usr/include/linux/rseq.h
HDRINST usr/include/linux/time_types.h
HDRINST usr/include/linux/igmp.h
HDRINST usr/include/linux/vmcore.h
HDRINST usr/include/linux/poll.h
HDRINST usr/include/linux/tipc_netlink.h
HDRINST usr/include/linux/i2c.h
HDRINST usr/include/linux/mmtimer.h
HDRINST usr/include/linux/virtio_rng.h
HDRINST usr/include/linux/fb.h
HDRINST usr/include/linux/cryptouser.h
HDRINST usr/include/linux/ipx.h
HDRINST usr/include/linux/atmsvc.h
HDRINST usr/include/linux/ax25.h
HDRINST usr/include/linux/sound.h
HDRINST usr/include/linux/genwqe/genwqe_card.h
HDRINST usr/include/linux/rxrpc.h
HDRINST usr/include/linux/rio_cm_cdev.h
HDRINST usr/include/linux/fou.h
HDRINST usr/include/linux/ethtool.h
HDRINST usr/include/linux/netdevice.h
HDRINST usr/include/linux/socket.h
HDRINST usr/include/linux/fcntl.h
HDRINST usr/include/linux/netfilter.h
HDRINST usr/include/linux/seg6_hmac.h
HDRINST usr/include/linux/virtio_mem.h
HDRINST usr/include/linux/nfs2.h
HDRINST usr/include/linux/seg6_iptunnel.h
HDRINST usr/include/linux/hdlc.h
HDRINST usr/include/linux/fsl_hypervisor.h
HDRINST usr/include/linux/nl80211.h
HDRINST usr/include/linux/serial_reg.h
HDRINST usr/include/linux/v4l2-subdev.h
HDRINST usr/include/linux/sysinfo.h
HDRINST usr/include/linux/netfilter_decnet.h
HDRINST usr/include/linux/sctp.h
HDRINST usr/include/linux/netlink.h
HDRINST usr/include/linux/phantom.h
HDRINST usr/include/linux/nitro_enclaves.h
HDRINST usr/include/linux/aspeed-p2a-ctrl.h
HDRINST usr/include/linux/can.h
HDRINST usr/include/linux/seg6_local.h
HDRINST usr/include/linux/packet_diag.h
HDRINST usr/include/linux/joystick.h
HDRINST usr/include/linux/mroute6.h
HDRINST usr/include/linux/firewire-constants.h
HDRINST usr/include/linux/utime.h
HDRINST usr/include/linux/mtio.h
HDRINST usr/include/linux/ndctl.h
HDRINST usr/include/linux/utsname.h
HDRINST usr/include/linux/tipc_sockets_diag.h
HDRINST usr/include/linux/ppp-ioctl.h
HDRINST usr/include/linux/isst_if.h
HDRINST usr/include/linux/pidfd.h
HDRINST usr/include/linux/net_namespace.h
HDRINST usr/include/linux/pmu.h
HDRINST usr/include/linux/lightnvm.h
HDRINST usr/include/linux/nfc.h
HDRINST usr/include/linux/rio_mport_cdev.h
HDRINST usr/include/linux/nbd.h
HDRINST usr/include/linux/apm_bios.h
HDRINST usr/include/linux/serial.h
HDRINST usr/include/linux/if_cablemodem.h
HDRINST usr/include/linux/futex.h
HDRINST usr/include/linux/netfilter_ipv4/ipt_ah.h
HDRINST usr/include/linux/netfilter_ipv4/ipt_LOG.h
HDRINST usr/include/linux/netfilter_ipv4/ipt_ECN.h
HDRINST usr/include/linux/netfilter_ipv4/ip_tables.h
HDRINST usr/include/linux/netfilter_ipv4/ipt_ecn.h
HDRINST usr/include/linux/netfilter_ipv4/ipt_CLUSTERIP.h
HDRINST usr/include/linux/netfilter_ipv4/ipt_ttl.h
HDRINST usr/include/linux/netfilter_ipv4/ipt_TTL.h
HDRINST usr/include/linux/netfilter_ipv4/ipt_REJECT.h
HDRINST usr/include/linux/ipv6.h
HDRINST usr/include/linux/coff.h
HDRINST usr/include/linux/max2175.h
HDRINST usr/include/linux/membarrier.h
HDRINST usr/include/linux/uvcvideo.h
HDRINST usr/include/linux/const.h
HDRINST usr/include/linux/vhost_types.h
HDRINST usr/include/linux/atm_zatm.h
HDRINST usr/include/linux/atmarp.h
HDRINST usr/include/linux/rose.h
HDRINST usr/include/linux/serial_core.h
HDRINST usr/include/linux/perf_event.h
HDRINST usr/include/linux/vfio_zdev.h
HDRINST usr/include/linux/netrom.h
HDRINST usr/include/linux/netfilter_arp/arp_tables.h
HDRINST usr/include/linux/netfilter_arp/arpt_mangle.h
HDRINST usr/include/linux/bsg.h
HDRINST usr/include/linux/kdev_t.h
HDRINST usr/include/linux/time.h
HDRINST usr/include/linux/um_timetravel.h
HDRINST usr/include/linux/qnxtypes.h
HDRINST usr/include/linux/ipc.h
HDRINST usr/include/linux/vhost.h
HDRINST usr/include/linux/audit.h
HDRINST usr/include/linux/ipv6_route.h
HDRINST usr/include/linux/cuda.h
HDRINST usr/include/linux/dccp.h
HDRINST usr/include/linux/sonet.h
HDRINST usr/include/linux/ila.h
HDRINST usr/include/linux/rpmsg.h
HDRINST usr/include/linux/vm_sockets_diag.h
HDRINST usr/include/linux/cec.h
HDRINST usr/include/linux/lp.h
HDRINST usr/include/linux/blktrace_api.h
HDRINST usr/include/linux/blkpg.h
HDRINST usr/include/linux/kfd_ioctl.h
HDRINST usr/include/linux/gen_stats.h
HDRINST usr/include/linux/virtio_pmem.h
HDRINST usr/include/linux/am437x-vpfe.h
HDRINST usr/include/linux/ethtool_netlink.h
HDRINST usr/include/linux/uuid.h
HDRINST usr/include/linux/if_xdp.h
HDRINST usr/include/linux/cdrom.h
HDRINST usr/include/linux/if_bridge.h
HDRINST usr/include/linux/sem.h
HDRINST usr/include/linux/videodev2.h
HDRINST usr/include/linux/psci.h
HDRINST usr/include/linux/v4l2-common.h
HDRINST usr/include/linux/atmdev.h
HDRINST usr/include/linux/mei.h
HDRINST usr/include/linux/batadv_packet.h
HDRINST usr/include/linux/auto_dev-ioctl.h
HDRINST usr/include/linux/tc_ematch/tc_em_text.h
HDRINST usr/include/linux/tc_ematch/tc_em_meta.h
HDRINST usr/include/linux/tc_ematch/tc_em_nbyte.h
HDRINST usr/include/linux/tc_ematch/tc_em_cmp.h
HDRINST usr/include/linux/tc_ematch/tc_em_ipt.h
HDRINST usr/include/linux/stat.h
HDRINST usr/include/linux/kvm_para.h
HDRINST usr/include/linux/if.h
HDRINST usr/include/linux/limits.h
HDRINST usr/include/linux/zorro.h
HDRINST usr/include/linux/i8k.h
HDRINST usr/include/linux/virtio_net.h
HDRINST usr/include/linux/nvram.h
HDRINST usr/include/linux/if_arcnet.h
HDRINST usr/include/linux/close_range.h
HDRINST usr/include/linux/if_tunnel.h
HDRINST usr/include/linux/cm4000_cs.h
HDRINST usr/include/linux/major.h
HDRINST usr/include/linux/netfilter/xt_mark.h
HDRINST usr/include/linux/netfilter/xt_connbytes.h
HDRINST usr/include/linux/netfilter/xt_owner.h
HDRINST usr/include/linux/netfilter/nf_conntrack_tuple_common.h
HDRINST usr/include/linux/netfilter/xt_CONNSECMARK.h
HDRINST usr/include/linux/netfilter/xt_esp.h
HDRINST usr/include/linux/netfilter/xt_helper.h
HDRINST usr/include/linux/netfilter/xt_hashlimit.h
HDRINST usr/include/linux/netfilter/xt_length.h
HDRINST usr/include/linux/netfilter/xt_socket.h
HDRINST usr/include/linux/netfilter/xt_cgroup.h
HDRINST usr/include/linux/netfilter/xt_connmark.h
HDRINST usr/include/linux/netfilter/xt_CONNMARK.h
HDRINST usr/include/linux/netfilter/xt_statistic.h
HDRINST usr/include/linux/netfilter/xt_RATEEST.h
HDRINST usr/include/linux/netfilter/nf_nat.h
HDRINST usr/include/linux/netfilter/nfnetlink_queue.h
HDRINST usr/include/linux/netfilter/xt_DSCP.h
HDRINST usr/include/linux/netfilter/xt_TEE.h
HDRINST usr/include/linux/netfilter/xt_HMARK.h
HDRINST usr/include/linux/netfilter/xt_iprange.h
HDRINST usr/include/linux/netfilter/nfnetlink_log.h
HDRINST usr/include/linux/netfilter/nfnetlink.h
HDRINST usr/include/linux/netfilter/xt_connlimit.h
HDRINST usr/include/linux/netfilter/xt_tcpmss.h
HDRINST usr/include/linux/netfilter/xt_pkttype.h
HDRINST usr/include/linux/netfilter/xt_TCPMSS.h
HDRINST usr/include/linux/netfilter/xt_NFLOG.h
HDRINST usr/include/linux/netfilter/xt_sctp.h
HDRINST usr/include/linux/netfilter/xt_l2tp.h
HDRINST usr/include/linux/netfilter/xt_cluster.h
HDRINST usr/include/linux/netfilter/nf_conntrack_tcp.h
HDRINST usr/include/linux/netfilter/nfnetlink_cttimeout.h
HDRINST usr/include/linux/netfilter/nf_tables.h
HDRINST usr/include/linux/netfilter/xt_MARK.h
HDRINST usr/include/linux/netfilter/xt_multiport.h
HDRINST usr/include/linux/netfilter/xt_time.h
HDRINST usr/include/linux/netfilter/xt_TCPOPTSTRIP.h
HDRINST usr/include/linux/netfilter/xt_CHECKSUM.h
HDRINST usr/include/linux/netfilter/xt_SECMARK.h
HDRINST usr/include/linux/netfilter/xt_AUDIT.h
HDRINST usr/include/linux/netfilter/xt_NFQUEUE.h
HDRINST usr/include/linux/netfilter/xt_mac.h
HDRINST usr/include/linux/netfilter/xt_CLASSIFY.h
HDRINST usr/include/linux/netfilter/x_tables.h
HDRINST usr/include/linux/netfilter/xt_rpfilter.h
HDRINST usr/include/linux/netfilter/nf_conntrack_sctp.h
HDRINST usr/include/linux/netfilter/xt_set.h
HDRINST usr/include/linux/netfilter/xt_comment.h
HDRINST usr/include/linux/netfilter/xt_tcpudp.h
HDRINST usr/include/linux/netfilter/ipset/ip_set_list.h
HDRINST usr/include/linux/netfilter/ipset/ip_set_hash.h
HDRINST usr/include/linux/netfilter/ipset/ip_set_bitmap.h
HDRINST usr/include/linux/netfilter/ipset/ip_set.h
HDRINST usr/include/linux/netfilter/xt_conntrack.h
HDRINST usr/include/linux/netfilter/nf_log.h
HDRINST usr/include/linux/netfilter/xt_rateest.h
HDRINST usr/include/linux/netfilter/xt_bpf.h
HDRINST usr/include/linux/netfilter/nfnetlink_compat.h
HDRINST usr/include/linux/netfilter/nfnetlink_cthelper.h
HDRINST usr/include/linux/netfilter/xt_devgroup.h
HDRINST usr/include/linux/netfilter/xt_nfacct.h
HDRINST usr/include/linux/netfilter/nf_tables_compat.h
HDRINST usr/include/linux/netfilter/xt_IDLETIMER.h
HDRINST usr/include/linux/netfilter/xt_ipvs.h
HDRINST usr/include/linux/netfilter/nf_synproxy.h
HDRINST usr/include/linux/netfilter/xt_state.h
HDRINST usr/include/linux/netfilter/xt_realm.h
HDRINST usr/include/linux/netfilter/xt_ipcomp.h
HDRINST usr/include/linux/netfilter/nfnetlink_conntrack.h
HDRINST usr/include/linux/netfilter/xt_osf.h
HDRINST usr/include/linux/netfilter/xt_string.h
HDRINST usr/include/linux/netfilter/xt_physdev.h
HDRINST usr/include/linux/netfilter/xt_recent.h
HDRINST usr/include/linux/netfilter/xt_u32.h
HDRINST usr/include/linux/netfilter/xt_quota.h
HDRINST usr/include/linux/netfilter/nfnetlink_acct.h
HDRINST usr/include/linux/netfilter/xt_LOG.h
HDRINST usr/include/linux/netfilter/xt_addrtype.h
HDRINST usr/include/linux/netfilter/nf_conntrack_ftp.h
HDRINST usr/include/linux/netfilter/xt_LED.h
HDRINST usr/include/linux/netfilter/xt_SYNPROXY.h
HDRINST usr/include/linux/netfilter/xt_dscp.h
HDRINST usr/include/linux/netfilter/xt_dccp.h
HDRINST usr/include/linux/netfilter/nf_conntrack_common.h
HDRINST usr/include/linux/netfilter/xt_limit.h
HDRINST usr/include/linux/netfilter/xt_TPROXY.h
HDRINST usr/include/linux/netfilter/xt_ecn.h
HDRINST usr/include/linux/netfilter/xt_connlabel.h
HDRINST usr/include/linux/netfilter/xt_policy.h
HDRINST usr/include/linux/netfilter/nfnetlink_osf.h
HDRINST usr/include/linux/netfilter/xt_cpu.h
HDRINST usr/include/linux/netfilter/xt_CT.h
HDRINST usr/include/linux/neighbour.h
HDRINST usr/include/linux/wimax.h
HDRINST usr/include/linux/virtio_input.h
HDRINST usr/include/linux/rpl_iptunnel.h
HDRINST usr/include/linux/atm_eni.h
HDRINST usr/include/linux/media-bus-format.h
HDRINST usr/include/linux/ppp_defs.h
HDRINST usr/include/linux/pkt_sched.h
HDRINST usr/include/linux/inet_diag.h
HDRINST usr/include/linux/wmi.h
HDRINST usr/include/linux/chio.h
HDRINST usr/include/linux/target_core_user.h
HDRINST usr/include/linux/gpio.h
HDRINST usr/include/linux/mdio.h
HDRINST usr/include/linux/byteorder/little_endian.h
HDRINST usr/include/linux/byteorder/big_endian.h
HDRINST usr/include/linux/nfs3.h
HDRINST usr/include/linux/a.out.h
HDRINST usr/include/linux/l2tp.h
HDRINST usr/include/linux/rds.h
HDRINST usr/include/linux/rtc.h
HDRINST usr/include/linux/omapfb.h
HDRINST usr/include/linux/netfilter_ipv6.h
HDRINST usr/include/linux/icmp.h
HDRINST usr/include/linux/cciss_defs.h
HDRINST usr/include/linux/reiserfs_xattr.h
HDRINST usr/include/linux/x25.h
HDRINST usr/include/linux/reiserfs_fs.h
HDRINST usr/include/linux/netfilter_ipv6/ip6t_LOG.h
HDRINST usr/include/linux/netfilter_ipv6/ip6t_opts.h
HDRINST usr/include/linux/netfilter_ipv6/ip6t_NPT.h
HDRINST usr/include/linux/netfilter_ipv6/ip6t_HL.h
HDRINST usr/include/linux/netfilter_ipv6/ip6t_hl.h
HDRINST usr/include/linux/netfilter_ipv6/ip6_tables.h
HDRINST usr/include/linux/netfilter_ipv6/ip6t_ah.h
HDRINST usr/include/linux/netfilter_ipv6/ip6t_mh.h
HDRINST usr/include/linux/netfilter_ipv6/ip6t_frag.h
HDRINST usr/include/linux/netfilter_ipv6/ip6t_srh.h
HDRINST usr/include/linux/netfilter_ipv6/ip6t_REJECT.h
HDRINST usr/include/linux/netfilter_ipv6/ip6t_ipv6header.h
HDRINST usr/include/linux/netfilter_ipv6/ip6t_rt.h
HDRINST usr/include/linux/nbd-netlink.h
HDRINST usr/include/linux/virtio_crypto.h
HDRINST usr/include/linux/quota.h
HDRINST usr/include/linux/virtio_vsock.h
HDRINST usr/include/linux/net_dropmon.h
HDRINST usr/include/linux/kcmp.h
HDRINST usr/include/linux/kernel.h
HDRINST usr/include/linux/screen_info.h
HDRINST usr/include/linux/if_frad.h
HDRINST usr/include/linux/ivtv.h
HDRINST usr/include/linux/if_vlan.h
HDRINST usr/include/linux/ipmi.h
HDRINST usr/include/linux/rtnetlink.h
HDRINST usr/include/linux/xattr.h
HDRINST usr/include/linux/if_bonding.h
HDRINST usr/include/linux/gfs2_ondisk.h
HDRINST usr/include/linux/aspeed-lpc-ctrl.h
HDRINST usr/include/linux/fdreg.h
HDRINST usr/include/linux/nfs_fs.h
HDRINST usr/include/linux/aio_abi.h
HDRINST usr/include/linux/map_to_7segment.h
HDRINST usr/include/linux/udp.h
HDRINST usr/include/linux/netfilter_bridge/ebt_pkttype.h
HDRINST usr/include/linux/netfilter_bridge/ebt_802_3.h
HDRINST usr/include/linux/netfilter_bridge/ebt_nflog.h
HDRINST usr/include/linux/netfilter_bridge/ebt_vlan.h
HDRINST usr/include/linux/netfilter_bridge/ebt_nat.h
HDRINST usr/include/linux/netfilter_bridge/ebt_among.h
HDRINST usr/include/linux/netfilter_bridge/ebt_log.h
HDRINST usr/include/linux/netfilter_bridge/ebt_arpreply.h
HDRINST usr/include/linux/netfilter_bridge/ebtables.h
HDRINST usr/include/linux/netfilter_bridge/ebt_stp.h
HDRINST usr/include/linux/netfilter_bridge/ebt_ip.h
HDRINST usr/include/linux/netfilter_bridge/ebt_ip6.h
HDRINST usr/include/linux/netfilter_bridge/ebt_arp.h
HDRINST usr/include/linux/netfilter_bridge/ebt_limit.h
HDRINST usr/include/linux/netfilter_bridge/ebt_redirect.h
HDRINST usr/include/linux/netfilter_bridge/ebt_mark_t.h
HDRINST usr/include/linux/netfilter_bridge/ebt_mark_m.h
HDRINST usr/include/linux/dlm_netlink.h
HDRINST usr/include/linux/atalk.h
HDRINST usr/include/linux/qemu_fw_cfg.h
HDRINST usr/include/linux/uinput.h
HDRINST usr/include/linux/cyclades.h
HDRINST usr/include/linux/smc.h
HDRINST usr/include/linux/netconf.h
HDRINST usr/include/linux/capability.h
HDRINST usr/include/linux/usbdevice_fs.h
HDRINST usr/include/linux/signal.h
HDRINST usr/include/linux/matroxfb.h
HDRINST usr/include/linux/parport.h
HDRINST usr/include/linux/tcp.h
HDRINST usr/include/linux/snmp.h
HDRINST usr/include/linux/atm_tcp.h
HDRINST usr/include/linux/fscrypt.h
HDRINST usr/include/linux/elf.h
HDRINST usr/include/linux/errno.h
HDRINST usr/include/linux/pg.h
HDRINST usr/include/linux/gsmmux.h
HDRINST usr/include/linux/arm_sdei.h
HDRINST usr/include/linux/sed-opal.h
HDRINST usr/include/linux/virtio_blk.h
HDRINST usr/include/linux/virtio_gpu.h
HDRINST usr/include/linux/minix_fs.h
HDRINST usr/include/linux/lwtunnel.h
HDRINST usr/include/linux/elf-fdpic.h
HDRINST usr/include/linux/iio/events.h
HDRINST usr/include/linux/iio/types.h
HDRINST usr/include/linux/stm.h
HDRINST usr/include/linux/if_addrlabel.h
HDRINST usr/include/linux/virtio_types.h
HDRINST usr/include/linux/toshiba.h
HDRINST usr/include/linux/auxvec.h
HDRINST usr/include/linux/dma-buf.h
HDRINST usr/include/sound/hdsp.h
HDRINST usr/include/sound/asound.h
HDRINST usr/include/sound/sfnt_info.h
HDRINST usr/include/sound/snd_sst_tokens.h
HDRINST usr/include/sound/sb16_csp.h
HDRINST usr/include/sound/compress_offload.h
HDRINST usr/include/sound/sof/fw.h
HDRINST usr/include/sound/sof/header.h
HDRINST usr/include/sound/sof/abi.h
HDRINST usr/include/sound/sof/tokens.h
HDRINST usr/include/sound/asequencer.h
HDRINST usr/include/sound/asoc.h
HDRINST usr/include/sound/compress_params.h
HDRINST usr/include/sound/skl-tplg-interface.h
HDRINST usr/include/sound/tlv.h
HDRINST usr/include/sound/hdspm.h
HDRINST usr/include/sound/emu10k1.h
HDRINST usr/include/sound/asound_fm.h
HDRINST usr/include/sound/firewire.h
HDRINST usr/include/sound/usb_stream.h
HDRINST usr/include/scsi/fc/fc_ns.h
HDRINST usr/include/scsi/fc/fc_fs.h
HDRINST usr/include/scsi/fc/fc_gs.h
HDRINST usr/include/scsi/fc/fc_els.h
HDRINST usr/include/scsi/scsi_bsg_ufs.h
HDRINST usr/include/scsi/scsi_bsg_fc.h
HDRINST usr/include/scsi/scsi_netlink_fc.h
HDRINST usr/include/scsi/scsi_netlink.h
HDRINST usr/include/scsi/cxlflash_ioctl.h
HDRINST usr/include/linux/version.h
HDRINST usr/include/asm/kvm_perf.h
HDRINST usr/include/asm/prctl.h
HDRINST usr/include/asm/ptrace-abi.h
HDRINST usr/include/asm/posix_types.h
HDRINST usr/include/asm/ldt.h
HDRINST usr/include/asm/ptrace.h
HDRINST usr/include/asm/posix_types_64.h
HDRINST usr/include/asm/e820.h
HDRINST usr/include/asm/svm.h
HDRINST usr/include/asm/mman.h
HDRINST usr/include/asm/hw_breakpoint.h
HDRINST usr/include/asm/sigcontext32.h
HDRINST usr/include/asm/posix_types_x32.h
HDRINST usr/include/asm/posix_types_32.h
HDRINST usr/include/asm/hwcap2.h
HDRINST usr/include/asm/vm86.h
HDRINST usr/include/asm/unistd.h
HDRINST usr/include/asm/siginfo.h
HDRINST usr/include/asm/boot.h
HDRINST usr/include/asm/swab.h
HDRINST usr/include/asm/kvm.h
HDRINST usr/include/asm/mce.h
HDRINST usr/include/asm/vsyscall.h
HDRINST usr/include/asm/sembuf.h
HDRINST usr/include/asm/byteorder.h
HDRINST usr/include/asm/msr.h
HDRINST usr/include/asm/bitsperlong.h
HDRINST usr/include/asm/mtrr.h
HDRINST usr/include/asm/debugreg.h
HDRINST usr/include/asm/bootparam.h
HDRINST usr/include/asm/stat.h
HDRINST usr/include/asm/kvm_para.h
HDRINST usr/include/asm/ist.h
HDRINST usr/include/asm/setup.h
HDRINST usr/include/asm/shmbuf.h
HDRINST usr/include/asm/ucontext.h
HDRINST usr/include/asm/statfs.h
HDRINST usr/include/asm/vmx.h
HDRINST usr/include/asm/msgbuf.h
HDRINST usr/include/asm/a.out.h
HDRINST usr/include/asm/perf_regs.h
HDRINST usr/include/asm/processor-flags.h
HDRINST usr/include/asm/sigcontext.h
HDRINST usr/include/asm/signal.h
HDRINST usr/include/asm/auxvec.h
HDRINST usr/include/asm/unistd_x32.h
HDRINST usr/include/asm/unistd_64.h
HDRINST usr/include/asm/unistd_32.h
HDRINST usr/include/asm/types.h
HDRINST usr/include/asm/termios.h
HDRINST usr/include/asm/termbits.h
HDRINST usr/include/asm/sockios.h
HDRINST usr/include/asm/socket.h
HDRINST usr/include/asm/resource.h
HDRINST usr/include/asm/poll.h
HDRINST usr/include/asm/param.h
HDRINST usr/include/asm/ipcbuf.h
HDRINST usr/include/asm/ioctls.h
HDRINST usr/include/asm/ioctl.h
HDRINST usr/include/asm/fcntl.h
HDRINST usr/include/asm/errno.h
HDRINST usr/include/asm/bpf_perf_event.h
INSTALL ./usr/include
make[1]: Leaving directory '/usr/src/perf_selftests-x86_64-rhel-7.6-kselftests-4d9c16a4949b8b027efc8d4214a4c8b11379cb28'
make[1]: Entering directory '/usr/src/perf_selftests-x86_64-rhel-7.6-kselftests-4d9c16a4949b8b027efc8d4214a4c8b11379cb28/tools/testing/selftests/dmabuf-heaps'
gcc -static -O3 -Wl,-no-as-needed -Wall -I../../../../usr/include dmabuf-heap.c -o /usr/src/perf_selftests-x86_64-rhel-7.6-kselftests-4d9c16a4949b8b027efc8d4214a4c8b11379cb28/tools/testing/selftests/dmabuf-heaps/dmabuf-heap
make[1]: Leaving directory '/usr/src/perf_selftests-x86_64-rhel-7.6-kselftests-4d9c16a4949b8b027efc8d4214a4c8b11379cb28/tools/testing/selftests/dmabuf-heaps'
2020-11-20 16:59:14 make run_tests -C dmabuf-heaps
make: Entering directory '/usr/src/perf_selftests-x86_64-rhel-7.6-kselftests-4d9c16a4949b8b027efc8d4214a4c8b11379cb28/tools/testing/selftests/dmabuf-heaps'
TAP version 13
1..1
# selftests: dmabuf-heaps: dmabuf-heap
# No /dev/dma_heap directory?
not ok 1 selftests: dmabuf-heaps: dmabuf-heap # exit=255
make: Leaving directory '/usr/src/perf_selftests-x86_64-rhel-7.6-kselftests-4d9c16a4949b8b027efc8d4214a4c8b11379cb28/tools/testing/selftests/dmabuf-heaps'
LKP SKIP efivarfs | no /sys/firmware/efi
2020-11-20 16:59:14 touch ./exec/pipe
2020-11-20 16:59:15 make run_tests -C exec
make: Entering directory '/usr/src/perf_selftests-x86_64-rhel-7.6-kselftests-4d9c16a4949b8b027efc8d4214a4c8b11379cb28/tools/testing/selftests/exec'
gcc -Wall -Wno-nonnull -D_GNU_SOURCE execveat.c -o /usr/src/perf_selftests-x86_64-rhel-7.6-kselftests-4d9c16a4949b8b027efc8d4214a4c8b11379cb28/tools/testing/selftests/exec/execveat
gcc -Wall -Wno-nonnull -D_GNU_SOURCE -Wl,-z,max-page-size=0x1000 -pie load_address.c -o /usr/src/perf_selftests-x86_64-rhel-7.6-kselftests-4d9c16a4949b8b027efc8d4214a4c8b11379cb28/tools/testing/selftests/exec/load_address_4096
gcc -Wall -Wno-nonnull -D_GNU_SOURCE -Wl,-z,max-page-size=0x200000 -pie load_address.c -o /usr/src/perf_selftests-x86_64-rhel-7.6-kselftests-4d9c16a4949b8b027efc8d4214a4c8b11379cb28/tools/testing/selftests/exec/load_address_2097152
gcc -Wall -Wno-nonnull -D_GNU_SOURCE -Wl,-z,max-page-size=0x1000000 -pie load_address.c -o /usr/src/perf_selftests-x86_64-rhel-7.6-kselftests-4d9c16a4949b8b027efc8d4214a4c8b11379cb28/tools/testing/selftests/exec/load_address_16777216
gcc -Wall -Wno-nonnull -D_GNU_SOURCE recursion-depth.c -o /usr/src/perf_selftests-x86_64-rhel-7.6-kselftests-4d9c16a4949b8b027efc8d4214a4c8b11379cb28/tools/testing/selftests/exec/recursion-depth
cd /usr/src/perf_selftests-x86_64-rhel-7.6-kselftests-4d9c16a4949b8b027efc8d4214a4c8b11379cb28/tools/testing/selftests/exec && ln -s -f execveat execveat.symlink
cp /usr/src/perf_selftests-x86_64-rhel-7.6-kselftests-4d9c16a4949b8b027efc8d4214a4c8b11379cb28/tools/testing/selftests/exec/execveat /usr/src/perf_selftests-x86_64-rhel-7.6-kselftests-4d9c16a4949b8b027efc8d4214a4c8b11379cb28/tools/testing/selftests/exec/execveat.denatured
chmod -x /usr/src/perf_selftests-x86_64-rhel-7.6-kselftests-4d9c16a4949b8b027efc8d4214a4c8b11379cb28/tools/testing/selftests/exec/execveat.denatured
echo '#!/bin/sh' > /usr/src/perf_selftests-x86_64-rhel-7.6-kselftests-4d9c16a4949b8b027efc8d4214a4c8b11379cb28/tools/testing/selftests/exec/script
echo 'exit $*' >> /usr/src/perf_selftests-x86_64-rhel-7.6-kselftests-4d9c16a4949b8b027efc8d4214a4c8b11379cb28/tools/testing/selftests/exec/script
chmod +x /usr/src/perf_selftests-x86_64-rhel-7.6-kselftests-4d9c16a4949b8b027efc8d4214a4c8b11379cb28/tools/testing/selftests/exec/script
mkdir -p /usr/src/perf_selftests-x86_64-rhel-7.6-kselftests-4d9c16a4949b8b027efc8d4214a4c8b11379cb28/tools/testing/selftests/exec/subdir
TAP version 13
1..7
# selftests: exec: execveat
# /bin/sh: 0: Can't open /dev/fd/8/usr/src/perf_selftests-x86_64-rhel-7.6-kselftests-4d9c16a4949b8b027efc8d4214a4c8b11379cb28/tools/testing/selftests/exec/xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx/xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx/xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx/xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx/xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx/xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx/xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx/xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx/xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx/xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx/xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx/xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx/xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx/xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx/xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx/xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx/xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx/xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx/xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx/yyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyy
# Check success of execveat(5, '../execveat', 0)... [OK]
# Check success of execveat(7, 'execveat', 0)... [OK]
# Check success of execveat(9, 'execveat', 0)... [OK]
# Check success of execveat(-100, '/usr/src/perf_selfte...ftests/exec/execveat', 0)... [OK]
# Check success of execveat(99, '/usr/src/perf_selfte...ftests/exec/execveat', 0)... [OK]
# Check success of execveat(11, '', 4096)... [OK]
# Check success of execveat(20, '', 4096)... [OK]
# Check success of execveat(12, '', 4096)... [OK]
# Check success of execveat(17, '', 4096)... [OK]
# Check success of execveat(17, '', 4096)... [OK]
# Check success of execveat(18, '', 4096)... [OK]
# Check failure of execveat(11, '', 0) with ENOENT... [OK]
# Check failure of execveat(11, '(null)', 4096) with EFAULT... [OK]
# Check success of execveat(7, 'execveat.symlink', 0)... [OK]
# Check success of execveat(9, 'execveat.symlink', 0)... [OK]
# Check success of execveat(-100, '/usr/src/perf_selfte...xec/execveat.symlink', 0)... [OK]
# Check success of execveat(13, '', 4096)... [OK]
# Check success of execveat(13, '', 4352)... [OK]
# Check failure of execveat(7, 'execveat.symlink', 256) with ELOOP... [OK]
# Check failure of execveat(9, 'execveat.symlink', 256) with ELOOP... [OK]
# Check failure of execveat(-100, '/usr/src/perf_selftests-x86_64-rhel-7.6-kselftests-4d9c16a4949b8b027efc8d4214a4c8b11379cb28/tools/testing/selftests/exec/execveat.symlink', 256) with ELOOP... [OK]
# Check failure of execveat(7, 'pipe', 0) with EACCES... [OK]
# Check success of execveat(5, '../script', 0)... [OK]
# Check success of execveat(7, 'script', 0)... [OK]
# Check success of execveat(9, 'script', 0)... [OK]
# Check success of execveat(-100, '/usr/src/perf_selfte...elftests/exec/script', 0)... [OK]
# Check success of execveat(16, '', 4096)... [OK]
# Check success of execveat(16, '', 4352)... [OK]
# Check failure of execveat(21, '', 4096) with ENOENT... [OK]
# Check failure of execveat(10, 'script', 0) with ENOENT... [OK]
# Check success of execveat(19, '', 4096)... [OK]
# Check success of execveat(19, '', 4096)... [OK]
# Check success of execveat(6, '../script', 0)... [OK]
# Check success of execveat(6, 'script', 0)... [OK]
# Check success of execveat(6, '../script', 0)... [OK]
# Check failure of execveat(6, 'script', 0) with ENOENT... [OK]
# Check failure of execveat(7, 'execveat', 65535) with EINVAL... [OK]
# Check failure of execveat(7, 'no-such-file', 0) with ENOENT... [OK]
# Check failure of execveat(9, 'no-such-file', 0) with ENOENT... [OK]
# Check failure of execveat(-100, 'no-such-file', 0) with ENOENT... [OK]
# Check failure of execveat(7, '', 4096) with EACCES... [OK]
# Check failure of execveat(7, 'Makefile', 0) with EACCES... [OK]
# Check failure of execveat(14, '', 4096) with EACCES... [OK]
# Check failure of execveat(15, '', 4096) with EACCES... [OK]
# Check failure of execveat(99, '', 4096) with EBADF... [OK]
# Check failure of execveat(99, 'execveat', 0) with EBADF... [OK]
# Check failure of execveat(11, 'execveat', 0) with ENOTDIR... [OK]
# Invoke copy of 'execveat' via filename of length 4094:
# Check success of execveat(22, '', 4096)... [OK]
# Check success of execveat(8, 'usr/src/perf_selftes...yyyyyyyyyyyyyyyyyyyy', 0)... [OK]
# Invoke copy of 'script' via filename of length 4094:
# Check success of execveat(23, '', 4096)... [OK]
# Check success of execveat(8, 'usr/src/perf_selftes...yyyyyyyyyyyyyyyyyyyy', 0)... [OK]
ok 1 selftests: exec: execveat
# selftests: exec: load_address_4096
# PASS
ok 2 selftests: exec: load_address_4096
# selftests: exec: load_address_2097152
# PASS
ok 3 selftests: exec: load_address_2097152
# selftests: exec: load_address_16777216
# PASS
ok 4 selftests: exec: load_address_16777216
# selftests: exec: recursion-depth
ok 5 selftests: exec: recursion-depth
# selftests: exec: binfmt_script
# TAP version 1.3
# 1..27
# ok 1 - binfmt_script too-big (correctly failed bad exec)
# ok 2 - binfmt_script exact (correctly failed bad exec)
# ok 3 - binfmt_script exact-space (correctly failed bad exec)
# ok 4 - binfmt_script whitespace-too-big (correctly failed bad exec)
# ok 5 - binfmt_script truncated (correctly failed bad exec)
# ok 6 - binfmt_script empty (correctly failed bad exec)
# ok 7 - binfmt_script spaces (correctly failed bad exec)
# ok 8 - binfmt_script newline-prefix (correctly failed bad exec)
# ok 9 - binfmt_script test.pl (successful good exec)
# ok 10 - binfmt_script one-under (successful good exec)
# ok 11 - binfmt_script two-under (successful good exec)
# ok 12 - binfmt_script exact-trunc-whitespace (successful good exec)
# ok 13 - binfmt_script exact-trunc-arg (successful good exec)
# ok 14 - binfmt_script one-under-full-arg (successful good exec)
# ok 15 - binfmt_script one-under-no-nl (successful good exec)
# ok 16 - binfmt_script half-under-no-nl (successful good exec)
# ok 17 - binfmt_script one-under-trunc-arg (successful good exec)
# ok 18 - binfmt_script one-under-leading (successful good exec)
# ok 19 - binfmt_script one-under-leading-trunc-arg (successful good exec)
# ok 20 - binfmt_script two-under-no-nl (successful good exec)
# ok 21 - binfmt_script two-under-trunc-arg (successful good exec)
# ok 22 - binfmt_script two-under-leading (successful good exec)
# ok 23 - binfmt_script two-under-leading-trunc-arg (successful good exec)
# ok 24 - binfmt_script two-under-no-nl (successful good exec)
# ok 25 - binfmt_script two-under-trunc-arg (successful good exec)
# ok 26 - binfmt_script two-under-leading (successful good exec)
# ok 27 - binfmt_script two-under-lead-trunc-arg (successful good exec)
ok 6 selftests: exec: binfmt_script
# selftests: exec: non-regular
# Warning: file non-regular is missing!
not ok 7 selftests: exec: non-regular
make: Leaving directory '/usr/src/perf_selftests-x86_64-rhel-7.6-kselftests-4d9c16a4949b8b027efc8d4214a4c8b11379cb28/tools/testing/selftests/exec'
LKP SKIP filesystems
2020-11-20 16:59:16 make run_tests -C fpu
make: Entering directory '/usr/src/perf_selftests-x86_64-rhel-7.6-kselftests-4d9c16a4949b8b027efc8d4214a4c8b11379cb28/tools/testing/selftests/fpu'
gcc test_fpu.c -lm -o /usr/src/perf_selftests-x86_64-rhel-7.6-kselftests-4d9c16a4949b8b027efc8d4214a4c8b11379cb28/tools/testing/selftests/fpu/test_fpu
TAP version 13
1..2
# selftests: fpu: test_fpu
# [SKIP] can't access /sys/kernel/debug/selftest_helpers/test_fpu: No such file or directory
ok 1 selftests: fpu: test_fpu
# selftests: fpu: run_test_fpu.sh
# ./run_test_fpu.sh: You must have the following enabled in your kernel:
# CONFIG_TEST_FPU=m
ok 2 selftests: fpu: run_test_fpu.sh # SKIP
make: Leaving directory '/usr/src/perf_selftests-x86_64-rhel-7.6-kselftests-4d9c16a4949b8b027efc8d4214a4c8b11379cb28/tools/testing/selftests/fpu'
2020-11-20 16:59:16 make run_tests -C ftrace
make: Entering directory '/usr/src/perf_selftests-x86_64-rhel-7.6-kselftests-4d9c16a4949b8b027efc8d4214a4c8b11379cb28/tools/testing/selftests/ftrace'
TAP version 13
1..1
# selftests: ftrace: ftracetest
# === Ftrace unit tests ===
# [1] Basic trace file check [PASS]
# [2] Basic test for tracers [PASS]
# [3] Basic trace clock test [PASS]
# [4] Basic event tracing check [PASS]
# [5] Change the ringbuffer size [PASS]
# [6] Snapshot and tracing setting [PASS]
# [7] trace_pipe and trace_marker [PASS]
# [8] Test ftrace direct functions against tracers [PASS]
# [9] Test ftrace direct functions against kprobes [PASS]
# [10] Generic dynamic event - add/remove kprobe events [PASS]
# [11] Generic dynamic event - add/remove synthetic events [PASS]
# [12] Generic dynamic event - selective clear (compatibility) [PASS]
# [13] Generic dynamic event - generic clear event [PASS]
# [14] event tracing - enable/disable with event level files [PASS]
# [15] event tracing - restricts events based on pid notrace filtering [PASS]
# [16] event tracing - restricts events based on pid [PASS]
# [17] event tracing - enable/disable with subsystem level files [PASS]
# [18] event tracing - enable/disable with top level files [PASS]
# [19] Test trace_printk from module [PASS]
# [20] ftrace - function graph filters with stack tracer [PASS]
# [21] ftrace - function graph filters [PASS]
# [22] ftrace - function glob filters [PASS]
# [23] ftrace - function pid notrace filters [PASS]
# [24] ftrace - function pid filters [PASS]
# [25] ftrace - stacktrace filter command [PASS]
# [26] ftrace - function trace with cpumask [PASS]
# [27] ftrace - test for function event triggers [PASS]
# [28] ftrace - function trace on module [PASS]
# [29] ftrace - function profiling [PASS]
# [30] ftrace - function profiler with function tracing [PASS]
# [31] ftrace - test reading of set_ftrace_filter [PASS]
# [32] ftrace - Max stack tracer [PASS]
# [33] ftrace - test for function traceon/off triggers [PASS]
# [34] ftrace - test tracing error log support [PASS]
# [35] Test creation and deletion of trace instances while setting an event [PASS]
# [36] Test creation and deletion of trace instances [PASS]
# [37] Kprobe dynamic event - adding and removing [PASS]
# [38] Kprobe dynamic event - busy event check [PASS]
# [39] Kprobe dynamic event with arguments [PASS]
# [40] Kprobe event with comm arguments [PASS]
# [41] Kprobe event string type argument [PASS]
# [42] Kprobe event symbol argument [PASS]
# [43] Kprobe event argument syntax [PASS]
# [44] Kprobes event arguments with types [PASS]
# [45] Kprobe event user-memory access [PASS]
# [46] Kprobe event auto/manual naming [PASS]
# [47] Kprobe dynamic event with function tracer [PASS]
# [48] Kprobe dynamic event - probing module [PASS]
# [49] Create/delete multiprobe on kprobe event [PASS]
# [50] Kprobe event parser error log check [PASS]
# [51] Kretprobe dynamic event with arguments [PASS]
# [52] Kretprobe dynamic event with maxactive [PASS]
# [53] Kretprobe %return suffix test [PASS]
# [54] Register/unregister many kprobe events [PASS]
# [55] Kprobe events - probe points [PASS]
# [56] Kprobe dynamic event - adding and removing [PASS]
# [57] Uprobe event parser error log check [PASS]
# [58] test for the preemptirqsoff tracer [PASS]
# [59] Meta-selftest: Checkbashisms [UNRESOLVED]
# [60] Test wakeup tracer [PASS]
# [61] Test wakeup RT tracer [PASS]
# [62] event trigger - test inter-event histogram trigger expected fail actions [XFAIL]
# [63] event trigger - test field variable support [PASS]
# [64] event trigger - test inter-event combined histogram trigger [PASS]
# [65] event trigger - test multiple actions on hist trigger [PASS]
# [66] event trigger - test inter-event histogram trigger onchange action [PASS]
# [67] event trigger - test inter-event histogram trigger onmatch action [PASS]
# [68] event trigger - test inter-event histogram trigger onmatch-onmax action [PASS]
# [69] event trigger - test inter-event histogram trigger onmax action [PASS]
# [70] event trigger - test inter-event histogram trigger snapshot action [PASS]
# [71] event trigger - test synthetic event create remove [PASS]
# [72] event trigger - test inter-event histogram trigger trace action with dynamic string param [PASS]
# [73] event trigger - test synthetic_events syntax parser [PASS]
# [74] event trigger - test synthetic_events syntax parser errors [PASS]
# [75] event trigger - test inter-event histogram trigger trace action [PASS]
# [76] event trigger - test event enable/disable trigger [PASS]
# [77] event trigger - test trigger filter [PASS]
# [78] event trigger - test histogram modifiers [PASS]
# [79] event trigger - test histogram parser errors [PASS]
# [80] event trigger - test histogram trigger [PASS]
# [81] event trigger - test multiple histogram triggers [PASS]
# [82] event trigger - test snapshot-trigger [PASS]
# [83] event trigger - test stacktrace-trigger [PASS]
# [84] trace_marker trigger - test histogram trigger [PASS]
# [85] trace_marker trigger - test snapshot trigger [PASS]
# [86] trace_marker trigger - test histogram with synthetic event against kernel event [PASS]
# [87] trace_marker trigger - test histogram with synthetic event [PASS]
# [88] event trigger - test traceon/off trigger [PASS]
# [89] (instance) Basic test for tracers [PASS]
# [90] (instance) Basic trace clock test [PASS]
# [91] (instance) Change the ringbuffer size [PASS]
# [92] (instance) Snapshot and tracing setting [PASS]
# [93] (instance) trace_pipe and trace_marker [PASS]
# [94] (instance) event tracing - enable/disable with event level files [PASS]
# [95] (instance) event tracing - restricts events based on pid notrace filtering [PASS]
# [96] (instance) event tracing - restricts events based on pid [PASS]
# [97] (instance) event tracing - enable/disable with subsystem level files [PASS]
# [98] (instance) ftrace - function pid notrace filters [PASS]
# [99] (instance) ftrace - function pid filters [PASS]
# [100] (instance) ftrace - stacktrace filter command [PASS]
# [101] (instance) ftrace - test for function event triggers [PASS]
# [102] (instance) ftrace - test for function traceon/off triggers [PASS]
# [103] (instance) event trigger - test event enable/disable trigger [PASS]
# [104] (instance) event trigger - test trigger filter [PASS]
# [105] (instance) event trigger - test histogram modifiers [PASS]
# [106] (instance) event trigger - test histogram trigger [PASS]
# [107] (instance) event trigger - test multiple histogram triggers [PASS]
# [108] (instance) trace_marker trigger - test histogram trigger [PASS]
# [109] (instance) trace_marker trigger - test snapshot trigger [PASS]
#
#
# # of passed: 107
# # of failed: 0
# # of unresolved: 1
# # of untested: 0
# # of unsupported: 0
# # of xfailed: 1
# # of undefined(test bug): 0
ok 1 selftests: ftrace: ftracetest
make: Leaving directory '/usr/src/perf_selftests-x86_64-rhel-7.6-kselftests-4d9c16a4949b8b027efc8d4214a4c8b11379cb28/tools/testing/selftests/ftrace'
2020-11-20 17:04:29 make run_tests -C futex
make: Entering directory '/usr/src/perf_selftests-x86_64-rhel-7.6-kselftests-4d9c16a4949b8b027efc8d4214a4c8b11379cb28/tools/testing/selftests/futex'
make[1]: Entering directory '/usr/src/perf_selftests-x86_64-rhel-7.6-kselftests-4d9c16a4949b8b027efc8d4214a4c8b11379cb28/tools/testing/selftests/futex/functional'
make --no-builtin-rules INSTALL_HDR_PATH=$OUTPUT/usr \
ARCH=x86 -C ../../../../.. headers_install
make[2]: Entering directory '/usr/src/perf_selftests-x86_64-rhel-7.6-kselftests-4d9c16a4949b8b027efc8d4214a4c8b11379cb28'
INSTALL /usr/src/perf_selftests-x86_64-rhel-7.6-kselftests-4d9c16a4949b8b027efc8d4214a4c8b11379cb28/tools/testing/selftests/futex/functional/usr/include
make[2]: Leaving directory '/usr/src/perf_selftests-x86_64-rhel-7.6-kselftests-4d9c16a4949b8b027efc8d4214a4c8b11379cb28'
gcc -g -O2 -Wall -D_GNU_SOURCE -pthread -I../include -I../../ futex_wait_timeout.c ../include/futextest.h ../include/atomic.h ../include/logging.h -lpthread -lrt -o /usr/src/perf_selftests-x86_64-rhel-7.6-kselftests-4d9c16a4949b8b027efc8d4214a4c8b11379cb28/tools/testing/selftests/futex/functional/futex_wait_timeout
gcc -g -O2 -Wall -D_GNU_SOURCE -pthread -I../include -I../../ futex_wait_wouldblock.c ../include/futextest.h ../include/atomic.h ../include/logging.h -lpthread -lrt -o /usr/src/perf_selftests-x86_64-rhel-7.6-kselftests-4d9c16a4949b8b027efc8d4214a4c8b11379cb28/tools/testing/selftests/futex/functional/futex_wait_wouldblock
gcc -g -O2 -Wall -D_GNU_SOURCE -pthread -I../include -I../../ futex_requeue_pi.c ../include/futextest.h ../include/atomic.h ../include/logging.h -lpthread -lrt -o /usr/src/perf_selftests-x86_64-rhel-7.6-kselftests-4d9c16a4949b8b027efc8d4214a4c8b11379cb28/tools/testing/selftests/futex/functional/futex_requeue_pi
gcc -g -O2 -Wall -D_GNU_SOURCE -pthread -I../include -I../../ futex_requeue_pi_signal_restart.c ../include/futextest.h ../include/atomic.h ../include/logging.h -lpthread -lrt -o /usr/src/perf_selftests-x86_64-rhel-7.6-kselftests-4d9c16a4949b8b027efc8d4214a4c8b11379cb28/tools/testing/selftests/futex/functional/futex_requeue_pi_signal_restart
gcc -g -O2 -Wall -D_GNU_SOURCE -pthread -I../include -I../../ futex_requeue_pi_mismatched_ops.c ../include/futextest.h ../include/atomic.h ../include/logging.h -lpthread -lrt -o /usr/src/perf_selftests-x86_64-rhel-7.6-kselftests-4d9c16a4949b8b027efc8d4214a4c8b11379cb28/tools/testing/selftests/futex/functional/futex_requeue_pi_mismatched_ops
gcc -g -O2 -Wall -D_GNU_SOURCE -pthread -I../include -I../../ futex_wait_uninitialized_heap.c ../include/futextest.h ../include/atomic.h ../include/logging.h -lpthread -lrt -o /usr/src/perf_selftests-x86_64-rhel-7.6-kselftests-4d9c16a4949b8b027efc8d4214a4c8b11379cb28/tools/testing/selftests/futex/functional/futex_wait_uninitialized_heap
gcc -g -O2 -Wall -D_GNU_SOURCE -pthread -I../include -I../../ futex_wait_private_mapped_file.c ../include/futextest.h ../include/atomic.h ../include/logging.h -lpthread -lrt -o /usr/src/perf_selftests-x86_64-rhel-7.6-kselftests-4d9c16a4949b8b027efc8d4214a4c8b11379cb28/tools/testing/selftests/futex/functional/futex_wait_private_mapped_file
make[1]: Leaving directory '/usr/src/perf_selftests-x86_64-rhel-7.6-kselftests-4d9c16a4949b8b027efc8d4214a4c8b11379cb28/tools/testing/selftests/futex/functional'
TAP version 13
1..1
# selftests: futex: run.sh
#
# TAP version 13
# 1..1
# # futex_requeue_pi: Test requeue functionality
# # Arguments: broadcast=0 locked=0 owner=0 timeout=0ns
# ok 1 futex-requeue-pi
# # Totals: pass:1 fail:0 xfail:0 xpass:0 skip:0 error:0
# TAP version 13
# 1..1
# # futex_requeue_pi: Test requeue functionality
# # Arguments: broadcast=1 locked=0 owner=0 timeout=0ns
# ok 1 futex-requeue-pi
# # Totals: pass:1 fail:0 xfail:0 xpass:0 skip:0 error:0
# TAP version 13
# 1..1
# # futex_requeue_pi: Test requeue functionality
# # Arguments: broadcast=1 locked=1 owner=0 timeout=0ns
# ok 1 futex-requeue-pi
# # Totals: pass:1 fail:0 xfail:0 xpass:0 skip:0 error:0
# TAP version 13
# 1..1
# # futex_requeue_pi: Test requeue functionality
# # Arguments: broadcast=1 locked=0 owner=1 timeout=0ns
# ok 1 futex-requeue-pi
# # Totals: pass:1 fail:0 xfail:0 xpass:0 skip:0 error:0
# TAP version 13
# 1..1
# # futex_requeue_pi: Test requeue functionality
# # Arguments: broadcast=0 locked=1 owner=0 timeout=0ns
# ok 1 futex-requeue-pi
# # Totals: pass:1 fail:0 xfail:0 xpass:0 skip:0 error:0
# TAP version 13
# 1..1
# # futex_requeue_pi: Test requeue functionality
# # Arguments: broadcast=0 locked=0 owner=1 timeout=0ns
# ok 1 futex-requeue-pi
# # Totals: pass:1 fail:0 xfail:0 xpass:0 skip:0 error:0
# TAP version 13
# 1..1
# # futex_requeue_pi: Test requeue functionality
# # Arguments: broadcast=1 locked=1 owner=0 timeout=5000ns
# ok 1 futex-requeue-pi
# # Totals: pass:1 fail:0 xfail:0 xpass:0 skip:0 error:0
# TAP version 13
# 1..1
# # futex_requeue_pi: Test requeue functionality
# # Arguments: broadcast=0 locked=1 owner=0 timeout=5000ns
# ok 1 futex-requeue-pi
# # Totals: pass:1 fail:0 xfail:0 xpass:0 skip:0 error:0
# TAP version 13
# 1..1
# # futex_requeue_pi: Test requeue functionality
# # Arguments: broadcast=1 locked=1 owner=0 timeout=500000ns
# ok 1 futex-requeue-pi
# # Totals: pass:1 fail:0 xfail:0 xpass:0 skip:0 error:0
# TAP version 13
# 1..1
# # futex_requeue_pi: Test requeue functionality
# # Arguments: broadcast=0 locked=1 owner=0 timeout=500000ns
# ok 1 futex-requeue-pi
# # Totals: pass:1 fail:0 xfail:0 xpass:0 skip:0 error:0
# TAP version 13
# 1..1
# # futex_requeue_pi: Test requeue functionality
# # Arguments: broadcast=1 locked=0 owner=0 timeout=5000ns
# ok 1 futex-requeue-pi
# # Totals: pass:1 fail:0 xfail:0 xpass:0 skip:0 error:0
# TAP version 13
# 1..1
# # futex_requeue_pi: Test requeue functionality
# # Arguments: broadcast=0 locked=0 owner=0 timeout=5000ns
# ok 1 futex-requeue-pi
# # Totals: pass:1 fail:0 xfail:0 xpass:0 skip:0 error:0
# TAP version 13
# 1..1
# # futex_requeue_pi: Test requeue functionality
# # Arguments: broadcast=1 locked=0 owner=0 timeout=500000ns
# ok 1 futex-requeue-pi
# # Totals: pass:1 fail:0 xfail:0 xpass:0 skip:0 error:0
# TAP version 13
# 1..1
# # futex_requeue_pi: Test requeue functionality
# # Arguments: broadcast=0 locked=0 owner=0 timeout=500000ns
# ok 1 futex-requeue-pi
# # Totals: pass:1 fail:0 xfail:0 xpass:0 skip:0 error:0
# TAP version 13
# 1..1
# # futex_requeue_pi: Test requeue functionality
# # Arguments: broadcast=1 locked=0 owner=1 timeout=5000ns
# ok 1 futex-requeue-pi
# # Totals: pass:1 fail:0 xfail:0 xpass:0 skip:0 error:0
# TAP version 13
# 1..1
# # futex_requeue_pi: Test requeue functionality
# # Arguments: broadcast=0 locked=1 owner=0 timeout=5000ns
# ok 1 futex-requeue-pi
# # Totals: pass:1 fail:0 xfail:0 xpass:0 skip:0 error:0
# TAP version 13
# 1..1
# # futex_requeue_pi: Test requeue functionality
# # Arguments: broadcast=1 locked=0 owner=1 timeout=500000ns
# ok 1 futex-requeue-pi
# # Totals: pass:1 fail:0 xfail:0 xpass:0 skip:0 error:0
# TAP version 13
# 1..1
# # futex_requeue_pi: Test requeue functionality
# # Arguments: broadcast=0 locked=1 owner=0 timeout=500000ns
# ok 1 futex-requeue-pi
# # Totals: pass:1 fail:0 xfail:0 xpass:0 skip:0 error:0
# TAP version 13
# 1..1
# # futex_requeue_pi: Test requeue functionality
# # Arguments: broadcast=1 locked=1 owner=0 timeout=2000000000ns
# ok 1 futex-requeue-pi
# # Totals: pass:1 fail:0 xfail:0 xpass:0 skip:0 error:0
# TAP version 13
# 1..1
# # futex_requeue_pi: Test requeue functionality
# # Arguments: broadcast=0 locked=1 owner=0 timeout=2000000000ns
# ok 1 futex-requeue-pi
# # Totals: pass:1 fail:0 xfail:0 xpass:0 skip:0 error:0
#
# TAP version 13
# 1..1
# # futex_requeue_pi_mismatched_ops: Detect mismatched requeue_pi operations
# ok 1 futex-requeue-pi-mismatched-ops
# # Totals: pass:1 fail:0 xfail:0 xpass:0 skip:0 error:0
#
# TAP version 13
# 1..1
# # futex_requeue_pi_signal_restart: Test signal handling during requeue_pi
# # Arguments: <none>
# ok 1 futex-requeue-pi-signal-restart
# # Totals: pass:1 fail:0 xfail:0 xpass:0 skip:0 error:0
#
# TAP version 13
# 1..1
# # futex_wait_timeout: Block on a futex and wait for timeout
# # Arguments: timeout=100000ns
# ok 1 futex-wait-timeout
# # Totals: pass:1 fail:0 xfail:0 xpass:0 skip:0 error:0
#
# TAP version 13
# 1..1
# # futex_wait_wouldblock: Test the unexpected futex value in FUTEX_WAIT
# ok 1 futex-wait-wouldblock
# # Totals: pass:1 fail:0 xfail:0 xpass:0 skip:0 error:0
#
# TAP version 13
# 1..1
# # futex_wait_uninitialized_heap: Test the uninitialized futex value in FUTEX_WAIT
# ok 1 futex-wait-uninitialized-heap
# # Totals: pass:1 fail:0 xfail:0 xpass:0 skip:0 error:0
# TAP version 13
# 1..1
# # futex_wait_private_mapped_file: Test the futex value of private file mappings in FUTEX_WAIT
# ok 1 futex-wait-private-mapped-file
# # Totals: pass:1 fail:0 xfail:0 xpass:0 skip:0 error:0
ok 1 selftests: futex: run.sh
make: Leaving directory '/usr/src/perf_selftests-x86_64-rhel-7.6-kselftests-4d9c16a4949b8b027efc8d4214a4c8b11379cb28/tools/testing/selftests/futex'
2020-11-20 17:04:42 make -C ../../../tools/gpio
make: Entering directory '/usr/src/perf_selftests-x86_64-rhel-7.6-kselftests-4d9c16a4949b8b027efc8d4214a4c8b11379cb28/tools/gpio'
mkdir -p include/linux 2>&1 || true
ln -sf /usr/src/perf_selftests-x86_64-rhel-7.6-kselftests-4d9c16a4949b8b027efc8d4214a4c8b11379cb28/tools/gpio/../../include/uapi/linux/gpio.h include/linux/gpio.h
make -f /usr/src/perf_selftests-x86_64-rhel-7.6-kselftests-4d9c16a4949b8b027efc8d4214a4c8b11379cb28/tools/build/Makefile.build dir=. obj=gpio-utils
make[1]: Entering directory '/usr/src/perf_selftests-x86_64-rhel-7.6-kselftests-4d9c16a4949b8b027efc8d4214a4c8b11379cb28/tools/gpio'
CC gpio-utils.o
LD gpio-utils-in.o
make[1]: Leaving directory '/usr/src/perf_selftests-x86_64-rhel-7.6-kselftests-4d9c16a4949b8b027efc8d4214a4c8b11379cb28/tools/gpio'
make -f /usr/src/perf_selftests-x86_64-rhel-7.6-kselftests-4d9c16a4949b8b027efc8d4214a4c8b11379cb28/tools/build/Makefile.build dir=. obj=lsgpio
make[1]: Entering directory '/usr/src/perf_selftests-x86_64-rhel-7.6-kselftests-4d9c16a4949b8b027efc8d4214a4c8b11379cb28/tools/gpio'
CC lsgpio.o
LD lsgpio-in.o
make[1]: Leaving directory '/usr/src/perf_selftests-x86_64-rhel-7.6-kselftests-4d9c16a4949b8b027efc8d4214a4c8b11379cb28/tools/gpio'
LINK lsgpio
make -f /usr/src/perf_selftests-x86_64-rhel-7.6-kselftests-4d9c16a4949b8b027efc8d4214a4c8b11379cb28/tools/build/Makefile.build dir=. obj=gpio-hammer
make[1]: Entering directory '/usr/src/perf_selftests-x86_64-rhel-7.6-kselftests-4d9c16a4949b8b027efc8d4214a4c8b11379cb28/tools/gpio'
CC gpio-hammer.o
LD gpio-hammer-in.o
make[1]: Leaving directory '/usr/src/perf_selftests-x86_64-rhel-7.6-kselftests-4d9c16a4949b8b027efc8d4214a4c8b11379cb28/tools/gpio'
LINK gpio-hammer
make -f /usr/src/perf_selftests-x86_64-rhel-7.6-kselftests-4d9c16a4949b8b027efc8d4214a4c8b11379cb28/tools/build/Makefile.build dir=. obj=gpio-event-mon
make[1]: Entering directory '/usr/src/perf_selftests-x86_64-rhel-7.6-kselftests-4d9c16a4949b8b027efc8d4214a4c8b11379cb28/tools/gpio'
CC gpio-event-mon.o
LD gpio-event-mon-in.o
make[1]: Leaving directory '/usr/src/perf_selftests-x86_64-rhel-7.6-kselftests-4d9c16a4949b8b027efc8d4214a4c8b11379cb28/tools/gpio'
LINK gpio-event-mon
make -f /usr/src/perf_selftests-x86_64-rhel-7.6-kselftests-4d9c16a4949b8b027efc8d4214a4c8b11379cb28/tools/build/Makefile.build dir=. obj=gpio-watch
make[1]: Entering directory '/usr/src/perf_selftests-x86_64-rhel-7.6-kselftests-4d9c16a4949b8b027efc8d4214a4c8b11379cb28/tools/gpio'
CC gpio-watch.o
LD gpio-watch-in.o
make[1]: Leaving directory '/usr/src/perf_selftests-x86_64-rhel-7.6-kselftests-4d9c16a4949b8b027efc8d4214a4c8b11379cb28/tools/gpio'
LINK gpio-watch
make: Leaving directory '/usr/src/perf_selftests-x86_64-rhel-7.6-kselftests-4d9c16a4949b8b027efc8d4214a4c8b11379cb28/tools/gpio'
2020-11-20 17:04:43 make run_tests -C gpio
make: Entering directory '/usr/src/perf_selftests-x86_64-rhel-7.6-kselftests-4d9c16a4949b8b027efc8d4214a4c8b11379cb28/tools/testing/selftests/gpio'
gcc -O2 -g -std=gnu99 -Wall -I../../../../usr/include/ -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/uuid gpio-mockup-chardev.c /usr/src/perf_selftests-x86_64-rhel-7.6-kselftests-4d9c16a4949b8b027efc8d4214a4c8b11379cb28/tools/gpio/gpio-utils.o -lmount -o gpio-mockup-chardev
make --no-builtin-rules ARCH=x86 -C ../../../.. headers_install
make[1]: Entering directory '/usr/src/perf_selftests-x86_64-rhel-7.6-kselftests-4d9c16a4949b8b027efc8d4214a4c8b11379cb28'
INSTALL ./usr/include
make[1]: Leaving directory '/usr/src/perf_selftests-x86_64-rhel-7.6-kselftests-4d9c16a4949b8b027efc8d4214a4c8b11379cb28'
TAP version 13
1..1
# selftests: gpio: gpio-mockup.sh
# 1. Test dynamic allocation of gpio successful means insert gpiochip and
# manipulate gpio pin successful
# GPIO gpio-mockup test with ranges: <-1,32>:
# -1,32
# Test gpiochip gpio-mockup: line<0>.....line<31>.....line<7>.....successful
# GPIO gpio-mockup test with ranges: <-1,32,-1,32>:
# -1,32,-1,32
# Test gpiochip gpio-mockup: line<0>.....line<31>.....line<7>.....line<0>.....line<31>.....line<6>.....successful
# GPIO gpio-mockup test with ranges: <-1,32,-1,32,-1,32>:
# -1,32,-1,32,-1,32
# Test gpiochip gpio-mockup: line<0>.....line<31>.....line<7>.....line<0>.....line<31>.....line<6>.....line<0>.....line<31>.....line<9>.....successful
# 3. Error test: successful means insert gpiochip failed
# 3.1 Test number of gpio overflow
# GPIO gpio-mockup test with ranges: <-1,32,-1,1024>:
# -1,32,-1,1024
# gpio<gpio-mockup> test failed
# Test gpiochip gpio-mockup: GPIO test PASS
ok 1 selftests: gpio: gpio-mockup.sh
make: Leaving directory '/usr/src/perf_selftests-x86_64-rhel-7.6-kselftests-4d9c16a4949b8b027efc8d4214a4c8b11379cb28/tools/testing/selftests/gpio'
ia64 test: not in Makefile
2020-11-20 17:04:45 make TARGETS=ia64
make --no-builtin-rules ARCH=x86 -C ../../.. headers_install
make[1]: Entering directory '/usr/src/perf_selftests-x86_64-rhel-7.6-kselftests-4d9c16a4949b8b027efc8d4214a4c8b11379cb28'
INSTALL ./usr/include
make[1]: Leaving directory '/usr/src/perf_selftests-x86_64-rhel-7.6-kselftests-4d9c16a4949b8b027efc8d4214a4c8b11379cb28'
make[1]: Entering directory '/usr/src/perf_selftests-x86_64-rhel-7.6-kselftests-4d9c16a4949b8b027efc8d4214a4c8b11379cb28/tools/testing/selftests/ia64'
Makefile:9: warning: overriding recipe for target 'clean'
../lib.mk:123: warning: ignoring old recipe for target 'clean'
gcc aliasing-test.c -o aliasing-test
make[1]: Leaving directory '/usr/src/perf_selftests-x86_64-rhel-7.6-kselftests-4d9c16a4949b8b027efc8d4214a4c8b11379cb28/tools/testing/selftests/ia64'
2020-11-20 17:04:46 make run_tests -C ia64
make: Entering directory '/usr/src/perf_selftests-x86_64-rhel-7.6-kselftests-4d9c16a4949b8b027efc8d4214a4c8b11379cb28/tools/testing/selftests/ia64'
Makefile:9: warning: overriding recipe for target 'clean'
../lib.mk:123: warning: ignoring old recipe for target 'clean'
TAP version 13
1..1
# selftests: ia64: aliasing-test
# PASS: /dev/mem 0x0-0xa0000 is readable
# PASS: /dev/mem 0xa0000-0xc0000 is mappable
# PASS: /dev/mem 0xc0000-0x100000 is readable
# PASS: /dev/mem 0x0-0x100000 is mappable
# PASS: /sys/devices/pci0000:00/0000:00:02.0/rom read 65534 bytes
# PASS: /proc/bus/pci/00/00.0 0x0-0xa0000 not mappable
# PASS: /proc/bus/pci/00/02.0 0x0-0xa0000 not mappable
# PASS: /proc/bus/pci/00/08.0 0x0-0xa0000 not mappable
# PASS: /proc/bus/pci/00/14.0 0x0-0xa0000 not mappable
# PASS: /proc/bus/pci/00/14.2 0x0-0xa0000 not mappable
# PASS: /proc/bus/pci/00/16.0 0x0-0xa0000 not mappable
# PASS: /proc/bus/pci/00/17.0 0x0-0xa0000 not mappable
# PASS: /proc/bus/pci/00/1c.0 0x0-0xa0000 not mappable
# PASS: /proc/bus/pci/00/1c.1 0x0-0xa0000 not mappable
# PASS: /proc/bus/pci/00/1c.2 0x0-0xa0000 not mappable
# PASS: /proc/bus/pci/00/1c.4 0x0-0xa0000 not mappable
# PASS: /proc/bus/pci/00/1f.0 0x0-0xa0000 not mappable
# PASS: /proc/bus/pci/00/1f.2 0x0-0xa0000 not mappable
# PASS: /proc/bus/pci/00/1f.3 0x0-0xa0000 not mappable
# PASS: /proc/bus/pci/00/1f.4 0x0-0xa0000 not mappable
# PASS: /proc/bus/pci/00/1f.6 0x0-0xa0000 not mappable
# PASS: /proc/bus/pci/02/00.0 0x0-0xa0000 not mappable
# PASS: /proc/bus/pci/03/00.0 0x0-0xa0000 not mappable
# PASS: /proc/bus/pci/00/00.0 0xa0000-0xc0000 not mappable
# PASS: /proc/bus/pci/00/02.0 0xa0000-0xc0000 not mappable
# PASS: /proc/bus/pci/00/08.0 0xa0000-0xc0000 not mappable
# PASS: /proc/bus/pci/00/14.0 0xa0000-0xc0000 not mappable
# PASS: /proc/bus/pci/00/14.2 0xa0000-0xc0000 not mappable
# PASS: /proc/bus/pci/00/16.0 0xa0000-0xc0000 not mappable
# PASS: /proc/bus/pci/00/17.0 0xa0000-0xc0000 not mappable
# PASS: /proc/bus/pci/00/1c.0 0xa0000-0xc0000 not mappable
# PASS: /proc/bus/pci/00/1c.1 0xa0000-0xc0000 not mappable
# PASS: /proc/bus/pci/00/1c.2 0xa0000-0xc0000 not mappable
# PASS: /proc/bus/pci/00/1c.4 0xa0000-0xc0000 not mappable
# PASS: /proc/bus/pci/00/1f.0 0xa0000-0xc0000 not mappable
# PASS: /proc/bus/pci/00/1f.2 0xa0000-0xc0000 not mappable
# PASS: /proc/bus/pci/00/1f.3 0xa0000-0xc0000 not mappable
# PASS: /proc/bus/pci/00/1f.4 0xa0000-0xc0000 not mappable
# PASS: /proc/bus/pci/00/1f.6 0xa0000-0xc0000 not mappable
# PASS: /proc/bus/pci/02/00.0 0xa0000-0xc0000 not mappable
# PASS: /proc/bus/pci/03/00.0 0xa0000-0xc0000 not mappable
# PASS: /proc/bus/pci/00/00.0 0xc0000-0x100000 not mappable
# PASS: /proc/bus/pci/00/02.0 0xc0000-0x100000 not mappable
# PASS: /proc/bus/pci/00/08.0 0xc0000-0x100000 not mappable
# PASS: /proc/bus/pci/00/14.0 0xc0000-0x100000 not mappable
# PASS: /proc/bus/pci/00/14.2 0xc0000-0x100000 not mappable
# PASS: /proc/bus/pci/00/16.0 0xc0000-0x100000 not mappable
# PASS: /proc/bus/pci/00/17.0 0xc0000-0x100000 not mappable
# PASS: /proc/bus/pci/00/1c.0 0xc0000-0x100000 not mappable
# PASS: /proc/bus/pci/00/1c.1 0xc0000-0x100000 not mappable
# PASS: /proc/bus/pci/00/1c.2 0xc0000-0x100000 not mappable
# PASS: /proc/bus/pci/00/1c.4 0xc0000-0x100000 not mappable
# PASS: /proc/bus/pci/00/1f.0 0xc0000-0x100000 not mappable
# PASS: /proc/bus/pci/00/1f.2 0xc0000-0x100000 not mappable
# PASS: /proc/bus/pci/00/1f.3 0xc0000-0x100000 not mappable
# PASS: /proc/bus/pci/00/1f.4 0xc0000-0x100000 not mappable
# PASS: /proc/bus/pci/00/1f.6 0xc0000-0x100000 not mappable
# PASS: /proc/bus/pci/02/00.0 0xc0000-0x100000 not mappable
# PASS: /proc/bus/pci/03/00.0 0xc0000-0x100000 not mappable
# PASS: /proc/bus/pci/00/00.0 0x0-0x100000 not mappable
# PASS: /proc/bus/pci/00/02.0 0x0-0x100000 not mappable
# PASS: /proc/bus/pci/00/08.0 0x0-0x100000 not mappable
# PASS: /proc/bus/pci/00/14.0 0x0-0x100000 not mappable
# PASS: /proc/bus/pci/00/14.2 0x0-0x100000 not mappable
# PASS: /proc/bus/pci/00/16.0 0x0-0x100000 not mappable
# PASS: /proc/bus/pci/00/17.0 0x0-0x100000 not mappable
# PASS: /proc/bus/pci/00/1c.0 0x0-0x100000 not mappable
# PASS: /proc/bus/pci/00/1c.1 0x0-0x100000 not mappable
# PASS: /proc/bus/pci/00/1c.2 0x0-0x100000 not mappable
# PASS: /proc/bus/pci/00/1c.4 0x0-0x100000 not mappable
# PASS: /proc/bus/pci/00/1f.0 0x0-0x100000 not mappable
# PASS: /proc/bus/pci/00/1f.2 0x0-0x100000 not mappable
# PASS: /proc/bus/pci/00/1f.3 0x0-0x100000 not mappable
# PASS: /proc/bus/pci/00/1f.4 0x0-0x100000 not mappable
# PASS: /proc/bus/pci/00/1f.6 0x0-0x100000 not mappable
# PASS: /proc/bus/pci/02/00.0 0x0-0x100000 not mappable
# PASS: /proc/bus/pci/03/00.0 0x0-0x100000 not mappable
ok 1 selftests: ia64: aliasing-test
make: Leaving directory '/usr/src/perf_selftests-x86_64-rhel-7.6-kselftests-4d9c16a4949b8b027efc8d4214a4c8b11379cb28/tools/testing/selftests/ia64'
2020-11-20 17:04:47 make run_tests -C intel_pstate
make: Entering directory '/usr/src/perf_selftests-x86_64-rhel-7.6-kselftests-4d9c16a4949b8b027efc8d4214a4c8b11379cb28/tools/testing/selftests/intel_pstate'
gcc -Wall -D_GNU_SOURCE msr.c -lm -o /usr/src/perf_selftests-x86_64-rhel-7.6-kselftests-4d9c16a4949b8b027efc8d4214a4c8b11379cb28/tools/testing/selftests/intel_pstate/msr
gcc -Wall -D_GNU_SOURCE aperf.c -lm -o /usr/src/perf_selftests-x86_64-rhel-7.6-kselftests-4d9c16a4949b8b027efc8d4214a4c8b11379cb28/tools/testing/selftests/intel_pstate/aperf
TAP version 13
1..1
# selftests: intel_pstate: run.sh
# cpupower: error while loading shared libraries: libcpupower.so.0: cannot open shared object file: No such file or directory
# ./run.sh: line 90: / 1000: syntax error: operand expected (error token is "/ 1000")
# cpupower: error while loading shared libraries: libcpupower.so.0: cannot open shared object file: No such file or directory
# ./run.sh: line 92: / 1000: syntax error: operand expected (error token is "/ 1000")
# ========================================================================
# The marketing frequency of the cpu is 2600 MHz
# The maximum frequency of the cpu is MHz
# The minimum frequency of the cpu is MHz
# Target Actual Difference MSR(0x199) max_perf_pct
ok 1 selftests: intel_pstate: run.sh
make: Leaving directory '/usr/src/perf_selftests-x86_64-rhel-7.6-kselftests-4d9c16a4949b8b027efc8d4214a4c8b11379cb28/tools/testing/selftests/intel_pstate'
2020-11-20 17:04:48 make run_tests -C ipc
make: Entering directory '/usr/src/perf_selftests-x86_64-rhel-7.6-kselftests-4d9c16a4949b8b027efc8d4214a4c8b11379cb28/tools/testing/selftests/ipc'
gcc -DCONFIG_X86_64 -D__x86_64__ -I../../../../usr/include/ msgque.c -o /usr/src/perf_selftests-x86_64-rhel-7.6-kselftests-4d9c16a4949b8b027efc8d4214a4c8b11379cb28/tools/testing/selftests/ipc/msgque
TAP version 13
1..1
# selftests: ipc: msgque
# # Totals: pass:0 fail:0 xfail:0 xpass:0 skip:0 error:0
ok 1 selftests: ipc: msgque
make: Leaving directory '/usr/src/perf_selftests-x86_64-rhel-7.6-kselftests-4d9c16a4949b8b027efc8d4214a4c8b11379cb28/tools/testing/selftests/ipc'
LKP SKIP ir.ir_loopback_rcmm
2020-11-20 17:04:48 make run_tests -C ir
make: Entering directory '/usr/src/perf_selftests-x86_64-rhel-7.6-kselftests-4d9c16a4949b8b027efc8d4214a4c8b11379cb28/tools/testing/selftests/ir'
gcc -Wall -O2 -I../../../include/uapi ir_loopback.c -o /usr/src/perf_selftests-x86_64-rhel-7.6-kselftests-4d9c16a4949b8b027efc8d4214a4c8b11379cb28/tools/testing/selftests/ir/ir_loopback
TAP version 13
1..1
# selftests: ir: ir_loopback.sh
# Sending IR on rc1 and receiving IR on rc1.
# Testing protocol rc-5 for decoder rc-5 (1/18)...
# Testing scancode:1c41
# Testing scancode:220
# Testing scancode:3c
# Testing scancode:1903
# Testing scancode:a75
# Testing scancode:e51
# Testing scancode:a7a
# Testing scancode:162d
# Testing scancode:e1b
# Testing scancode:1d59
# OK
# Testing protocol rc-5x-20 for decoder rc-5 (2/18)...
# Testing scancode:11220a
# Testing scancode:e650a
# Testing scancode:193d29
# Testing scancode:156724
# Testing scancode:20c2f
# Testing scancode:c4103
# Testing scancode:94f26
# Testing scancode:1e1d01
# Testing scancode:121129
# Testing scancode:b3d1f
# OK
# Testing protocol rc-5-sz for decoder rc-5-sz (3/18)...
# Testing scancode:2654
# Testing scancode:22d
# Testing scancode:464
# Testing scancode:2ce8
# Testing scancode:278e
# Testing scancode:2011
# Testing scancode:2a33
# Testing scancode:29a3
# Testing scancode:9a7
# Testing scancode:25b9
# OK
# Testing protocol jvc for decoder jvc (4/18)...
# Testing scancode:3c16
# Testing scancode:6669
# Testing scancode:d859
# Testing scancode:dc52
# Testing scancode:3f6c
# Testing scancode:634e
# Testing scancode:6aa3
# Testing scancode:4a66
# Testing scancode:19fc
# Testing scancode:d8bf
# OK
# Testing protocol sony-12 for decoder sony (5/18)...
# Testing scancode:15003f
# Testing scancode:190046
# Testing scancode:b0049
# Testing scancode:e0029
# Testing scancode:f002a
# Testing scancode:d0078
# Testing scancode:1b002c
# Testing scancode:180010
# Testing scancode:b0079
# Testing scancode:d0055
# OK
# Testing protocol sony-15 for decoder sony (6/18)...
# Testing scancode:40030
# Testing scancode:a5004d
# Testing scancode:490002
# Testing scancode:720014
# Testing scancode:2f0036
# Testing scancode:9f0010
# Testing scancode:2d0026
# Testing scancode:b80069
# Testing scancode:f10033
# Testing scancode:44004d
# OK
# Testing protocol sony-20 for decoder sony (7/18)...
# Testing scancode:d7b22
# Testing scancode:dc84a
# Testing scancode:192536
# Testing scancode:8537b
# Testing scancode:12a41c
# Testing scancode:e6422
# Testing scancode:bb74a
# Testing scancode:f0f40
# Testing scancode:caf08
# Testing scancode:13d146
# OK
# Testing protocol nec for decoder nec (8/18)...
# Testing scancode:e7ff
# Testing scancode:3748
# Testing scancode:8d8c
# Testing scancode:2648
# Testing scancode:fcf1
# Testing scancode:3136
# Testing scancode:7140
# Testing scancode:841d
# Testing scancode:2447
# Testing scancode:59ba
# OK
# Testing protocol nec-x for decoder nec (9/18)...
# Testing scancode:3a1cf3
# Testing scancode:dad4f7
# Testing scancode:15f887
# Testing scancode:83c7f5
# Testing scancode:4d1a0b
# Testing scancode:45143d
# Testing scancode:232a86
# Testing scancode:7b0f31
# Testing scancode:fd1a26
# Testing scancode:14b6b9
# OK
# Testing protocol nec-32 for decoder nec (10/18)...
# Testing scancode:6bfcdff
# Testing scancode:2e0a95c8
# Testing scancode:1ba27f03
# Testing scancode:2e18f335
# Testing scancode:53b2e9c4
# Testing scancode:46d523a0
# Testing scancode:7a8757d8
# Testing scancode:6e5ea10e
# Testing scancode:4f8432e0
# Testing scancode:12d406e0
# OK
# Testing protocol sanyo for decoder sanyo (11/18)...
# Testing scancode:127254
# Testing scancode:101adf
# Testing scancode:163e28
# Testing scancode:1fffe0
# Testing scancode:74127
# Testing scancode:73b19
# Testing scancode:1d3116
# Testing scancode:bb267
# Testing scancode:13bf37
# Testing scancode:13555d
# OK
# Testing protocol rc-6-0 for decoder rc-6 (12/18)...
# Testing scancode:c21
# Testing scancode:dc2a
# Testing scancode:2a54
# Testing scancode:4a9
# Testing scancode:a41f
# Testing scancode:4460
# Testing scancode:18e6
# Testing scancode:cea5
# Testing scancode:5391
# Testing scancode:330d
# OK
# Testing protocol rc-6-6a-20 for decoder rc-6 (13/18)...
# Testing scancode:9855f
# Testing scancode:62190
# Testing scancode:ec8d5
# Testing scancode:c0462
# Testing scancode:f14c6
# Testing scancode:1b299
# Testing scancode:12802
# Testing scancode:66c9e
# Testing scancode:53a7
# Testing scancode:55ae2
# OK
# Testing protocol rc-6-6a-24 for decoder rc-6 (14/18)...
# Testing scancode:4a737e
# Testing scancode:c2c5fb
# Testing scancode:b575c1
# Testing scancode:b1a7
# Testing scancode:a2c5db
# Testing scancode:dcb6e8
# Testing scancode:e7ecc0
# Testing scancode:3ff6f2
# Testing scancode:a86950
# Testing scancode:1babf7
# OK
# Testing protocol rc-6-6a-32 for decoder rc-6 (15/18)...
# Testing scancode:42b34c4f
# Testing scancode:1ce47571
# Testing scancode:43898821
# Testing scancode:6f0176a4
# Testing scancode:1b367a1a
# Testing scancode:357b2c41
# Testing scancode:79cbb04
# Testing scancode:fcd9301
# Testing scancode:538ffae6
# Testing scancode:6ab30e95
# OK
# Testing protocol rc-6-mce for decoder rc-6 (16/18)...
# Testing scancode:800f460e
# Testing scancode:800f0045
# Testing scancode:800f3026
# Testing scancode:800f0ee3
# Testing scancode:800f04a8
# Testing scancode:800f44ec
# Testing scancode:800f417d
# Testing scancode:800f2caa
# Testing scancode:800f318a
# Testing scancode:800f1524
# OK
# Testing protocol sharp for decoder sharp (17/18)...
# Testing scancode:78d
# Testing scancode:508
# Testing scancode:1b20
# Testing scancode:1d4e
# Testing scancode:16af
# Testing scancode:fb
# Testing scancode:1437
# Testing scancode:370
# Testing scancode:17ed
# Testing scancode:1d87
# OK
# Testing protocol imon for decoder imon (18/18)...
# Testing scancode:3b3d6f67
# Testing scancode:7e5b643d
# Testing scancode:336b12f8
# Testing scancode:7ec6f789
# Testing scancode:6d5cdae1
# Testing scancode:4ea18d13
# Testing scancode:344223ca
# Testing scancode:74f995e5
# Testing scancode:5e6f2014
# Testing scancode:7d21eb0
# OK
# # Planned tests != run tests (0 != 180)
# # Totals: pass:180 fail:0 xfail:0 xpass:0 skip:0 error:0
ok 1 selftests: ir: ir_loopback.sh
make: Leaving directory '/usr/src/perf_selftests-x86_64-rhel-7.6-kselftests-4d9c16a4949b8b027efc8d4214a4c8b11379cb28/tools/testing/selftests/ir'
2020-11-20 17:04:58 make run_tests -C kcmp
make: Entering directory '/usr/src/perf_selftests-x86_64-rhel-7.6-kselftests-4d9c16a4949b8b027efc8d4214a4c8b11379cb28/tools/testing/selftests/kcmp'
gcc -I../../../../usr/include/ kcmp_test.c -o /usr/src/perf_selftests-x86_64-rhel-7.6-kselftests-4d9c16a4949b8b027efc8d4214a4c8b11379cb28/tools/testing/selftests/kcmp/kcmp_test
TAP version 13
1..1
# selftests: kcmp: kcmp_test
# pid1: 20876 pid2: 20877 FD: 2 FILES: 2 VM: 1 FS: 1 SIGHAND: 1 IO: 0 SYSVSEM: 0 INV: -1
# PASS: 0 returned as expected
# PASS: 0 returned as expected
# PASS: 0 returned as expected
# # Planned tests != run tests (0 != 3)
# # Totals: pass:3 fail:0 xfail:0 xpass:0 skip:0 error:0
# # Planned tests != run tests (0 != 3)
# # Totals: pass:3 fail:0 xfail:0 xpass:0 skip:0 error:0
# # Totals: pass:0 fail:0 xfail:0 xpass:0 skip:0 error:0
ok 1 selftests: kcmp: kcmp_test
make: Leaving directory '/usr/src/perf_selftests-x86_64-rhel-7.6-kselftests-4d9c16a4949b8b027efc8d4214a4c8b11379cb28/tools/testing/selftests/kcmp'
2020-11-20 17:04:58 make run_tests -C kexec
make: Entering directory '/usr/src/perf_selftests-x86_64-rhel-7.6-kselftests-4d9c16a4949b8b027efc8d4214a4c8b11379cb28/tools/testing/selftests/kexec'
TAP version 13
1..2
# selftests: kexec: test_kexec_load.sh
# [INFO] kexec_load is enabled
# [INFO] IMA enabled
# [INFO] IMA architecture specific policy enabled
# [INFO] efivars is not mounted on /sys/firmware/efi/efivars
# efi_vars is not enabled
#
ok 1 selftests: kexec: test_kexec_load.sh # SKIP
# selftests: kexec: test_kexec_file_load.sh
# [INFO] kexec_file_load is enabled
# [INFO] IMA enabled
# [INFO] architecture specific policy enabled
# [INFO] efivars is not mounted on /sys/firmware/efi/efivars
# efi_vars is not enabled
#
ok 2 selftests: kexec: test_kexec_file_load.sh # SKIP
make: Leaving directory '/usr/src/perf_selftests-x86_64-rhel-7.6-kselftests-4d9c16a4949b8b027efc8d4214a4c8b11379cb28/tools/testing/selftests/kexec'
kmod test: not in Makefile
2020-11-20 17:04:58 make TARGETS=kmod
make --no-builtin-rules ARCH=x86 -C ../../.. headers_install
make[1]: Entering directory '/usr/src/perf_selftests-x86_64-rhel-7.6-kselftests-4d9c16a4949b8b027efc8d4214a4c8b11379cb28'
INSTALL ./usr/include
make[1]: Leaving directory '/usr/src/perf_selftests-x86_64-rhel-7.6-kselftests-4d9c16a4949b8b027efc8d4214a4c8b11379cb28'
make[1]: Entering directory '/usr/src/perf_selftests-x86_64-rhel-7.6-kselftests-4d9c16a4949b8b027efc8d4214a4c8b11379cb28/tools/testing/selftests/kmod'
make[1]: Nothing to be done for 'all'.
make[1]: Leaving directory '/usr/src/perf_selftests-x86_64-rhel-7.6-kselftests-4d9c16a4949b8b027efc8d4214a4c8b11379cb28/tools/testing/selftests/kmod'
2020-11-20 17:05:00 make run_tests -C kmod
make: Entering directory '/usr/src/perf_selftests-x86_64-rhel-7.6-kselftests-4d9c16a4949b8b027efc8d4214a4c8b11379cb28/tools/testing/selftests/kmod'
TAP version 13
1..1
# selftests: kmod: kmod.sh
# Fri Nov 20 17:05:00 UTC 2020
# Running test: kmod_test_0001 - run #0
# kmod_test_0001_driver: OK! - loading kmod test
# kmod_test_0001_driver: OK! - Return value: 256 (MODULE_NOT_FOUND), expected MODULE_NOT_FOUND
# kmod_test_0001_fs: OK! - loading kmod test
# kmod_test_0001_fs: OK! - Return value: -22 (-EINVAL), expected -EINVAL
# Fri Nov 20 17:05:00 UTC 2020
# Running test: kmod_test_0001 - run #1
# kmod_test_0001_driver: OK! - loading kmod test
# kmod_test_0001_driver: OK! - Return value: 256 (MODULE_NOT_FOUND), expected MODULE_NOT_FOUND
# kmod_test_0001_fs: OK! - loading kmod test
# kmod_test_0001_fs: OK! - Return value: -22 (-EINVAL), expected -EINVAL
# Fri Nov 20 17:05:00 UTC 2020
# Running test: kmod_test_0001 - run #2
# kmod_test_0001_driver: OK! - loading kmod test
# kmod_test_0001_driver: OK! - Return value: 256 (MODULE_NOT_FOUND), expected MODULE_NOT_FOUND
# kmod_test_0001_fs: OK! - loading kmod test
# kmod_test_0001_fs: OK! - Return value: -22 (-EINVAL), expected -EINVAL
# Fri Nov 20 17:05:01 UTC 2020
# Running test: kmod_test_0002 - run #0
# kmod_test_0002_driver: OK! - loading kmod test
# kmod_test_0002_driver: OK! - Return value: 256 (MODULE_NOT_FOUND), expected MODULE_NOT_FOUND
# kmod_test_0002_fs: OK! - loading kmod test
# kmod_test_0002_fs: OK! - Return value: -22 (-EINVAL), expected -EINVAL
# Fri Nov 20 17:05:01 UTC 2020
# Running test: kmod_test_0002 - run #1
# kmod_test_0002_driver: OK! - loading kmod test
# kmod_test_0002_driver: OK! - Return value: 256 (MODULE_NOT_FOUND), expected MODULE_NOT_FOUND
# kmod_test_0002_fs: OK! - loading kmod test
# kmod_test_0002_fs: OK! - Return value: -22 (-EINVAL), expected -EINVAL
# Fri Nov 20 17:05:02 UTC 2020
# Running test: kmod_test_0002 - run #2
# kmod_test_0002_driver: OK! - loading kmod test
# kmod_test_0002_driver: OK! - Return value: 256 (MODULE_NOT_FOUND), expected MODULE_NOT_FOUND
# kmod_test_0002_fs: OK! - loading kmod test
# kmod_test_0002_fs: OK! - Return value: -22 (-EINVAL), expected -EINVAL
# Fri Nov 20 17:05:02 UTC 2020
# Running test: kmod_test_0003 - run #0
# kmod_test_0003: OK! - loading kmod test
# kmod_test_0003: OK! - Return value: 0 (SUCCESS), expected SUCCESS
# Fri Nov 20 17:05:03 UTC 2020
# Running test: kmod_test_0004 - run #0
# kmod_test_0004: OK! - loading kmod test
# kmod_test_0004: OK! - Return value: 0 (SUCCESS), expected SUCCESS
# Fri Nov 20 17:05:03 UTC 2020
# Running test: kmod_test_0005 - run #0
# kmod_test_0005: OK! - loading kmod test
# kmod_test_0005: OK! - Return value: 0 (SUCCESS), expected SUCCESS
# Fri Nov 20 17:05:04 UTC 2020
# Running test: kmod_test_0005 - run #1
# kmod_test_0005: OK! - loading kmod test
# kmod_test_0005: OK! - Return value: 0 (SUCCESS), expected SUCCESS
# Fri Nov 20 17:05:04 UTC 2020
# Running test: kmod_test_0005 - run #2
# kmod_test_0005: OK! - loading kmod test
# kmod_test_0005: OK! - Return value: 0 (SUCCESS), expected SUCCESS
# Fri Nov 20 17:05:05 UTC 2020
# Running test: kmod_test_0005 - run #3
# kmod_test_0005: OK! - loading kmod test
# kmod_test_0005: OK! - Return value: 0 (SUCCESS), expected SUCCESS
# Fri Nov 20 17:05:05 UTC 2020
# Running test: kmod_test_0005 - run #4
# kmod_test_0005: OK! - loading kmod test
# kmod_test_0005: OK! - Return value: 0 (SUCCESS), expected SUCCESS
# Fri Nov 20 17:05:05 UTC 2020
# Running test: kmod_test_0005 - run #5
# kmod_test_0005: OK! - loading kmod test
# kmod_test_0005: OK! - Return value: 0 (SUCCESS), expected SUCCESS
# Fri Nov 20 17:05:06 UTC 2020
# Running test: kmod_test_0005 - run #6
# kmod_test_0005: OK! - loading kmod test
# kmod_test_0005: OK! - Return value: 0 (SUCCESS), expected SUCCESS
# Fri Nov 20 17:05:06 UTC 2020
# Running test: kmod_test_0005 - run #7
# kmod_test_0005: OK! - loading kmod test
# kmod_test_0005: OK! - Return value: 0 (SUCCESS), expected SUCCESS
# Fri Nov 20 17:05:07 UTC 2020
# Running test: kmod_test_0005 - run #8
# kmod_test_0005: OK! - loading kmod test
# kmod_test_0005: OK! - Return value: 0 (SUCCESS), expected SUCCESS
# Fri Nov 20 17:05:07 UTC 2020
# Running test: kmod_test_0005 - run #9
# kmod_test_0005: OK! - loading kmod test
# kmod_test_0005: OK! - Return value: 0 (SUCCESS), expected SUCCESS
# Fri Nov 20 17:05:08 UTC 2020
# Running test: kmod_test_0006 - run #0
# kmod_test_0006: OK! - loading kmod test
# kmod_test_0006: OK! - Return value: 0 (SUCCESS), expected SUCCESS
# Fri Nov 20 17:05:09 UTC 2020
# Running test: kmod_test_0006 - run #1
# kmod_test_0006: OK! - loading kmod test
# kmod_test_0006: OK! - Return value: 0 (SUCCESS), expected SUCCESS
# Fri Nov 20 17:05:10 UTC 2020
# Running test: kmod_test_0006 - run #2
# kmod_test_0006: OK! - loading kmod test
# kmod_test_0006: OK! - Return value: 0 (SUCCESS), expected SUCCESS
# Fri Nov 20 17:05:12 UTC 2020
# Running test: kmod_test_0006 - run #3
# kmod_test_0006: OK! - loading kmod test
# kmod_test_0006: OK! - Return value: 0 (SUCCESS), expected SUCCESS
# Fri Nov 20 17:05:14 UTC 2020
# Running test: kmod_test_0006 - run #4
# kmod_test_0006: OK! - loading kmod test
# kmod_test_0006: OK! - Return value: 0 (SUCCESS), expected SUCCESS
# Fri Nov 20 17:05:15 UTC 2020
# Running test: kmod_test_0006 - run #5
# kmod_test_0006: OK! - loading kmod test
# kmod_test_0006: OK! - Return value: 0 (SUCCESS), expected SUCCESS
# Fri Nov 20 17:05:17 UTC 2020
# Running test: kmod_test_0006 - run #6
# kmod_test_0006: OK! - loading kmod test
# kmod_test_0006: OK! - Return value: 0 (SUCCESS), expected SUCCESS
# Fri Nov 20 17:05:19 UTC 2020
# Running test: kmod_test_0006 - run #7
# kmod_test_0006: OK! - loading kmod test
# kmod_test_0006: OK! - Return value: 0 (SUCCESS), expected SUCCESS
# Fri Nov 20 17:05:20 UTC 2020
# Running test: kmod_test_0006 - run #8
# kmod_test_0006: OK! - loading kmod test
# kmod_test_0006: OK! - Return value: 0 (SUCCESS), expected SUCCESS
# Fri Nov 20 17:05:22 UTC 2020
# Running test: kmod_test_0006 - run #9
# kmod_test_0006: OK! - loading kmod test
# kmod_test_0006: OK! - Return value: 0 (SUCCESS), expected SUCCESS
# Fri Nov 20 17:05:23 UTC 2020
# Running test: kmod_test_0007 - run #0
# kmod_test_0005: OK! - loading kmod test
# kmod_test_0005: OK! - Return value: 0 (SUCCESS), expected SUCCESS
# kmod_test_0006: OK! - loading kmod test
# kmod_test_0006: OK! - Return value: 0 (SUCCESS), expected SUCCESS
# Fri Nov 20 17:05:25 UTC 2020
# Running test: kmod_test_0007 - run #1
# kmod_test_0005: OK! - loading kmod test
# kmod_test_0005: OK! - Return value: 0 (SUCCESS), expected SUCCESS
# kmod_test_0006: OK! - loading kmod test
# kmod_test_0006: OK! - Return value: 0 (SUCCESS), expected SUCCESS
# Fri Nov 20 17:05:27 UTC 2020
# Running test: kmod_test_0007 - run #2
# kmod_test_0005: OK! - loading kmod test
# kmod_test_0005: OK! - Return value: 0 (SUCCESS), expected SUCCESS
# kmod_test_0006: OK! - loading kmod test
# kmod_test_0006: OK! - Return value: 0 (SUCCESS), expected SUCCESS
# Fri Nov 20 17:05:29 UTC 2020
# Running test: kmod_test_0007 - run #3
# kmod_test_0005: OK! - loading kmod test
# kmod_test_0005: OK! - Return value: 0 (SUCCESS), expected SUCCESS
# kmod_test_0006: OK! - loading kmod test
# kmod_test_0006: OK! - Return value: 0 (SUCCESS), expected SUCCESS
# Fri Nov 20 17:05:32 UTC 2020
# Running test: kmod_test_0007 - run #4
# kmod_test_0005: OK! - loading kmod test
# kmod_test_0005: OK! - Return value: 0 (SUCCESS), expected SUCCESS
# kmod_test_0006: OK! - loading kmod test
# kmod_test_0006: OK! - Return value: 0 (SUCCESS), expected SUCCESS
# Fri Nov 20 17:05:35 UTC 2020
# Running test: kmod_test_0008 - run #0
# kmod_test_0008: OK! - loading kmod test
# kmod_test_0008: OK! - Return value: 0 (SUCCESS), expected SUCCESS
# Fri Nov 20 17:05:35 UTC 2020
# Running test: kmod_test_0008 - run #1
# kmod_test_0008: OK! - loading kmod test
# kmod_test_0008: OK! - Return value: 0 (SUCCESS), expected SUCCESS
# Fri Nov 20 17:05:35 UTC 2020
# Running test: kmod_test_0008 - run #2
# kmod_test_0008: OK! - loading kmod test
# kmod_test_0008: OK! - Return value: 0 (SUCCESS), expected SUCCESS
# Fri Nov 20 17:05:36 UTC 2020
# Running test: kmod_test_0008 - run #3
# kmod_test_0008: OK! - loading kmod test
# kmod_test_0008: OK! - Return value: 0 (SUCCESS), expected SUCCESS
# Fri Nov 20 17:05:36 UTC 2020
# Running test: kmod_test_0008 - run #4
# kmod_test_0008: OK! - loading kmod test
# kmod_test_0008: OK! - Return value: 0 (SUCCESS), expected SUCCESS
# Fri Nov 20 17:05:36 UTC 2020
# Running test: kmod_test_0008 - run #5
# kmod_test_0008: OK! - loading kmod test
# kmod_test_0008: OK! - Return value: 0 (SUCCESS), expected SUCCESS
# Fri Nov 20 17:05:36 UTC 2020
# Running test: kmod_test_0008 - run #6
# kmod_test_0008: OK! - loading kmod test
# kmod_test_0008: OK! - Return value: 0 (SUCCESS), expected SUCCESS
# Fri Nov 20 17:05:36 UTC 2020
# Running test: kmod_test_0008 - run #7
# kmod_test_0008: OK! - loading kmod test
# kmod_test_0008: OK! - Return value: 0 (SUCCESS), expected SUCCESS
# Fri Nov 20 17:05:37 UTC 2020
# Running test: kmod_test_0008 - run #8
# kmod_test_0008: OK! - loading kmod test
# kmod_test_0008: OK! - Return value: 0 (SUCCESS), expected SUCCESS
# Fri Nov 20 17:05:37 UTC 2020
# Running test: kmod_test_0008 - run #9
# kmod_test_0008: OK! - loading kmod test
# kmod_test_0008: OK! - Return value: 0 (SUCCESS), expected SUCCESS
# Fri Nov 20 17:05:37 UTC 2020
# Running test: kmod_test_0008 - run #10
# kmod_test_0008: OK! - loading kmod test
# kmod_test_0008: OK! - Return value: 0 (SUCCESS), expected SUCCESS
# Fri Nov 20 17:05:37 UTC 2020
# Running test: kmod_test_0008 - run #11
# kmod_test_0008: OK! - loading kmod test
# kmod_test_0008: OK! - Return value: 0 (SUCCESS), expected SUCCESS
# Fri Nov 20 17:05:38 UTC 2020
# Running test: kmod_test_0008 - run #12
# kmod_test_0008: OK! - loading kmod test
# kmod_test_0008: OK! - Return value: 0 (SUCCESS), expected SUCCESS
# Fri Nov 20 17:05:38 UTC 2020
# Running test: kmod_test_0008 - run #13
# kmod_test_0008: OK! - loading kmod test
# kmod_test_0008: OK! - Return value: 0 (SUCCESS), expected SUCCESS
# Fri Nov 20 17:05:38 UTC 2020
# Running test: kmod_test_0008 - run #14
# kmod_test_0008: OK! - loading kmod test
# kmod_test_0008: OK! - Return value: 0 (SUCCESS), expected SUCCESS
# Fri Nov 20 17:05:38 UTC 2020
# Running test: kmod_test_0008 - run #15
# kmod_test_0008: OK! - loading kmod test
# kmod_test_0008: OK! - Return value: 0 (SUCCESS), expected SUCCESS
# Fri Nov 20 17:05:38 UTC 2020
# Running test: kmod_test_0008 - run #16
# kmod_test_0008: OK! - loading kmod test
# kmod_test_0008: OK! - Return value: 0 (SUCCESS), expected SUCCESS
# Fri Nov 20 17:05:39 UTC 2020
# Running test: kmod_test_0008 - run #17
# kmod_test_0008: OK! - loading kmod test
# kmod_test_0008: OK! - Return value: 0 (SUCCESS), expected SUCCESS
# Fri Nov 20 17:05:39 UTC 2020
# Running test: kmod_test_0008 - run #18
# kmod_test_0008: OK! - loading kmod test
# kmod_test_0008: OK! - Return value: 0 (SUCCESS), expected SUCCESS
# Fri Nov 20 17:05:39 UTC 2020
# Running test: kmod_test_0008 - run #19
# kmod_test_0008: OK! - loading kmod test
# kmod_test_0008: OK! - Return value: 0 (SUCCESS), expected SUCCESS
# Fri Nov 20 17:05:39 UTC 2020
# Running test: kmod_test_0008 - run #20
# kmod_test_0008: OK! - loading kmod test
# kmod_test_0008: OK! - Return value: 0 (SUCCESS), expected SUCCESS
# Fri Nov 20 17:05:40 UTC 2020
# Running test: kmod_test_0008 - run #21
# kmod_test_0008: OK! - loading kmod test
# kmod_test_0008: OK! - Return value: 0 (SUCCESS), expected SUCCESS
# Fri Nov 20 17:05:40 UTC 2020
# Running test: kmod_test_0008 - run #22
# kmod_test_0008: OK! - loading kmod test
# kmod_test_0008: OK! - Return value: 0 (SUCCESS), expected SUCCESS
# Fri Nov 20 17:05:40 UTC 2020
# Running test: kmod_test_0008 - run #23
# kmod_test_0008: OK! - loading kmod test
# kmod_test_0008: OK! - Return value: 0 (SUCCESS), expected SUCCESS
# Fri Nov 20 17:05:40 UTC 2020
# Running test: kmod_test_0008 - run #24
# kmod_test_0008: OK! - loading kmod test
# kmod_test_0008: OK! - Return value: 0 (SUCCESS), expected SUCCESS
# Fri Nov 20 17:05:40 UTC 2020
# Running test: kmod_test_0008 - run #25
# kmod_test_0008: OK! - loading kmod test
# kmod_test_0008: OK! - Return value: 0 (SUCCESS), expected SUCCESS
# Fri Nov 20 17:05:41 UTC 2020
# Running test: kmod_test_0008 - run #26
# kmod_test_0008: OK! - loading kmod test
# kmod_test_0008: OK! - Return value: 0 (SUCCESS), expected SUCCESS
# Fri Nov 20 17:05:41 UTC 2020
# Running test: kmod_test_0008 - run #27
# kmod_test_0008: OK! - loading kmod test
# kmod_test_0008: OK! - Return value: 0 (SUCCESS), expected SUCCESS
# Fri Nov 20 17:05:41 UTC 2020
# Running test: kmod_test_0008 - run #28
# kmod_test_0008: OK! - loading kmod test
# kmod_test_0008: OK! - Return value: 0 (SUCCESS), expected SUCCESS
# Fri Nov 20 17:05:41 UTC 2020
# Running test: kmod_test_0008 - run #29
# kmod_test_0008: OK! - loading kmod test
# kmod_test_0008: OK! - Return value: 0 (SUCCESS), expected SUCCESS
# Fri Nov 20 17:05:42 UTC 2020
# Running test: kmod_test_0008 - run #30
# kmod_test_0008: OK! - loading kmod test
# kmod_test_0008: OK! - Return value: 0 (SUCCESS), expected SUCCESS
# Fri Nov 20 17:05:42 UTC 2020
# Running test: kmod_test_0008 - run #31
# kmod_test_0008: OK! - loading kmod test
# kmod_test_0008: OK! - Return value: 0 (SUCCESS), expected SUCCESS
# Fri Nov 20 17:05:42 UTC 2020
# Running test: kmod_test_0008 - run #32
# kmod_test_0008: OK! - loading kmod test
# kmod_test_0008: OK! - Return value: 0 (SUCCESS), expected SUCCESS
# Fri Nov 20 17:05:42 UTC 2020
# Running test: kmod_test_0008 - run #33
# kmod_test_0008: OK! - loading kmod test
# kmod_test_0008: OK! - Return value: 0 (SUCCESS), expected SUCCESS
# Fri Nov 20 17:05:42 UTC 2020
# Running test: kmod_test_0008 - run #34
# kmod_test_0008: OK! - loading kmod test
# kmod_test_0008: OK! - Return value: 0 (SUCCESS), expected SUCCESS
# Fri Nov 20 17:05:43 UTC 2020
# Running test: kmod_test_0008 - run #35
# kmod_test_0008: OK! - loading kmod test
# kmod_test_0008: OK! - Return value: 0 (SUCCESS), expected SUCCESS
# Fri Nov 20 17:05:43 UTC 2020
# Running test: kmod_test_0008 - run #36
# kmod_test_0008: OK! - loading kmod test
# kmod_test_0008: OK! - Return value: 0 (SUCCESS), expected SUCCESS
# Fri Nov 20 17:05:43 UTC 2020
# Running test: kmod_test_0008 - run #37
# kmod_test_0008: OK! - loading kmod test
# kmod_test_0008: OK! - Return value: 0 (SUCCESS), expected SUCCESS
# Fri Nov 20 17:05:43 UTC 2020
# Running test: kmod_test_0008 - run #38
# kmod_test_0008: OK! - loading kmod test
# kmod_test_0008: OK! - Return value: 0 (SUCCESS), expected SUCCESS
# Fri Nov 20 17:05:43 UTC 2020
# Running test: kmod_test_0008 - run #39
# kmod_test_0008: OK! - loading kmod test
# kmod_test_0008: OK! - Return value: 0 (SUCCESS), expected SUCCESS
# Fri Nov 20 17:05:44 UTC 2020
# Running test: kmod_test_0008 - run #40
# kmod_test_0008: OK! - loading kmod test
# kmod_test_0008: OK! - Return value: 0 (SUCCESS), expected SUCCESS
# Fri Nov 20 17:05:44 UTC 2020
# Running test: kmod_test_0008 - run #41
# kmod_test_0008: OK! - loading kmod test
# kmod_test_0008: OK! - Return value: 0 (SUCCESS), expected SUCCESS
# Fri Nov 20 17:05:44 UTC 2020
# Running test: kmod_test_0008 - run #42
# kmod_test_0008: OK! - loading kmod test
# kmod_test_0008: OK! - Return value: 0 (SUCCESS), expected SUCCESS
# Fri Nov 20 17:05:44 UTC 2020
# Running test: kmod_test_0008 - run #43
# kmod_test_0008: OK! - loading kmod test
# kmod_test_0008: OK! - Return value: 0 (SUCCESS), expected SUCCESS
# Fri Nov 20 17:05:45 UTC 2020
# Running test: kmod_test_0008 - run #44
# kmod_test_0008: OK! - loading kmod test
# kmod_test_0008: OK! - Return value: 0 (SUCCESS), expected SUCCESS
# Fri Nov 20 17:05:45 UTC 2020
# Running test: kmod_test_0008 - run #45
# kmod_test_0008: OK! - loading kmod test
# kmod_test_0008: OK! - Return value: 0 (SUCCESS), expected SUCCESS
# Fri Nov 20 17:05:45 UTC 2020
# Running test: kmod_test_0008 - run #46
# kmod_test_0008: OK! - loading kmod test
# kmod_test_0008: OK! - Return value: 0 (SUCCESS), expected SUCCESS
# Fri Nov 20 17:05:45 UTC 2020
# Running test: kmod_test_0008 - run #47
# kmod_test_0008: OK! - loading kmod test
# kmod_test_0008: OK! - Return value: 0 (SUCCESS), expected SUCCESS
# Fri Nov 20 17:05:45 UTC 2020
# Running test: kmod_test_0008 - run #48
# kmod_test_0008: OK! - loading kmod test
# kmod_test_0008: OK! - Return value: 0 (SUCCESS), expected SUCCESS
# Fri Nov 20 17:05:46 UTC 2020
# Running test: kmod_test_0008 - run #49
# kmod_test_0008: OK! - loading kmod test
# kmod_test_0008: OK! - Return value: 0 (SUCCESS), expected SUCCESS
# Fri Nov 20 17:05:46 UTC 2020
# Running test: kmod_test_0008 - run #50
# kmod_test_0008: OK! - loading kmod test
# kmod_test_0008: OK! - Return value: 0 (SUCCESS), expected SUCCESS
# Fri Nov 20 17:05:46 UTC 2020
# Running test: kmod_test_0008 - run #51
# kmod_test_0008: OK! - loading kmod test
# kmod_test_0008: OK! - Return value: 0 (SUCCESS), expected SUCCESS
# Fri Nov 20 17:05:46 UTC 2020
# Running test: kmod_test_0008 - run #52
# kmod_test_0008: OK! - loading kmod test
# kmod_test_0008: OK! - Return value: 0 (SUCCESS), expected SUCCESS
# Fri Nov 20 17:05:47 UTC 2020
# Running test: kmod_test_0008 - run #53
# kmod_test_0008: OK! - loading kmod test
# kmod_test_0008: OK! - Return value: 0 (SUCCESS), expected SUCCESS
# Fri Nov 20 17:05:47 UTC 2020
# Running test: kmod_test_0008 - run #54
# kmod_test_0008: OK! - loading kmod test
# kmod_test_0008: OK! - Return value: 0 (SUCCESS), expected SUCCESS
# Fri Nov 20 17:05:47 UTC 2020
# Running test: kmod_test_0008 - run #55
# kmod_test_0008: OK! - loading kmod test
# kmod_test_0008: OK! - Return value: 0 (SUCCESS), expected SUCCESS
# Fri Nov 20 17:05:47 UTC 2020
# Running test: kmod_test_0008 - run #56
# kmod_test_0008: OK! - loading kmod test
# kmod_test_0008: OK! - Return value: 0 (SUCCESS), expected SUCCESS
# Fri Nov 20 17:05:47 UTC 2020
# Running test: kmod_test_0008 - run #57
# kmod_test_0008: OK! - loading kmod test
# kmod_test_0008: OK! - Return value: 0 (SUCCESS), expected SUCCESS
# Fri Nov 20 17:05:48 UTC 2020
# Running test: kmod_test_0008 - run #58
# kmod_test_0008: OK! - loading kmod test
# kmod_test_0008: OK! - Return value: 0 (SUCCESS), expected SUCCESS
# Fri Nov 20 17:05:48 UTC 2020
# Running test: kmod_test_0008 - run #59
# kmod_test_0008: OK! - loading kmod test
# kmod_test_0008: OK! - Return value: 0 (SUCCESS), expected SUCCESS
# Fri Nov 20 17:05:48 UTC 2020
# Running test: kmod_test_0008 - run #60
# kmod_test_0008: OK! - loading kmod test
# kmod_test_0008: OK! - Return value: 0 (SUCCESS), expected SUCCESS
# Fri Nov 20 17:05:48 UTC 2020
# Running test: kmod_test_0008 - run #61
# kmod_test_0008: OK! - loading kmod test
# kmod_test_0008: OK! - Return value: 0 (SUCCESS), expected SUCCESS
# Fri Nov 20 17:05:49 UTC 2020
# Running test: kmod_test_0008 - run #62
# kmod_test_0008: OK! - loading kmod test
# kmod_test_0008: OK! - Return value: 0 (SUCCESS), expected SUCCESS
# Fri Nov 20 17:05:49 UTC 2020
# Running test: kmod_test_0008 - run #63
# kmod_test_0008: OK! - loading kmod test
# kmod_test_0008: OK! - Return value: 0 (SUCCESS), expected SUCCESS
# Fri Nov 20 17:05:49 UTC 2020
# Running test: kmod_test_0008 - run #64
# kmod_test_0008: OK! - loading kmod test
# kmod_test_0008: OK! - Return value: 0 (SUCCESS), expected SUCCESS
# Fri Nov 20 17:05:49 UTC 2020
# Running test: kmod_test_0008 - run #65
# kmod_test_0008: OK! - loading kmod test
# kmod_test_0008: OK! - Return value: 0 (SUCCESS), expected SUCCESS
# Fri Nov 20 17:05:49 UTC 2020
# Running test: kmod_test_0008 - run #66
# kmod_test_0008: OK! - loading kmod test
# kmod_test_0008: OK! - Return value: 0 (SUCCESS), expected SUCCESS
# Fri Nov 20 17:05:50 UTC 2020
# Running test: kmod_test_0008 - run #67
# kmod_test_0008: OK! - loading kmod test
# kmod_test_0008: OK! - Return value: 0 (SUCCESS), expected SUCCESS
# Fri Nov 20 17:05:50 UTC 2020
# Running test: kmod_test_0008 - run #68
# kmod_test_0008: OK! - loading kmod test
# kmod_test_0008: OK! - Return value: 0 (SUCCESS), expected SUCCESS
# Fri Nov 20 17:05:50 UTC 2020
# Running test: kmod_test_0008 - run #69
# kmod_test_0008: OK! - loading kmod test
# kmod_test_0008: OK! - Return value: 0 (SUCCESS), expected SUCCESS
# Fri Nov 20 17:05:50 UTC 2020
# Running test: kmod_test_0008 - run #70
# kmod_test_0008: OK! - loading kmod test
# kmod_test_0008: OK! - Return value: 0 (SUCCESS), expected SUCCESS
# Fri Nov 20 17:05:51 UTC 2020
# Running test: kmod_test_0008 - run #71
# kmod_test_0008: OK! - loading kmod test
# kmod_test_0008: OK! - Return value: 0 (SUCCESS), expected SUCCESS
# Fri Nov 20 17:05:51 UTC 2020
# Running test: kmod_test_0008 - run #72
# kmod_test_0008: OK! - loading kmod test
# kmod_test_0008: OK! - Return value: 0 (SUCCESS), expected SUCCESS
# Fri Nov 20 17:05:51 UTC 2020
# Running test: kmod_test_0008 - run #73
# kmod_test_0008: OK! - loading kmod test
# kmod_test_0008: OK! - Return value: 0 (SUCCESS), expected SUCCESS
# Fri Nov 20 17:05:51 UTC 2020
# Running test: kmod_test_0008 - run #74
# kmod_test_0008: OK! - loading kmod test
# kmod_test_0008: OK! - Return value: 0 (SUCCESS), expected SUCCESS
# Fri Nov 20 17:05:51 UTC 2020
# Running test: kmod_test_0008 - run #75
# kmod_test_0008: OK! - loading kmod test
# kmod_test_0008: OK! - Return value: 0 (SUCCESS), expected SUCCESS
# Fri Nov 20 17:05:52 UTC 2020
# Running test: kmod_test_0008 - run #76
# kmod_test_0008: OK! - loading kmod test
# kmod_test_0008: OK! - Return value: 0 (SUCCESS), expected SUCCESS
# Fri Nov 20 17:05:52 UTC 2020
# Running test: kmod_test_0008 - run #77
# kmod_test_0008: OK! - loading kmod test
# kmod_test_0008: OK! - Return value: 0 (SUCCESS), expected SUCCESS
# Fri Nov 20 17:05:52 UTC 2020
# Running test: kmod_test_0008 - run #78
# kmod_test_0008: OK! - loading kmod test
# kmod_test_0008: OK! - Return value: 0 (SUCCESS), expected SUCCESS
# Fri Nov 20 17:05:52 UTC 2020
# Running test: kmod_test_0008 - run #79
# kmod_test_0008: OK! - loading kmod test
# kmod_test_0008: OK! - Return value: 0 (SUCCESS), expected SUCCESS
# Fri Nov 20 17:05:53 UTC 2020
# Running test: kmod_test_0008 - run #80
# kmod_test_0008: OK! - loading kmod test
# kmod_test_0008: OK! - Return value: 0 (SUCCESS), expected SUCCESS
# Fri Nov 20 17:05:53 UTC 2020
# Running test: kmod_test_0008 - run #81
# kmod_test_0008: OK! - loading kmod test
# kmod_test_0008: OK! - Return value: 0 (SUCCESS), expected SUCCESS
# Fri Nov 20 17:05:53 UTC 2020
# Running test: kmod_test_0008 - run #82
# kmod_test_0008: OK! - loading kmod test
# kmod_test_0008: OK! - Return value: 0 (SUCCESS), expected SUCCESS
# Fri Nov 20 17:05:53 UTC 2020
# Running test: kmod_test_0008 - run #83
# kmod_test_0008: OK! - loading kmod test
# kmod_test_0008: OK! - Return value: 0 (SUCCESS), expected SUCCESS
# Fri Nov 20 17:05:53 UTC 2020
# Running test: kmod_test_0008 - run #84
# kmod_test_0008: OK! - loading kmod test
# kmod_test_0008: OK! - Return value: 0 (SUCCESS), expected SUCCESS
# Fri Nov 20 17:05:54 UTC 2020
# Running test: kmod_test_0008 - run #85
# kmod_test_0008: OK! - loading kmod test
# kmod_test_0008: OK! - Return value: 0 (SUCCESS), expected SUCCESS
# Fri Nov 20 17:05:54 UTC 2020
# Running test: kmod_test_0008 - run #86
# kmod_test_0008: OK! - loading kmod test
# kmod_test_0008: OK! - Return value: 0 (SUCCESS), expected SUCCESS
# Fri Nov 20 17:05:54 UTC 2020
# Running test: kmod_test_0008 - run #87
# kmod_test_0008: OK! - loading kmod test
# kmod_test_0008: OK! - Return value: 0 (SUCCESS), expected SUCCESS
# Fri Nov 20 17:05:54 UTC 2020
# Running test: kmod_test_0008 - run #88
# kmod_test_0008: OK! - loading kmod test
# kmod_test_0008: OK! - Return value: 0 (SUCCESS), expected SUCCESS
# Fri Nov 20 17:05:54 UTC 2020
# Running test: kmod_test_0008 - run #89
# kmod_test_0008: OK! - loading kmod test
# kmod_test_0008: OK! - Return value: 0 (SUCCESS), expected SUCCESS
# Fri Nov 20 17:05:55 UTC 2020
# Running test: kmod_test_0008 - run #90
# kmod_test_0008: OK! - loading kmod test
# kmod_test_0008: OK! - Return value: 0 (SUCCESS), expected SUCCESS
# Fri Nov 20 17:05:55 UTC 2020
# Running test: kmod_test_0008 - run #91
# kmod_test_0008: OK! - loading kmod test
# kmod_test_0008: OK! - Return value: 0 (SUCCESS), expected SUCCESS
# Fri Nov 20 17:05:55 UTC 2020
# Running test: kmod_test_0008 - run #92
# kmod_test_0008: OK! - loading kmod test
# kmod_test_0008: OK! - Return value: 0 (SUCCESS), expected SUCCESS
# Fri Nov 20 17:05:55 UTC 2020
# Running test: kmod_test_0008 - run #93
# kmod_test_0008: OK! - loading kmod test
# kmod_test_0008: OK! - Return value: 0 (SUCCESS), expected SUCCESS
# Fri Nov 20 17:05:56 UTC 2020
# Running test: kmod_test_0008 - run #94
# kmod_test_0008: OK! - loading kmod test
# kmod_test_0008: OK! - Return value: 0 (SUCCESS), expected SUCCESS
# Fri Nov 20 17:05:56 UTC 2020
# Running test: kmod_test_0008 - run #95
# kmod_test_0008: OK! - loading kmod test
# kmod_test_0008: OK! - Return value: 0 (SUCCESS), expected SUCCESS
# Fri Nov 20 17:05:56 UTC 2020
# Running test: kmod_test_0008 - run #96
# kmod_test_0008: OK! - loading kmod test
# kmod_test_0008: OK! - Return value: 0 (SUCCESS), expected SUCCESS
# Fri Nov 20 17:05:56 UTC 2020
# Running test: kmod_test_0008 - run #97
# kmod_test_0008: OK! - loading kmod test
# kmod_test_0008: OK! - Return value: 0 (SUCCESS), expected SUCCESS
# Fri Nov 20 17:05:56 UTC 2020
# Running test: kmod_test_0008 - run #98
# kmod_test_0008: OK! - loading kmod test
# kmod_test_0008: OK! - Return value: 0 (SUCCESS), expected SUCCESS
# Fri Nov 20 17:05:57 UTC 2020
# Running test: kmod_test_0008 - run #99
# kmod_test_0008: OK! - loading kmod test
# kmod_test_0008: OK! - Return value: 0 (SUCCESS), expected SUCCESS
# Fri Nov 20 17:05:57 UTC 2020
# Running test: kmod_test_0008 - run #100
# kmod_test_0008: OK! - loading kmod test
# kmod_test_0008: OK! - Return value: 0 (SUCCESS), expected SUCCESS
# Fri Nov 20 17:05:57 UTC 2020
# Running test: kmod_test_0008 - run #101
# kmod_test_0008: OK! - loading kmod test
# kmod_test_0008: OK! - Return value: 0 (SUCCESS), expected SUCCESS
# Fri Nov 20 17:05:57 UTC 2020
# Running test: kmod_test_0008 - run #102
# kmod_test_0008: OK! - loading kmod test
# kmod_test_0008: OK! - Return value: 0 (SUCCESS), expected SUCCESS
# Fri Nov 20 17:05:58 UTC 2020
# Running test: kmod_test_0008 - run #103
# kmod_test_0008: OK! - loading kmod test
# kmod_test_0008: OK! - Return value: 0 (SUCCESS), expected SUCCESS
# Fri Nov 20 17:05:58 UTC 2020
# Running test: kmod_test_0008 - run #104
# kmod_test_0008: OK! - loading kmod test
# kmod_test_0008: OK! - Return value: 0 (SUCCESS), expected SUCCESS
# Fri Nov 20 17:05:58 UTC 2020
# Running test: kmod_test_0008 - run #105
# kmod_test_0008: OK! - loading kmod test
# kmod_test_0008: OK! - Return value: 0 (SUCCESS), expected SUCCESS
# Fri Nov 20 17:05:58 UTC 2020
# Running test: kmod_test_0008 - run #106
# kmod_test_0008: OK! - loading kmod test
# kmod_test_0008: OK! - Return value: 0 (SUCCESS), expected SUCCESS
# Fri Nov 20 17:05:58 UTC 2020
# Running test: kmod_test_0008 - run #107
# kmod_test_0008: OK! - loading kmod test
# kmod_test_0008: OK! - Return value: 0 (SUCCESS), expected SUCCESS
# Fri Nov 20 17:05:59 UTC 2020
# Running test: kmod_test_0008 - run #108
# kmod_test_0008: OK! - loading kmod test
# kmod_test_0008: OK! - Return value: 0 (SUCCESS), expected SUCCESS
# Fri Nov 20 17:05:59 UTC 2020
# Running test: kmod_test_0008 - run #109
# kmod_test_0008: OK! - loading kmod test
# kmod_test_0008: OK! - Return value: 0 (SUCCESS), expected SUCCESS
# Fri Nov 20 17:05:59 UTC 2020
# Running test: kmod_test_0008 - run #110
# kmod_test_0008: OK! - loading kmod test
# kmod_test_0008: OK! - Return value: 0 (SUCCESS), expected SUCCESS
# Fri Nov 20 17:05:59 UTC 2020
# Running test: kmod_test_0008 - run #111
# kmod_test_0008: OK! - loading kmod test
# kmod_test_0008: OK! - Return value: 0 (SUCCESS), expected SUCCESS
# Fri Nov 20 17:06:00 UTC 2020
# Running test: kmod_test_0008 - run #112
# kmod_test_0008: OK! - loading kmod test
# kmod_test_0008: OK! - Return value: 0 (SUCCESS), expected SUCCESS
# Fri Nov 20 17:06:00 UTC 2020
# Running test: kmod_test_0008 - run #113
# kmod_test_0008: OK! - loading kmod test
# kmod_test_0008: OK! - Return value: 0 (SUCCESS), expected SUCCESS
# Fri Nov 20 17:06:00 UTC 2020
# Running test: kmod_test_0008 - run #114
# kmod_test_0008: OK! - loading kmod test
# kmod_test_0008: OK! - Return value: 0 (SUCCESS), expected SUCCESS
# Fri Nov 20 17:06:00 UTC 2020
# Running test: kmod_test_0008 - run #115
# kmod_test_0008: OK! - loading kmod test
# kmod_test_0008: OK! - Return value: 0 (SUCCESS), expected SUCCESS
# Fri Nov 20 17:06:00 UTC 2020
# Running test: kmod_test_0008 - run #116
# kmod_test_0008: OK! - loading kmod test
# kmod_test_0008: OK! - Return value: 0 (SUCCESS), expected SUCCESS
# Fri Nov 20 17:06:01 UTC 2020
# Running test: kmod_test_0008 - run #117
# kmod_test_0008: OK! - loading kmod test
# kmod_test_0008: OK! - Return value: 0 (SUCCESS), expected SUCCESS
# Fri Nov 20 17:06:01 UTC 2020
# Running test: kmod_test_0008 - run #118
# kmod_test_0008: OK! - loading kmod test
# kmod_test_0008: OK! - Return value: 0 (SUCCESS), expected SUCCESS
# Fri Nov 20 17:06:01 UTC 2020
# Running test: kmod_test_0008 - run #119
# kmod_test_0008: OK! - loading kmod test
# kmod_test_0008: OK! - Return value: 0 (SUCCESS), expected SUCCESS
# Fri Nov 20 17:06:01 UTC 2020
# Running test: kmod_test_0008 - run #120
# kmod_test_0008: OK! - loading kmod test
# kmod_test_0008: OK! - Return value: 0 (SUCCESS), expected SUCCESS
# Fri Nov 20 17:06:02 UTC 2020
# Running test: kmod_test_0008 - run #121
# kmod_test_0008: OK! - loading kmod test
# kmod_test_0008: OK! - Return value: 0 (SUCCESS), expected SUCCESS
# Fri Nov 20 17:06:02 UTC 2020
# Running test: kmod_test_0008 - run #122
# kmod_test_0008: OK! - loading kmod test
# kmod_test_0008: OK! - Return value: 0 (SUCCESS), expected SUCCESS
# Fri Nov 20 17:06:02 UTC 2020
# Running test: kmod_test_0008 - run #123
# kmod_test_0008: OK! - loading kmod test
# kmod_test_0008: OK! - Return value: 0 (SUCCESS), expected SUCCESS
# Fri Nov 20 17:06:02 UTC 2020
# Running test: kmod_test_0008 - run #124
# kmod_test_0008: OK! - loading kmod test
# kmod_test_0008: OK! - Return value: 0 (SUCCESS), expected SUCCESS
# Fri Nov 20 17:06:02 UTC 2020
# Running test: kmod_test_0008 - run #125
# kmod_test_0008: OK! - loading kmod test
# kmod_test_0008: OK! - Return value: 0 (SUCCESS), expected SUCCESS
# Fri Nov 20 17:06:03 UTC 2020
# Running test: kmod_test_0008 - run #126
# kmod_test_0008: OK! - loading kmod test
# kmod_test_0008: OK! - Return value: 0 (SUCCESS), expected SUCCESS
# Fri Nov 20 17:06:03 UTC 2020
# Running test: kmod_test_0008 - run #127
# kmod_test_0008: OK! - loading kmod test
# kmod_test_0008: OK! - Return value: 0 (SUCCESS), expected SUCCESS
# Fri Nov 20 17:06:03 UTC 2020
# Running test: kmod_test_0008 - run #128
# kmod_test_0008: OK! - loading kmod test
# kmod_test_0008: OK! - Return value: 0 (SUCCESS), expected SUCCESS
# Fri Nov 20 17:06:03 UTC 2020
# Running test: kmod_test_0008 - run #129
# kmod_test_0008: OK! - loading kmod test
# kmod_test_0008: OK! - Return value: 0 (SUCCESS), expected SUCCESS
# Fri Nov 20 17:06:03 UTC 2020
# Running test: kmod_test_0008 - run #130
# kmod_test_0008: OK! - loading kmod test
# kmod_test_0008: OK! - Return value: 0 (SUCCESS), expected SUCCESS
# Fri Nov 20 17:06:04 UTC 2020
# Running test: kmod_test_0008 - run #131
# kmod_test_0008: OK! - loading kmod test
# kmod_test_0008: OK! - Return value: 0 (SUCCESS), expected SUCCESS
# Fri Nov 20 17:06:04 UTC 2020
# Running test: kmod_test_0008 - run #132
# kmod_test_0008: OK! - loading kmod test
# kmod_test_0008: OK! - Return value: 0 (SUCCESS), expected SUCCESS
# Fri Nov 20 17:06:04 UTC 2020
# Running test: kmod_test_0008 - run #133
# kmod_test_0008: OK! - loading kmod test
# kmod_test_0008: OK! - Return value: 0 (SUCCESS), expected SUCCESS
# Fri Nov 20 17:06:04 UTC 2020
# Running test: kmod_test_0008 - run #134
# kmod_test_0008: OK! - loading kmod test
# kmod_test_0008: OK! - Return value: 0 (SUCCESS), expected SUCCESS
# Fri Nov 20 17:06:05 UTC 2020
# Running test: kmod_test_0008 - run #135
# kmod_test_0008: OK! - loading kmod test
# kmod_test_0008: OK! - Return value: 0 (SUCCESS), expected SUCCESS
# Fri Nov 20 17:06:05 UTC 2020
# Running test: kmod_test_0008 - run #136
# kmod_test_0008: OK! - loading kmod test
# kmod_test_0008: OK! - Return value: 0 (SUCCESS), expected SUCCESS
# Fri Nov 20 17:06:05 UTC 2020
# Running test: kmod_test_0008 - run #137
# kmod_test_0008: OK! - loading kmod test
# kmod_test_0008: OK! - Return value: 0 (SUCCESS), expected SUCCESS
# Fri Nov 20 17:06:05 UTC 2020
# Running test: kmod_test_0008 - run #138
# kmod_test_0008: OK! - loading kmod test
# kmod_test_0008: OK! - Return value: 0 (SUCCESS), expected SUCCESS
# Fri Nov 20 17:06:05 UTC 2020
# Running test: kmod_test_0008 - run #139
# kmod_test_0008: OK! - loading kmod test
# kmod_test_0008: OK! - Return value: 0 (SUCCESS), expected SUCCESS
# Fri Nov 20 17:06:06 UTC 2020
# Running test: kmod_test_0008 - run #140
# kmod_test_0008: OK! - loading kmod test
# kmod_test_0008: OK! - Return value: 0 (SUCCESS), expected SUCCESS
# Fri Nov 20 17:06:06 UTC 2020
# Running test: kmod_test_0008 - run #141
# kmod_test_0008: OK! - loading kmod test
# kmod_test_0008: OK! - Return value: 0 (SUCCESS), expected SUCCESS
# Fri Nov 20 17:06:06 UTC 2020
# Running test: kmod_test_0008 - run #142
# kmod_test_0008: OK! - loading kmod test
# kmod_test_0008: OK! - Return value: 0 (SUCCESS), expected SUCCESS
# Fri Nov 20 17:06:06 UTC 2020
# Running test: kmod_test_0008 - run #143
# kmod_test_0008: OK! - loading kmod test
# kmod_test_0008: OK! - Return value: 0 (SUCCESS), expected SUCCESS
# Fri Nov 20 17:06:07 UTC 2020
# Running test: kmod_test_0008 - run #144
# kmod_test_0008: OK! - loading kmod test
# kmod_test_0008: OK! - Return value: 0 (SUCCESS), expected SUCCESS
# Fri Nov 20 17:06:07 UTC 2020
# Running test: kmod_test_0008 - run #145
# kmod_test_0008: OK! - loading kmod test
# kmod_test_0008: OK! - Return value: 0 (SUCCESS), expected SUCCESS
# Fri Nov 20 17:06:07 UTC 2020
# Running test: kmod_test_0008 - run #146
# kmod_test_0008: OK! - loading kmod test
# kmod_test_0008: OK! - Return value: 0 (SUCCESS), expected SUCCESS
# Fri Nov 20 17:06:07 UTC 2020
# Running test: kmod_test_0008 - run #147
# kmod_test_0008: OK! - loading kmod test
# kmod_test_0008: OK! - Return value: 0 (SUCCESS), expected SUCCESS
# Fri Nov 20 17:06:07 UTC 2020
# Running test: kmod_test_0008 - run #148
# kmod_test_0008: OK! - loading kmod test
# kmod_test_0008: OK! - Return value: 0 (SUCCESS), expected SUCCESS
# Fri Nov 20 17:06:08 UTC 2020
# Running test: kmod_test_0008 - run #149
# kmod_test_0008: OK! - loading kmod test
# kmod_test_0008: OK! - Return value: 0 (SUCCESS), expected SUCCESS
# Fri Nov 20 17:06:08 UTC 2020
# Running test: kmod_test_0009 - run #0
# kmod_test_0009: OK! - loading kmod test
# kmod_test_0009: OK! - Return value: 0 (SUCCESS), expected SUCCESS
# Fri Nov 20 17:06:09 UTC 2020
# Running test: kmod_test_0009 - run #1
# kmod_test_0009: OK! - loading kmod test
# kmod_test_0009: OK! - Return value: 0 (SUCCESS), expected SUCCESS
# Fri Nov 20 17:06:10 UTC 2020
# Running test: kmod_test_0009 - run #2
# kmod_test_0009: OK! - loading kmod test
# kmod_test_0009: OK! - Return value: 0 (SUCCESS), expected SUCCESS
# Fri Nov 20 17:06:11 UTC 2020
# Running test: kmod_test_0009 - run #3
# kmod_test_0009: OK! - loading kmod test
# kmod_test_0009: OK! - Return value: 0 (SUCCESS), expected SUCCESS
# Fri Nov 20 17:06:12 UTC 2020
# Running test: kmod_test_0009 - run #4
# kmod_test_0009: OK! - loading kmod test
# kmod_test_0009: OK! - Return value: 0 (SUCCESS), expected SUCCESS
# Fri Nov 20 17:06:13 UTC 2020
# Running test: kmod_test_0009 - run #5
# kmod_test_0009: OK! - loading kmod test
# kmod_test_0009: OK! - Return value: 0 (SUCCESS), expected SUCCESS
# Fri Nov 20 17:06:14 UTC 2020
# Running test: kmod_test_0009 - run #6
# kmod_test_0009: OK! - loading kmod test
# kmod_test_0009: OK! - Return value: 0 (SUCCESS), expected SUCCESS
# Fri Nov 20 17:06:15 UTC 2020
# Running test: kmod_test_0009 - run #7
# kmod_test_0009: OK! - loading kmod test
# kmod_test_0009: OK! - Return value: 0 (SUCCESS), expected SUCCESS
# Fri Nov 20 17:06:16 UTC 2020
# Running test: kmod_test_0009 - run #8
# kmod_test_0009: OK! - loading kmod test
# kmod_test_0009: OK! - Return value: 0 (SUCCESS), expected SUCCESS
# Fri Nov 20 17:06:17 UTC 2020
# Running test: kmod_test_0009 - run #9
# kmod_test_0009: OK! - loading kmod test
# kmod_test_0009: OK! - Return value: 0 (SUCCESS), expected SUCCESS
# Fri Nov 20 17:06:18 UTC 2020
# Running test: kmod_test_0009 - run #10
# kmod_test_0009: OK! - loading kmod test
# kmod_test_0009: OK! - Return value: 0 (SUCCESS), expected SUCCESS
# Fri Nov 20 17:06:19 UTC 2020
# Running test: kmod_test_0009 - run #11
# kmod_test_0009: OK! - loading kmod test
# kmod_test_0009: OK! - Return value: 0 (SUCCESS), expected SUCCESS
# Fri Nov 20 17:06:19 UTC 2020
# Running test: kmod_test_0009 - run #12
# kmod_test_0009: OK! - loading kmod test
# kmod_test_0009: OK! - Return value: 0 (SUCCESS), expected SUCCESS
# Fri Nov 20 17:06:21 UTC 2020
# Running test: kmod_test_0009 - run #13
# kmod_test_0009: OK! - loading kmod test
# kmod_test_0009: OK! - Return value: 0 (SUCCESS), expected SUCCESS
# Fri Nov 20 17:06:21 UTC 2020
# Running test: kmod_test_0009 - run #14
# kmod_test_0009: OK! - loading kmod test
# kmod_test_0009: OK! - Return value: 0 (SUCCESS), expected SUCCESS
# Fri Nov 20 17:06:22 UTC 2020
# Running test: kmod_test_0009 - run #15
# kmod_test_0009: OK! - loading kmod test
# kmod_test_0009: OK! - Return value: 0 (SUCCESS), expected SUCCESS
# Fri Nov 20 17:06:23 UTC 2020
# Running test: kmod_test_0009 - run #16
# kmod_test_0009: OK! - loading kmod test
# kmod_test_0009: OK! - Return value: 0 (SUCCESS), expected SUCCESS
# Fri Nov 20 17:06:24 UTC 2020
# Running test: kmod_test_0009 - run #17
# kmod_test_0009: OK! - loading kmod test
# kmod_test_0009: OK! - Return value: 0 (SUCCESS), expected SUCCESS
# Fri Nov 20 17:06:25 UTC 2020
# Running test: kmod_test_0009 - run #18
# kmod_test_0009: OK! - loading kmod test
# kmod_test_0009: OK! - Return value: 0 (SUCCESS), expected SUCCESS
# Fri Nov 20 17:06:26 UTC 2020
# Running test: kmod_test_0009 - run #19
# kmod_test_0009: OK! - loading kmod test
# kmod_test_0009: OK! - Return value: 0 (SUCCESS), expected SUCCESS
# Fri Nov 20 17:06:27 UTC 2020
# Running test: kmod_test_0009 - run #20
# kmod_test_0009: OK! - loading kmod test
# kmod_test_0009: OK! - Return value: 0 (SUCCESS), expected SUCCESS
# Fri Nov 20 17:06:28 UTC 2020
# Running test: kmod_test_0009 - run #21
# kmod_test_0009: OK! - loading kmod test
# kmod_test_0009: OK! - Return value: 0 (SUCCESS), expected SUCCESS
# Fri Nov 20 17:06:29 UTC 2020
# Running test: kmod_test_0009 - run #22
# kmod_test_0009: OK! - loading kmod test
# kmod_test_0009: OK! - Return value: 0 (SUCCESS), expected SUCCESS
# Fri Nov 20 17:06:30 UTC 2020
# Running test: kmod_test_0009 - run #23
# kmod_test_0009: OK! - loading kmod test
# kmod_test_0009: OK! - Return value: 0 (SUCCESS), expected SUCCESS
# Fri Nov 20 17:06:31 UTC 2020
# Running test: kmod_test_0009 - run #24
# kmod_test_0009: OK! - loading kmod test
# kmod_test_0009: OK! - Return value: 0 (SUCCESS), expected SUCCESS
# Fri Nov 20 17:06:32 UTC 2020
# Running test: kmod_test_0009 - run #25
# kmod_test_0009: OK! - loading kmod test
# kmod_test_0009: OK! - Return value: 0 (SUCCESS), expected SUCCESS
# Fri Nov 20 17:06:33 UTC 2020
# Running test: kmod_test_0009 - run #26
# kmod_test_0009: OK! - loading kmod test
# kmod_test_0009: OK! - Return value: 0 (SUCCESS), expected SUCCESS
# Fri Nov 20 17:06:34 UTC 2020
# Running test: kmod_test_0009 - run #27
# kmod_test_0009: OK! - loading kmod test
# kmod_test_0009: OK! - Return value: 0 (SUCCESS), expected SUCCESS
# Fri Nov 20 17:06:35 UTC 2020
# Running test: kmod_test_0009 - run #28
# kmod_test_0009: OK! - loading kmod test
# kmod_test_0009: OK! - Return value: 0 (SUCCESS), expected SUCCESS
# Fri Nov 20 17:06:36 UTC 2020
# Running test: kmod_test_0009 - run #29
# kmod_test_0009: OK! - loading kmod test
# kmod_test_0009: OK! - Return value: 0 (SUCCESS), expected SUCCESS
# Fri Nov 20 17:06:37 UTC 2020
# Running test: kmod_test_0009 - run #30
# kmod_test_0009: OK! - loading kmod test
# kmod_test_0009: OK! - Return value: 0 (SUCCESS), expected SUCCESS
# Fri Nov 20 17:06:38 UTC 2020
# Running test: kmod_test_0009 - run #31
# kmod_test_0009: OK! - loading kmod test
# kmod_test_0009: OK! - Return value: 0 (SUCCESS), expected SUCCESS
# Fri Nov 20 17:06:39 UTC 2020
# Running test: kmod_test_0009 - run #32
# kmod_test_0009: OK! - loading kmod test
# kmod_test_0009: OK! - Return value: 0 (SUCCESS), expected SUCCESS
# Fri Nov 20 17:06:40 UTC 2020
# Running test: kmod_test_0009 - run #33
# kmod_test_0009: OK! - loading kmod test
# kmod_test_0009: OK! - Return value: 0 (SUCCESS), expected SUCCESS
# Fri Nov 20 17:06:41 UTC 2020
# Running test: kmod_test_0009 - run #34
# kmod_test_0009: OK! - loading kmod test
# kmod_test_0009: OK! - Return value: 0 (SUCCESS), expected SUCCESS
# Fri Nov 20 17:06:42 UTC 2020
# Running test: kmod_test_0009 - run #35
# kmod_test_0009: OK! - loading kmod test
# kmod_test_0009: OK! - Return value: 0 (SUCCESS), expected SUCCESS
# Fri Nov 20 17:06:43 UTC 2020
# Running test: kmod_test_0009 - run #36
# kmod_test_0009: OK! - loading kmod test
# kmod_test_0009: OK! - Return value: 0 (SUCCESS), expected SUCCESS
# Fri Nov 20 17:06:44 UTC 2020
# Running test: kmod_test_0009 - run #37
# kmod_test_0009: OK! - loading kmod test
# kmod_test_0009: OK! - Return value: 0 (SUCCESS), expected SUCCESS
# Fri Nov 20 17:06:45 UTC 2020
# Running test: kmod_test_0009 - run #38
# kmod_test_0009: OK! - loading kmod test
# kmod_test_0009: OK! - Return value: 0 (SUCCESS), expected SUCCESS
# Fri Nov 20 17:06:46 UTC 2020
# Running test: kmod_test_0009 - run #39
# kmod_test_0009: OK! - loading kmod test
# kmod_test_0009: OK! - Return value: 0 (SUCCESS), expected SUCCESS
# Fri Nov 20 17:06:47 UTC 2020
# Running test: kmod_test_0009 - run #40
# kmod_test_0009: OK! - loading kmod test
# kmod_test_0009: OK! - Return value: 0 (SUCCESS), expected SUCCESS
# Fri Nov 20 17:06:48 UTC 2020
# Running test: kmod_test_0009 - run #41
# kmod_test_0009: OK! - loading kmod test
# kmod_test_0009: OK! - Return value: 0 (SUCCESS), expected SUCCESS
# Fri Nov 20 17:06:49 UTC 2020
# Running test: kmod_test_0009 - run #42
# kmod_test_0009: OK! - loading kmod test
# kmod_test_0009: OK! - Return value: 0 (SUCCESS), expected SUCCESS
# Fri Nov 20 17:06:50 UTC 2020
# Running test: kmod_test_0009 - run #43
# kmod_test_0009: OK! - loading kmod test
# kmod_test_0009: OK! - Return value: 0 (SUCCESS), expected SUCCESS
# Fri Nov 20 17:06:51 UTC 2020
# Running test: kmod_test_0009 - run #44
# kmod_test_0009: OK! - loading kmod test
# kmod_test_0009: OK! - Return value: 0 (SUCCESS), expected SUCCESS
# Fri Nov 20 17:06:52 UTC 2020
# Running test: kmod_test_0009 - run #45
# kmod_test_0009: OK! - loading kmod test
# kmod_test_0009: OK! - Return value: 0 (SUCCESS), expected SUCCESS
# Fri Nov 20 17:06:53 UTC 2020
# Running test: kmod_test_0009 - run #46
# kmod_test_0009: OK! - loading kmod test
# kmod_test_0009: OK! - Return value: 0 (SUCCESS), expected SUCCESS
# Fri Nov 20 17:06:54 UTC 2020
# Running test: kmod_test_0009 - run #47
# kmod_test_0009: OK! - loading kmod test
# kmod_test_0009: OK! - Return value: 0 (SUCCESS), expected SUCCESS
# Fri Nov 20 17:06:55 UTC 2020
# Running test: kmod_test_0009 - run #48
# kmod_test_0009: OK! - loading kmod test
# kmod_test_0009: OK! - Return value: 0 (SUCCESS), expected SUCCESS
# Fri Nov 20 17:06:56 UTC 2020
# Running test: kmod_test_0009 - run #49
# kmod_test_0009: OK! - loading kmod test
# kmod_test_0009: OK! - Return value: 0 (SUCCESS), expected SUCCESS
# Fri Nov 20 17:06:57 UTC 2020
# Running test: kmod_test_0010 - run #0
# kmod_test_0010: OK! - loading kmod test
# kmod_test_0010: OK! - Return value: -2 (-ENOENT), expected -ENOENT
# Fri Nov 20 17:06:57 UTC 2020
# Running test: kmod_test_0011 - run #0
# kmod_test_0011: OK! - loading kmod test
# kmod_test_0011: OK! - Return value: -2 (-ENOENT), expected -ENOENT
# Fri Nov 20 17:06:57 UTC 2020
# Running test: kmod_test_0012 - run #0
# kmod_check_visibility: OK!
# Fri Nov 20 17:06:57 UTC 2020
# Running test: kmod_test_0013 - run #0
# kmod_check_visibility: OK!
# Test completed
ok 1 selftests: kmod: kmod.sh
make: Leaving directory '/usr/src/perf_selftests-x86_64-rhel-7.6-kselftests-4d9c16a4949b8b027efc8d4214a4c8b11379cb28/tools/testing/selftests/kmod'
2020-11-20 17:06:57 make run_tests -C lkdtm
make: Entering directory '/usr/src/perf_selftests-x86_64-rhel-7.6-kselftests-4d9c16a4949b8b027efc8d4214a4c8b11379cb28/tools/testing/selftests/lkdtm'
install -m 0744 run.sh /usr/src/perf_selftests-x86_64-rhel-7.6-kselftests-4d9c16a4949b8b027efc8d4214a4c8b11379cb28/tools/testing/selftests/lkdtm/PANIC.sh
install -m 0744 run.sh /usr/src/perf_selftests-x86_64-rhel-7.6-kselftests-4d9c16a4949b8b027efc8d4214a4c8b11379cb28/tools/testing/selftests/lkdtm/BUG.sh
install -m 0744 run.sh /usr/src/perf_selftests-x86_64-rhel-7.6-kselftests-4d9c16a4949b8b027efc8d4214a4c8b11379cb28/tools/testing/selftests/lkdtm/WARNING.sh
install -m 0744 run.sh /usr/src/perf_selftests-x86_64-rhel-7.6-kselftests-4d9c16a4949b8b027efc8d4214a4c8b11379cb28/tools/testing/selftests/lkdtm/WARNING_MESSAGE.sh
install -m 0744 run.sh /usr/src/perf_selftests-x86_64-rhel-7.6-kselftests-4d9c16a4949b8b027efc8d4214a4c8b11379cb28/tools/testing/selftests/lkdtm/EXCEPTION.sh
install -m 0744 run.sh /usr/src/perf_selftests-x86_64-rhel-7.6-kselftests-4d9c16a4949b8b027efc8d4214a4c8b11379cb28/tools/testing/selftests/lkdtm/LOOP.sh
install -m 0744 run.sh /usr/src/perf_selftests-x86_64-rhel-7.6-kselftests-4d9c16a4949b8b027efc8d4214a4c8b11379cb28/tools/testing/selftests/lkdtm/EXHAUST_STACK.sh
install -m 0744 run.sh /usr/src/perf_selftests-x86_64-rhel-7.6-kselftests-4d9c16a4949b8b027efc8d4214a4c8b11379cb28/tools/testing/selftests/lkdtm/CORRUPT_STACK.sh
install -m 0744 run.sh /usr/src/perf_selftests-x86_64-rhel-7.6-kselftests-4d9c16a4949b8b027efc8d4214a4c8b11379cb28/tools/testing/selftests/lkdtm/CORRUPT_STACK_STRONG.sh
install -m 0744 run.sh /usr/src/perf_selftests-x86_64-rhel-7.6-kselftests-4d9c16a4949b8b027efc8d4214a4c8b11379cb28/tools/testing/selftests/lkdtm/CORRUPT_LIST_ADD.sh
install -m 0744 run.sh /usr/src/perf_selftests-x86_64-rhel-7.6-kselftests-4d9c16a4949b8b027efc8d4214a4c8b11379cb28/tools/testing/selftests/lkdtm/CORRUPT_LIST_DEL.sh
install -m 0744 run.sh /usr/src/perf_selftests-x86_64-rhel-7.6-kselftests-4d9c16a4949b8b027efc8d4214a4c8b11379cb28/tools/testing/selftests/lkdtm/STACK_GUARD_PAGE_LEADING.sh
install -m 0744 run.sh /usr/src/perf_selftests-x86_64-rhel-7.6-kselftests-4d9c16a4949b8b027efc8d4214a4c8b11379cb28/tools/testing/selftests/lkdtm/STACK_GUARD_PAGE_TRAILING.sh
install -m 0744 run.sh /usr/src/perf_selftests-x86_64-rhel-7.6-kselftests-4d9c16a4949b8b027efc8d4214a4c8b11379cb28/tools/testing/selftests/lkdtm/UNSET_SMEP.sh
install -m 0744 run.sh /usr/src/perf_selftests-x86_64-rhel-7.6-kselftests-4d9c16a4949b8b027efc8d4214a4c8b11379cb28/tools/testing/selftests/lkdtm/DOUBLE_FAULT.sh
install -m 0744 run.sh /usr/src/perf_selftests-x86_64-rhel-7.6-kselftests-4d9c16a4949b8b027efc8d4214a4c8b11379cb28/tools/testing/selftests/lkdtm/CORRUPT_PAC.sh
install -m 0744 run.sh /usr/src/perf_selftests-x86_64-rhel-7.6-kselftests-4d9c16a4949b8b027efc8d4214a4c8b11379cb28/tools/testing/selftests/lkdtm/UNALIGNED_LOAD_STORE_WRITE.sh
install -m 0744 run.sh /usr/src/perf_selftests-x86_64-rhel-7.6-kselftests-4d9c16a4949b8b027efc8d4214a4c8b11379cb28/tools/testing/selftests/lkdtm/OVERWRITE_ALLOCATION.sh
install -m 0744 run.sh /usr/src/perf_selftests-x86_64-rhel-7.6-kselftests-4d9c16a4949b8b027efc8d4214a4c8b11379cb28/tools/testing/selftests/lkdtm/WRITE_AFTER_FREE.sh
install -m 0744 run.sh /usr/src/perf_selftests-x86_64-rhel-7.6-kselftests-4d9c16a4949b8b027efc8d4214a4c8b11379cb28/tools/testing/selftests/lkdtm/READ_AFTER_FREE.sh
install -m 0744 run.sh /usr/src/perf_selftests-x86_64-rhel-7.6-kselftests-4d9c16a4949b8b027efc8d4214a4c8b11379cb28/tools/testing/selftests/lkdtm/WRITE_BUDDY_AFTER_FREE.sh
install -m 0744 run.sh /usr/src/perf_selftests-x86_64-rhel-7.6-kselftests-4d9c16a4949b8b027efc8d4214a4c8b11379cb28/tools/testing/selftests/lkdtm/READ_BUDDY_AFTER_FREE.sh
install -m 0744 run.sh /usr/src/perf_selftests-x86_64-rhel-7.6-kselftests-4d9c16a4949b8b027efc8d4214a4c8b11379cb28/tools/testing/selftests/lkdtm/SLAB_FREE_DOUBLE.sh
install -m 0744 run.sh /usr/src/perf_selftests-x86_64-rhel-7.6-kselftests-4d9c16a4949b8b027efc8d4214a4c8b11379cb28/tools/testing/selftests/lkdtm/SLAB_FREE_CROSS.sh
install -m 0744 run.sh /usr/src/perf_selftests-x86_64-rhel-7.6-kselftests-4d9c16a4949b8b027efc8d4214a4c8b11379cb28/tools/testing/selftests/lkdtm/SLAB_FREE_PAGE.sh
install -m 0744 run.sh /usr/src/perf_selftests-x86_64-rhel-7.6-kselftests-4d9c16a4949b8b027efc8d4214a4c8b11379cb28/tools/testing/selftests/lkdtm/SOFTLOCKUP.sh
install -m 0744 run.sh /usr/src/perf_selftests-x86_64-rhel-7.6-kselftests-4d9c16a4949b8b027efc8d4214a4c8b11379cb28/tools/testing/selftests/lkdtm/HARDLOCKUP.sh
install -m 0744 run.sh /usr/src/perf_selftests-x86_64-rhel-7.6-kselftests-4d9c16a4949b8b027efc8d4214a4c8b11379cb28/tools/testing/selftests/lkdtm/SPINLOCKUP.sh
install -m 0744 run.sh /usr/src/perf_selftests-x86_64-rhel-7.6-kselftests-4d9c16a4949b8b027efc8d4214a4c8b11379cb28/tools/testing/selftests/lkdtm/HUNG_TASK.sh
install -m 0744 run.sh /usr/src/perf_selftests-x86_64-rhel-7.6-kselftests-4d9c16a4949b8b027efc8d4214a4c8b11379cb28/tools/testing/selftests/lkdtm/EXEC_DATA.sh
install -m 0744 run.sh /usr/src/perf_selftests-x86_64-rhel-7.6-kselftests-4d9c16a4949b8b027efc8d4214a4c8b11379cb28/tools/testing/selftests/lkdtm/EXEC_STACK.sh
install -m 0744 run.sh /usr/src/perf_selftests-x86_64-rhel-7.6-kselftests-4d9c16a4949b8b027efc8d4214a4c8b11379cb28/tools/testing/selftests/lkdtm/EXEC_KMALLOC.sh
install -m 0744 run.sh /usr/src/perf_selftests-x86_64-rhel-7.6-kselftests-4d9c16a4949b8b027efc8d4214a4c8b11379cb28/tools/testing/selftests/lkdtm/EXEC_VMALLOC.sh
install -m 0744 run.sh /usr/src/perf_selftests-x86_64-rhel-7.6-kselftests-4d9c16a4949b8b027efc8d4214a4c8b11379cb28/tools/testing/selftests/lkdtm/EXEC_RODATA.sh
install -m 0744 run.sh /usr/src/perf_selftests-x86_64-rhel-7.6-kselftests-4d9c16a4949b8b027efc8d4214a4c8b11379cb28/tools/testing/selftests/lkdtm/EXEC_USERSPACE.sh
install -m 0744 run.sh /usr/src/perf_selftests-x86_64-rhel-7.6-kselftests-4d9c16a4949b8b027efc8d4214a4c8b11379cb28/tools/testing/selftests/lkdtm/EXEC_NULL.sh
install -m 0744 run.sh /usr/src/perf_selftests-x86_64-rhel-7.6-kselftests-4d9c16a4949b8b027efc8d4214a4c8b11379cb28/tools/testing/selftests/lkdtm/ACCESS_USERSPACE.sh
install -m 0744 run.sh /usr/src/perf_selftests-x86_64-rhel-7.6-kselftests-4d9c16a4949b8b027efc8d4214a4c8b11379cb28/tools/testing/selftests/lkdtm/ACCESS_NULL.sh
install -m 0744 run.sh /usr/src/perf_selftests-x86_64-rhel-7.6-kselftests-4d9c16a4949b8b027efc8d4214a4c8b11379cb28/tools/testing/selftests/lkdtm/WRITE_RO.sh
install -m 0744 run.sh /usr/src/perf_selftests-x86_64-rhel-7.6-kselftests-4d9c16a4949b8b027efc8d4214a4c8b11379cb28/tools/testing/selftests/lkdtm/WRITE_RO_AFTER_INIT.sh
install -m 0744 run.sh /usr/src/perf_selftests-x86_64-rhel-7.6-kselftests-4d9c16a4949b8b027efc8d4214a4c8b11379cb28/tools/testing/selftests/lkdtm/WRITE_KERN.sh
install -m 0744 run.sh /usr/src/perf_selftests-x86_64-rhel-7.6-kselftests-4d9c16a4949b8b027efc8d4214a4c8b11379cb28/tools/testing/selftests/lkdtm/REFCOUNT_INC_OVERFLOW.sh
install -m 0744 run.sh /usr/src/perf_selftests-x86_64-rhel-7.6-kselftests-4d9c16a4949b8b027efc8d4214a4c8b11379cb28/tools/testing/selftests/lkdtm/REFCOUNT_ADD_OVERFLOW.sh
install -m 0744 run.sh /usr/src/perf_selftests-x86_64-rhel-7.6-kselftests-4d9c16a4949b8b027efc8d4214a4c8b11379cb28/tools/testing/selftests/lkdtm/REFCOUNT_INC_NOT_ZERO_OVERFLOW.sh
install -m 0744 run.sh /usr/src/perf_selftests-x86_64-rhel-7.6-kselftests-4d9c16a4949b8b027efc8d4214a4c8b11379cb28/tools/testing/selftests/lkdtm/REFCOUNT_ADD_NOT_ZERO_OVERFLOW.sh
install -m 0744 run.sh /usr/src/perf_selftests-x86_64-rhel-7.6-kselftests-4d9c16a4949b8b027efc8d4214a4c8b11379cb28/tools/testing/selftests/lkdtm/REFCOUNT_DEC_ZERO.sh
install -m 0744 run.sh /usr/src/perf_selftests-x86_64-rhel-7.6-kselftests-4d9c16a4949b8b027efc8d4214a4c8b11379cb28/tools/testing/selftests/lkdtm/REFCOUNT_DEC_NEGATIVE.sh
install -m 0744 run.sh /usr/src/perf_selftests-x86_64-rhel-7.6-kselftests-4d9c16a4949b8b027efc8d4214a4c8b11379cb28/tools/testing/selftests/lkdtm/REFCOUNT_DEC_AND_TEST_NEGATIVE.sh
install -m 0744 run.sh /usr/src/perf_selftests-x86_64-rhel-7.6-kselftests-4d9c16a4949b8b027efc8d4214a4c8b11379cb28/tools/testing/selftests/lkdtm/REFCOUNT_SUB_AND_TEST_NEGATIVE.sh
install -m 0744 run.sh /usr/src/perf_selftests-x86_64-rhel-7.6-kselftests-4d9c16a4949b8b027efc8d4214a4c8b11379cb28/tools/testing/selftests/lkdtm/REFCOUNT_INC_ZERO.sh
install -m 0744 run.sh /usr/src/perf_selftests-x86_64-rhel-7.6-kselftests-4d9c16a4949b8b027efc8d4214a4c8b11379cb28/tools/testing/selftests/lkdtm/REFCOUNT_ADD_ZERO.sh
install -m 0744 run.sh /usr/src/perf_selftests-x86_64-rhel-7.6-kselftests-4d9c16a4949b8b027efc8d4214a4c8b11379cb28/tools/testing/selftests/lkdtm/REFCOUNT_INC_SATURATED.sh
install -m 0744 run.sh /usr/src/perf_selftests-x86_64-rhel-7.6-kselftests-4d9c16a4949b8b027efc8d4214a4c8b11379cb28/tools/testing/selftests/lkdtm/REFCOUNT_DEC_SATURATED.sh
install -m 0744 run.sh /usr/src/perf_selftests-x86_64-rhel-7.6-kselftests-4d9c16a4949b8b027efc8d4214a4c8b11379cb28/tools/testing/selftests/lkdtm/REFCOUNT_ADD_SATURATED.sh
install -m 0744 run.sh /usr/src/perf_selftests-x86_64-rhel-7.6-kselftests-4d9c16a4949b8b027efc8d4214a4c8b11379cb28/tools/testing/selftests/lkdtm/REFCOUNT_INC_NOT_ZERO_SATURATED.sh
install -m 0744 run.sh /usr/src/perf_selftests-x86_64-rhel-7.6-kselftests-4d9c16a4949b8b027efc8d4214a4c8b11379cb28/tools/testing/selftests/lkdtm/REFCOUNT_ADD_NOT_ZERO_SATURATED.sh
install -m 0744 run.sh /usr/src/perf_selftests-x86_64-rhel-7.6-kselftests-4d9c16a4949b8b027efc8d4214a4c8b11379cb28/tools/testing/selftests/lkdtm/REFCOUNT_DEC_AND_TEST_SATURATED.sh
install -m 0744 run.sh /usr/src/perf_selftests-x86_64-rhel-7.6-kselftests-4d9c16a4949b8b027efc8d4214a4c8b11379cb28/tools/testing/selftests/lkdtm/REFCOUNT_SUB_AND_TEST_SATURATED.sh
install -m 0744 run.sh /usr/src/perf_selftests-x86_64-rhel-7.6-kselftests-4d9c16a4949b8b027efc8d4214a4c8b11379cb28/tools/testing/selftests/lkdtm/REFCOUNT_TIMING.sh
install -m 0744 run.sh /usr/src/perf_selftests-x86_64-rhel-7.6-kselftests-4d9c16a4949b8b027efc8d4214a4c8b11379cb28/tools/testing/selftests/lkdtm/ATOMIC_TIMING.sh
install -m 0744 run.sh /usr/src/perf_selftests-x86_64-rhel-7.6-kselftests-4d9c16a4949b8b027efc8d4214a4c8b11379cb28/tools/testing/selftests/lkdtm/USERCOPY_HEAP_SIZE_TO.sh
install -m 0744 run.sh /usr/src/perf_selftests-x86_64-rhel-7.6-kselftests-4d9c16a4949b8b027efc8d4214a4c8b11379cb28/tools/testing/selftests/lkdtm/USERCOPY_HEAP_SIZE_FROM.sh
install -m 0744 run.sh /usr/src/perf_selftests-x86_64-rhel-7.6-kselftests-4d9c16a4949b8b027efc8d4214a4c8b11379cb28/tools/testing/selftests/lkdtm/USERCOPY_HEAP_WHITELIST_TO.sh
install -m 0744 run.sh /usr/src/perf_selftests-x86_64-rhel-7.6-kselftests-4d9c16a4949b8b027efc8d4214a4c8b11379cb28/tools/testing/selftests/lkdtm/USERCOPY_HEAP_WHITELIST_FROM.sh
install -m 0744 run.sh /usr/src/perf_selftests-x86_64-rhel-7.6-kselftests-4d9c16a4949b8b027efc8d4214a4c8b11379cb28/tools/testing/selftests/lkdtm/USERCOPY_STACK_FRAME_TO.sh
install -m 0744 run.sh /usr/src/perf_selftests-x86_64-rhel-7.6-kselftests-4d9c16a4949b8b027efc8d4214a4c8b11379cb28/tools/testing/selftests/lkdtm/USERCOPY_STACK_FRAME_FROM.sh
install -m 0744 run.sh /usr/src/perf_selftests-x86_64-rhel-7.6-kselftests-4d9c16a4949b8b027efc8d4214a4c8b11379cb28/tools/testing/selftests/lkdtm/USERCOPY_STACK_BEYOND.sh
install -m 0744 run.sh /usr/src/perf_selftests-x86_64-rhel-7.6-kselftests-4d9c16a4949b8b027efc8d4214a4c8b11379cb28/tools/testing/selftests/lkdtm/USERCOPY_KERNEL.sh
install -m 0744 run.sh /usr/src/perf_selftests-x86_64-rhel-7.6-kselftests-4d9c16a4949b8b027efc8d4214a4c8b11379cb28/tools/testing/selftests/lkdtm/STACKLEAK_ERASING.sh
install -m 0744 run.sh /usr/src/perf_selftests-x86_64-rhel-7.6-kselftests-4d9c16a4949b8b027efc8d4214a4c8b11379cb28/tools/testing/selftests/lkdtm/CFI_FORWARD_PROTO.sh
TAP version 13
1..70
# selftests: lkdtm: PANIC.sh
# Skipping PANIC: crashes entire system
ok 1 selftests: lkdtm: PANIC.sh # SKIP
# selftests: lkdtm: BUG.sh
# [ 540.206708] install -m 0744 run.sh /usr/src/perf_selftests-x86_64-rhel-7.6-kselftests-4d9c16a4949b8b027efc8d4214a4c8b11379cb28/tools/testing/selftests/lkdtm/READ_AFTER_FREE.sh
#
# [ 540.235516] install -m 0744 run.sh /usr/src/perf_selftests-x86_64-rhel-7.6-kselftests-4d9c16a4949b8b027efc8d4214a4c8b11379cb28/tools/testing/selftests/lkdtm/WRITE_BUDDY_AFTER_FREE.sh
#
# BUG: missing 'kernel BUG at': [FAIL]
not ok 2 selftests: lkdtm: BUG.sh # exit=1
# selftests: lkdtm: WARNING.sh
# [ 540.372541] install -m 0744 run.sh /usr/src/perf_selftests-x86_64-rhel-7.6-kselftests-4d9c16a4949b8b027efc8d4214a4c8b11379cb28/tools/testing/selftests/lkdtm/SOFTLOCKUP.sh
#
# [ 540.400297] install -m 0744 run.sh /usr/src/perf_selftests-x86_64-rhel-7.6-kselftests-4d9c16a4949b8b027efc8d4214a4c8b11379cb28/tools/testing/selftests/lkdtm/HARDLOCKUP.sh
#
# [ 540.428044] install -m 0744 run.sh /usr/src/perf_selftests-x86_64-rhel-7.6-kselftests-4d9c16a4949b8b027efc8d4214a4c8b11379cb28/tools/testing/selftests/lkdtm/SPINLOCKUP.sh
#
# WARNING: missing 'WARNING:': [FAIL]
not ok 3 selftests: lkdtm: WARNING.sh # exit=1
# selftests: lkdtm: WARNING_MESSAGE.sh
# [ 540.589467] install -m 0744 run.sh /usr/src/perf_selftests-x86_64-rhel-7.6-kselftests-4d9c16a4949b8b027efc8d4214a4c8b11379cb28/tools/testing/selftests/lkdtm/EXEC_RODATA.sh
#
# [ 540.617884] install -m 0744 run.sh /usr/src/perf_selftests-x86_64-rhel-7.6-kselftests-4d9c16a4949b8b027efc8d4214a4c8b11379cb28/tools/testing/selftests/lkdtm/EXEC_USERSPACE.sh
#
# WARNING_MESSAGE: missing 'message trigger': [FAIL]
not ok 4 selftests: lkdtm: WARNING_MESSAGE.sh # exit=1
# selftests: lkdtm: EXCEPTION.sh
# [ 540.780710] install -m 0744 run.sh /usr/src/perf_selftests-x86_64-rhel-7.6-kselftests-4d9c16a4949b8b027efc8d4214a4c8b11379cb28/tools/testing/selftests/lkdtm/WRITE_KERN.sh
#
# [ 540.808967] install -m 0744 run.sh /usr/src/perf_selftests-x86_64-rhel-7.6-kselftests-4d9c16a4949b8b027efc8d4214a4c8b11379cb28/tools/testing/selftests/lkdtm/REFCOUNT_INC_OVERFLOW.sh
#
# EXCEPTION: missing 'call trace:': [FAIL]
not ok 5 selftests: lkdtm: EXCEPTION.sh # exit=1
# selftests: lkdtm: LOOP.sh
# Skipping LOOP: Hangs the system
ok 6 selftests: lkdtm: LOOP.sh # SKIP
# selftests: lkdtm: EXHAUST_STACK.sh
# Skipping EXHAUST_STACK: Corrupts memory on failure
ok 7 selftests: lkdtm: EXHAUST_STACK.sh # SKIP
# selftests: lkdtm: CORRUPT_STACK.sh
# Skipping CORRUPT_STACK: Crashes entire system on success
ok 8 selftests: lkdtm: CORRUPT_STACK.sh # SKIP
# selftests: lkdtm: CORRUPT_STACK_STRONG.sh
# Skipping CORRUPT_STACK_STRONG: Crashes entire system on success
ok 9 selftests: lkdtm: CORRUPT_STACK_STRONG.sh # SKIP
# selftests: lkdtm: CORRUPT_LIST_ADD.sh
# [ 541.150054] install -m 0744 run.sh /usr/src/perf_selftests-x86_64-rhel-7.6-kselftests-4d9c16a4949b8b027efc8d4214a4c8b11379cb28/tools/testing/selftests/lkdtm/REFCOUNT_ADD_SATURATED.sh
#
# [ 541.179427] install -m 0744 run.sh /usr/src/perf_selftests-x86_64-rhel-7.6-kselftests-4d9c16a4949b8b027efc8d4214a4c8b11379cb28/tools/testing/selftests/lkdtm/REFCOUNT_INC_NOT_ZERO_SATURATED.sh
#
# [ 541.209534] install -m 0744 run.sh /usr/src/perf_selftests-x86_64-rhel-7.6-kselftests-4d9c16a4949b8b027efc8d4214a4c8b11379cb28/tools/testing/selftests/lkdtm/REFCOUNT_ADD_NOT_ZERO_SATURATED.sh
#
# CORRUPT_LIST_ADD: missing 'list_add corruption': [FAIL]
not ok 10 selftests: lkdtm: CORRUPT_LIST_ADD.sh # exit=1
# selftests: lkdtm: CORRUPT_LIST_DEL.sh
# [ 541.353328] install -m 0744 run.sh /usr/src/perf_selftests-x86_64-rhel-7.6-kselftests-4d9c16a4949b8b027efc8d4214a4c8b11379cb28/tools/testing/selftests/lkdtm/USERCOPY_HEAP_SIZE_TO.sh
#
# [ 541.382517] install -m 0744 run.sh /usr/src/perf_selftests-x86_64-rhel-7.6-kselftests-4d9c16a4949b8b027efc8d4214a4c8b11379cb28/tools/testing/selftests/lkdtm/USERCOPY_HEAP_SIZE_FROM.sh
#
# CORRUPT_LIST_DEL: missing 'list_del corruption': [FAIL]
not ok 11 selftests: lkdtm: CORRUPT_LIST_DEL.sh # exit=1
# selftests: lkdtm: STACK_GUARD_PAGE_LEADING.sh
# [ 541.555081] install -m 0744 run.sh /usr/src/perf_selftests-x86_64-rhel-7.6-kselftests-4d9c16a4949b8b027efc8d4214a4c8b11379cb28/tools/testing/selftests/lkdtm/USERCOPY_KERNEL.sh
#
# [ 541.583545] install -m 0744 run.sh /usr/src/perf_selftests-x86_64-rhel-7.6-kselftests-4d9c16a4949b8b027efc8d4214a4c8b11379cb28/tools/testing/selftests/lkdtm/STACKLEAK_ERASING.sh
#
# STACK_GUARD_PAGE_LEADING: missing 'call trace:': [FAIL]
not ok 12 selftests: lkdtm: STACK_GUARD_PAGE_LEADING.sh # exit=1
# selftests: lkdtm: STACK_GUARD_PAGE_TRAILING.sh
# [ 541.732224] # [ 540.235516] install -m 0744 run.sh /usr/src/perf_selftests-x86_64-rhel-7.6-kselftests-4d9c16a4949b8b027efc8d4214a4c8b11379cb28/tools/testing/selftests/lkdtm/WRITE_BUDDY_AFTER_FREE.sh
#
# [ 541.758091] #
#
# [ 541.765561] # BUG: missing 'kernel BUG at': [FAIL]
#
# [ 541.776378] not ok 2 selftests: lkdtm: BUG.sh # exit=1
#
# [ 541.787170] # selftests: lkdtm: WARNING.sh
#
# STACK_GUARD_PAGE_TRAILING: missing 'call trace:': [FAIL]
not ok 13 selftests: lkdtm: STACK_GUARD_PAGE_TRAILING.sh # exit=1
# selftests: lkdtm: UNSET_SMEP.sh
# [ 541.917623] # selftests: lkdtm: WARNING_MESSAGE.sh
#
# [ 541.931736] # [ 540.589467] install -m 0744 run.sh /usr/src/perf_selftests-x86_64-rhel-7.6-kselftests-4d9c16a4949b8b027efc8d4214a4c8b11379cb28/tools/testing/selftests/lkdtm/EXEC_RODATA.sh
#
# [ 541.955342] #
#
# [ 541.965850] # [ 540.617884] install -m 0744 run.sh /usr/src/perf_selftests-x86_64-rhel-7.6-kselftests-4d9c16a4949b8b027efc8d4214a4c8b11379cb28/tools/testing/selftests/lkdtm/EXEC_USERSPACE.sh
#
# UNSET_SMEP: missing 'CR4 bits went missing': [FAIL]
not ok 14 selftests: lkdtm: UNSET_SMEP.sh # exit=1
# selftests: lkdtm: DOUBLE_FAULT.sh
# Skipped: test 'DOUBLE_FAULT' missing in /sys/kernel/debug/provoke-crash/DIRECT!
ok 15 selftests: lkdtm: DOUBLE_FAULT.sh # SKIP
# selftests: lkdtm: CORRUPT_PAC.sh
# [ 542.145050] # selftests: lkdtm: EXHAUST_STACK.sh
#
# [ 542.155626] # Skipping EXHAUST_STACK: Corrupts memory on failure
#
# [ 542.167478] ok 7 selftests: lkdtm: EXHAUST_STACK.sh # SKIP
#
# [ 542.178407] # selftests: lkdtm: CORRUPT_STACK.sh
#
# [ 542.188817] # Skipping CORRUPT_STACK: Crashes entire system on success
#
# [ 542.200938] ok 8 selftests: lkdtm: CORRUPT_STACK.sh # SKIP
#
# CORRUPT_PAC: missing 'call trace:': [FAIL]
not ok 16 selftests: lkdtm: CORRUPT_PAC.sh # exit=1
# selftests: lkdtm: UNALIGNED_LOAD_STORE_WRITE.sh
# [ 542.369231] #
#
# [ 542.376631] # CORRUPT_LIST_ADD: missing 'list_add corruption': [FAIL]
#
# [ 542.389013] not ok 10 selftests: lkdtm: CORRUPT_LIST_ADD.sh # exit=1
#
# [ 542.400875] # selftests: lkdtm: CORRUPT_LIST_DEL.sh
#
# [ 542.414951] # [ 541.353328] install -m 0744 run.sh /usr/src/perf_selftests-x86_64-rhel-7.6-kselftests-4d9c16a4949b8b027efc8d4214a4c8b11379cb28/tools/testing/selftests/lkdtm/USERCOPY_HEAP_SIZE_TO.sh
#
# UNALIGNED_LOAD_STORE_WRITE: missing 'call trace:': [FAIL]
not ok 17 selftests: lkdtm: UNALIGNED_LOAD_STORE_WRITE.sh # exit=1
# selftests: lkdtm: OVERWRITE_ALLOCATION.sh
# Skipping OVERWRITE_ALLOCATION: Corrupts memory on failure
ok 18 selftests: lkdtm: OVERWRITE_ALLOCATION.sh # SKIP
# selftests: lkdtm: WRITE_AFTER_FREE.sh
# Skipping WRITE_AFTER_FREE: Corrupts memory on failure
ok 19 selftests: lkdtm: WRITE_AFTER_FREE.sh # SKIP
# selftests: lkdtm: READ_AFTER_FREE.sh
# [ 542.662391] #
#
# [ 542.669706] # [ 541.765561] # BUG: missing 'kernel BUG at': [FAIL]
#
# [ 542.680573] #
#
# [ 542.687877] # [ 541.776378] not ok 2 selftests: lkdtm: BUG.sh # exit=1
#
# [ 542.699148] #
#
# [ 542.705991] # [ 541.787170] # selftests: lkdtm: WARNING.sh
#
# [ 542.715853] #
#
# [ 542.722695] # STACK_GUARD_PAGE_TRAILING: missing 'call trace:': [FAIL]
#
# READ_AFTER_FREE: saw 'call trace:': ok
ok 20 selftests: lkdtm: READ_AFTER_FREE.sh
# selftests: lkdtm: WRITE_BUDDY_AFTER_FREE.sh
# Skipping WRITE_BUDDY_AFTER_FREE: Corrupts memory on failure
ok 21 selftests: lkdtm: WRITE_BUDDY_AFTER_FREE.sh # SKIP
# selftests: lkdtm: READ_BUDDY_AFTER_FREE.sh
# [ 542.900122] ok 15 selftests: lkdtm: DOUBLE_FAULT.sh # SKIP
#
# [ 542.910606] # selftests: lkdtm: CORRUPT_PAC.sh
#
# [ 542.920201] # [ 542.145050] # selftests: lkdtm: EXHAUST_STACK.sh
#
# [ 542.930609] #
#
# [ 542.937789] # [ 542.155626] # Skipping EXHAUST_STACK: Corrupts memory on failure
#
# [ 542.949641] #
#
# [ 542.957945] # [ 542.167478] ok 7 selftests: lkdtm: EXHAUST_STACK.sh # SKIP
#
# [ 542.970464] #
#
# READ_BUDDY_AFTER_FREE: missing 'call trace:': [FAIL]
not ok 22 selftests: lkdtm: READ_BUDDY_AFTER_FREE.sh # exit=1
# selftests: lkdtm: SLAB_FREE_DOUBLE.sh
# [ 543.105513] #
#
# [ 543.112162] # [ 542.400875] # selftests: lkdtm: CORRUPT_LIST_DEL.sh
#
# [ 543.122654] #
#
# [ 543.133225] # [ 542.414951] # [ 541.353328] install -m 0744 run.sh /usr/src/perf_selftests-x86_64-rhel-7.6-kselftests-4d9c16a4949b8b027efc8d4214a4c8b11379cb28/tools/testing/selftests/lkdtm/USERCOPY_HEAP_SIZE_TO.sh
#
# [ 543.158109] #
#
# [ 543.164581] # UNALIGNED_LOAD_STORE_WRITE: missing 'call trace:': [FAIL]
#
# SLAB_FREE_DOUBLE: saw 'call trace:': ok
ok 23 selftests: lkdtm: SLAB_FREE_DOUBLE.sh
# selftests: lkdtm: SLAB_FREE_CROSS.sh
# [ 543.286915] #
#
# [ 543.292709] # [ 542.680573] #
#
# [ 543.299745] #
#
# [ 543.306892] # [ 542.687877] # [ 541.776378] not ok 2 selftests: lkdtm: BUG.sh # exit=1
#
# [ 543.319329] #
#
# [ 543.325151] # [ 542.699148] #
#
# [ 543.332033] #
#
# [ 543.338874] # [ 542.705991] # [ 541.787170] # selftests: lkdtm: WARNING.sh
#
# [ 543.350001] #
#
# SLAB_FREE_CROSS: missing 'call trace:': [FAIL]
not ok 24 selftests: lkdtm: SLAB_FREE_CROSS.sh # exit=1
# selftests: lkdtm: SLAB_FREE_PAGE.sh
# [ 543.482028] # [ 542.920201] # [ 542.145050] # selftests: lkdtm: EXHAUST_STACK.sh
#
# [ 543.492851] #
#
# [ 543.497958] # [ 542.930609] #
#
# [ 543.504162] #
#
# [ 543.510720] # [ 542.937789] # [ 542.155626] # Skipping EXHAUST_STACK: Corrupts memory on failure
#
# [ 543.523473] #
#
# [ 543.528692] # [ 542.949641] #
#
# [ 543.535151] #
#
# [ 543.541920] # [ 542.957945] # [ 542.167478] ok 7 selftests: lkdtm: EXHAUST_STACK.sh # SKIP
#
# SLAB_FREE_PAGE: missing 'call trace:': [FAIL]
not ok 25 selftests: lkdtm: SLAB_FREE_PAGE.sh # exit=1
# selftests: lkdtm: SOFTLOCKUP.sh
# Skipping SOFTLOCKUP: Hangs the system
ok 26 selftests: lkdtm: SOFTLOCKUP.sh # SKIP
# selftests: lkdtm: HARDLOCKUP.sh
# Skipping HARDLOCKUP: Hangs the system
ok 27 selftests: lkdtm: HARDLOCKUP.sh # SKIP
# selftests: lkdtm: SPINLOCKUP.sh
# Skipping SPINLOCKUP: Hangs the system
ok 28 selftests: lkdtm: SPINLOCKUP.sh # SKIP
# selftests: lkdtm: HUNG_TASK.sh
# Skipping HUNG_TASK: Hangs the system
ok 29 selftests: lkdtm: HUNG_TASK.sh # SKIP
# selftests: lkdtm: EXEC_DATA.sh
# [ 543.873836] not ok 24 selftests: lkdtm: SLAB_FREE_CROSS.sh # exit=1
#
# [ 543.884589] # selftests: lkdtm: SLAB_FREE_PAGE.sh
#
# [ 543.894518] # [ 543.482028] # [ 542.920201] # [ 542.145050] # selftests: lkdtm: EXHAUST_STACK.sh
#
# [ 543.907399] #
#
# [ 543.912961] # [ 543.492851] #
#
# [ 543.919434] #
#
# [ 543.925286] # [ 543.497958] # [ 542.930609] #
#
# [ 543.933415] #
#
# EXEC_DATA: missing 'call trace:': [FAIL]
not ok 30 selftests: lkdtm: EXEC_DATA.sh # exit=1
# selftests: lkdtm: EXEC_STACK.sh
# [ 544.066345] ok 26 selftests: lkdtm: SOFTLOCKUP.sh # SKIP
#
# [ 544.076136] # selftests: lkdtm: HARDLOCKUP.sh
#
# [ 544.085103] # Skipping HARDLOCKUP: Hangs the system
#
# [ 544.094916] ok 27 selftests: lkdtm: HARDLOCKUP.sh # SKIP
#
# [ 544.104337] # selftests: lkdtm: SPINLOCKUP.sh
#
# [ 544.112711] # Skipping SPINLOCKUP: Hangs the system
#
# [ 544.122131] ok 28 selftests: lkdtm: SPINLOCKUP.sh # SKIP
#
# EXEC_STACK: missing 'call trace:': [FAIL]
not ok 31 selftests: lkdtm: EXEC_STACK.sh # exit=1
# selftests: lkdtm: EXEC_KMALLOC.sh
# [ 544.256879] #
#
# [ 544.263361] # [ 543.925286] # [ 543.497958] # [ 542.930609] #
#
# [ 544.273447] #
#
# [ 544.279137] # [ 543.933415] #
#
# [ 544.285915] #
#
# [ 544.292073] # EXEC_DATA: missing 'call trace:': [FAIL]
#
# [ 544.302024] not ok 30 selftests: lkdtm: EXEC_DATA.sh # exit=1
#
# [ 544.312433] # selftests: lkdtm: EXEC_STACK.sh
#
# [ 544.321977] # [ 544.066345] ok 26 selftests: lkdtm: SOFTLOCKUP.sh # SKIP
#
# EXEC_KMALLOC: saw 'call trace:': ok
ok 32 selftests: lkdtm: EXEC_KMALLOC.sh
# selftests: lkdtm: EXEC_VMALLOC.sh
# [ 544.453238] # selftests: lkdtm: EXEC_KMALLOC.sh
#
# [ 544.461933] # [ 544.256879] #
#
# [ 544.468489] #
#
# [ 544.475247] # [ 544.263361] # [ 543.925286] # [ 543.497958] # [ 542.930609] #
#
# [ 544.486645] #
#
# [ 544.492232] # [ 544.273447] #
#
# [ 544.498928] #
#
# [ 544.504645] # [ 544.279137] # [ 543.933415] #
#
# [ 544.513088] #
#
# EXEC_VMALLOC: missing 'call trace:': [FAIL]
not ok 33 selftests: lkdtm: EXEC_VMALLOC.sh # exit=1
# selftests: lkdtm: EXEC_RODATA.sh
# [ 544.647062] #
#
# [ 544.652673] # [ 544.468489] #
#
# [ 544.659285] #
#
# [ 544.666271] # [ 544.475247] # [ 544.263361] # [ 543.925286] # [ 543.497958] # [ 542.930609] #
#
# [ 544.679353] #
#
# [ 544.684834] # [ 544.486645] #
#
# [ 544.691346] #
#
# [ 544.697182] # [ 544.492232] # [ 544.273447] #
#
# [ 544.705384] #
#
# [ 544.710821] # [ 544.498928] #
#
# EXEC_RODATA: missing 'call trace:': [FAIL]
not ok 34 selftests: lkdtm: EXEC_RODATA.sh # exit=1
# selftests: lkdtm: EXEC_USERSPACE.sh
# [ 544.842094] #
#
# [ 544.847731] # [ 544.684834] # [ 544.486645] #
#
# [ 544.855743] #
#
# [ 544.860982] # [ 544.691346] #
#
# [ 544.867158] #
#
# [ 544.873175] # [ 544.697182] # [ 544.492232] # [ 544.273447] #
#
# [ 544.882664] #
#
# [ 544.888034] # [ 544.705384] #
#
# [ 544.894259] #
#
# [ 544.899603] # [ 544.710821] # [ 544.498928] #
#
# [ 544.907188] #
#
# EXEC_USERSPACE: missing 'call trace:': [FAIL]
not ok 35 selftests: lkdtm: EXEC_USERSPACE.sh # exit=1
# selftests: lkdtm: EXEC_NULL.sh
# [ 545.039239] #
#
# [ 545.044304] # [ 544.894259] #
#
# [ 545.050535] #
#
# [ 545.056580] # [ 544.899603] # [ 544.710821] # [ 544.498928] #
#
# [ 545.065713] #
#
# [ 545.070629] # [ 544.907188] #
#
# [ 545.076672] #
#
# [ 545.082338] # EXEC_USERSPACE: missing 'call trace:': [FAIL]
#
# [ 545.092495] not ok 35 selftests: lkdtm: EXEC_USERSPACE.sh # exit=1
#
# EXEC_NULL: saw 'call trace:': ok
ok 36 selftests: lkdtm: EXEC_NULL.sh
# selftests: lkdtm: ACCESS_USERSPACE.sh
# [ 545.226085] #
#
# [ 545.231466] # EXEC_NULL: saw 'call trace:': ok
#
# [ 545.240088] ok 36 selftests: lkdtm: EXEC_NULL.sh
#
# [ 545.248889] # selftests: lkdtm: ACCESS_USERSPACE.sh
#
# ACCESS_USERSPACE: saw 'call trace:': ok
ok 37 selftests: lkdtm: ACCESS_USERSPACE.sh
# selftests: lkdtm: ACCESS_NULL.sh
# ACCESS_NULL: missing 'call trace:': [FAIL]
not ok 38 selftests: lkdtm: ACCESS_NULL.sh # exit=1
# selftests: lkdtm: WRITE_RO.sh
# WRITE_RO: missing 'call trace:': [FAIL]
not ok 39 selftests: lkdtm: WRITE_RO.sh # exit=1
# selftests: lkdtm: WRITE_RO_AFTER_INIT.sh
# WRITE_RO_AFTER_INIT: missing 'call trace:': [FAIL]
not ok 40 selftests: lkdtm: WRITE_RO_AFTER_INIT.sh # exit=1
# selftests: lkdtm: WRITE_KERN.sh
# WRITE_KERN: missing 'call trace:': [FAIL]
not ok 41 selftests: lkdtm: WRITE_KERN.sh # exit=1
# selftests: lkdtm: REFCOUNT_INC_OVERFLOW.sh
# REFCOUNT_INC_OVERFLOW: missing 'call trace:': [FAIL]
not ok 42 selftests: lkdtm: REFCOUNT_INC_OVERFLOW.sh # exit=1
# selftests: lkdtm: REFCOUNT_ADD_OVERFLOW.sh
# REFCOUNT_ADD_OVERFLOW: missing 'call trace:': [FAIL]
not ok 43 selftests: lkdtm: REFCOUNT_ADD_OVERFLOW.sh # exit=1
# selftests: lkdtm: REFCOUNT_INC_NOT_ZERO_OVERFLOW.sh
# REFCOUNT_INC_NOT_ZERO_OVERFLOW: missing 'call trace:': [FAIL]
not ok 44 selftests: lkdtm: REFCOUNT_INC_NOT_ZERO_OVERFLOW.sh # exit=1
# selftests: lkdtm: REFCOUNT_ADD_NOT_ZERO_OVERFLOW.sh
# REFCOUNT_ADD_NOT_ZERO_OVERFLOW: missing 'call trace:': [FAIL]
not ok 45 selftests: lkdtm: REFCOUNT_ADD_NOT_ZERO_OVERFLOW.sh # exit=1
# selftests: lkdtm: REFCOUNT_DEC_ZERO.sh
# REFCOUNT_DEC_ZERO: missing 'call trace:': [FAIL]
not ok 46 selftests: lkdtm: REFCOUNT_DEC_ZERO.sh # exit=1
# selftests: lkdtm: REFCOUNT_DEC_NEGATIVE.sh
# REFCOUNT_DEC_NEGATIVE: missing 'Negative detected: saturated': [FAIL]
not ok 47 selftests: lkdtm: REFCOUNT_DEC_NEGATIVE.sh # exit=1
# selftests: lkdtm: REFCOUNT_DEC_AND_TEST_NEGATIVE.sh
# REFCOUNT_DEC_AND_TEST_NEGATIVE: missing 'Negative detected: saturated': [FAIL]
not ok 48 selftests: lkdtm: REFCOUNT_DEC_AND_TEST_NEGATIVE.sh # exit=1
# selftests: lkdtm: REFCOUNT_SUB_AND_TEST_NEGATIVE.sh
# REFCOUNT_SUB_AND_TEST_NEGATIVE: missing 'Negative detected: saturated': [FAIL]
not ok 49 selftests: lkdtm: REFCOUNT_SUB_AND_TEST_NEGATIVE.sh # exit=1
# selftests: lkdtm: REFCOUNT_INC_ZERO.sh
# REFCOUNT_INC_ZERO: missing 'call trace:': [FAIL]
not ok 50 selftests: lkdtm: REFCOUNT_INC_ZERO.sh # exit=1
# selftests: lkdtm: REFCOUNT_ADD_ZERO.sh
# REFCOUNT_ADD_ZERO: missing 'call trace:': [FAIL]
not ok 51 selftests: lkdtm: REFCOUNT_ADD_ZERO.sh # exit=1
# selftests: lkdtm: REFCOUNT_INC_SATURATED.sh
# REFCOUNT_INC_SATURATED: missing 'Saturation detected: still saturated': [FAIL]
not ok 52 selftests: lkdtm: REFCOUNT_INC_SATURATED.sh # exit=1
# selftests: lkdtm: REFCOUNT_DEC_SATURATED.sh
# REFCOUNT_DEC_SATURATED: missing 'Saturation detected: still saturated': [FAIL]
not ok 53 selftests: lkdtm: REFCOUNT_DEC_SATURATED.sh # exit=1
# selftests: lkdtm: REFCOUNT_ADD_SATURATED.sh
# REFCOUNT_ADD_SATURATED: missing 'Saturation detected: still saturated': [FAIL]
not ok 54 selftests: lkdtm: REFCOUNT_ADD_SATURATED.sh # exit=1
# selftests: lkdtm: REFCOUNT_INC_NOT_ZERO_SATURATED.sh
# REFCOUNT_INC_NOT_ZERO_SATURATED: missing 'call trace:': [FAIL]
not ok 55 selftests: lkdtm: REFCOUNT_INC_NOT_ZERO_SATURATED.sh # exit=1
# selftests: lkdtm: REFCOUNT_ADD_NOT_ZERO_SATURATED.sh
# REFCOUNT_ADD_NOT_ZERO_SATURATED: missing 'call trace:': [FAIL]
not ok 56 selftests: lkdtm: REFCOUNT_ADD_NOT_ZERO_SATURATED.sh # exit=1
# selftests: lkdtm: REFCOUNT_DEC_AND_TEST_SATURATED.sh
# REFCOUNT_DEC_AND_TEST_SATURATED: missing 'Saturation detected: still saturated': [FAIL]
not ok 57 selftests: lkdtm: REFCOUNT_DEC_AND_TEST_SATURATED.sh # exit=1
# selftests: lkdtm: REFCOUNT_SUB_AND_TEST_SATURATED.sh
# REFCOUNT_SUB_AND_TEST_SATURATED: missing 'Saturation detected: still saturated': [FAIL]
not ok 58 selftests: lkdtm: REFCOUNT_SUB_AND_TEST_SATURATED.sh # exit=1
# selftests: lkdtm: REFCOUNT_TIMING.sh
# Skipping REFCOUNT_TIMING: timing only
ok 59 selftests: lkdtm: REFCOUNT_TIMING.sh # SKIP
# selftests: lkdtm: ATOMIC_TIMING.sh
# Skipping ATOMIC_TIMING: timing only
ok 60 selftests: lkdtm: ATOMIC_TIMING.sh # SKIP
# selftests: lkdtm: USERCOPY_HEAP_SIZE_TO.sh
# USERCOPY_HEAP_SIZE_TO: missing 'call trace:': [FAIL]
not ok 61 selftests: lkdtm: USERCOPY_HEAP_SIZE_TO.sh # exit=1
# selftests: lkdtm: USERCOPY_HEAP_SIZE_FROM.sh
# USERCOPY_HEAP_SIZE_FROM: missing 'call trace:': [FAIL]
not ok 62 selftests: lkdtm: USERCOPY_HEAP_SIZE_FROM.sh # exit=1
# selftests: lkdtm: USERCOPY_HEAP_WHITELIST_TO.sh
# USERCOPY_HEAP_WHITELIST_TO: missing 'call trace:': [FAIL]
not ok 63 selftests: lkdtm: USERCOPY_HEAP_WHITELIST_TO.sh # exit=1
# selftests: lkdtm: USERCOPY_HEAP_WHITELIST_FROM.sh
# USERCOPY_HEAP_WHITELIST_FROM: missing 'call trace:': [FAIL]
not ok 64 selftests: lkdtm: USERCOPY_HEAP_WHITELIST_FROM.sh # exit=1
# selftests: lkdtm: USERCOPY_STACK_FRAME_TO.sh
# USERCOPY_STACK_FRAME_TO: missing 'call trace:': [FAIL]
not ok 65 selftests: lkdtm: USERCOPY_STACK_FRAME_TO.sh # exit=1
# selftests: lkdtm: USERCOPY_STACK_FRAME_FROM.sh
# USERCOPY_STACK_FRAME_FROM: missing 'call trace:': [FAIL]
not ok 66 selftests: lkdtm: USERCOPY_STACK_FRAME_FROM.sh # exit=1
# selftests: lkdtm: USERCOPY_STACK_BEYOND.sh
# USERCOPY_STACK_BEYOND: missing 'call trace:': [FAIL]
not ok 67 selftests: lkdtm: USERCOPY_STACK_BEYOND.sh # exit=1
# selftests: lkdtm: USERCOPY_KERNEL.sh
# USERCOPY_KERNEL: missing 'call trace:': [FAIL]
not ok 68 selftests: lkdtm: USERCOPY_KERNEL.sh # exit=1
# selftests: lkdtm: STACKLEAK_ERASING.sh
# STACKLEAK_ERASING: missing 'OK: the rest of the thread stack is properly erased': [FAIL]
not ok 69 selftests: lkdtm: STACKLEAK_ERASING.sh # exit=1
# selftests: lkdtm: CFI_FORWARD_PROTO.sh
# CFI_FORWARD_PROTO: missing 'call trace:': [FAIL]
not ok 70 selftests: lkdtm: CFI_FORWARD_PROTO.sh # exit=1
make: Leaving directory '/usr/src/perf_selftests-x86_64-rhel-7.6-kselftests-4d9c16a4949b8b027efc8d4214a4c8b11379cb28/tools/testing/selftests/lkdtm'
locking test: not in Makefile
2020-11-20 17:07:09 make TARGETS=locking
make --no-builtin-rules ARCH=x86 -C ../../.. headers_install
make[1]: Entering directory '/usr/src/perf_selftests-x86_64-rhel-7.6-kselftests-4d9c16a4949b8b027efc8d4214a4c8b11379cb28'
INSTALL ./usr/include
make[1]: Leaving directory '/usr/src/perf_selftests-x86_64-rhel-7.6-kselftests-4d9c16a4949b8b027efc8d4214a4c8b11379cb28'
make[1]: Entering directory '/usr/src/perf_selftests-x86_64-rhel-7.6-kselftests-4d9c16a4949b8b027efc8d4214a4c8b11379cb28/tools/testing/selftests/locking'
make[1]: Nothing to be done for 'all'.
make[1]: Leaving directory '/usr/src/perf_selftests-x86_64-rhel-7.6-kselftests-4d9c16a4949b8b027efc8d4214a4c8b11379cb28/tools/testing/selftests/locking'
2020-11-20 17:07:10 make run_tests -C locking
make: Entering directory '/usr/src/perf_selftests-x86_64-rhel-7.6-kselftests-4d9c16a4949b8b027efc8d4214a4c8b11379cb28/tools/testing/selftests/locking'
TAP version 13
1..1
# selftests: locking: ww_mutex.sh
# locking/ww_mutex: [FAIL]
not ok 1 selftests: locking: ww_mutex.sh # exit=1
make: Leaving directory '/usr/src/perf_selftests-x86_64-rhel-7.6-kselftests-4d9c16a4949b8b027efc8d4214a4c8b11379cb28/tools/testing/selftests/locking'



To reproduce:

git clone https://github.com/intel/lkp-tests.git
cd lkp-tests
bin/lkp install job.yaml # job file is attached in this email
bin/lkp run job.yaml



Thanks,
Oliver Sang


Attachments:
(No filename) (192.64 kB)
config-5.10.0-rc4-00002-g4d9c16a4949b (213.25 kB)
job-script (7.14 kB)
kmsg.xz (86.07 kB)
kernel-selftests (191.29 kB)
job.yaml (6.19 kB)
reproduce (968.00 B)
Download all attachments