diff options
author | Jan Schmidt <list.btrfs@jan-o-sch.net> | 2012-04-30 05:17:25 -0400 |
---|---|---|
committer | Jan Schmidt <list.btrfs@jan-o-sch.net> | 2012-06-04 08:35:29 -0400 |
commit | 4d5a0565cebf12c2ef854e4ac1961f13a710a950 (patch) | |
tree | fa4c4632b328fa65433345d69dfcb2cce9117f62 /fs | |
parent | 1e20932a23578bb1ec59107843574e259b96193f (diff) |
Btrfs: remove call to btrfs_header_nritems with no effect
This is a leftover from cleanup patch 559af821. Before the cleanup,
btrfs_header_nritems was called inside an if condition. As it has no side
effects we need to preserve here, it should simply be dropped.
Signed-off-by: Jan Schmidt <list.btrfs@jan-o-sch.net>
Diffstat (limited to 'fs')
-rw-r--r-- | fs/btrfs/ctree.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/fs/btrfs/ctree.c b/fs/btrfs/ctree.c index d7a96cfdc50a..836e4e03edca 100644 --- a/fs/btrfs/ctree.c +++ b/fs/btrfs/ctree.c | |||
@@ -1650,8 +1650,6 @@ static noinline int balance_level(struct btrfs_trans_handle *trans, | |||
1650 | BTRFS_NODEPTRS_PER_BLOCK(root) / 4) | 1650 | BTRFS_NODEPTRS_PER_BLOCK(root) / 4) |
1651 | return 0; | 1651 | return 0; |
1652 | 1652 | ||
1653 | btrfs_header_nritems(mid); | ||
1654 | |||
1655 | left = read_node_slot(root, parent, pslot - 1); | 1653 | left = read_node_slot(root, parent, pslot - 1); |
1656 | if (left) { | 1654 | if (left) { |
1657 | btrfs_tree_lock(left); | 1655 | btrfs_tree_lock(left); |
@@ -1681,7 +1679,6 @@ static noinline int balance_level(struct btrfs_trans_handle *trans, | |||
1681 | wret = push_node_left(trans, root, left, mid, 1); | 1679 | wret = push_node_left(trans, root, left, mid, 1); |
1682 | if (wret < 0) | 1680 | if (wret < 0) |
1683 | ret = wret; | 1681 | ret = wret; |
1684 | btrfs_header_nritems(mid); | ||
1685 | } | 1682 | } |
1686 | 1683 | ||
1687 | /* | 1684 | /* |