On Mon, Mar 07, 2016 at 04:27:59PM -0800, Liu Bo wrote: > This is to test if COW enabled btrfs can end up with single 4k extents > when doing subpagesize buffered writes. > > Signed-off-by: Liu Bo <bo.li.liu@xxxxxxxxxx> > --- .... > +_scratch_mkfs >> $seqres.full 2>&1 > +_scratch_mount > + > +default_expire=`cat /proc/sys/vm/dirty_expire_centisecs` > +echo 50 > /proc/sys/vm/dirty_expire_centisecs why? > +tfile=$SCRATCH_MNT/testfile > + > +PAGE_SIZE=$(get_page_size) > +SUBLEN=$((RANDOM % PAGE_SIZE)) local variables are lower case. > +$XFS_IO_PROG -f -c "pwrite 0 $PAGE_SIZE" $tfile > /dev/null 2>&1 > +$XFS_IO_PROG -c "pwrite $PAGE_SIZE $SUBLEN" $tfile > /dev/null 2>&1 > + > +toff=$((PAGE_SIZE + SUBLEN)) > +for ((i=0; i<10000; i++)) > +do # Add comment on what the loop is trying to do to the layout of the # file being written. for ((i = 0; i < 10000; i++)); do > + tlen=$PAGE_SIZE > + if [ $((i % 2)) = 0 ]; then > + tlen=$((PAGE_SIZE * 3)) > + fi > + if [ $((i % 1000)) = 0 ]; then > + tlen=$((RANDOM % PAGE_SIZE)) > + fi > + > + $XFS_IO_PROG -c "pwrite $toff $tlen" $tfile > /dev/null 2>&1 > + toff=$((toff + tlen)) > +done > + > +sync > + > +# check for single PAGESIZE extent > +$XFS_IO_PROG -c "fiemap -v" $tfile >> $seqres.full 2>&1 > +$XFS_IO_PROG -c "fiemap -v" $tfile | awk '{if ($4 == 8) print $4}' Assumes page size is 4k. Also assumes that no individual extent in the file is 4k. Likely broken. > +# success, all done > +status=0 > +exit > diff --git a/tests/btrfs/027.out b/tests/btrfs/027.out > new file mode 100644 > index 0000000..e8291ab > --- /dev/null > +++ b/tests/btrfs/027.out > @@ -0,0 +1 @@ > +QA output created by 027 So are we expecting no output or not? Cheers, Dave. -- Dave Chinner david@xxxxxxxxxxxxx -- To unsubscribe from this list: send the line "unsubscribe fstests" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html