xfstests: fix quota detection
authorChristoph Hellwig <hch@lst.de>
Thu, 21 Oct 2010 03:55:58 +0000 (05:55 +0200)
committerChristoph Hellwig <hch@lst.de>
Thu, 21 Oct 2010 03:55:58 +0000 (05:55 +0200)
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@lst.de>
Reviewed-by: Alex Elder <aelder@sgi.com>
common.quota

index 1520df1fb420b5c1b599bc261ada7f9f1eca1cf5..acf18a84913554cb2a7f9873ac021fa4a4d17e0f 100644 (file)
 _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
 }
 
 #