Commit fb209019 authored by Matthew Wilcox's avatar Matthew Wilcox Committed by Linus Torvalds

radix-tree: remove a use of root->height from delete_node

If radix_tree_shrink returns whether it managed to shrink, then
__radix_tree_delete_node doesn't ned to query the tree to find out
whether it did any work or not.
Signed-off-by: default avatarMatthew Wilcox <willy@linux.intel.com>
Cc: Konstantin Khlebnikov <koct9i@gmail.com>
Cc: Kirill Shutemov <kirill.shutemov@linux.intel.com>
Cc: Jan Kara <jack@suse.com>
Cc: Neil Brown <neilb@suse.de>
Cc: Ross Zwisler <ross.zwisler@linux.intel.com>
Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
parent c12e51b0
...@@ -1415,8 +1415,10 @@ unsigned long radix_tree_locate_item(struct radix_tree_root *root, void *item) ...@@ -1415,8 +1415,10 @@ unsigned long radix_tree_locate_item(struct radix_tree_root *root, void *item)
* radix_tree_shrink - shrink height of a radix tree to minimal * radix_tree_shrink - shrink height of a radix tree to minimal
* @root radix tree root * @root radix tree root
*/ */
static inline void radix_tree_shrink(struct radix_tree_root *root) static inline bool radix_tree_shrink(struct radix_tree_root *root)
{ {
bool shrunk = false;
/* try to shrink tree height */ /* try to shrink tree height */
while (root->height > 0) { while (root->height > 0) {
struct radix_tree_node *to_free = root->rnode; struct radix_tree_node *to_free = root->rnode;
...@@ -1476,7 +1478,10 @@ static inline void radix_tree_shrink(struct radix_tree_root *root) ...@@ -1476,7 +1478,10 @@ static inline void radix_tree_shrink(struct radix_tree_root *root)
to_free->slots[0] = RADIX_TREE_RETRY; to_free->slots[0] = RADIX_TREE_RETRY;
radix_tree_node_free(to_free); radix_tree_node_free(to_free);
shrunk = true;
} }
return shrunk;
} }
/** /**
...@@ -1499,11 +1504,8 @@ bool __radix_tree_delete_node(struct radix_tree_root *root, ...@@ -1499,11 +1504,8 @@ bool __radix_tree_delete_node(struct radix_tree_root *root,
struct radix_tree_node *parent; struct radix_tree_node *parent;
if (node->count) { if (node->count) {
if (node == indirect_to_ptr(root->rnode)) { if (node == indirect_to_ptr(root->rnode))
radix_tree_shrink(root); deleted |= radix_tree_shrink(root);
if (root->height == 0)
deleted = true;
}
return deleted; return deleted;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment