From: David Hildenbrand <david@redhat.com>
To: ltp@lists.linux.it
Cc: David Hildenbrand <david@redhat.com>
Subject: [LTP] [PATCH v2 2/3] move_pages04: remove special-casing for kernels < 4.3
Date: Tue, 8 Oct 2024 15:59:33 +0200 [thread overview]
Message-ID: <20241008135934.2491333-3-david@redhat.com> (raw)
In-Reply-To: <20241008135934.2491333-1-david@redhat.com>
Let's stop pretending that kernels < 4.3 did the right thing: they
didn't. Let the test fail if we run on these kernels.
Suggested-by: Jan Stancek <jstancek@redhat.com>
Signed-off-by: David Hildenbrand <david@redhat.com>
---
.../kernel/syscalls/move_pages/move_pages04.c | 14 ++++----------
1 file changed, 4 insertions(+), 10 deletions(-)
diff --git a/testcases/kernel/syscalls/move_pages/move_pages04.c b/testcases/kernel/syscalls/move_pages/move_pages04.c
index 9fea63afa..7ad4ba78c 100644
--- a/testcases/kernel/syscalls/move_pages/move_pages04.c
+++ b/testcases/kernel/syscalls/move_pages/move_pages04.c
@@ -40,8 +40,7 @@
* -ENOENT. Note that kernels >= 4.3 [1] and < 6.12 [2] wrongly returned
* -EFAULT by accident.
* 3. Check if the corresponding status for "shared zero page" is set to:
- * -ENOENT for kernels < 4.3
- * -EFAULT for kernels >= 4.3 [1]
+ * -EFAULT. Note that kernels < 4.3 [1] wrongly returned -ENOENT.
* 4. Check if the corresponding status for "invalid memory area" is set
* to -EFAULT.
*
@@ -102,12 +101,7 @@ int main(int argc, char **argv)
int lc;
unsigned int from_node;
unsigned int to_node;
- int ret, exp_zero_page_status;
-
- if ((tst_kvercmp(4, 3, 0)) >= 0)
- exp_zero_page_status = -EFAULT;
- else
- exp_zero_page_status = -ENOENT;
+ int ret;
ret = get_allowed_nodes(NH_MEMS, 2, &from_node, &to_node);
if (ret < 0)
@@ -189,14 +183,14 @@ int main(int argc, char **argv)
tst_strerrno(ENOENT));
}
- if (status[ZERO_PAGE] == exp_zero_page_status) {
+ if (status[ZERO_PAGE] == -EFAULT) {
tst_resm(TPASS, "status[%d] has expected value",
ZERO_PAGE);
} else {
tst_resm(TFAIL, "status[%d] is %s, expected %s",
ZERO_PAGE,
tst_strerrno(-status[ZERO_PAGE]),
- tst_strerrno(-exp_zero_page_status));
+ tst_strerrno(EFAULT));
}
if (status[INVALID_PAGE] == -EFAULT) {
--
2.46.1
--
Mailing list info: https://lists.linux.it/listinfo/ltp
next prev parent reply other threads:[~2024-10-08 14:00 UTC|newest]
Thread overview: 8+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-10-08 13:59 [LTP] [PATCH v2 0/3] move_pages04: fixes and improvements David Hildenbrand
2024-10-08 13:59 ` [LTP] [PATCH v2 1/3] move_pages04: check for "invalid area", "no page mapped" and "shared zero page mapped" David Hildenbrand
2024-10-08 13:59 ` David Hildenbrand [this message]
2024-10-08 13:59 ` [LTP] [PATCH v2 3/3] move_pages04: convert to new test API David Hildenbrand
2024-10-17 15:27 ` Cyril Hrubis
2024-10-17 15:30 ` David Hildenbrand
2024-10-17 17:47 ` Cyril Hrubis
2024-10-09 9:44 ` [LTP] [PATCH v2 0/3] move_pages04: fixes and improvements Jan Stancek
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20241008135934.2491333-3-david@redhat.com \
--to=david@redhat.com \
--cc=ltp@lists.linux.it \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox