[PATCH 3/4] xfstests: fix quota detection
Christoph Hellwig
hch at infradead.org
Fri Oct 15 17:29:13 CDT 2010
Even if the kernel has quota support built in most filesystems still
don't support it. As there's no good way to find out if a filesystem
supports quotas hardcode the list of filesystems that do support
quotas.
Signed-off-by: Christoph Hellwig <hch at lst.de>
Index: xfstests-dev/common.quota
===================================================================
--- xfstests-dev.orig/common.quota 2010-10-14 19:28:41.000000000 +0000
+++ xfstests-dev/common.quota 2010-10-14 19:33:45.000000000 +0000
@@ -27,11 +27,24 @@
_require_quota()
{
[ -n $QUOTA_PROG ] || _notrun "Quota user tools not installed"
- if [ $FSTYP = "xfs" ]; then
- [ -f /proc/fs/xfs/xqmstat ] || _notrun "Installed kernel does not support XFS quota"
- elif [ $FSTYP != "gfs2" ]; then
- [ -d /proc/sys/fs/quota ] || _notrun "Installed kernel does not support quota"
- fi
+
+ case $FSTYP in
+ ext2|ext3|ext4|reiserfs)
+ if [ ! -d /proc/sys/fs/quota ]; then
+ _notrun "Installed kernel does not support quotas"
+ fi
+ ;;
+ gfs2)
+ ;;
+ xfs)
+ if [ ! -f /proc/fs/xfs/xqmstat ]; then
+ _notrun "Installed kernel does not support XFS quotas"
+ fi
+ ;;
+ *)
+ _notrun "disk quotas not supported by this filesystem type: $FSTYP"
+ ;;
+ esac
}
#
More information about the xfs
mailing list