diff mbox series

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

Message ID 20230601025207.857009-1-xiubli@redhat.com
State New
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(-)
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