let people know that they probably have an old XFS if this test fails

Merge of master-melb:xfs-cmds:26498a by kenmcd.

  let people know that they probably have an old XFS if this test fails
This commit is contained in:
Tim Shimmin
2006-07-10 06:08:23 +00:00
parent 808e1903f7
commit 98865f5edb
2 changed files with 7 additions and 1 deletions
+6 -1
View File
@@ -82,7 +82,12 @@ echo "logprint after going down..."
_print_logstate
echo "logprint to check for CLEAR_AGI_BUCKET..."
_scratch_xfs_logprint -t | grep CLEAR
if _scratch_xfs_logprint -t | tee -a $seq.full | grep CLEAR; then
echo 'CLEAR_AGI_BUCKET transactions found!!'
echo 'Are you running with an old xfs kernel - where the bug still exists?'
else
echo 'No CLEAR_AGI_BUCKET found in transactions - great - test passed :)'
fi
# success, all done
status=0
+1
View File
@@ -12,3 +12,4 @@ unmount
logprint after going down...
dirty log
logprint to check for CLEAR_AGI_BUCKET...
No CLEAR_AGI_BUCKET found in transactions - great - test passed :)