mirror of
https://github.com/torvalds/linux.git
synced 2024-11-11 14:42:24 +00:00
linux-kselftest-next-5.17-rc1
This Kselftest update for Linux 5.17-rc1 consists of fixes to build errors, false negatives, and several code cleanups, including the ARRAY_SIZE cleanup that removes 25+ duplicates ARRAY_SIZE defines from individual tests. -----BEGIN PGP SIGNATURE----- iQIzBAABCgAdFiEEPZKym/RZuOCGeA/kCwJExA0NQxwFAmHYu/cACgkQCwJExA0N Qxw6Qg//atuqFrmKzmlzces5pHmM88+RpkKDjA2e0Ltr8to8IWMg8gzr3o2qQ1aw /zKTCxWtd7PHQiJXmG9LV5z4UefT3rfV7TQfRTlH6XLe+T9wdBVREMUp4HaPeYq7 Q+u9NIe570ylBUVYznh40SsgSV9YJtAztxDrU39YidmuYEwDCbIwmIFRHMgClRLF KgtE1tc0iuFE5Ru/kQwd+MBZBHnA/Zf1S8YiM5AIncRx/9f4EgoMAWcbUHQYFRjS W+mlyLR3/UjeB0LUCLiwoXjDvUoga3RA1A6Nf9/7CC7pqRAXHdGFMxCLOJfy1AGh n4MNwxQA4yJDXUCS9zhQLob0n75NKJDKbLJ9PlP42IaJXK8KbRM8UcXRRob+ywjT xL476F5D49TO2YRS00vMyBor06MUa0cT3HLQKDdv6IdKEbUhpiHUFL9h9nxISnAN rFC/y4vrYfpJrR7BF/dK3zs98d9u+lEDxbsKxB7dZ/gvzMIDr2QU0/RiAhurdzz6 7kswA2ZTBfJkJ2o9+8W9E4jJIORV51b8ep+nmv/aiFfCjLwCrPF0/J63l5Pd/Bgr xDXlydtGVmVSGiM5Vq5CmuFlDJzPD+ZDZLbpxpRmLZPsDjAJS5Zo1wIdtbbZ1hI5 vbvPf9jadsR9WiBjohC09u6J34GwTsWcTW9aLZBUyzjmo07hYV0= =r9GV -----END PGP SIGNATURE----- Merge tag 'linux-kselftest-next-5.17-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/shuah/linux-kselftest Pull Kselftest update from Shuah Khan: "Fixes to build errors, false negatives, and several code cleanups, including the ARRAY_SIZE cleanup that removes 25+ duplicates ARRAY_SIZE defines from individual tests" * tag 'linux-kselftest-next-5.17-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/shuah/linux-kselftest: selftests/vm: remove ARRAY_SIZE define from individual tests selftests/timens: remove ARRAY_SIZE define from individual tests selftests/sparc64: remove ARRAY_SIZE define from adi-test selftests/seccomp: remove ARRAY_SIZE define from seccomp_benchmark selftests/rseq: remove ARRAY_SIZE define from individual tests selftests/net: remove ARRAY_SIZE define from individual tests selftests/landlock: remove ARRAY_SIZE define from common.h selftests/ir: remove ARRAY_SIZE define from ir_loopback.c selftests/core: remove ARRAY_SIZE define from close_range_test.c selftests/cgroup: remove ARRAY_SIZE define from cgroup_util.h selftests/arm64: remove ARRAY_SIZE define from vec-syscfg.c tools: fix ARRAY_SIZE defines in tools and selftests hdrs selftests: cgroup: build error multiple outpt files selftests/move_mount_set_group remove unneeded conversion to bool selftests/mount: remove unneeded conversion to bool selftests: harness: avoid false negatives if test has no ASSERTs selftests/ftrace: make kprobe profile testcase description unique selftests: clone3: clone3: add case CLONE3_ARGS_NO_TEST selftests: timers: Remove unneeded semicolon kselftests: timers:Remove unneeded semicolon
This commit is contained in:
commit
4369b3cec2
@ -92,7 +92,9 @@ int vscnprintf(char *buf, size_t size, const char *fmt, va_list args);
|
||||
int scnprintf(char * buf, size_t size, const char * fmt, ...);
|
||||
int scnprintf_pad(char * buf, size_t size, const char * fmt, ...);
|
||||
|
||||
#ifndef ARRAY_SIZE
|
||||
#define ARRAY_SIZE(arr) (sizeof(arr) / sizeof((arr)[0]) + __must_be_array(arr))
|
||||
#endif
|
||||
|
||||
#define current_gfp_context(k) 0
|
||||
#define synchronize_rcu()
|
||||
|
@ -21,8 +21,6 @@
|
||||
#include "../../kselftest.h"
|
||||
#include "rdvl.h"
|
||||
|
||||
#define ARRAY_SIZE(a) (sizeof(a) / sizeof(a[0]))
|
||||
|
||||
#define ARCH_MIN_VL SVE_VL_MIN
|
||||
|
||||
struct vec_data {
|
||||
|
@ -11,10 +11,12 @@ TEST_GEN_PROGS += test_core
|
||||
TEST_GEN_PROGS += test_freezer
|
||||
TEST_GEN_PROGS += test_kill
|
||||
|
||||
LOCAL_HDRS += $(selfdir)/clone3/clone3_selftests.h $(selfdir)/pidfd/pidfd.h
|
||||
|
||||
include ../lib.mk
|
||||
|
||||
$(OUTPUT)/test_memcontrol: cgroup_util.c ../clone3/clone3_selftests.h
|
||||
$(OUTPUT)/test_kmem: cgroup_util.c ../clone3/clone3_selftests.h
|
||||
$(OUTPUT)/test_core: cgroup_util.c ../clone3/clone3_selftests.h
|
||||
$(OUTPUT)/test_freezer: cgroup_util.c ../clone3/clone3_selftests.h
|
||||
$(OUTPUT)/test_kill: cgroup_util.c ../clone3/clone3_selftests.h ../pidfd/pidfd.h
|
||||
$(OUTPUT)/test_memcontrol: cgroup_util.c
|
||||
$(OUTPUT)/test_kmem: cgroup_util.c
|
||||
$(OUTPUT)/test_core: cgroup_util.c
|
||||
$(OUTPUT)/test_freezer: cgroup_util.c
|
||||
$(OUTPUT)/test_kill: cgroup_util.c
|
||||
|
@ -2,9 +2,9 @@
|
||||
#include <stdbool.h>
|
||||
#include <stdlib.h>
|
||||
|
||||
#define PAGE_SIZE 4096
|
||||
#include "../kselftest.h"
|
||||
|
||||
#define ARRAY_SIZE(arr) (sizeof(arr) / sizeof((arr)[0]))
|
||||
#define PAGE_SIZE 4096
|
||||
|
||||
#define MB(x) (x << 20)
|
||||
|
||||
|
@ -52,6 +52,12 @@ static int call_clone3(uint64_t flags, size_t size, enum test_mode test_mode)
|
||||
size = sizeof(struct __clone_args);
|
||||
|
||||
switch (test_mode) {
|
||||
case CLONE3_ARGS_NO_TEST:
|
||||
/*
|
||||
* Uses default 'flags' and 'SIGCHLD'
|
||||
* assignment.
|
||||
*/
|
||||
break;
|
||||
case CLONE3_ARGS_ALL_0:
|
||||
args.flags = 0;
|
||||
args.exit_signal = 0;
|
||||
|
@ -50,10 +50,6 @@ static inline int sys_close_range(unsigned int fd, unsigned int max_fd,
|
||||
return syscall(__NR_close_range, fd, max_fd, flags);
|
||||
}
|
||||
|
||||
#ifndef ARRAY_SIZE
|
||||
#define ARRAY_SIZE(x) (sizeof(x) / sizeof((x)[0]))
|
||||
#endif
|
||||
|
||||
TEST(core_close_range)
|
||||
{
|
||||
int i, ret;
|
||||
|
@ -1,6 +1,6 @@
|
||||
#!/bin/sh
|
||||
# SPDX-License-Identifier: GPL-2.0
|
||||
# description: Kprobe dynamic event - adding and removing
|
||||
# description: Kprobe profile
|
||||
# requires: kprobe_events
|
||||
|
||||
! grep -q 'myevent' kprobe_profile
|
||||
|
@ -26,7 +26,6 @@
|
||||
#include "../kselftest.h"
|
||||
|
||||
#define TEST_SCANCODES 10
|
||||
#define ARRAY_SIZE(arr) (sizeof(arr) / sizeof((arr)[0]))
|
||||
#define SYSFS_PATH_MAX 256
|
||||
#define DNAME_PATH_MAX 256
|
||||
|
||||
|
@ -48,6 +48,10 @@
|
||||
#include <stdarg.h>
|
||||
#include <stdio.h>
|
||||
|
||||
#ifndef ARRAY_SIZE
|
||||
#define ARRAY_SIZE(arr) (sizeof(arr) / sizeof((arr)[0]))
|
||||
#endif
|
||||
|
||||
/* define kselftest exit codes */
|
||||
#define KSFT_PASS 0
|
||||
#define KSFT_FAIL 1
|
||||
|
@ -671,7 +671,9 @@
|
||||
#define EXPECT_STRNE(expected, seen) \
|
||||
__EXPECT_STR(expected, seen, !=, 0)
|
||||
|
||||
#ifndef ARRAY_SIZE
|
||||
#define ARRAY_SIZE(a) (sizeof(a) / sizeof(a[0]))
|
||||
#endif
|
||||
|
||||
/* Support an optional handler after and ASSERT_* or EXPECT_*. The approach is
|
||||
* not thread-safe, but it should be fine in most sane test scenarios.
|
||||
@ -969,7 +971,7 @@ void __run_test(struct __fixture_metadata *f,
|
||||
t->passed = 1;
|
||||
t->skip = 0;
|
||||
t->trigger = 0;
|
||||
t->step = 0;
|
||||
t->step = 1;
|
||||
t->no_print = 0;
|
||||
memset(t->results->reason, 0, sizeof(t->results->reason));
|
||||
|
||||
|
@ -17,10 +17,6 @@
|
||||
|
||||
#include "../kselftest_harness.h"
|
||||
|
||||
#ifndef ARRAY_SIZE
|
||||
#define ARRAY_SIZE(x) (sizeof(x) / sizeof((x)[0]))
|
||||
#endif
|
||||
|
||||
/*
|
||||
* TEST_F_FORK() is useful when a test drop privileges but the corresponding
|
||||
* FIXTURE_TEARDOWN() requires them (e.g. to remove files from a directory
|
||||
|
@ -141,7 +141,7 @@ endif
|
||||
# Selftest makefiles can override those targets by setting
|
||||
# OVERRIDE_TARGETS = 1.
|
||||
ifeq ($(OVERRIDE_TARGETS),)
|
||||
LOCAL_HDRS := $(selfdir)/kselftest_harness.h $(selfdir)/kselftest.h
|
||||
LOCAL_HDRS += $(selfdir)/kselftest_harness.h $(selfdir)/kselftest.h
|
||||
$(OUTPUT)/%:%.c $(LOCAL_HDRS)
|
||||
$(LINK.c) $(filter-out $(LOCAL_HDRS),$^) $(LDLIBS) -o $@
|
||||
|
||||
|
@ -204,7 +204,7 @@ bool test_unpriv_remount(const char *fstype, const char *mount_options,
|
||||
if (!WIFEXITED(status)) {
|
||||
die("child did not terminate cleanly\n");
|
||||
}
|
||||
return WEXITSTATUS(status) == EXIT_SUCCESS ? true : false;
|
||||
return WEXITSTATUS(status) == EXIT_SUCCESS;
|
||||
}
|
||||
|
||||
create_and_enter_userns();
|
||||
@ -282,7 +282,7 @@ static bool test_priv_mount_unpriv_remount(void)
|
||||
if (!WIFEXITED(status)) {
|
||||
die("child did not terminate cleanly\n");
|
||||
}
|
||||
return WEXITSTATUS(status) == EXIT_SUCCESS ? true : false;
|
||||
return WEXITSTATUS(status) == EXIT_SUCCESS;
|
||||
}
|
||||
|
||||
orig_mnt_flags = read_mnt_flags(orig_path);
|
||||
|
@ -191,7 +191,7 @@ static bool is_shared_mount(const char *path)
|
||||
#define SET_GROUP_FROM "/tmp/move_mount_set_group_supported_from"
|
||||
#define SET_GROUP_TO "/tmp/move_mount_set_group_supported_to"
|
||||
|
||||
static int move_mount_set_group_supported(void)
|
||||
static bool move_mount_set_group_supported(void)
|
||||
{
|
||||
int ret;
|
||||
|
||||
@ -222,7 +222,7 @@ static int move_mount_set_group_supported(void)
|
||||
AT_FDCWD, SET_GROUP_TO, MOVE_MOUNT_SET_GROUP);
|
||||
umount2("/tmp", MNT_DETACH);
|
||||
|
||||
return ret < 0 ? false : true;
|
||||
return ret >= 0;
|
||||
}
|
||||
|
||||
FIXTURE(move_mount_set_group) {
|
||||
@ -232,7 +232,7 @@ FIXTURE(move_mount_set_group) {
|
||||
|
||||
FIXTURE_SETUP(move_mount_set_group)
|
||||
{
|
||||
int ret;
|
||||
bool ret;
|
||||
|
||||
ASSERT_EQ(prepare_unpriv_mountns(), 0);
|
||||
|
||||
@ -254,7 +254,7 @@ FIXTURE_SETUP(move_mount_set_group)
|
||||
|
||||
FIXTURE_TEARDOWN(move_mount_set_group)
|
||||
{
|
||||
int ret;
|
||||
bool ret;
|
||||
|
||||
ret = move_mount_set_group_supported();
|
||||
ASSERT_GE(ret, 0);
|
||||
@ -348,7 +348,7 @@ TEST_F(move_mount_set_group, complex_sharing_copying)
|
||||
.shared = false,
|
||||
};
|
||||
pid_t pid;
|
||||
int ret;
|
||||
bool ret;
|
||||
|
||||
ret = move_mount_set_group_supported();
|
||||
ASSERT_GE(ret, 0);
|
||||
|
@ -57,10 +57,11 @@
|
||||
#include <string.h>
|
||||
#include <unistd.h>
|
||||
|
||||
#include "../kselftest.h"
|
||||
|
||||
#define DPORT 8000
|
||||
#define SPORT 1500
|
||||
#define PAYLOAD_LEN 100
|
||||
#define ARRAY_SIZE(arr) (sizeof(arr) / sizeof((arr)[0]))
|
||||
#define NUM_PACKETS 4
|
||||
#define START_SEQ 100
|
||||
#define START_ACK 100
|
||||
|
@ -41,7 +41,6 @@
|
||||
|
||||
#define pr_err(fmt, ...) printk(fmt ": %m", ##__VA_ARGS__)
|
||||
|
||||
#define ARRAY_SIZE(arr) (sizeof(arr) / sizeof((arr)[0]))
|
||||
#define BUILD_BUG_ON(condition) ((void)sizeof(char[1 - 2*!!(condition)]))
|
||||
|
||||
#define IPV4_STR_SZ 16 /* xxx.xxx.xxx.xxx is longest + \0 */
|
||||
|
@ -24,9 +24,7 @@
|
||||
#include <sys/resource.h>
|
||||
#include <unistd.h>
|
||||
|
||||
#ifndef ARRAY_SIZE
|
||||
#define ARRAY_SIZE(arr) (sizeof(arr) / sizeof((arr)[0]))
|
||||
#endif
|
||||
#include "../kselftest.h"
|
||||
|
||||
struct test_params {
|
||||
int recv_family;
|
||||
|
@ -18,7 +18,7 @@
|
||||
#include <linux/net_tstamp.h>
|
||||
#include <linux/errqueue.h>
|
||||
|
||||
#define ARRAY_SIZE(arr) (sizeof(arr) / sizeof((arr)[0]))
|
||||
#include "../kselftest.h"
|
||||
|
||||
struct options {
|
||||
int so_timestamp;
|
||||
|
@ -7,6 +7,8 @@
|
||||
#include <sys/socket.h>
|
||||
#include <netinet/in.h>
|
||||
|
||||
#include "../kselftest.h"
|
||||
|
||||
struct socket_testcase {
|
||||
int domain;
|
||||
int type;
|
||||
@ -31,7 +33,6 @@ static struct socket_testcase tests[] = {
|
||||
{ AF_INET, SOCK_STREAM, IPPROTO_UDP, -EPROTONOSUPPORT, 1 },
|
||||
};
|
||||
|
||||
#define ARRAY_SIZE(arr) (sizeof(arr) / sizeof((arr)[0]))
|
||||
#define ERR_STRING_SZ 64
|
||||
|
||||
static int run_tests(void)
|
||||
|
@ -26,6 +26,8 @@
|
||||
#include <fcntl.h>
|
||||
#include <time.h>
|
||||
|
||||
#include "../kselftest.h"
|
||||
|
||||
#ifndef TCP_FASTOPEN_KEY
|
||||
#define TCP_FASTOPEN_KEY 33
|
||||
#endif
|
||||
@ -34,10 +36,6 @@
|
||||
#define PROC_FASTOPEN_KEY "/proc/sys/net/ipv4/tcp_fastopen_key"
|
||||
#define KEY_LENGTH 16
|
||||
|
||||
#ifndef ARRAY_SIZE
|
||||
#define ARRAY_SIZE(arr) (sizeof(arr) / sizeof((arr)[0]))
|
||||
#endif
|
||||
|
||||
static bool do_ipv6;
|
||||
static bool do_sockopt;
|
||||
static bool do_rotate;
|
||||
|
@ -9,10 +9,9 @@
|
||||
#include <string.h>
|
||||
#include <stddef.h>
|
||||
|
||||
#include "../kselftest.h"
|
||||
#include "rseq.h"
|
||||
|
||||
#define ARRAY_SIZE(arr) (sizeof(arr) / sizeof((arr)[0]))
|
||||
|
||||
struct percpu_lock_entry {
|
||||
intptr_t v;
|
||||
} __attribute__((aligned(128)));
|
||||
|
@ -27,10 +27,9 @@
|
||||
#include <signal.h>
|
||||
#include <limits.h>
|
||||
|
||||
#include "../kselftest.h"
|
||||
#include "rseq.h"
|
||||
|
||||
#define ARRAY_SIZE(arr) (sizeof(arr) / sizeof((arr)[0]))
|
||||
|
||||
__thread volatile struct rseq __rseq_abi = {
|
||||
.cpu_id = RSEQ_CPU_ID_UNINITIALIZED,
|
||||
};
|
||||
|
@ -18,7 +18,7 @@
|
||||
#include <sys/syscall.h>
|
||||
#include <sys/types.h>
|
||||
|
||||
#define ARRAY_SIZE(a) (sizeof(a) / sizeof(a[0]))
|
||||
#include "../kselftest.h"
|
||||
|
||||
unsigned long long timing(clockid_t clk_id, unsigned long long samples)
|
||||
{
|
||||
|
@ -24,10 +24,6 @@
|
||||
#define DEBUG_LEVEL_4_BIT (0x0008)
|
||||
#define DEBUG_TIMING_BIT (0x1000)
|
||||
|
||||
#ifndef ARRAY_SIZE
|
||||
# define ARRAY_SIZE(x) (sizeof(x) / sizeof((x)[0]))
|
||||
#endif
|
||||
|
||||
/* bit mask of enabled bits to print */
|
||||
#define DEBUG 0x0001
|
||||
|
||||
|
@ -24,8 +24,6 @@
|
||||
#define DAY_IN_SEC (60*60*24)
|
||||
#define TEN_DAYS_IN_SEC (10*DAY_IN_SEC)
|
||||
|
||||
#define ARRAY_SIZE(arr) (sizeof(arr) / sizeof((arr)[0]))
|
||||
|
||||
static int child_ns, parent_ns;
|
||||
|
||||
static int switch_ns(int fd)
|
||||
|
@ -22,8 +22,6 @@
|
||||
#define DAY_IN_SEC (60*60*24)
|
||||
#define TEN_DAYS_IN_SEC (10*DAY_IN_SEC)
|
||||
|
||||
#define ARRAY_SIZE(arr) (sizeof(arr) / sizeof((arr)[0]))
|
||||
|
||||
struct test_clock {
|
||||
clockid_t id;
|
||||
char *name;
|
||||
|
@ -79,7 +79,7 @@ char *clockstring(int clockid)
|
||||
return "CLOCK_BOOTTIME_ALARM";
|
||||
case CLOCK_TAI:
|
||||
return "CLOCK_TAI";
|
||||
};
|
||||
}
|
||||
return "UNKNOWN_CLOCKID";
|
||||
}
|
||||
|
||||
|
@ -72,7 +72,7 @@ char *clockstring(int clockid)
|
||||
return "CLOCK_BOOTTIME_ALARM";
|
||||
case CLOCK_TAI:
|
||||
return "CLOCK_TAI";
|
||||
};
|
||||
}
|
||||
return "UNKNOWN_CLOCKID";
|
||||
}
|
||||
|
||||
|
@ -20,7 +20,6 @@
|
||||
#define VALIDATION_DEFAULT_THRESHOLD 4 /* 4MB */
|
||||
#define VALIDATION_NO_THRESHOLD 0 /* Verify the entire region */
|
||||
|
||||
#define ARRAY_SIZE(x) (sizeof(x) / sizeof((x)[0]))
|
||||
#define MIN(X, Y) ((X) < (Y) ? (X) : (Y))
|
||||
|
||||
struct config {
|
||||
|
@ -13,6 +13,8 @@
|
||||
#include <ucontext.h>
|
||||
#include <sys/mman.h>
|
||||
|
||||
#include "../kselftest.h"
|
||||
|
||||
/* Define some kernel-like types */
|
||||
#define u8 __u8
|
||||
#define u16 __u16
|
||||
@ -175,7 +177,6 @@ static inline void __pkey_write_allow(int pkey, int do_allow_write)
|
||||
dprintf4("pkey_reg now: %016llx\n", read_pkey_reg());
|
||||
}
|
||||
|
||||
#define ARRAY_SIZE(x) (sizeof(x) / sizeof(*(x)))
|
||||
#define ALIGN_UP(x, align_to) (((x) + ((align_to)-1)) & ~((align_to)-1))
|
||||
#define ALIGN_DOWN(x, align_to) ((x) & ~((align_to)-1))
|
||||
#define ALIGN_PTR_UP(p, ptr_align_to) \
|
||||
|
@ -9,7 +9,7 @@
|
||||
#include <sys/mman.h>
|
||||
#include <string.h>
|
||||
|
||||
#define ARRAY_SIZE(arr) (sizeof(arr) / sizeof((arr)[0]))
|
||||
#include "../kselftest.h"
|
||||
|
||||
#ifdef __powerpc64__
|
||||
#define PAGE_SIZE (64 << 10)
|
||||
|
Loading…
Reference in New Issue
Block a user