diff options
author | Tsutomu Itoh <t-itoh@jp.fujitsu.com> | 2013-04-16 01:18:22 -0400 |
---|---|---|
committer | Josef Bacik <jbacik@fusionio.com> | 2013-05-06 15:54:52 -0400 |
commit | afe5fea72bd50b1df2e6a721ef50559427d42f2b (patch) | |
tree | 23c1d3f24f3e861c399425f72bc4929048467ed2 /fs/btrfs/tree-log.c | |
parent | d6a0a12684523d635e0530a9d70a1eba4b8c4fb9 (diff) |
Btrfs: cleanup of function where fixup_low_keys() is called
If argument 'trans' is unnecessary in the function where
fixup_low_keys() is called, 'trans' is deleted.
Signed-off-by: Tsutomu Itoh <t-itoh@jp.fujitsu.com>
Signed-off-by: Josef Bacik <jbacik@fusionio.com>
Diffstat (limited to 'fs/btrfs/tree-log.c')
-rw-r--r-- | fs/btrfs/tree-log.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/btrfs/tree-log.c b/fs/btrfs/tree-log.c index b069fafbc3de..3442dd900e19 100644 --- a/fs/btrfs/tree-log.c +++ b/fs/btrfs/tree-log.c | |||
@@ -408,7 +408,7 @@ insert: | |||
408 | found_size = btrfs_item_size_nr(path->nodes[0], | 408 | found_size = btrfs_item_size_nr(path->nodes[0], |
409 | path->slots[0]); | 409 | path->slots[0]); |
410 | if (found_size > item_size) | 410 | if (found_size > item_size) |
411 | btrfs_truncate_item(trans, root, path, item_size, 1); | 411 | btrfs_truncate_item(root, path, item_size, 1); |
412 | else if (found_size < item_size) | 412 | else if (found_size < item_size) |
413 | btrfs_extend_item(trans, root, path, | 413 | btrfs_extend_item(trans, root, path, |
414 | item_size - found_size); | 414 | item_size - found_size); |