From 88b27b1e606947a5a192378cb1dcb6c29450e6e7 Mon Sep 17 00:00:00 2001 From: Eric Sandeen Date: Thu, 1 Aug 2002 15:04:44 +0000 Subject: [PATCH] Whoops, use a fixed 4k for alloc's "bsize" parameter, seems that this is independent of the fs block size. --- 009 | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/009 b/009 index 48994274..d133f2c8 100755 --- a/009 +++ b/009 @@ -46,6 +46,9 @@ here=`pwd` tmp=/tmp/$$ status=1 # failure is the default! trap "_cleanup; exit \$status" 0 1 2 3 15 +# This isn't really related to fs block size, it's just what +# alloc uses for the "block" unit in it's input parameters... +bsize=4096 _cleanup() { @@ -63,16 +66,13 @@ _block_filter() _init() { echo "*** mkfs" - if ! (mkfs_xfs $SCRATCH_DEV | _filter_mkfs 1>/dev/null 2>$tmp.out) + if ! mkfs_xfs $SCRATCH_DEV >$tmp.out 2>&1 then cat $tmp.out echo "failed to mkfs $SCRATCH_DEV" exit 1 fi - source $tmp.out - bsize=$dbsize - echo "*** mount" if ! mount $SCRATCH_DEV $SCRATCH_MNT -t xfs then -- 2.25.1