From: Donet Tom <donettom@linux.ibm.com>
To: Muhammad Usama Anjum <usama.anjum@collabora.com>,
Andrew Morton <akpm@linux-foundation.org>,
Shuah Khan <shuah@kernel.org>
Cc: kernel@collabora.com, linux-mm@kvack.org,
linux-kselftest@vger.kernel.org, linux-kernel@vger.kernel.org
Subject: Re: [PATCH] selftests: hugetlb_dio: Check for initial conditions to skip in the start
Date: Fri, 8 Nov 2024 16:19:31 +0530 [thread overview]
Message-ID: <13a96176-1bfa-4567-8ce5-a2b75b110afc@linux.ibm.com> (raw)
In-Reply-To: <5883b1c0-13c6-4593-9dd5-17f34c1319fe@linux.ibm.com>
On 11/8/24 16:05, Donet Tom wrote:
>
> On 11/1/24 19:45, Muhammad Usama Anjum wrote:
>> The test should be skipped if initial conditions aren't fulfilled in
>> the start instead of failing and outputting non-compliant TAP logs. This
>> kind of failure pollutes the results. The initial conditions are:
>> - The test should only execute if /tmp file can be allocated.
>> - The test should only execute if huge pages are free.
>>
>> Signed-off-by: Muhammad Usama Anjum <usama.anjum@collabora.com>
>> ---
>> Before:
>> TAP version 13
>> 1..4
>> Bail out! Error opening file
>> : Read-only file system (30)
>> # Planned tests != run tests (4 != 0)
>> # Totals: pass:0 fail:0 xfail:0 xpass:0 skip:0 error:0
>>
>> After:
>> TAP version 13
>> 1..0 # SKIP Unable to allocate file: Read-only file system
>> ---
>> tools/testing/selftests/mm/hugetlb_dio.c | 19 ++++++++++++-------
>> 1 file changed, 12 insertions(+), 7 deletions(-)
>>
>> diff --git a/tools/testing/selftests/mm/hugetlb_dio.c
>> b/tools/testing/selftests/mm/hugetlb_dio.c
>> index f9ac20c657ec6..60001c142ce99 100644
>> --- a/tools/testing/selftests/mm/hugetlb_dio.c
>> +++ b/tools/testing/selftests/mm/hugetlb_dio.c
>> @@ -44,13 +44,6 @@ void run_dio_using_hugetlb(unsigned int start_off,
>> unsigned int end_off)
>> if (fd < 0)
>> ksft_exit_fail_perror("Error opening file\n");
>> - /* Get the free huge pages before allocation */
>> - free_hpage_b = get_free_hugepages();
>
> Hi Muhammed Usman Anjum
>
> Reading the free pages is required before starting the test. This
> value will be compared to the free pages after the test. If they are
> not the same, the test will be considered a failure.
>
> Since reading the free pages before the test was
> removed,|free_hpage_b| is always 0, causing the test to fail.
>
> ./tools/testing/selftests/mm/hugetlb_dio TAP version 13 1..4 # No.
> Free pages before allocation : 0 # No. Free pages after munmap : 100
> not ok 1 : Huge pages not freed! # No. Free pages before allocation :
> 0 # No. Free pages after munmap : 100 not ok 2 : Huge pages not freed!
> # No. Free pages before allocation : 0 # No. Free pages after munmap :
> 100 not ok 3 : Huge pages not freed! # No. Free pages before
> allocation : 0 # No. Free pages after munmap : 100 not ok 4 : Huge
> pages not freed! # Totals: pass:0 fail:4 xfail:0 xpass:0 skip:0
> error:0 I think below changes are required. ---
> a/tools/testing/selftests/mm/hugetlb_dio.c +++
> b/tools/testing/selftests/mm/hugetlb_dio.c @@ -44,6 +44,9 @@ void
> run_dio_using_hugetlb(unsigned int start_off, unsigned int end_off) if
> (fd < 0) ksft_exit_fail_perror("Error opening file\n"); + /* Get the
> free huge pages before allocation */ + free_hpage_b =
> get_free_hugepages(); + /* Allocate a hugetlb page */ orig_buffer =
> mmap(NULL, h_pagesize, mmap_prot, mmap_flags, -1, 0); if (orig_buffer
> == MAP_FAILED) { With this change the tests are passing.
> ./tools/testing/selftests/mm/hugetlb_dio TAP version 13 1..4 # No.
> Free pages before allocation : 100 # No. Free pages after munmap : 100
> ok 1 : Huge pages freed successfully ! # No. Free pages before
> allocation : 100 # No. Free pages after munmap : 100 ok 2 : Huge pages
> freed successfully ! # No. Free pages before allocation : 100 # No.
> Free pages after munmap : 100 ok 3 : Huge pages freed successfully ! #
> No. Free pages before allocation : 100 # No. Free pages after munmap :
> 100 ok 4 : Huge pages freed successfully ! # Totals: pass:4 fail:0
> xfail:0 xpass:0 skip:0 error:0 Thank
>
> Donet
>
>
Sorry. Please ignore above mail.
Reading the free pages is required before starting the test. This
value will be compared to the free pages after the test. If they are not the same, the test will be considered a failure.
Since reading the free pages before the test was removed,free_hpage_b is always 0, causing the test to fail.
./tools/testing/selftests/mm/hugetlb_dio
TAP version 13
1..4
# No. Free pages before allocation : 0
# No. Free pages after munmap : 100
not ok 1 : Huge pages not freed!
# No. Free pages before allocation : 0
# No. Free pages after munmap : 100
not ok 2 : Huge pages not freed!
# No. Free pages before allocation : 0
# No. Free pages after munmap : 100
not ok 3 : Huge pages not freed!
# No. Free pages before allocation : 0
# No. Free pages after munmap : 100
not ok 4 : Huge pages not freed!
# Totals: pass:0 fail:4 xfail:0 xpass:0 skip:0 error:0
I think below changes are required.
iff --git a/tools/testing/selftests/mm/hugetlb_dio.c b/tools/testing/selftests/mm/hugetlb_dio.c
index 60001c142ce9..4b52106b8124 100644
--- a/tools/testing/selftests/mm/hugetlb_dio.c
+++ b/tools/testing/selftests/mm/hugetlb_dio.c
@@ -44,6 +44,9 @@ void run_dio_using_hugetlb(unsigned int start_off, unsigned int end_off)
if (fd < 0)
ksft_exit_fail_perror("Error opening file\n");
+ /* Get the free huge pages before allocation */
+ free_hpage_b = get_free_hugepages();
+
/* Allocate a hugetlb page */
orig_buffer = mmap(NULL, h_pagesize, mmap_prot, mmap_flags, -1, 0);
if (orig_buffer == MAP_FAILED) {
With this change the tests are passing.
./tools/testing/selftests/mm/hugetlb_dio
TAP version 131..4
# No. Free pages before allocation : 100
# No. Free pages after munmap : 100
ok 1 : Huge pages freed successfully !
# No. Free pages before allocation : 100
# No. Free pages after munmap : 100
ok 2 : Huge pages freed successfully !
# No. Free pages before allocation : 100
# No. Free pages after munmap : 100
ok 3 : Huge pages freed successfully !
# No. Free pages before allocation : 100
# No. Free pages after munmap : 100
ok 4 : Huge pages freed successfully !
# Totals: pass:4 fail:0 xfail:0 xpass:0 skip:0 error:0
Thanks
Donet
>> - if (free_hpage_b == 0) {
>> - close(fd);
>> - ksft_exit_skip("No free hugepage, exiting!\n");
>> - }
>> -
>> /* Allocate a hugetlb page */
>> orig_buffer = mmap(NULL, h_pagesize, mmap_prot, mmap_flags, -1,
>> 0);
>> if (orig_buffer == MAP_FAILED) {
>> @@ -94,8 +87,20 @@ void run_dio_using_hugetlb(unsigned int start_off,
>> unsigned int end_off)
>> int main(void)
>> {
>> size_t pagesize = 0;
>> + int fd;
>> ksft_print_header();
>> +
>> + /* Open the file to DIO */
>> + fd = open("/tmp", O_TMPFILE | O_RDWR | O_DIRECT, 0664);
>> + if (fd < 0)
>> + ksft_exit_skip("Unable to allocate file: %s\n",
>> strerror(errno));
>> + close(fd);
>> +
>> + /* Check if huge pages are free */
>> + if (!get_free_hugepages())
>> + ksft_exit_skip("No free hugepage, exiting\n");
>> +
>> ksft_set_plan(4);
>> /* Get base page size */
next prev parent reply other threads:[~2024-11-08 10:49 UTC|newest]
Thread overview: 11+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-11-01 14:15 Muhammad Usama Anjum
2024-11-01 18:54 ` Andrew Morton
2024-11-08 10:35 ` Donet Tom
2024-11-08 10:49 ` Donet Tom [this message]
2024-11-08 14:13 ` Muhammad Usama Anjum
2024-11-10 6:20 ` Andrew Morton
2024-11-10 6:34 ` Andrew Morton
2024-11-10 6:49 ` [PATCH] selftests: hugetlb_dio: Fixup " Donet Tom
2024-11-10 6:52 ` Donet Tom
2024-11-11 6:59 ` Andrew Morton
2024-11-10 6:56 ` Donet Tom
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=13a96176-1bfa-4567-8ce5-a2b75b110afc@linux.ibm.com \
--to=donettom@linux.ibm.com \
--cc=akpm@linux-foundation.org \
--cc=kernel@collabora.com \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-kselftest@vger.kernel.org \
--cc=linux-mm@kvack.org \
--cc=shuah@kernel.org \
--cc=usama.anjum@collabora.com \
/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