[PATCH] xfstests: use blkid raw mode

Christoph Hellwig hch at infradead.org
Sun Feb 14 16:07:53 CST 2010


blkid without options usually gets no probe results at all just after
creating a filesystem.  This problem is due to the cache that blkid
uses in it's default mode, and is unlikely to get fixed.  Use the -p
option to bypass the cache layer.

Signed-off-by: Christoph Hellwig <hch at lst.de>

Index: xfstests-dev/common
===================================================================
--- xfstests-dev.orig/common	2010-02-11 16:08:58.000000000 +0000
+++ xfstests-dev/common	2010-02-11 16:09:03.000000000 +0000
@@ -47,7 +47,7 @@ rm -f $tmp.list $tmp.tmp $tmp.sed
 # Autodetect fs type based on what's on $TEST_DEV
 if [ "$HOSTOS" == "Linux" ]
 then
-    export FSTYP=`blkid -s TYPE -o value $TEST_DEV`
+    export FSTYP=`blkid -p -s TYPE -o value $TEST_DEV`
 else
     export FSTYP=xfs
 fi




More information about the xfs mailing list