From: Liam R. Howlett Date: Thu, 17 Feb 2022 17:44:39 +0000 (-0500) Subject: maple_tree: whitespace X-Git-Url: https://www.infradead.org/git/?a=commitdiff_plain;h=8dc1bb546d747030c246cc0a553356e4707e725c;p=users%2Fjedix%2Flinux-maple.git maple_tree: whitespace Signed-off-by: Liam R. Howlett --- diff --git a/lib/maple_tree.c b/lib/maple_tree.c index f1edea07152b..c8cf9490e940 100644 --- a/lib/maple_tree.c +++ b/lib/maple_tree.c @@ -3006,15 +3006,15 @@ static inline int mas_rebalance(struct ma_state *mas, trace_ma_op(__func__, mas); -/* - * Rebalancing occurs if a node is insufficient. Data is rebalanced against the - * node to the right if it exists, otherwise the node to the left of this node - * is rebalanced against this node. If rebalancing causes just one node to be - * produced instead of two, then the parent is also examined and rebalanced if - * it is insufficient. Every level tries to combine the data in the same way. - * If one node contains the entire range of the tree, then that node is used as - * a new root node. - */ + /* + * Rebalancing occurs if a node is insufficient. Data is rebalanced + * against the node to the right if it exists, otherwise the node to the + * left of this node is rebalanced against this node. If rebalancing + * causes just one node to be produced instead of two, then the parent + * is also examined and rebalanced if it is insufficient. Every level + * tries to combine the data in the same way. If one node contains the + * entire range of the tree, then that node is used as a new root node. + */ mas_node_count(mas, 1 + empty_count * 3); if (mas_is_err(mas)) return 0;