summaryrefslogtreecommitdiffstats
path: root/fs
diff options
context:
space:
mode:
authorJosef Bacik2012-12-18 21:16:34 +0100
committerJosef Bacik2013-01-14 19:52:51 +0100
commit72bcd99d450cb1dde8bf13c3b65fc5883b2a3893 (patch)
treea0edbf0b5c0e5c9dfc7b5ab7901fbac125096daa /fs
parentBtrfs: fix missing write access release in btrfs_ioctl_resize() (diff)
downloadkernel-qcow2-linux-72bcd99d450cb1dde8bf13c3b65fc5883b2a3893.tar.gz
kernel-qcow2-linux-72bcd99d450cb1dde8bf13c3b65fc5883b2a3893.tar.xz
kernel-qcow2-linux-72bcd99d450cb1dde8bf13c3b65fc5883b2a3893.zip
Btrfs: set flushing if we're limited flushing
We still need to say we're flushing if we're limit flushing to keep somebody from coming in and stealing our reservation. Thanks, Signed-off-by: Josef Bacik <jbacik@fusionio.com>
Diffstat (limited to 'fs')
-rw-r--r--fs/btrfs/extent-tree.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/btrfs/extent-tree.c b/fs/btrfs/extent-tree.c
index d133edfcd449..61fefda74ff5 100644
--- a/fs/btrfs/extent-tree.c
+++ b/fs/btrfs/extent-tree.c
@@ -3997,7 +3997,7 @@ again:
* We make the other tasks wait for the flush only when we can flush
* all things.
*/
- if (ret && flush == BTRFS_RESERVE_FLUSH_ALL) {
+ if (ret && flush != BTRFS_RESERVE_NO_FLUSH) {
flushing = true;
space_info->flush = 1;
}