From: "Ricardo Cañuelo" <ricardo.canuelo@collabora.com>
To: Dan Carpenter <dan.carpenter@linaro.org>,
Naresh Kamboju <naresh.kamboju@linaro.org>
Cc: open list <linux-kernel@vger.kernel.org>,
"open list:KERNEL SELFTEST FRAMEWORK"
<linux-kselftest@vger.kernel.org>,
lkft-triage@lists.linaro.org,
Andrew Morton <akpm@linux-foundation.org>,
Linus Torvalds <torvalds@linux-foundation.org>,
Arnd Bergmann <arnd@arndb.de>, Ard Biesheuvel <ardb@kernel.org>,
Shuah Khan <shuah@kernel.org>,
Anders Roxell <anders.roxell@linaro.org>
Subject: Re: selftests: mincore: mincore_selftest fails only on qemu-armv7
Date: Mon, 15 May 2023 14:32:22 +0200 [thread overview]
Message-ID: <aab36e10-ce86-9374-ea67-be6d1a0f4adf@collabora.com> (raw)
In-Reply-To: <a9e9a1a7-346a-475e-961c-ec8568613b45@kili.mountain>
Hi all,
On 15/5/23 13:51, Dan Carpenter wrote:
> The test is wrong. It doesn't accept -EINVAL as a valid failure.
>
> tools/testing/selftests/mincore/mincore_selftest.c
> 139 TEST(check_huge_pages)
> 140 {
> 141 unsigned char vec[1];
> 142 char *addr;
> 143 int retval;
> 144 int page_size;
> 145
> 146 page_size = sysconf(_SC_PAGESIZE);
> 147
> 148 errno = 0;
> 149 addr = mmap(NULL, page_size, PROT_READ | PROT_WRITE,
> 150 MAP_PRIVATE | MAP_ANONYMOUS | MAP_HUGETLB,
> 151 -1, 0);
> 152 if (addr == MAP_FAILED) {
> 153 if (errno == ENOMEM)
>
> On Armv7 is a 32bit machine so HUGETLB isn't enabled and the errno can
> be -EINVAL. It's has returned this for 10 years.
>
> 154 SKIP(return, "No huge pages available.");
> 155 else
> 156 TH_LOG("mmap error: %s", strerror(errno));
> 157 }
> 158 retval = mincore(addr, page_size, vec);
> 159 ASSERT_EQ(0, retval);
>
> mm/mmap.c
> 1405 }
> 1406 } else if (flags & MAP_HUGETLB) {
> 1407 struct hstate *hs;
> 1408
> 1409 hs = hstate_sizelog((flags >> MAP_HUGE_SHIFT) & MAP_HUGE_MASK);
> 1410 if (!hs)
> 1411 return -EINVAL;
> ^^^^^^^^^^^^^^^
> hstate_sizelog() return NULL when CONFIG_HUGETLB_PAGE is disabled.
>
> 1412
> 1413 len = ALIGN(len, huge_page_size(hs));
>
> regards,
> dan carpenter
>
Thanks for the tip, Dan. I'll send a patch for it asap.
Cheers,
Ricardo
prev parent reply other threads:[~2023-05-15 12:32 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-05-15 9:59 Naresh Kamboju
2023-05-15 11:51 ` Dan Carpenter
2023-05-15 12:13 ` Arnd Bergmann
2023-05-15 12:32 ` Ricardo Cañuelo [this message]
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=aab36e10-ce86-9374-ea67-be6d1a0f4adf@collabora.com \
--to=ricardo.canuelo@collabora.com \
--cc=akpm@linux-foundation.org \
--cc=anders.roxell@linaro.org \
--cc=ardb@kernel.org \
--cc=arnd@arndb.de \
--cc=dan.carpenter@linaro.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-kselftest@vger.kernel.org \
--cc=lkft-triage@lists.linaro.org \
--cc=naresh.kamboju@linaro.org \
--cc=shuah@kernel.org \
--cc=torvalds@linux-foundation.org \
/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
all inboxes | Powered by JetHome®