From b7441181b158170a7ecf2e7c4746eced020d77e3 Mon Sep 17 00:00:00 2001 From: Christoph Hellwig Date: Fri, 19 Feb 2016 10:51:47 +1100 Subject: [PATCH] common: fix _require_fs_space on remote file systems Remove the -l flag to df so that it works properly on NFS and co. This fixes various failures in new COW tests on NFS. Signed-off-by: Christoph Hellwig Reviewed-by: Dave Chinner Signed-off-by: Dave Chinner --- common/rc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/rc b/common/rc index 3e98bcb8..af16c815 100644 --- a/common/rc +++ b/common/rc @@ -1927,7 +1927,7 @@ _require_fs_space() BLOCKS=$2 # in units of 1024 let GB=$BLOCKS/1024/1024 - FREE_BLOCKS=`df -klP $MNT | grep -v Filesystem | awk '{print $4}'` + FREE_BLOCKS=`df -kP $MNT | grep -v Filesystem | awk '{print $4}'` [ $FREE_BLOCKS -lt $BLOCKS ] && \ _notrun "This test requires at least ${GB}GB free on $MNT to run" } -- 2.39.5