ltp.lists.linux.it archive mirror
 help / color / mirror / Atom feed
* [LTP] [PATCH] syscalls/statmount{04,05}: Enable on FUSE
@ 2025-06-30 12:55 Cyril Hrubis
  2025-07-15  8:49 ` Andrea Cervesato via ltp
                   ` (2 more replies)
  0 siblings, 3 replies; 5+ messages in thread
From: Cyril Hrubis @ 2025-06-30 12:55 UTC (permalink / raw)
  To: ltp

These tests works fine for me fine on NTFS mounted via FUSE on 6.14

Signed-off-by: Cyril Hrubis <chrubis@suse.cz>
---
 testcases/kernel/syscalls/statmount/statmount04.c | 4 ----
 testcases/kernel/syscalls/statmount/statmount05.c | 4 ----
 2 files changed, 8 deletions(-)

diff --git a/testcases/kernel/syscalls/statmount/statmount04.c b/testcases/kernel/syscalls/statmount/statmount04.c
index 7fd4fe8c5..332f6dd4d 100644
--- a/testcases/kernel/syscalls/statmount/statmount04.c
+++ b/testcases/kernel/syscalls/statmount/statmount04.c
@@ -92,10 +92,6 @@ static struct tst_test test = {
 	.mount_device = 1,
 	.mntpoint = MNTPOINT,
 	.all_filesystems = 1,
-	.skip_filesystems = (const char *const []) {
-		"fuse",
-		NULL
-	},
 	.bufs = (struct tst_buffers []) {
 		{&st_mount, .size = sizeof(struct statmount)},
 		{}
diff --git a/testcases/kernel/syscalls/statmount/statmount05.c b/testcases/kernel/syscalls/statmount/statmount05.c
index a517f8212..56a2cb328 100644
--- a/testcases/kernel/syscalls/statmount/statmount05.c
+++ b/testcases/kernel/syscalls/statmount/statmount05.c
@@ -110,10 +110,6 @@ static struct tst_test test = {
 	.mount_device = 1,
 	.mntpoint = MNTPOINT,
 	.all_filesystems = 1,
-	.skip_filesystems = (const char *const []) {
-		"fuse",
-		NULL
-	},
 	.bufs = (struct tst_buffers []) {
 		{&st_mount, .size = SM_SIZE},
 		{}
-- 
2.49.0


-- 
Mailing list info: https://lists.linux.it/listinfo/ltp

^ permalink raw reply related	[flat|nested] 5+ messages in thread

* Re: [LTP] [PATCH] syscalls/statmount{04,05}: Enable on FUSE
  2025-06-30 12:55 [LTP] [PATCH] syscalls/statmount{04,05}: Enable on FUSE Cyril Hrubis
@ 2025-07-15  8:49 ` Andrea Cervesato via ltp
  2025-07-15  9:56 ` Avinesh Kumar
  2025-07-16 18:52 ` Wei Gao via ltp
  2 siblings, 0 replies; 5+ messages in thread
From: Andrea Cervesato via ltp @ 2025-07-15  8:49 UTC (permalink / raw)
  To: Cyril Hrubis, ltp

LGTM

Reviewed-by: Andrea Cervesato <andrea.cervesato@suse.com>


-- 
Mailing list info: https://lists.linux.it/listinfo/ltp

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [LTP] [PATCH] syscalls/statmount{04,05}: Enable on FUSE
  2025-06-30 12:55 [LTP] [PATCH] syscalls/statmount{04,05}: Enable on FUSE Cyril Hrubis
  2025-07-15  8:49 ` Andrea Cervesato via ltp
@ 2025-07-15  9:56 ` Avinesh Kumar
  2025-07-16 18:52 ` Wei Gao via ltp
  2 siblings, 0 replies; 5+ messages in thread
From: Avinesh Kumar @ 2025-07-15  9:56 UTC (permalink / raw)
  To: Cyril Hrubis; +Cc: ltp

Hi,

On Monday, June 30, 2025 2:55:09 PM CEST Cyril Hrubis wrote:
> These tests works fine for me fine on NTFS mounted via FUSE on 6.14
> 
> Signed-off-by: Cyril Hrubis <chrubis@suse.cz>

Reviewed-by: Avinesh Kumar <akumar@suse.de>

Regards,
Avinesh
> ---
>  testcases/kernel/syscalls/statmount/statmount04.c | 4 ----
>  testcases/kernel/syscalls/statmount/statmount05.c | 4 ----
>  2 files changed, 8 deletions(-)
> 
> diff --git a/testcases/kernel/syscalls/statmount/statmount04.c b/testcases/kernel/syscalls/statmount/statmount04.c
> index 7fd4fe8c5..332f6dd4d 100644
> --- a/testcases/kernel/syscalls/statmount/statmount04.c
> +++ b/testcases/kernel/syscalls/statmount/statmount04.c
> @@ -92,10 +92,6 @@ static struct tst_test test = {
>  	.mount_device = 1,
>  	.mntpoint = MNTPOINT,
>  	.all_filesystems = 1,
> -	.skip_filesystems = (const char *const []) {
> -		"fuse",
> -		NULL
> -	},
>  	.bufs = (struct tst_buffers []) {
>  		{&st_mount, .size = sizeof(struct statmount)},
>  		{}
> diff --git a/testcases/kernel/syscalls/statmount/statmount05.c b/testcases/kernel/syscalls/statmount/statmount05.c
> index a517f8212..56a2cb328 100644
> --- a/testcases/kernel/syscalls/statmount/statmount05.c
> +++ b/testcases/kernel/syscalls/statmount/statmount05.c
> @@ -110,10 +110,6 @@ static struct tst_test test = {
>  	.mount_device = 1,
>  	.mntpoint = MNTPOINT,
>  	.all_filesystems = 1,
> -	.skip_filesystems = (const char *const []) {
> -		"fuse",
> -		NULL
> -	},
>  	.bufs = (struct tst_buffers []) {
>  		{&st_mount, .size = SM_SIZE},
>  		{}
> 





-- 
Mailing list info: https://lists.linux.it/listinfo/ltp

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [LTP] [PATCH] syscalls/statmount{04,05}: Enable on FUSE
  2025-06-30 12:55 [LTP] [PATCH] syscalls/statmount{04,05}: Enable on FUSE Cyril Hrubis
  2025-07-15  8:49 ` Andrea Cervesato via ltp
  2025-07-15  9:56 ` Avinesh Kumar
@ 2025-07-16 18:52 ` Wei Gao via ltp
  2025-08-29 10:17   ` Cyril Hrubis
  2 siblings, 1 reply; 5+ messages in thread
From: Wei Gao via ltp @ 2025-07-16 18:52 UTC (permalink / raw)
  To: Cyril Hrubis; +Cc: ltp

On Mon, Jun 30, 2025 at 02:55:09PM +0200, Cyril Hrubis wrote:
> These tests works fine for me fine on NTFS mounted via FUSE on 6.14
I guess we need remove second "fine" ?
> 
> Signed-off-by: Cyril Hrubis <chrubis@suse.cz>
> ---
>  testcases/kernel/syscalls/statmount/statmount04.c | 4 ----
>  testcases/kernel/syscalls/statmount/statmount05.c | 4 ----
>  2 files changed, 8 deletions(-)
> 
> diff --git a/testcases/kernel/syscalls/statmount/statmount04.c b/testcases/kernel/syscalls/statmount/statmount04.c
> index 7fd4fe8c5..332f6dd4d 100644
> --- a/testcases/kernel/syscalls/statmount/statmount04.c
> +++ b/testcases/kernel/syscalls/statmount/statmount04.c
> @@ -92,10 +92,6 @@ static struct tst_test test = {
>  	.mount_device = 1,
>  	.mntpoint = MNTPOINT,
>  	.all_filesystems = 1,
> -	.skip_filesystems = (const char *const []) {
> -		"fuse",
> -		NULL
> -	},
>  	.bufs = (struct tst_buffers []) {
>  		{&st_mount, .size = sizeof(struct statmount)},
>  		{}
> diff --git a/testcases/kernel/syscalls/statmount/statmount05.c b/testcases/kernel/syscalls/statmount/statmount05.c
> index a517f8212..56a2cb328 100644
> --- a/testcases/kernel/syscalls/statmount/statmount05.c
> +++ b/testcases/kernel/syscalls/statmount/statmount05.c
> @@ -110,10 +110,6 @@ static struct tst_test test = {
>  	.mount_device = 1,
>  	.mntpoint = MNTPOINT,
>  	.all_filesystems = 1,
> -	.skip_filesystems = (const char *const []) {
> -		"fuse",
> -		NULL
> -	},
>  	.bufs = (struct tst_buffers []) {
>  		{&st_mount, .size = SM_SIZE},
>  		{}
> -- 
> 2.49.0
> 
> 
> -- 
> Mailing list info: https://lists.linux.it/listinfo/ltp

-- 
Mailing list info: https://lists.linux.it/listinfo/ltp

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [LTP] [PATCH] syscalls/statmount{04,05}: Enable on FUSE
  2025-07-16 18:52 ` Wei Gao via ltp
@ 2025-08-29 10:17   ` Cyril Hrubis
  0 siblings, 0 replies; 5+ messages in thread
From: Cyril Hrubis @ 2025-08-29 10:17 UTC (permalink / raw)
  To: Wei Gao; +Cc: ltp

Hi!
> > These tests works fine for me fine on NTFS mounted via FUSE on 6.14
> I guess we need remove second "fine" ?

Yes, done and pushed, thanks.

-- 
Cyril Hrubis
chrubis@suse.cz

-- 
Mailing list info: https://lists.linux.it/listinfo/ltp

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2025-08-29 10:17 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-06-30 12:55 [LTP] [PATCH] syscalls/statmount{04,05}: Enable on FUSE Cyril Hrubis
2025-07-15  8:49 ` Andrea Cervesato via ltp
2025-07-15  9:56 ` Avinesh Kumar
2025-07-16 18:52 ` Wei Gao via ltp
2025-08-29 10:17   ` Cyril Hrubis

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).