Details
-
Bug
-
Resolution: Fixed
-
Major
-
Lustre 2.3.0, Lustre 2.4.0
-
3
-
4396
Description
In test-framework.sh there is a check for ZFS filesystems in use, but this doesn't force USE_OFD to be set and load ofd instead of obdfilter.
load_modules_local() {
if [[ $(node_fstypes $HOSTNAME) == *zfs* ]]; then
load_module osd-zfs/osd_zfs
fi
if [ "$USE_OFD" == yes ]; then
load_module ofd/ofd
else
load_module obdfilter/obdfilter
fi
}
If osd-zfs is being tested, it should also set USE_OFD=yes. osd-zfs cannot run with obdfilter.