diff mbox series

[1/1] syscalls/ioctl08: Require btrfs

Message ID 20190703154709.20863-1-pvorel@suse.cz
State Accepted
Delegated to: Petr Vorel
Headers show
Series [1/1] syscalls/ioctl08: Require btrfs | expand

Commit Message

Petr Vorel July 3, 2019, 3:47 p.m. UTC
Test requires btrfs otherwise it fails:
WARNING: failed to open /dev/btrfs-control, skipping device
registration: No such file or directory
safe_macros.c:757: BROK: tst_test.c:752: mount(/dev/loop0, mnt_point,
btrfs, 0, (nil)) failed: ENODEV

Cc: Christian Amann <camann@suse.com>
Reported-by: Amir Goldstein <amir73il@gmail.com>
Signed-off-by: Petr Vorel <pvorel@suse.cz>
---
Hi Amir,

thanks a lot for a report and sorry for longer time to reply (vacation).
Could you please test it? (I don't have any VM with kernel >= 4.5 && !btrfs).

Kind regards,
Petr

 testcases/kernel/syscalls/ioctl/ioctl08.c | 6 ++++++
 1 file changed, 6 insertions(+)

Comments

Cyril Hrubis July 9, 2019, 10:24 a.m. UTC | #1
Hi!
> WARNING: failed to open /dev/btrfs-control, skipping device
> registration: No such file or directory
> safe_macros.c:757: BROK: tst_test.c:752: mount(/dev/loop0, mnt_point,
> btrfs, 0, (nil)) failed: ENODEV
> 
> Cc: Christian Amann <camann@suse.com>
> Reported-by: Amir Goldstein <amir73il@gmail.com>
> Signed-off-by: Petr Vorel <pvorel@suse.cz>
> ---
> Hi Amir,
> 
> thanks a lot for a report and sorry for longer time to reply (vacation).
> Could you please test it? (I don't have any VM with kernel >= 4.5 && !btrfs).

Looks good to me.

Amir have you had a chance to test this patch?
Petr Vorel July 29, 2019, 2:19 p.m. UTC | #2
Hi Amir,

> Test requires btrfs otherwise it fails:
> WARNING: failed to open /dev/btrfs-control, skipping device
> registration: No such file or directory
> safe_macros.c:757: BROK: tst_test.c:752: mount(/dev/loop0, mnt_point,
> btrfs, 0, (nil)) failed: ENODEV
could you please test it?

Kind regards,
Petr
https://patchwork.ozlabs.org/patch/1126923/

> Cc: Christian Amann <camann@suse.com>
> Reported-by: Amir Goldstein <amir73il@gmail.com>
> Signed-off-by: Petr Vorel <pvorel@suse.cz>
> ---
> Hi Amir,

> thanks a lot for a report and sorry for longer time to reply (vacation).
> Could you please test it? (I don't have any VM with kernel >= 4.5 && !btrfs).

> Kind regards,
> Petr

>  testcases/kernel/syscalls/ioctl/ioctl08.c | 6 ++++++
>  1 file changed, 6 insertions(+)

> diff --git a/testcases/kernel/syscalls/ioctl/ioctl08.c b/testcases/kernel/syscalls/ioctl/ioctl08.c
> index 8de80048c..dca898a65 100644
> --- a/testcases/kernel/syscalls/ioctl/ioctl08.c
> +++ b/testcases/kernel/syscalls/ioctl/ioctl08.c
> @@ -112,6 +112,11 @@ static void setup(void)
>  			sizeof(struct file_dedupe_range_info));
>  }

> +static const char *const needed_drivers[] = {
> +	"btrfs",
> +	NULL,
> +};
> +
>  static struct tst_test test = {
>  	.test = verify_ioctl,
>  	.tcnt = ARRAY_SIZE(tcases),
> @@ -122,6 +127,7 @@ static struct tst_test test = {
>  	.mount_device = 1,
>  	.mntpoint = MNTPOINT,
>  	.dev_fs_type = "btrfs",
> +	.needs_drivers = needed_drivers,
>  };
>  #else
>  	TST_TEST_TCONF(
Petr Vorel July 31, 2019, 8:51 p.m. UTC | #3
Hi Amir,

> > Test requires btrfs otherwise it fails:
> > WARNING: failed to open /dev/btrfs-control, skipping device
> > registration: No such file or directory
> > safe_macros.c:757: BROK: tst_test.c:752: mount(/dev/loop0, mnt_point,
> > btrfs, 0, (nil)) failed: ENODEV
> could you please test it?

I tested it on kernel without btrfs and it works as expected, thus pushed.
Thanks again for your report.

Kind regards,
Petr
diff mbox series

Patch

diff --git a/testcases/kernel/syscalls/ioctl/ioctl08.c b/testcases/kernel/syscalls/ioctl/ioctl08.c
index 8de80048c..dca898a65 100644
--- a/testcases/kernel/syscalls/ioctl/ioctl08.c
+++ b/testcases/kernel/syscalls/ioctl/ioctl08.c
@@ -112,6 +112,11 @@  static void setup(void)
 			sizeof(struct file_dedupe_range_info));
 }
 
+static const char *const needed_drivers[] = {
+	"btrfs",
+	NULL,
+};
+
 static struct tst_test test = {
 	.test = verify_ioctl,
 	.tcnt = ARRAY_SIZE(tcases),
@@ -122,6 +127,7 @@  static struct tst_test test = {
 	.mount_device = 1,
 	.mntpoint = MNTPOINT,
 	.dev_fs_type = "btrfs",
+	.needs_drivers = needed_drivers,
 };
 #else
 	TST_TEST_TCONF(