From: Jan Stancek <jstancek@redhat.com>
To: ltp@lists.linux.it
Subject: [LTP] [PATCH] syscalls: avoid creating whiteout device in tests
Date: Fri, 11 Dec 2015 08:00:55 -0500 (EST) [thread overview]
Message-ID: <420858404.27107103.1449838855503.JavaMail.zimbra@redhat.com> (raw)
In-Reply-To: <1449747502-29612-1-git-send-email-eguan@redhat.com>
----- Original Message -----
> From: "Eryu Guan" <eguan@redhat.com>
> To: ltp@lists.linux.it
> Sent: Thursday, 10 December, 2015 12:38:22 PM
> Subject: [LTP] [PATCH] syscalls: avoid creating whiteout device in tests
>
> A char device with major 0 and minor 0 is known as whiteout device, and
> overlayfs refuses to create such device. mknod01 and mount02 fail on
> overlayfs because of this restriction.
>
> Fix it by creating null device instead.
>
> Signed-off-by: Eryu Guan <eguan@redhat.com>
Hi,
> ---
> testcases/kernel/syscalls/mknod/mknod01.c | 17 +++++++++++++----
> testcases/kernel/syscalls/mount/mount02.c | 8 ++++++--
> 2 files changed, 19 insertions(+), 6 deletions(-)
>
> diff --git a/testcases/kernel/syscalls/mknod/mknod01.c
> b/testcases/kernel/syscalls/mknod/mknod01.c
> index 863d02d..a35adf9 100644
> --- a/testcases/kernel/syscalls/mknod/mknod01.c
> +++ b/testcases/kernel/syscalls/mknod/mknod01.c
> @@ -66,6 +66,7 @@ int TST_TOTAL = ARRAY_SIZE(tcases);
> int main(int ac, char **av)
> {
> int lc, i;
> + dev_t dev;
>
> tst_parse_opts(ac, av, NULL, NULL);
>
> @@ -75,17 +76,25 @@ int main(int ac, char **av)
> tst_count = 0;
>
> for (i = 0; i < TST_TOTAL; i++) {
> + /*
> + * overlayfs doesn't support mknod char device with
> + * major 0 and minor 0, which is known as whiteout_dev
> + */
> + if (S_ISCHR(tcases[i]))
> + dev = makedev(1, 3);
> + else
> + dev = 0;
> TEST(mknod(PATH, tcases[i], 0));
Did you mean to use "dev" variable here? ----------^^^
The rest looks OK to me.
Regards,
Jan
>
> if (TEST_RETURN == -1) {
> tst_resm(TFAIL,
> - "mknod(%s, %#o, 0) failed, errno=%d : %s",
> - PATH, tcases[i], TEST_ERRNO,
> + "mknod(%s, %#o, %lu) failed, errno=%d : %s",
> + PATH, tcases[i], dev, TEST_ERRNO,
> strerror(TEST_ERRNO));
> } else {
> tst_resm(TPASS,
> - "mknod(%s, %#o, 0) returned %ld",
> - PATH, tcases[i], TEST_RETURN);
> + "mknod(%s, %#o, %lu) returned %ld",
> + PATH, tcases[i], dev, TEST_RETURN);
> }
>
> SAFE_UNLINK(cleanup, PATH);
> diff --git a/testcases/kernel/syscalls/mount/mount02.c
> b/testcases/kernel/syscalls/mount/mount02.c
> index 85c050d..916c35e 100644
> --- a/testcases/kernel/syscalls/mount/mount02.c
> +++ b/testcases/kernel/syscalls/mount/mount02.c
> @@ -170,6 +170,8 @@ static void do_umount(void)
>
> static void setup(void)
> {
> + dev_t dev;
> +
> tst_sig(FORK, DEF_HANDLER, cleanup);
>
> tst_require_root();
> @@ -190,9 +192,11 @@ static void setup(void)
>
> memset(path, 'a', PATH_MAX + 1);
>
> - if (mknod(char_dev, S_IFCHR | FILE_MODE, 0)) {
> + dev = makedev(1, 3);
> + if (mknod(char_dev, S_IFCHR | FILE_MODE, dev)) {
> tst_brkm(TBROK | TERRNO, cleanup,
> - "failed to mknod(char_dev, S_IFCHR | FILE_MODE, 0)");
> + "failed to mknod(char_dev, S_IFCHR | FILE_MODE, %lu)",
> + dev);
> }
>
> TEST_PAUSE;
> --
> 2.5.0
>
>
> --
> Mailing list info: http://lists.linux.it/listinfo/ltp
>
next prev parent reply other threads:[~2015-12-11 13:00 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-12-10 11:38 [LTP] [PATCH] syscalls: avoid creating whiteout device in tests Eryu Guan
2015-12-11 13:00 ` Jan Stancek [this message]
2015-12-11 13:19 ` Eryu Guan
2015-12-11 13:24 ` [LTP] [PATCH v2] " Eryu Guan
2015-12-11 13:33 ` 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=420858404.27107103.1449838855503.JavaMail.zimbra@redhat.com \
--to=jstancek@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