diff mbox series

common/rc: skip ceph-fuse when atime is required

Message ID 20230601025207.857009-1-xiubli@redhat.com (mailing list archive)
State New, archived
Headers show
Series common/rc: skip ceph-fuse when atime is required | expand

Commit Message

Xiubo Li June 1, 2023, 2:52 a.m. UTC
From: Xiubo Li <xiubli@redhat.com>

Ceph won't maintain the atime, so just skip the tests when the atime
is required.

Fixes: https://tracker.ceph.com/issues/61551
Signed-off-by: Xiubo Li <xiubli@redhat.com>
---
 common/rc | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Comments

Zorro Lang June 1, 2023, 9:51 a.m. UTC | #1
On Thu, Jun 01, 2023 at 10:52:07AM +0800, xiubli@redhat.com wrote:
> From: Xiubo Li <xiubli@redhat.com>
> 
> Ceph won't maintain the atime, so just skip the tests when the atime
> is required.
> 
> Fixes: https://tracker.ceph.com/issues/61551
> Signed-off-by: Xiubo Li <xiubli@redhat.com>
> ---

Reviewed-by: Zorro Lang <zlang@redhat.com>

>  common/rc | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/common/rc b/common/rc
> index 37074371..f3b92741 100644
> --- a/common/rc
> +++ b/common/rc
> @@ -4089,7 +4089,7 @@ _require_atime()
>  	nfs|afs|cifs|virtiofs)
>  		_notrun "atime related mount options have no effect on $FSTYP"
>  		;;
> -	ceph)
> +	ceph|ceph-fuse)
>  		_notrun "atime not maintained by $FSTYP"
>  		;;
>  	esac
> -- 
> 2.40.1
>
diff mbox series

Patch

diff --git a/common/rc b/common/rc
index 37074371..f3b92741 100644
--- a/common/rc
+++ b/common/rc
@@ -4089,7 +4089,7 @@  _require_atime()
 	nfs|afs|cifs|virtiofs)
 		_notrun "atime related mount options have no effect on $FSTYP"
 		;;
-	ceph)
+	ceph|ceph-fuse)
 		_notrun "atime not maintained by $FSTYP"
 		;;
 	esac