[LTP] [PATCH 1/1] fanotify09: Skip testing e730558adffb on SLE < 5.19 kernel

Avinesh Kumar akumar@suse.de
Thu Sep 5 16:12:33 CEST 2024


Hi,

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

On Wednesday, September 4, 2024 2:36:04 PM GMT+2 Petr Vorel wrote:
> Kernel commit e730558adffb ("fsnotify: consistent behavior for parent
> not watching children") will not be backported to SLE15-SP[45] v5.14
> based kernel, therefore skip it for kernel < 5.19 (the original mainline
> kernel which brought the functionality.
> 
> Signed-off-by: Petr Vorel <pvorel@suse.cz>
> ---
>  testcases/kernel/syscalls/fanotify/fanotify09.c | 7 ++++++-
>  1 file changed, 6 insertions(+), 1 deletion(-)
> 
> diff --git a/testcases/kernel/syscalls/fanotify/fanotify09.c b/testcases/kernel/syscalls/fanotify/fanotify09.c
> index 48b198b941..72e9239897 100644
> --- a/testcases/kernel/syscalls/fanotify/fanotify09.c
> +++ b/testcases/kernel/syscalls/fanotify/fanotify09.c
> @@ -379,7 +379,12 @@ static void test_fanotify(unsigned int n)
>  		return;
>  	}
>  
> -	if (tc->ignore && tst_kvercmp(5, 10, 0) < 0) {
> +	static struct tst_kern_exv kvers[] = {
> +		{"SLES", "5.19"},
> +		{NULL, NULL}
> +	};
> +
> +	if (tc->ignore && tst_kvercmp2(5, 10, 0, kvers) < 0) {
>  		tst_res(TCONF, "ignored mask on parent dir has undefined "
>  				"behavior on kernel < 5.10");
>  		return;
> 

Regards,
Avinesh





More information about the ltp mailing list