public inbox for fstests@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] generic/459: catch mount failure
@ 2021-07-09  6:10 Dave Chinner
  2021-07-09 15:43 ` Darrick J. Wong
  0 siblings, 1 reply; 2+ messages in thread
From: Dave Chinner @ 2021-07-09  6:10 UTC (permalink / raw)
  To: fstests

From: Dave Chinner <dchinner@redhat.com>

Because if we don't, we freeze the root filesystem instead of
$SCRATCH_MNT and it all goes downhill from there.

Signed-off-by: Dave Chinner <dchinner@redhat.com>
---
 tests/generic/459 | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/tests/generic/459 b/tests/generic/459
index 7fd7a6fa..e5e5e9ab 100755
--- a/tests/generic/459
+++ b/tests/generic/459
@@ -77,7 +77,9 @@ _mkfs_dev /dev/mapper/$vgname-$lvname >>$seqres.full 2>&1
 $LVM_PROG lvcreate  -k n -s $vgname/$lvname \
 		    -n $snapname >>$seqres.full 2>&1
 
-_mount /dev/mapper/$vgname-$snapname $SCRATCH_MNT
+# Catch mount failure so we don't blindly go an freeze the root filesystem
+# instead of lvm volume.
+_mount /dev/mapper/$vgname-$snapname $SCRATCH_MNT || _fail "mount failed"
 
 # Consume all space available in the volume and freeze to ensure everything
 # required to make the fs consistent is flushed to disk.
-- 
2.31.1


^ permalink raw reply related	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2021-07-09 15:43 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2021-07-09  6:10 [PATCH] generic/459: catch mount failure Dave Chinner
2021-07-09 15:43 ` Darrick J. Wong

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox