#! /bin/bash
# SPDX-License-Identifier: GPL-2.0
# Copyright (c) 2014 Wang Shilong.  All Rights Reserved.
#
# FS QA Test No. btrfs/076
#
# Regression test for btrfs incorrect inode ratio detection.
# This was fixed in the following linux kernel patch:
#
#     Btrfs: fix incorrect compression ratio detection
#
. ./common/preamble
_begin_fstest auto quick compress

# Override the default cleanup function.
_cleanup()
{
	cd /
	rm -fr $tmp
}

# Import common functions.
. ./common/filter
. ./common/defrag

# real QA test starts here
_supported_fs btrfs
_require_test
_require_scratch

_scratch_mkfs >> $seqres.full 2>&1
_scratch_mount "-o compress=lzo"

$XFS_IO_PROG -f -c "pwrite 0 10M" -c "fsync" \
	$SCRATCH_MNT/data >> $seqres.full 2>&1

_extent_count $SCRATCH_MNT/data

$XFS_IO_PROG -f -c "pwrite 0 $((4096*33))" -c "fsync" \
	$SCRATCH_MNT/data >> $seqres.full 2>&1

$XFS_IO_PROG -f -c "pwrite 0 10M" -c "fsync" \
	$SCRATCH_MNT/data >> $seqres.full 2>&1

_extent_count $SCRATCH_MNT/data

status=0
exit
