do_facet $facet mount
do_facet $facet mkfs.ext4 $file ||
error "mkfs.ext4 $file failed"
+ do_facet $facet "tune2fs -l $file | grep metadata_csum_seed && \
+ tune2fs -O ^metadata_csum_seed $file" ||
+ error "failed to turn off metadata_csum_seed feature"
do_facet $facet file $file
do_facet $facet mount -t ext4 -o loop,usrquota,grpquota $file $mntpt ||
error "mount -o loop,usrquota,grpquota $file $mntpt failed"
do_facet $facet $UMOUNT $mntpt
do_facet $facet mkfs.ext4 -O project,quota $file ||
error "mkfs.ext4 -O project,quota $file failed"
+ do_facet $facet "tune2fs -l $file | grep metadata_csum_seed && \
+ tune2fs -O ^metadata_csum_seed $file" ||
+ error "failed to turn off metadata_csum_seed feature"
do_facet $facet file $file
do_facet $facet mount -t ext4 -o loop,prjquota $file $mntpt ||
error "mount -o loop,prjquota $file $mntpt failed"