diff options
author | Josef Bacik <josef@redhat.com> | 2012-05-29 16:59:49 -0400 |
---|---|---|
committer | Josef Bacik <josef@redhat.com> | 2012-05-30 10:23:42 -0400 |
commit | 5bdbeb2187a99d690b374a8c5ec9911fcbcfe739 (patch) | |
tree | ca0120adbf92af41980371706781f8845b0fab05 /fs/btrfs | |
parent | 22ee6985de7d3e81ec0cef9c6ba01b45ad1bafeb (diff) | |
download | blackbird-obmc-linux-5bdbeb2187a99d690b374a8c5ec9911fcbcfe739.tar.gz blackbird-obmc-linux-5bdbeb2187a99d690b374a8c5ec9911fcbcfe739.zip |
Btrfs: fix return code in drop_objectid_items
So dpkg fsync()'s the file and the directory containing the file whenever it
writes to a file which is really slow in btrfs. This is partly because
fsync()'ing a directory _always_ committed the transaction instead of just
going to the tree log. This is because drop_objectid_items() would return 1
since it does a btrfs_search_slot() which returns 1. In tree-log jargon
this means that we have to commit the transaction to be safe. So just check
if ret is greater than 0 and set it to 0 if it does. With this patch we now
use the tree-log instead of committing the entire transaction, which is
twice as fast on my box. Thanks,
Signed-off-by: Josef Bacik <josef@redhat.com>
Diffstat (limited to 'fs/btrfs')
-rw-r--r-- | fs/btrfs/tree-log.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/fs/btrfs/tree-log.c b/fs/btrfs/tree-log.c index 425014bdc6ac..2017d0ff511c 100644 --- a/fs/btrfs/tree-log.c +++ b/fs/btrfs/tree-log.c @@ -2667,6 +2667,8 @@ static int drop_objectid_items(struct btrfs_trans_handle *trans, btrfs_release_path(path); } btrfs_release_path(path); + if (ret > 0) + ret = 0; return ret; } |