public inbox for ltp@lists.linux.it
 help / color / mirror / Atom feed
* [LTP] [PATCH 00/15] Remove kernel >= 3.x checks
@ 2024-05-27  6:33 Petr Vorel
  2024-05-27  6:33 ` [LTP] [PATCH 01/15] fallocate04: Remove kernel >= 3.15 check Petr Vorel
                   ` (15 more replies)
  0 siblings, 16 replies; 20+ messages in thread
From: Petr Vorel @ 2024-05-27  6:33 UTC (permalink / raw)
  To: ltp

Hi,

since 9e9654cf2 LTP supports kernel >= 4.4.
This removes all kernel >= 3.x checks.
I deliberately kept kernel >= 4.0 && kernel < 4.4 checks
(in case we worry somebody is using LTP master on these kernels).

Kind regards,
Petr

Petr Vorel (15):
  fallocate04: Remove kernel >= 3.15 check
  recv{,from,msg}01: Remove kernel >= 3.17 check
  renameat2*: Remove kernel >= 3.15 check
  sched_{g,setattr}: Remove kernel >= 3.14 check
  netstress: Remove kernel >= 3.11 check
  fs_bind_lib.sh: Remove kernel >= 2.6.15 check
  quota_remount_test01.sh: Remove kernel >= 2.6.26 check
  dctcp01.sh: Remove kernel >= 3.18 check
  busy_poll: Remove kernel >= 3.11 check
  cpuset_regression_test: Remove kernel >= 3.18 check
  tcp_fastopen: Remove kernel >= 3.7 and 3.16 check
  fcntl{34,36}: Remove kernel >= 3.15 check
  bpf: Remove kernel >= 3.18 or 3.19 check
  fanout01: Remove kernel >= 3.19 check
  cgroup_xattr: Remove kernel >= 3.15 check

 .../kernel/controllers/cgroup_xattr/cgroup_xattr.c     | 10 +---------
 .../controllers/cpuset/cpuset_regression_test.sh       |  1 -
 testcases/kernel/fs/fs_bind/fs_bind_lib.sh             |  1 -
 .../kernel/fs/quota_remount/quota_remount_test01.sh    |  1 -
 testcases/kernel/syscalls/bpf/bpf_map01.c              |  1 -
 testcases/kernel/syscalls/bpf/bpf_prog01.c             |  1 -
 testcases/kernel/syscalls/bpf/bpf_prog02.c             |  1 -
 testcases/kernel/syscalls/bpf/bpf_prog03.c             |  1 -
 testcases/kernel/syscalls/bpf/bpf_prog04.c             |  1 -
 testcases/kernel/syscalls/bpf/bpf_prog05.c             |  1 -
 testcases/kernel/syscalls/fallocate/fallocate04.c      |  5 -----
 testcases/kernel/syscalls/fcntl/fcntl34.c              |  1 -
 testcases/kernel/syscalls/fcntl/fcntl36.c              |  1 -
 testcases/kernel/syscalls/recv/recv01.c                |  8 --------
 testcases/kernel/syscalls/recvfrom/recvfrom01.c        |  8 --------
 testcases/kernel/syscalls/recvmsg/recvmsg01.c          |  7 -------
 testcases/kernel/syscalls/renameat2/renameat201.c      |  5 -----
 testcases/kernel/syscalls/renameat2/renameat202.c      |  5 -----
 .../kernel/syscalls/sched_getattr/sched_getattr01.c    |  3 ---
 .../kernel/syscalls/sched_getattr/sched_getattr02.c    |  3 ---
 .../kernel/syscalls/sched_setattr/sched_setattr01.c    |  3 ---
 testcases/network/busy_poll/busy_poll_lib.sh           |  1 -
 testcases/network/netstress/netstress.c                |  3 ---
 testcases/network/packet/fanout01.c                    |  1 -
 testcases/network/tcp_cc/dctcp01.sh                    |  1 -
 testcases/network/tcp_fastopen/tcp_fastopen_run.sh     |  5 -----
 26 files changed, 1 insertion(+), 78 deletions(-)

-- 
2.43.0


-- 
Mailing list info: https://lists.linux.it/listinfo/ltp

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

* [LTP] [PATCH 01/15] fallocate04: Remove kernel >= 3.15 check
  2024-05-27  6:33 [LTP] [PATCH 00/15] Remove kernel >= 3.x checks Petr Vorel
@ 2024-05-27  6:33 ` Petr Vorel
  2024-05-27  6:33 ` [LTP] [PATCH 02/15] recv{, from, msg}01: Remove kernel >= 3.17 check Petr Vorel
                   ` (14 subsequent siblings)
  15 siblings, 0 replies; 20+ messages in thread
From: Petr Vorel @ 2024-05-27  6:33 UTC (permalink / raw)
  To: ltp

Since 9e9654cf2 LTP supports kernel >= 4.4.

Signed-off-by: Petr Vorel <pvorel@suse.cz>
---
 testcases/kernel/syscalls/fallocate/fallocate04.c | 5 -----
 1 file changed, 5 deletions(-)

diff --git a/testcases/kernel/syscalls/fallocate/fallocate04.c b/testcases/kernel/syscalls/fallocate/fallocate04.c
index ff372a9bf..7b285fb5d 100644
--- a/testcases/kernel/syscalls/fallocate/fallocate04.c
+++ b/testcases/kernel/syscalls/fallocate/fallocate04.c
@@ -148,11 +148,6 @@ static void test03(void)
 {
 	tst_res(TINFO, "zeroing file space with FALLOC_FL_ZERO_RANGE");
 
-	if (tst_kvercmp(3, 15, 0) < 0) {
-		tst_brk(TCONF,
-			"FALLOC_FL_ZERO_RANGE needs Linux 3.15 or newer");
-	}
-
 	size_t alloc_size0 = get_allocsize();
 
 	tst_res(TINFO, "read current allocated file size '%zu'", alloc_size0);
-- 
2.43.0


-- 
Mailing list info: https://lists.linux.it/listinfo/ltp

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

* [LTP] [PATCH 02/15] recv{, from, msg}01: Remove kernel >= 3.17 check
  2024-05-27  6:33 [LTP] [PATCH 00/15] Remove kernel >= 3.x checks Petr Vorel
  2024-05-27  6:33 ` [LTP] [PATCH 01/15] fallocate04: Remove kernel >= 3.15 check Petr Vorel
@ 2024-05-27  6:33 ` Petr Vorel
  2024-05-28  7:57   ` Wei Gao via ltp
  2024-05-27  6:33 ` [LTP] [PATCH 03/15] renameat2*: Remove kernel >= 3.15 check Petr Vorel
                   ` (13 subsequent siblings)
  15 siblings, 1 reply; 20+ messages in thread
From: Petr Vorel @ 2024-05-27  6:33 UTC (permalink / raw)
  To: ltp

Since 9e9654cf2 LTP supports kernel >= 4.4.

Signed-off-by: Petr Vorel <pvorel@suse.cz>
---
 testcases/kernel/syscalls/recv/recv01.c         | 8 --------
 testcases/kernel/syscalls/recvfrom/recvfrom01.c | 8 --------
 testcases/kernel/syscalls/recvmsg/recvmsg01.c   | 7 -------
 3 files changed, 23 deletions(-)

diff --git a/testcases/kernel/syscalls/recv/recv01.c b/testcases/kernel/syscalls/recv/recv01.c
index d71243c30..bb2578355 100644
--- a/testcases/kernel/syscalls/recv/recv01.c
+++ b/testcases/kernel/syscalls/recv/recv01.c
@@ -113,14 +113,6 @@ int main(int argc, char *argv[])
 	for (lc = 0; TEST_LOOPING(lc); ++lc) {
 		tst_count = 0;
 		for (testno = 0; testno < TST_TOTAL; ++testno) {
-			if ((tst_kvercmp(3, 17, 0) < 0)
-			    && (tdat[testno].flags & MSG_ERRQUEUE)
-			    && (tdat[testno].type & SOCK_STREAM)) {
-				tst_resm(TCONF, "skip MSG_ERRQUEUE test, "
-						"it's supported from 3.17");
-				continue;
-			}
-
 			tdat[testno].setup();
 			TEST(recv(s, tdat[testno].buf, tdat[testno].buflen,
 				  tdat[testno].flags));
diff --git a/testcases/kernel/syscalls/recvfrom/recvfrom01.c b/testcases/kernel/syscalls/recvfrom/recvfrom01.c
index f26f85688..6ce9f1bde 100644
--- a/testcases/kernel/syscalls/recvfrom/recvfrom01.c
+++ b/testcases/kernel/syscalls/recvfrom/recvfrom01.c
@@ -137,14 +137,6 @@ int main(int argc, char *argv[])
 	for (lc = 0; TEST_LOOPING(lc); ++lc) {
 		tst_count = 0;
 		for (testno = 0; testno < TST_TOTAL; ++testno) {
-			if ((tst_kvercmp(3, 17, 0) < 0)
-			    && (tdat[testno].flags & MSG_ERRQUEUE)
-			    && (tdat[testno].type & SOCK_STREAM)) {
-				tst_resm(TCONF, "skip MSG_ERRQUEUE test, "
-						"it's supported from 3.17");
-				continue;
-			}
-
 			tdat[testno].setup();
 			TEST(recvfrom(s, tdat[testno].buf, tdat[testno].buflen,
 				      tdat[testno].flags, tdat[testno].from,
diff --git a/testcases/kernel/syscalls/recvmsg/recvmsg01.c b/testcases/kernel/syscalls/recvmsg/recvmsg01.c
index 80c1b3aa9..a265bc3bd 100644
--- a/testcases/kernel/syscalls/recvmsg/recvmsg01.c
+++ b/testcases/kernel/syscalls/recvmsg/recvmsg01.c
@@ -220,13 +220,6 @@ static void run(unsigned int n)
 	struct tcase *tc = &tcases[n];
 	int ret = tc->exp_errno ? -1 : 0;
 
-	if ((tst_kvercmp(3, 17, 0) < 0)
-			&& (tc->flags & MSG_ERRQUEUE)
-			&& (tc->type & SOCK_STREAM)) {
-		tst_res(TCONF, "MSG_ERRQUEUE requires kernel >= 3.17");
-		return;
-	}
-
 	setup_all();
 	tc->setup(n);
 
-- 
2.43.0


-- 
Mailing list info: https://lists.linux.it/listinfo/ltp

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

* [LTP] [PATCH 03/15] renameat2*: Remove kernel >= 3.15 check
  2024-05-27  6:33 [LTP] [PATCH 00/15] Remove kernel >= 3.x checks Petr Vorel
  2024-05-27  6:33 ` [LTP] [PATCH 01/15] fallocate04: Remove kernel >= 3.15 check Petr Vorel
  2024-05-27  6:33 ` [LTP] [PATCH 02/15] recv{, from, msg}01: Remove kernel >= 3.17 check Petr Vorel
@ 2024-05-27  6:33 ` Petr Vorel
  2024-05-27  6:33 ` [LTP] [PATCH 04/15] sched_{g, setattr}: Remove kernel >= 3.14 check Petr Vorel
                   ` (12 subsequent siblings)
  15 siblings, 0 replies; 20+ messages in thread
From: Petr Vorel @ 2024-05-27  6:33 UTC (permalink / raw)
  To: ltp

Since 9e9654cf2 LTP supports kernel >= 4.4.

Signed-off-by: Petr Vorel <pvorel@suse.cz>
---
 testcases/kernel/syscalls/renameat2/renameat201.c | 5 -----
 testcases/kernel/syscalls/renameat2/renameat202.c | 5 -----
 2 files changed, 10 deletions(-)

diff --git a/testcases/kernel/syscalls/renameat2/renameat201.c b/testcases/kernel/syscalls/renameat2/renameat201.c
index 9832b1cdb..23ed5758a 100644
--- a/testcases/kernel/syscalls/renameat2/renameat201.c
+++ b/testcases/kernel/syscalls/renameat2/renameat201.c
@@ -100,11 +100,6 @@ int main(int ac, char **av)
 
 static void setup(void)
 {
-	if ((tst_kvercmp(3, 15, 0)) < 0) {
-		tst_brkm(TCONF, NULL,
-			"This test can only run on kernels that are 3.15. and higher");
-	}
-
 	tst_tmpdir();
 
 	fs_type = tst_fs_type(cleanup, ".");
diff --git a/testcases/kernel/syscalls/renameat2/renameat202.c b/testcases/kernel/syscalls/renameat2/renameat202.c
index 0c1457022..88db04762 100644
--- a/testcases/kernel/syscalls/renameat2/renameat202.c
+++ b/testcases/kernel/syscalls/renameat2/renameat202.c
@@ -78,11 +78,6 @@ int main(int ac, char **av)
 
 static void setup(void)
 {
-	if ((tst_kvercmp(3, 15, 0)) < 0) {
-		tst_brkm(TCONF, NULL,
-			"This test can only run on kernels that are 3.15. and higher");
-	}
-
 	tst_tmpdir();
 
 	fs_type = tst_fs_type(cleanup, ".");
-- 
2.43.0


-- 
Mailing list info: https://lists.linux.it/listinfo/ltp

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

* [LTP] [PATCH 04/15] sched_{g, setattr}: Remove kernel >= 3.14 check
  2024-05-27  6:33 [LTP] [PATCH 00/15] Remove kernel >= 3.x checks Petr Vorel
                   ` (2 preceding siblings ...)
  2024-05-27  6:33 ` [LTP] [PATCH 03/15] renameat2*: Remove kernel >= 3.15 check Petr Vorel
@ 2024-05-27  6:33 ` Petr Vorel
  2024-05-27  6:33 ` [LTP] [PATCH 05/15] netstress: Remove kernel >= 3.11 check Petr Vorel
                   ` (11 subsequent siblings)
  15 siblings, 0 replies; 20+ messages in thread
From: Petr Vorel @ 2024-05-27  6:33 UTC (permalink / raw)
  To: ltp

Since 9e9654cf2 LTP supports kernel >= 4.4.

Signed-off-by: Petr Vorel <pvorel@suse.cz>
---
 testcases/kernel/syscalls/sched_getattr/sched_getattr01.c | 3 ---
 testcases/kernel/syscalls/sched_getattr/sched_getattr02.c | 3 ---
 testcases/kernel/syscalls/sched_setattr/sched_setattr01.c | 3 ---
 3 files changed, 9 deletions(-)

diff --git a/testcases/kernel/syscalls/sched_getattr/sched_getattr01.c b/testcases/kernel/syscalls/sched_getattr/sched_getattr01.c
index c1715d8ac..2e06d1809 100644
--- a/testcases/kernel/syscalls/sched_getattr/sched_getattr01.c
+++ b/testcases/kernel/syscalls/sched_getattr/sched_getattr01.c
@@ -96,9 +96,6 @@ int main(int argc, char **argv)
 
 	tst_require_root();
 
-	if ((tst_kvercmp(3, 14, 0)) < 0)
-		tst_brkm(TCONF, NULL, "EDF needs kernel 3.14 or higher");
-
 	for (lc = 0; TEST_LOOPING(lc); lc++) {
 		pthread_create(&thread, NULL, run_deadline, NULL);
 		pthread_join(thread, NULL);
diff --git a/testcases/kernel/syscalls/sched_getattr/sched_getattr02.c b/testcases/kernel/syscalls/sched_getattr/sched_getattr02.c
index 9f4a09f88..5efec2ff5 100644
--- a/testcases/kernel/syscalls/sched_getattr/sched_getattr02.c
+++ b/testcases/kernel/syscalls/sched_getattr/sched_getattr02.c
@@ -101,8 +101,5 @@ void setup(void)
 {
 	unused_pid = tst_get_unused_pid(setup);
 
-	if ((tst_kvercmp(3, 14, 0)) < 0)
-		tst_brkm(TCONF, NULL, "EDF needs kernel 3.14 or higher");
-
 	TEST_PAUSE;
 }
diff --git a/testcases/kernel/syscalls/sched_setattr/sched_setattr01.c b/testcases/kernel/syscalls/sched_setattr/sched_setattr01.c
index d5178e016..13380d177 100644
--- a/testcases/kernel/syscalls/sched_setattr/sched_setattr01.c
+++ b/testcases/kernel/syscalls/sched_setattr/sched_setattr01.c
@@ -130,8 +130,5 @@ void setup(void)
 
 	tst_require_root();
 
-	if ((tst_kvercmp(3, 14, 0)) < 0)
-		tst_brkm(TCONF, NULL, "EDF needs kernel 3.14 or higher");
-
 	TEST_PAUSE;
 }
-- 
2.43.0


-- 
Mailing list info: https://lists.linux.it/listinfo/ltp

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

* [LTP] [PATCH 05/15] netstress: Remove kernel >= 3.11 check
  2024-05-27  6:33 [LTP] [PATCH 00/15] Remove kernel >= 3.x checks Petr Vorel
                   ` (3 preceding siblings ...)
  2024-05-27  6:33 ` [LTP] [PATCH 04/15] sched_{g, setattr}: Remove kernel >= 3.14 check Petr Vorel
@ 2024-05-27  6:33 ` Petr Vorel
  2024-05-27  6:33 ` [LTP] [PATCH 06/15] fs_bind_lib.sh: Remove kernel >= 2.6.15 check Petr Vorel
                   ` (10 subsequent siblings)
  15 siblings, 0 replies; 20+ messages in thread
From: Petr Vorel @ 2024-05-27  6:33 UTC (permalink / raw)
  To: ltp

Since 9e9654cf2 LTP supports kernel >= 4.4.

Signed-off-by: Petr Vorel <pvorel@suse.cz>
---
 testcases/network/netstress/netstress.c | 3 ---
 1 file changed, 3 deletions(-)

diff --git a/testcases/network/netstress/netstress.c b/testcases/network/netstress/netstress.c
index 03bfe33f2..b17d8c04e 100644
--- a/testcases/network/netstress/netstress.c
+++ b/testcases/network/netstress/netstress.c
@@ -884,9 +884,6 @@ static void setup(void)
 	if (!clients_num)
 		clients_num = sysconf(_SC_NPROCESSORS_ONLN);
 
-	if (busy_poll >= 0 && tst_kvercmp(3, 11, 0) < 0)
-		tst_brk(TCONF, "Test must be run with kernel 3.11 or newer");
-
 	set_protocol_type();
 
 	if (client_mode) {
-- 
2.43.0


-- 
Mailing list info: https://lists.linux.it/listinfo/ltp

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

* [LTP] [PATCH 06/15] fs_bind_lib.sh: Remove kernel >= 2.6.15 check
  2024-05-27  6:33 [LTP] [PATCH 00/15] Remove kernel >= 3.x checks Petr Vorel
                   ` (4 preceding siblings ...)
  2024-05-27  6:33 ` [LTP] [PATCH 05/15] netstress: Remove kernel >= 3.11 check Petr Vorel
@ 2024-05-27  6:33 ` Petr Vorel
  2024-05-27  6:33 ` [LTP] [PATCH 07/15] quota_remount_test01.sh: Remove kernel >= 2.6.26 check Petr Vorel
                   ` (9 subsequent siblings)
  15 siblings, 0 replies; 20+ messages in thread
From: Petr Vorel @ 2024-05-27  6:33 UTC (permalink / raw)
  To: ltp

Since 9e9654cf2 LTP supports kernel >= 4.4.

Signed-off-by: Petr Vorel <pvorel@suse.cz>
---
 testcases/kernel/fs/fs_bind/fs_bind_lib.sh | 1 -
 1 file changed, 1 deletion(-)

diff --git a/testcases/kernel/fs/fs_bind/fs_bind_lib.sh b/testcases/kernel/fs/fs_bind/fs_bind_lib.sh
index 52190a7ca..723374737 100644
--- a/testcases/kernel/fs/fs_bind/fs_bind_lib.sh
+++ b/testcases/kernel/fs/fs_bind/fs_bind_lib.sh
@@ -7,7 +7,6 @@
 
 TST_NEEDS_TMPDIR=1
 TST_NEEDS_ROOT=1
-TST_MIN_KVER=2.6.15
 TST_SETUP="${TST_SETUP:-fs_bind_setup}"
 TST_CLEANUP="${TST_CLEANUP:-fs_bind_cleanup}"
 TST_TESTFUNC=fs_bind_test
-- 
2.43.0


-- 
Mailing list info: https://lists.linux.it/listinfo/ltp

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

* [LTP] [PATCH 07/15] quota_remount_test01.sh: Remove kernel >= 2.6.26 check
  2024-05-27  6:33 [LTP] [PATCH 00/15] Remove kernel >= 3.x checks Petr Vorel
                   ` (5 preceding siblings ...)
  2024-05-27  6:33 ` [LTP] [PATCH 06/15] fs_bind_lib.sh: Remove kernel >= 2.6.15 check Petr Vorel
@ 2024-05-27  6:33 ` Petr Vorel
  2024-05-27  6:33 ` [LTP] [PATCH 08/15] dctcp01.sh: Remove kernel >= 3.18 check Petr Vorel
                   ` (8 subsequent siblings)
  15 siblings, 0 replies; 20+ messages in thread
From: Petr Vorel @ 2024-05-27  6:33 UTC (permalink / raw)
  To: ltp

Since 9e9654cf2 LTP supports kernel >= 4.4.

Signed-off-by: Petr Vorel <pvorel@suse.cz>
---
 testcases/kernel/fs/quota_remount/quota_remount_test01.sh | 1 -
 1 file changed, 1 deletion(-)

diff --git a/testcases/kernel/fs/quota_remount/quota_remount_test01.sh b/testcases/kernel/fs/quota_remount/quota_remount_test01.sh
index 7e20b3608..3d087ab3e 100755
--- a/testcases/kernel/fs/quota_remount/quota_remount_test01.sh
+++ b/testcases/kernel/fs/quota_remount/quota_remount_test01.sh
@@ -12,7 +12,6 @@ TST_NEEDS_TMPDIR=1
 TST_SETUP=do_setup
 TST_CLEANUP=do_clean
 TST_TESTFUNC=do_test
-TST_MIN_KVER="2.6.26"
 
 do_setup()
 {
-- 
2.43.0


-- 
Mailing list info: https://lists.linux.it/listinfo/ltp

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

* [LTP] [PATCH 08/15] dctcp01.sh: Remove kernel >= 3.18 check
  2024-05-27  6:33 [LTP] [PATCH 00/15] Remove kernel >= 3.x checks Petr Vorel
                   ` (6 preceding siblings ...)
  2024-05-27  6:33 ` [LTP] [PATCH 07/15] quota_remount_test01.sh: Remove kernel >= 2.6.26 check Petr Vorel
@ 2024-05-27  6:33 ` Petr Vorel
  2024-05-27  6:33 ` [LTP] [PATCH 09/15] busy_poll: Remove kernel >= 3.11 check Petr Vorel
                   ` (7 subsequent siblings)
  15 siblings, 0 replies; 20+ messages in thread
From: Petr Vorel @ 2024-05-27  6:33 UTC (permalink / raw)
  To: ltp

Since 9e9654cf2 LTP supports kernel >= 4.4.

Signed-off-by: Petr Vorel <pvorel@suse.cz>
---
 testcases/network/tcp_cc/dctcp01.sh | 1 -
 1 file changed, 1 deletion(-)

diff --git a/testcases/network/tcp_cc/dctcp01.sh b/testcases/network/tcp_cc/dctcp01.sh
index fbce6f4a0..a9e09d131 100755
--- a/testcases/network/tcp_cc/dctcp01.sh
+++ b/testcases/network/tcp_cc/dctcp01.sh
@@ -7,7 +7,6 @@
 TST_SETUP="setup"
 TST_TESTFUNC="do_test"
 TST_CLEANUP="cleanup"
-TST_MIN_KVER="3.18"
 
 cleanup()
 {
-- 
2.43.0


-- 
Mailing list info: https://lists.linux.it/listinfo/ltp

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

* [LTP] [PATCH 09/15] busy_poll: Remove kernel >= 3.11 check
  2024-05-27  6:33 [LTP] [PATCH 00/15] Remove kernel >= 3.x checks Petr Vorel
                   ` (7 preceding siblings ...)
  2024-05-27  6:33 ` [LTP] [PATCH 08/15] dctcp01.sh: Remove kernel >= 3.18 check Petr Vorel
@ 2024-05-27  6:33 ` Petr Vorel
  2024-05-27  6:33 ` [LTP] [PATCH 10/15] cpuset_regression_test: Remove kernel >= 3.18 check Petr Vorel
                   ` (6 subsequent siblings)
  15 siblings, 0 replies; 20+ messages in thread
From: Petr Vorel @ 2024-05-27  6:33 UTC (permalink / raw)
  To: ltp

Since 9e9654cf2 LTP supports kernel >= 4.4.

Signed-off-by: Petr Vorel <pvorel@suse.cz>
---
 testcases/network/busy_poll/busy_poll_lib.sh | 1 -
 1 file changed, 1 deletion(-)

diff --git a/testcases/network/busy_poll/busy_poll_lib.sh b/testcases/network/busy_poll/busy_poll_lib.sh
index de61d3fcd..dd88dd9c7 100755
--- a/testcases/network/busy_poll/busy_poll_lib.sh
+++ b/testcases/network/busy_poll/busy_poll_lib.sh
@@ -5,7 +5,6 @@
 TST_SETUP="setup"
 TST_TESTFUNC="test"
 TST_CLEANUP="cleanup"
-TST_MIN_KVER="3.11"
 TST_NEEDS_TMPDIR=1
 TST_NEEDS_ROOT=1
 TST_NEEDS_CMDS="pkill sysctl ethtool"
-- 
2.43.0


-- 
Mailing list info: https://lists.linux.it/listinfo/ltp

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

* [LTP] [PATCH 10/15] cpuset_regression_test: Remove kernel >= 3.18 check
  2024-05-27  6:33 [LTP] [PATCH 00/15] Remove kernel >= 3.x checks Petr Vorel
                   ` (8 preceding siblings ...)
  2024-05-27  6:33 ` [LTP] [PATCH 09/15] busy_poll: Remove kernel >= 3.11 check Petr Vorel
@ 2024-05-27  6:33 ` Petr Vorel
  2024-05-27  6:33 ` [LTP] [PATCH 11/15] tcp_fastopen: Remove kernel >= 3.7 and 3.16 check Petr Vorel
                   ` (5 subsequent siblings)
  15 siblings, 0 replies; 20+ messages in thread
From: Petr Vorel @ 2024-05-27  6:33 UTC (permalink / raw)
  To: ltp

Since 9e9654cf2 LTP supports kernel >= 4.4.

Signed-off-by: Petr Vorel <pvorel@suse.cz>
---
 testcases/kernel/controllers/cpuset/cpuset_regression_test.sh | 1 -
 1 file changed, 1 deletion(-)

diff --git a/testcases/kernel/controllers/cpuset/cpuset_regression_test.sh b/testcases/kernel/controllers/cpuset/cpuset_regression_test.sh
index bedc48110..38eb28820 100755
--- a/testcases/kernel/controllers/cpuset/cpuset_regression_test.sh
+++ b/testcases/kernel/controllers/cpuset/cpuset_regression_test.sh
@@ -15,7 +15,6 @@ TST_CLEANUP=cleanup
 TST_TESTFUNC=do_test
 TST_NEEDS_ROOT=1
 TST_NEEDS_TMPDIR=1
-TST_MIN_KVER="3.18"
 
 LOCAL_MOUNTPOINT="cpuset_test"
 BACKUP_DIRECTORY="cpuset_backup"
-- 
2.43.0


-- 
Mailing list info: https://lists.linux.it/listinfo/ltp

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

* [LTP] [PATCH 11/15] tcp_fastopen: Remove kernel >= 3.7 and 3.16 check
  2024-05-27  6:33 [LTP] [PATCH 00/15] Remove kernel >= 3.x checks Petr Vorel
                   ` (9 preceding siblings ...)
  2024-05-27  6:33 ` [LTP] [PATCH 10/15] cpuset_regression_test: Remove kernel >= 3.18 check Petr Vorel
@ 2024-05-27  6:33 ` Petr Vorel
  2024-05-27  6:33 ` [LTP] [PATCH 12/15] fcntl{34,36}: Remove kernel >= 3.15 check Petr Vorel
                   ` (4 subsequent siblings)
  15 siblings, 0 replies; 20+ messages in thread
From: Petr Vorel @ 2024-05-27  6:33 UTC (permalink / raw)
  To: ltp

Since 9e9654cf2 LTP supports kernel >= 4.4.

Signed-off-by: Petr Vorel <pvorel@suse.cz>
---
 testcases/network/tcp_fastopen/tcp_fastopen_run.sh | 5 -----
 1 file changed, 5 deletions(-)

diff --git a/testcases/network/tcp_fastopen/tcp_fastopen_run.sh b/testcases/network/tcp_fastopen/tcp_fastopen_run.sh
index 88438c3e1..a3dad55ac 100755
--- a/testcases/network/tcp_fastopen/tcp_fastopen_run.sh
+++ b/testcases/network/tcp_fastopen/tcp_fastopen_run.sh
@@ -7,7 +7,6 @@ TST_SETUP="setup"
 TST_TESTFUNC="test"
 TST_CNT=2
 TST_CLEANUP="cleanup"
-TST_MIN_KVER="3.7"
 TST_NEEDS_TMPDIR=1
 TST_NEEDS_ROOT=1
 TST_NEEDS_CMDS="tc"
@@ -38,10 +37,6 @@ cleanup()
 
 setup()
 {
-	if tst_kvcmp -lt "3.16" && [ "$TST_IPV6" ]; then
-		tst_brk TCONF "test must be run with kernel 3.16 or newer"
-	fi
-
 	ROD tc qdisc add dev $(tst_iface) root netem delay 100
 }
 
-- 
2.43.0


-- 
Mailing list info: https://lists.linux.it/listinfo/ltp

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

* [LTP] [PATCH 12/15] fcntl{34,36}: Remove kernel >= 3.15 check
  2024-05-27  6:33 [LTP] [PATCH 00/15] Remove kernel >= 3.x checks Petr Vorel
                   ` (10 preceding siblings ...)
  2024-05-27  6:33 ` [LTP] [PATCH 11/15] tcp_fastopen: Remove kernel >= 3.7 and 3.16 check Petr Vorel
@ 2024-05-27  6:33 ` Petr Vorel
  2024-05-27  6:33 ` [LTP] [PATCH 13/15] bpf: Remove kernel >= 3.18 or 3.19 check Petr Vorel
                   ` (3 subsequent siblings)
  15 siblings, 0 replies; 20+ messages in thread
From: Petr Vorel @ 2024-05-27  6:33 UTC (permalink / raw)
  To: ltp

Since 9e9654cf2 LTP supports kernel >= 4.4.

Signed-off-by: Petr Vorel <pvorel@suse.cz>
---
 testcases/kernel/syscalls/fcntl/fcntl34.c | 1 -
 testcases/kernel/syscalls/fcntl/fcntl36.c | 1 -
 2 files changed, 2 deletions(-)

diff --git a/testcases/kernel/syscalls/fcntl/fcntl34.c b/testcases/kernel/syscalls/fcntl/fcntl34.c
index 45e693fe6..7c3cea05f 100644
--- a/testcases/kernel/syscalls/fcntl/fcntl34.c
+++ b/testcases/kernel/syscalls/fcntl/fcntl34.c
@@ -125,7 +125,6 @@ static void test01(void)
 }
 
 static struct tst_test test = {
-	.min_kver = "3.15.0",
 	.needs_tmpdir = 1,
 	.test_all = test01,
 	.setup = setup
diff --git a/testcases/kernel/syscalls/fcntl/fcntl36.c b/testcases/kernel/syscalls/fcntl/fcntl36.c
index e84b7ed0c..fabdbe905 100644
--- a/testcases/kernel/syscalls/fcntl/fcntl36.c
+++ b/testcases/kernel/syscalls/fcntl/fcntl36.c
@@ -387,7 +387,6 @@ static void tests(unsigned int i)
 }
 
 static struct tst_test test = {
-	.min_kver = "3.15",
 	.needs_tmpdir = 1,
 	.test = tests,
 	.tcnt = ARRAY_SIZE(tcases),
-- 
2.43.0


-- 
Mailing list info: https://lists.linux.it/listinfo/ltp

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

* [LTP] [PATCH 13/15] bpf: Remove kernel >= 3.18 or 3.19 check
  2024-05-27  6:33 [LTP] [PATCH 00/15] Remove kernel >= 3.x checks Petr Vorel
                   ` (11 preceding siblings ...)
  2024-05-27  6:33 ` [LTP] [PATCH 12/15] fcntl{34,36}: Remove kernel >= 3.15 check Petr Vorel
@ 2024-05-27  6:33 ` Petr Vorel
  2024-05-27  6:33 ` [LTP] [PATCH 14/15] fanout01: Remove kernel >= " Petr Vorel
                   ` (2 subsequent siblings)
  15 siblings, 0 replies; 20+ messages in thread
From: Petr Vorel @ 2024-05-27  6:33 UTC (permalink / raw)
  To: ltp

Since 9e9654cf2 LTP supports kernel >= 4.4.

Signed-off-by: Petr Vorel <pvorel@suse.cz>
---
 testcases/kernel/syscalls/bpf/bpf_map01.c  | 1 -
 testcases/kernel/syscalls/bpf/bpf_prog01.c | 1 -
 testcases/kernel/syscalls/bpf/bpf_prog02.c | 1 -
 testcases/kernel/syscalls/bpf/bpf_prog03.c | 1 -
 testcases/kernel/syscalls/bpf/bpf_prog04.c | 1 -
 testcases/kernel/syscalls/bpf/bpf_prog05.c | 1 -
 6 files changed, 6 deletions(-)

diff --git a/testcases/kernel/syscalls/bpf/bpf_map01.c b/testcases/kernel/syscalls/bpf/bpf_map01.c
index b01402dc4..7f2264bf5 100644
--- a/testcases/kernel/syscalls/bpf/bpf_map01.c
+++ b/testcases/kernel/syscalls/bpf/bpf_map01.c
@@ -147,7 +147,6 @@ static struct tst_test test = {
 	.tcnt = ARRAY_SIZE(map_types),
 	.test = run,
 	.setup = setup,
-	.min_kver = "3.19",
 	.bufs = (struct tst_buffers []) {
 		{&key4, .size = 4},
 		{&key8, .size = 8},
diff --git a/testcases/kernel/syscalls/bpf/bpf_prog01.c b/testcases/kernel/syscalls/bpf/bpf_prog01.c
index 6c149f661..b3846cb62 100644
--- a/testcases/kernel/syscalls/bpf/bpf_prog01.c
+++ b/testcases/kernel/syscalls/bpf/bpf_prog01.c
@@ -107,7 +107,6 @@ void run(void)
 static struct tst_test test = {
 	.setup = setup,
 	.test_all = run,
-	.min_kver = "3.19",
 	.bufs = (struct tst_buffers []) {
 		{&log, .size = BUFSIZ},
 		{&attr, .size = sizeof(*attr)},
diff --git a/testcases/kernel/syscalls/bpf/bpf_prog02.c b/testcases/kernel/syscalls/bpf/bpf_prog02.c
index c96a2fb76..69314aea7 100644
--- a/testcases/kernel/syscalls/bpf/bpf_prog02.c
+++ b/testcases/kernel/syscalls/bpf/bpf_prog02.c
@@ -115,7 +115,6 @@ static void run(void)
 static struct tst_test test = {
 	.setup = setup,
 	.test_all = run,
-	.min_kver = "3.18",
 	.caps = (struct tst_cap []) {
 		TST_CAP(TST_CAP_DROP, CAP_SYS_ADMIN),
 		{}
diff --git a/testcases/kernel/syscalls/bpf/bpf_prog03.c b/testcases/kernel/syscalls/bpf/bpf_prog03.c
index 531fc5743..bb93183d5 100644
--- a/testcases/kernel/syscalls/bpf/bpf_prog03.c
+++ b/testcases/kernel/syscalls/bpf/bpf_prog03.c
@@ -152,7 +152,6 @@ exit:
 static struct tst_test test = {
 	.setup = setup,
 	.test_all = run,
-	.min_kver = "3.18",
 	.caps = (struct tst_cap []) {
 		TST_CAP(TST_CAP_DROP, CAP_SYS_ADMIN),
 		{}
diff --git a/testcases/kernel/syscalls/bpf/bpf_prog04.c b/testcases/kernel/syscalls/bpf/bpf_prog04.c
index 1d74e418e..5c61d34b4 100644
--- a/testcases/kernel/syscalls/bpf/bpf_prog04.c
+++ b/testcases/kernel/syscalls/bpf/bpf_prog04.c
@@ -105,7 +105,6 @@ static void run(void)
 static struct tst_test test = {
 	.setup = setup,
 	.test_all = run,
-	.min_kver = "3.18",
 	.taint_check = TST_TAINT_W | TST_TAINT_D,
 	.caps = (struct tst_cap []) {
 		TST_CAP(TST_CAP_DROP, CAP_SYS_ADMIN),
diff --git a/testcases/kernel/syscalls/bpf/bpf_prog05.c b/testcases/kernel/syscalls/bpf/bpf_prog05.c
index 742beab0b..08254ba89 100644
--- a/testcases/kernel/syscalls/bpf/bpf_prog05.c
+++ b/testcases/kernel/syscalls/bpf/bpf_prog05.c
@@ -192,7 +192,6 @@ static void run(void)
 static struct tst_test test = {
 	.setup = setup,
 	.test_all = run,
-	.min_kver = "3.18",
 	.taint_check = TST_TAINT_W | TST_TAINT_D,
 	.caps = (struct tst_cap []) {
 		TST_CAP(TST_CAP_DROP, CAP_SYS_ADMIN),
-- 
2.43.0


-- 
Mailing list info: https://lists.linux.it/listinfo/ltp

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

* [LTP] [PATCH 14/15] fanout01: Remove kernel >= 3.19 check
  2024-05-27  6:33 [LTP] [PATCH 00/15] Remove kernel >= 3.x checks Petr Vorel
                   ` (12 preceding siblings ...)
  2024-05-27  6:33 ` [LTP] [PATCH 13/15] bpf: Remove kernel >= 3.18 or 3.19 check Petr Vorel
@ 2024-05-27  6:33 ` Petr Vorel
  2024-05-27  6:33 ` [LTP] [PATCH 15/15] cgroup_xattr: Remove kernel >= 3.15 check Petr Vorel
  2024-06-07  3:24 ` [LTP] [PATCH 00/15] Remove kernel >= 3.x checks Li Wang
  15 siblings, 0 replies; 20+ messages in thread
From: Petr Vorel @ 2024-05-27  6:33 UTC (permalink / raw)
  To: ltp

Since 9e9654cf2 LTP supports kernel >= 4.4.

Signed-off-by: Petr Vorel <pvorel@suse.cz>
---
 testcases/network/packet/fanout01.c | 1 -
 1 file changed, 1 deletion(-)

diff --git a/testcases/network/packet/fanout01.c b/testcases/network/packet/fanout01.c
index 4243f8400..30c132621 100644
--- a/testcases/network/packet/fanout01.c
+++ b/testcases/network/packet/fanout01.c
@@ -85,7 +85,6 @@ void run(void)
 }
 
 static struct tst_test test = {
-	.min_kver = "3.19",
 	.setup = setup,
 	.test_all = run,
 	.cleanup = cleanup,
-- 
2.43.0


-- 
Mailing list info: https://lists.linux.it/listinfo/ltp

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

* [LTP] [PATCH 15/15] cgroup_xattr: Remove kernel >= 3.15 check
  2024-05-27  6:33 [LTP] [PATCH 00/15] Remove kernel >= 3.x checks Petr Vorel
                   ` (13 preceding siblings ...)
  2024-05-27  6:33 ` [LTP] [PATCH 14/15] fanout01: Remove kernel >= " Petr Vorel
@ 2024-05-27  6:33 ` Petr Vorel
  2024-05-30 15:28   ` Avinesh Kumar
  2024-06-07  3:24 ` [LTP] [PATCH 00/15] Remove kernel >= 3.x checks Li Wang
  15 siblings, 1 reply; 20+ messages in thread
From: Petr Vorel @ 2024-05-27  6:33 UTC (permalink / raw)
  To: ltp

Since 9e9654cf2 LTP supports kernel >= 4.4.

Signed-off-by: Petr Vorel <pvorel@suse.cz>
---
 .../kernel/controllers/cgroup_xattr/cgroup_xattr.c     | 10 +---------
 1 file changed, 1 insertion(+), 9 deletions(-)

diff --git a/testcases/kernel/controllers/cgroup_xattr/cgroup_xattr.c b/testcases/kernel/controllers/cgroup_xattr/cgroup_xattr.c
index a870118f5..0d016b583 100644
--- a/testcases/kernel/controllers/cgroup_xattr/cgroup_xattr.c
+++ b/testcases/kernel/controllers/cgroup_xattr/cgroup_xattr.c
@@ -151,11 +151,8 @@ void setup(int argc, char *argv[])
 		tst_brkm(TCONF, NULL, "Kernel doesn't support cgroups");
 
 	for (i = 0; i < ARRAY_SIZE(tkeys); ++i) {
-		if (!strcmp(tkeys[i].name, "security.")) {
-			tkeys[i].good = tst_kvercmp(3, 15, 0) < 0;
-		} else if (!strcmp(tkeys[i].name, "trusted.")) {
+		if (!strcmp(tkeys[i].name, "trusted."))
 			tkeys[i].good = tst_kvercmp(4, 5, 0) < 0;
-		}
 	}
 
 	int value_size = DEFAULT_VALUE_SIZE;
@@ -269,12 +266,7 @@ int mount_cgroup(void)
 		 * additional "xattr" option. In that case, mount will succeed,
 		 * but xattr won't be supported in the new mount anyway.
 		 * Should be removed as soon as a fix committed to upstream.
-		 *
-		 * But not applicable for kernels >= 3.15 where xattr supported
-		 * natively.
 		 */
-		if (hier != 0 && tst_kvercmp(3, 15, 0) < 0)
-			continue;
 
 		int i, found = 0;
 		for (i = 0; i < cgrp_opt_num; ++i) {
-- 
2.43.0


-- 
Mailing list info: https://lists.linux.it/listinfo/ltp

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

* Re: [LTP] [PATCH 02/15] recv{, from, msg}01: Remove kernel >= 3.17 check
  2024-05-27  6:33 ` [LTP] [PATCH 02/15] recv{, from, msg}01: Remove kernel >= 3.17 check Petr Vorel
@ 2024-05-28  7:57   ` Wei Gao via ltp
  0 siblings, 0 replies; 20+ messages in thread
From: Wei Gao via ltp @ 2024-05-28  7:57 UTC (permalink / raw)
  To: Petr Vorel; +Cc: ltp

On Mon, May 27, 2024 at 08:33:33AM +0200, Petr Vorel wrote:
> Since 9e9654cf2 LTP supports kernel >= 4.4.
> 
> Signed-off-by: Petr Vorel <pvorel@suse.cz>
Reviewed-by: Wei Gao <wegao@suse.com>
> ---
>  testcases/kernel/syscalls/recv/recv01.c         | 8 --------
>  testcases/kernel/syscalls/recvfrom/recvfrom01.c | 8 --------
>  testcases/kernel/syscalls/recvmsg/recvmsg01.c   | 7 -------
>  3 files changed, 23 deletions(-)
> 
> diff --git a/testcases/kernel/syscalls/recv/recv01.c b/testcases/kernel/syscalls/recv/recv01.c
> index d71243c30..bb2578355 100644
> --- a/testcases/kernel/syscalls/recv/recv01.c
> +++ b/testcases/kernel/syscalls/recv/recv01.c
> @@ -113,14 +113,6 @@ int main(int argc, char *argv[])
>  	for (lc = 0; TEST_LOOPING(lc); ++lc) {
>  		tst_count = 0;
>  		for (testno = 0; testno < TST_TOTAL; ++testno) {
> -			if ((tst_kvercmp(3, 17, 0) < 0)
> -			    && (tdat[testno].flags & MSG_ERRQUEUE)
> -			    && (tdat[testno].type & SOCK_STREAM)) {
> -				tst_resm(TCONF, "skip MSG_ERRQUEUE test, "
> -						"it's supported from 3.17");
> -				continue;
> -			}
> -
>  			tdat[testno].setup();
>  			TEST(recv(s, tdat[testno].buf, tdat[testno].buflen,
>  				  tdat[testno].flags));
> diff --git a/testcases/kernel/syscalls/recvfrom/recvfrom01.c b/testcases/kernel/syscalls/recvfrom/recvfrom01.c
> index f26f85688..6ce9f1bde 100644
> --- a/testcases/kernel/syscalls/recvfrom/recvfrom01.c
> +++ b/testcases/kernel/syscalls/recvfrom/recvfrom01.c
> @@ -137,14 +137,6 @@ int main(int argc, char *argv[])
>  	for (lc = 0; TEST_LOOPING(lc); ++lc) {
>  		tst_count = 0;
>  		for (testno = 0; testno < TST_TOTAL; ++testno) {
> -			if ((tst_kvercmp(3, 17, 0) < 0)
> -			    && (tdat[testno].flags & MSG_ERRQUEUE)
> -			    && (tdat[testno].type & SOCK_STREAM)) {
> -				tst_resm(TCONF, "skip MSG_ERRQUEUE test, "
> -						"it's supported from 3.17");
> -				continue;
> -			}
> -
>  			tdat[testno].setup();
>  			TEST(recvfrom(s, tdat[testno].buf, tdat[testno].buflen,
>  				      tdat[testno].flags, tdat[testno].from,
> diff --git a/testcases/kernel/syscalls/recvmsg/recvmsg01.c b/testcases/kernel/syscalls/recvmsg/recvmsg01.c
> index 80c1b3aa9..a265bc3bd 100644
> --- a/testcases/kernel/syscalls/recvmsg/recvmsg01.c
> +++ b/testcases/kernel/syscalls/recvmsg/recvmsg01.c
> @@ -220,13 +220,6 @@ static void run(unsigned int n)
>  	struct tcase *tc = &tcases[n];
>  	int ret = tc->exp_errno ? -1 : 0;
>  
> -	if ((tst_kvercmp(3, 17, 0) < 0)
> -			&& (tc->flags & MSG_ERRQUEUE)
> -			&& (tc->type & SOCK_STREAM)) {
> -		tst_res(TCONF, "MSG_ERRQUEUE requires kernel >= 3.17");
> -		return;
> -	}
> -
>  	setup_all();
>  	tc->setup(n);
>  
> -- 
> 2.43.0
> 
> 
> -- 
> Mailing list info: https://lists.linux.it/listinfo/ltp

-- 
Mailing list info: https://lists.linux.it/listinfo/ltp

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

* Re: [LTP] [PATCH 15/15] cgroup_xattr: Remove kernel >= 3.15 check
  2024-05-27  6:33 ` [LTP] [PATCH 15/15] cgroup_xattr: Remove kernel >= 3.15 check Petr Vorel
@ 2024-05-30 15:28   ` Avinesh Kumar
  0 siblings, 0 replies; 20+ messages in thread
From: Avinesh Kumar @ 2024-05-30 15:28 UTC (permalink / raw)
  To: Petr Vorel; +Cc: ltp

Hi,

Reviewed-by: Avinesh Kumar <akumar@suse.de>
for all patches in this series.


Thank you,
Avinesh



-- 
Mailing list info: https://lists.linux.it/listinfo/ltp

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

* Re: [LTP] [PATCH 00/15] Remove kernel >= 3.x checks
  2024-05-27  6:33 [LTP] [PATCH 00/15] Remove kernel >= 3.x checks Petr Vorel
                   ` (14 preceding siblings ...)
  2024-05-27  6:33 ` [LTP] [PATCH 15/15] cgroup_xattr: Remove kernel >= 3.15 check Petr Vorel
@ 2024-06-07  3:24 ` Li Wang
  2024-06-07 14:40   ` Petr Vorel
  15 siblings, 1 reply; 20+ messages in thread
From: Li Wang @ 2024-06-07  3:24 UTC (permalink / raw)
  To: Petr Vorel; +Cc: ltp

Hi Petr,

Nice cleanup work!
Reviewed-by: Li Wang <liwang@redhat.com>

-- 
Regards,
Li Wang

-- 
Mailing list info: https://lists.linux.it/listinfo/ltp

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

* Re: [LTP] [PATCH 00/15] Remove kernel >= 3.x checks
  2024-06-07  3:24 ` [LTP] [PATCH 00/15] Remove kernel >= 3.x checks Li Wang
@ 2024-06-07 14:40   ` Petr Vorel
  0 siblings, 0 replies; 20+ messages in thread
From: Petr Vorel @ 2024-06-07 14:40 UTC (permalink / raw)
  To: Li Wang; +Cc: ltp

Hi Li, Avinesh,

> Hi Petr,

> Nice cleanup work!
> Reviewed-by: Li Wang <liwang@redhat.com>

Thanks for your review, merged!

Kind regards,
Petr

-- 
Mailing list info: https://lists.linux.it/listinfo/ltp

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

end of thread, other threads:[~2024-06-07 14:40 UTC | newest]

Thread overview: 20+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-05-27  6:33 [LTP] [PATCH 00/15] Remove kernel >= 3.x checks Petr Vorel
2024-05-27  6:33 ` [LTP] [PATCH 01/15] fallocate04: Remove kernel >= 3.15 check Petr Vorel
2024-05-27  6:33 ` [LTP] [PATCH 02/15] recv{, from, msg}01: Remove kernel >= 3.17 check Petr Vorel
2024-05-28  7:57   ` Wei Gao via ltp
2024-05-27  6:33 ` [LTP] [PATCH 03/15] renameat2*: Remove kernel >= 3.15 check Petr Vorel
2024-05-27  6:33 ` [LTP] [PATCH 04/15] sched_{g, setattr}: Remove kernel >= 3.14 check Petr Vorel
2024-05-27  6:33 ` [LTP] [PATCH 05/15] netstress: Remove kernel >= 3.11 check Petr Vorel
2024-05-27  6:33 ` [LTP] [PATCH 06/15] fs_bind_lib.sh: Remove kernel >= 2.6.15 check Petr Vorel
2024-05-27  6:33 ` [LTP] [PATCH 07/15] quota_remount_test01.sh: Remove kernel >= 2.6.26 check Petr Vorel
2024-05-27  6:33 ` [LTP] [PATCH 08/15] dctcp01.sh: Remove kernel >= 3.18 check Petr Vorel
2024-05-27  6:33 ` [LTP] [PATCH 09/15] busy_poll: Remove kernel >= 3.11 check Petr Vorel
2024-05-27  6:33 ` [LTP] [PATCH 10/15] cpuset_regression_test: Remove kernel >= 3.18 check Petr Vorel
2024-05-27  6:33 ` [LTP] [PATCH 11/15] tcp_fastopen: Remove kernel >= 3.7 and 3.16 check Petr Vorel
2024-05-27  6:33 ` [LTP] [PATCH 12/15] fcntl{34,36}: Remove kernel >= 3.15 check Petr Vorel
2024-05-27  6:33 ` [LTP] [PATCH 13/15] bpf: Remove kernel >= 3.18 or 3.19 check Petr Vorel
2024-05-27  6:33 ` [LTP] [PATCH 14/15] fanout01: Remove kernel >= " Petr Vorel
2024-05-27  6:33 ` [LTP] [PATCH 15/15] cgroup_xattr: Remove kernel >= 3.15 check Petr Vorel
2024-05-30 15:28   ` Avinesh Kumar
2024-06-07  3:24 ` [LTP] [PATCH 00/15] Remove kernel >= 3.x checks Li Wang
2024-06-07 14:40   ` Petr Vorel

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox