FSCK_OPT=-yf TMPFILE=test.img rm -f $test_name.failed $test_name.ok > $TMPFILE stat -f $TMPFILE | grep -q "Type: tmpfs" if [ $? == 0 ]; then rm -f $TMPFILE echo "skipped for tmpfs (no O_DIRECT support)" return 0 fi echo "make the test image ..." > $test_name.log $MKE2FS -q -F -o Linux -b 1024 -O mmp -E mmp_update_interval=1 $TMPFILE 100 >> $test_name.log 2>&1 status=$? if [ "$status" != 0 ] ; then echo "mke2fs -O mmp failed" > $test_name.failed echo "failed" return $status fi # this will cause debugfs to create the $test_name.mark file once it has # passed the MMP startup, then continue reading input until it is killed MARKFILE=$test_name.new rm -f $MARKFILE echo "set mmp sequence to EXT2_MMP_SEQ_FSCK..." >> $test_name.log ( { echo dump_mmp; echo "dump_inode <2> $MARKFILE"; cat /dev/zero; } | $DEBUGFS -w $TMPFILE >> $test_name.log 2>&1 & ) > /dev/null 2>&1 & echo "wait until debugfs has started ..." >> $test_name.log while [ ! -e $MARKFILE ]; do sleep 1 done rm -f $MARKFILE echo "kill debugfs abruptly (simulates e2fsck failure) ..." >> $test_name.log killall -9 debugfs >> $test_name.log echo "e2fsck (should fail mmp_seq = EXT2_MMP_SEQ_FSCK) ..." >> $test_name.log $FSCK $FSCK_OPT $TMPFILE >> $test_name.log 2>&1 status=$? if [ "$status" == 0 ] ; then echo "e2fsck with MMP as EXT2_MMP_SEQ_FSCK ran!" > $test_name.failed echo "failed" return 1 fi echo "clear mmp_seq with tune2fs ..." >> $test_name.log $TUNE2FS -f -E clear_mmp $TMPFILE >> $test_name.log 2>&1 status=$? if [ "$status" != 0 ] ; then echo "tune2fs clearing EXT2_MMP_SEQ_FSCK failed" > $test_name.failed echo "failed" return 1 fi echo "run e2fsck again (should pass with clean mmp_seq) ..." >> $test_name.log $FSCK $FSCK_OPT $TMPFILE >> $test_name.log 2>&1 status=$? if [ "$status" != 0 ] ; then echo "e2fsck after clearing EXT2_MMP_SEQ_FSCK failed"> $test_name.failed echo "failed" return $status fi echo "ok" rm -f $TMPFILE