From e4746f0dcd1ef26f42909cd4e5b89413954bebc6 Mon Sep 17 00:00:00 2001 From: Josef Bacik Date: Mon, 22 Nov 2021 15:50:29 -0500 Subject: [PATCH] btrfs/099: use the qgroupid for qgroup limit A change to btrfs-progs uncovered a problem with btrfs/099, we weren't specifying the qgroupid with the subvol id. This technically worked before but only by accident, and all other tests properly specify the qgroupid for qgroup limit commands. Fix this test to specify the qgroupid, which will work with older versions of btrfs-progs and newer ones as well. Signed-off-by: Josef Bacik Reviewed-by: Qu Wenruo Signed-off-by: Eryu Guan --- tests/btrfs/099 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/btrfs/099 b/tests/btrfs/099 index 375cc2b9..f3a2002a 100755 --- a/tests/btrfs/099 +++ b/tests/btrfs/099 @@ -29,7 +29,7 @@ _scratch_mount _require_fs_space $SCRATCH_MNT $(($FILESIZE * 2 / 1024)) _run_btrfs_util_prog quota enable $SCRATCH_MNT -_run_btrfs_util_prog qgroup limit $FILESIZE 5 $SCRATCH_MNT +_run_btrfs_util_prog qgroup limit $FILESIZE 0/5 $SCRATCH_MNT # loop 5 times without sync to ensure reserved space leak will happen for i in `seq 1 5`; do -- 2.39.5