[LTP] [PATCH v4 3/4] nfs05.sh: Lower down the default values
Petr Vorel
pvorel@suse.cz
Fri Apr 28 18:00:37 CEST 2023
nfs05_make_tree.c runs make which needs on Btrfs quite a lot of
temporary space. This is a preparation for the next commit which
start using all filesystems via TST_ALL_FILESYSTEMS=1. Currently we use
300 MB, which was not enough for Btrfs:
Filesystem Type Size Used Avail Use% Mounted on
/dev/loop0 btrfs 300M 62M 20K 100% /tmp/LTP_nfs05.Vau10kcszO/mntpoint
After lowering the default values 96% (58M) is being used.
Proper solution would be to detect available size in nfs05_make_tree.c
and lower down values based on free space.
Signed-off-by: Petr Vorel <pvorel@suse.cz>
---
New in v4.
testcases/network/nfs/nfs_stress/nfs05.sh | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/testcases/network/nfs/nfs_stress/nfs05.sh b/testcases/network/nfs/nfs_stress/nfs05.sh
index c18ef1ab4..34151b67a 100755
--- a/testcases/network/nfs/nfs_stress/nfs05.sh
+++ b/testcases/network/nfs/nfs_stress/nfs05.sh
@@ -8,8 +8,8 @@
#
# Created by: Robbie Williamson (robbiew@us.ibm.com)
-DIR_NUM=${DIR_NUM:-"10"}
-FILE_NUM=${FILE_NUM:-"30"}
+DIR_NUM=${DIR_NUM:-"8"}
+FILE_NUM=${FILE_NUM:-"28"}
THREAD_NUM=${THREAD_NUM:-"8"}
TST_NEEDS_CMDS="make gcc"
TST_TESTFUNC="do_test"
--
2.40.0
More information about the ltp
mailing list