From: Xiaoli Feng <xifeng@xxxxxxxxxx> Add _filter_scratch and _filter_test_dir to avoid _test_inode_flag failed when mount point contains flag string. --- common/rc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/rc b/common/rc index 649b1cfd..f3bb665e 100644 --- a/common/rc +++ b/common/rc @@ -3112,7 +3112,7 @@ _test_inode_flag() local flag=$1 local file=$2 - if $XFS_IO_PROG -r -c 'lsattr -v' "$file" | grep -q "$flag" ; then + if $XFS_IO_PROG -r -c 'lsattr -v' "$file" | _filter_scratch | _filter_test_dir | grep -q "$flag" ; then return 0 fi return 1 -- 2.18.1