btrfs: wait for delayed iputs on no space
authorZhao Lei <zhaolei@cn.fujitsu.com>
Thu, 9 Apr 2015 04:34:43 +0000 (12:34 +0800)
committerSasha Levin <sasha.levin@oracle.com>
Wed, 13 Apr 2016 21:14:26 +0000 (17:14 -0400)
commit42bd8f4fda813558c3045c60ad6436b1c7430ec7
tree784996408d5c4895eea0b7b50604bd61da9ec309
parentee6ad435c9872610c5a52cad02e331951cf2fb25
btrfs: wait for delayed iputs on no space

[ Upstream commit 9a4e7276d39071576d369e607d7accb84b41d0b4 ]

btrfs will report no_space when we run following write and delete
file loop:
 # FILE_SIZE_M=[ 75% of fs space ]
 # DEV=[ some dev ]
 # MNT=[ some dir ]
 #
 # mkfs.btrfs -f "$DEV"
 # mount -o nodatacow "$DEV" "$MNT"
 # for ((i = 0; i < 100; i++)); do dd if=/dev/zero of="$MNT"/file0 bs=1M count="$FILE_SIZE_M"; rm -f "$MNT"/file0; done
 #

Reason:
 iput() and evict() is run after write pages to block device, if
 write pages work is not finished before next write, the "rm"ed space
 is not freed, and caused above bug.

Fix:
 We can add "-o flushoncommit" mount option to avoid above bug, but
 it have performance problem. Actually, we can to wait for on-the-fly
 writes only when no-space happened, it is which this patch do.

Signed-off-by: Zhao Lei <zhaolei@cn.fujitsu.com>
Signed-off-by: Chris Mason <clm@fb.com>
Signed-off-by: Sasha Levin <sasha.levin@oracle.com>
fs/btrfs/extent-tree.c