From: Rishabh Dave <ridave@redhat.com>
To: fstests@vger.kernel.org
Cc: jlayton@redhat.com, rishabhddave@gmail.com,
Rishabh Dave <ridave@redhat.com>
Subject: [PATCHv2] cephfs: add ceph-fuse suport for ceph-fuse
Date: Fri, 6 May 2022 20:31:42 +0530 [thread overview]
Message-ID: <20220506150141.333929-1-ridave@redhat.com> (raw)
Currently tests in xfstests-dev can be executed against CephFS only by
mounting CephFS using kernel driver. Attempting to run tests against
CephFS using FUSE doesn't work because xfstests-dev would remount CephFS
using kernel. This patch adds the ability for xfstest-dev code to mount
CephFS using FUSE.
Fixes: https://tracker.ceph.com/issues/55354
Signed-off-by: Rishabh Dave <ridave@redhat.com>
---
common/config | 2 ++
common/rc | 47 +++++++++++++++++++++++++++++++++++------------
2 files changed, 37 insertions(+), 12 deletions(-)
diff --git a/common/config b/common/config
index 1033b890..efcf12e9 100644
--- a/common/config
+++ b/common/config
@@ -556,6 +556,8 @@ _check_device()
_fatal "common/config: $name ($dev) is not a character device"
fi
;;
+ ceph-fuse)
+ ;;
*)
_fatal "common/config: $name ($dev) is not a block device or a network filesystem"
esac
diff --git a/common/rc b/common/rc
index 553ae350..a8252c7f 100644
--- a/common/rc
+++ b/common/rc
@@ -500,10 +500,14 @@ _test_mount()
{
local mount_ret
- if [ "$FSTYP" == "overlay" ]; then
+ if [ "$FSTYP" == "ceph-fuse" ]; then
+ $CEPH_FUSE_BIN_PATH $TEST_FS_MOUNT_OPTS $TEST_DIR 2> /dev/null
+ return $?
+ elif [ "$FSTYP" == "overlay" ]; then
_overlay_test_mount $*
return $?
fi
+
_test_options mount
_mount -t $FSTYP $TEST_OPTIONS $TEST_FS_MOUNT_OPTS $SELINUX_MOUNT_OPTIONS $* $TEST_DEV $TEST_DIR
mount_ret=$?
@@ -1446,7 +1450,8 @@ _fs_type()
# have to bother with this quirk.
#
_df_device $1 | $AWK_PROG '{ print $2 }' | \
- sed -e 's/nfs4/nfs/' -e 's/fuse.glusterfs/glusterfs/'
+ sed -e 's/nfs4/nfs/' -e 's/fuse.glusterfs/glusterfs/' \
+ -e 's/fuse.ceph-fuse/ceph-fuse/'
}
# return the FS mount options of a mounted device
@@ -1595,6 +1600,24 @@ _supported_fs()
_notrun "not suitable for this filesystem type: $FSTYP"
}
+_check_if_dev_already_mounted()
+{
+ local dev=$1
+ local mnt=$2
+
+ # find $dev as the source, and print result in "$dev $mnt" format
+ local mount_rec=`findmnt -rncv -S $dev -o SOURCE,TARGET`
+ [ -n "$mount_rec" ] || return 1 # 1 = not mounted
+
+ # if it's mounted, make sure its on $mnt
+ if [ "$mount_rec" != "$dev $mnt" ]; then
+ echo "$devname=$dev is mounted but not on $mntname=$mnt - aborting"
+ echo "Already mounted result:"
+ echo $mount_rec
+ return 2 # 2 = mounted on wrong mnt
+ fi
+}
+
# check if a FS on a device is mounted
# if so, verify that it is mounted on mount point
# if fstype is given as argument, verify that it is also
@@ -1608,16 +1631,14 @@ _check_mounted_on()
local mnt=$4
local type=$5
- # find $dev as the source, and print result in "$dev $mnt" format
- local mount_rec=`findmnt -rncv -S $dev -o SOURCE,TARGET`
- [ -n "$mount_rec" ] || return 1 # 1 = not mounted
+ # this check doesn't work on ceph-fuse
+ if [ "$dev" != "ceph-fuse" ]; then
+ _check_if_dev_already_mounted $dev $mnt
+ dev_already_mounted=$?
- # if it's mounted, make sure its on $mnt
- if [ "$mount_rec" != "$dev $mnt" ]; then
- echo "$devname=$dev is mounted but not on $mntname=$mnt - aborting"
- echo "Already mounted result:"
- echo $mount_rec
- return 2 # 2 = mounted on wrong mnt
+ if [ $dev_already_mounted -ne 0 ]; then
+ return $dev_already_mounted
+ fi
fi
if [ -n "$type" -a "`_fs_type $dev`" != "$type" ]; then
@@ -1870,6 +1891,8 @@ _require_test()
_notrun "this test requires a valid \$TEST_DIR"
fi
;;
+ ceph-fuse)
+ ;;
cifs)
echo $TEST_DEV | grep -q "//" > /dev/null 2>&1
if [ -z "$TEST_DEV" -o "$?" != "0" ]; then
@@ -3204,7 +3227,7 @@ _check_test_fs()
virtiofs)
# no way to check consistency for virtiofs
;;
- ceph)
+ ceph|ceph-fuse)
# no way to check consistency for CephFS
;;
glusterfs)
--
2.34.1
next reply other threads:[~2022-05-06 15:05 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-05-06 15:01 Rishabh Dave [this message]
2022-05-07 7:29 ` [PATCHv2] cephfs: add ceph-fuse suport for ceph-fuse Zorro Lang
2022-05-07 7:56 ` Rishabh Dave
2022-05-07 8:41 ` Zorro Lang
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20220506150141.333929-1-ridave@redhat.com \
--to=ridave@redhat.com \
--cc=fstests@vger.kernel.org \
--cc=jlayton@redhat.com \
--cc=rishabhddave@gmail.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox