summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--mm/vmalloc.c25
1 files changed, 10 insertions, 15 deletions
diff --git a/mm/vmalloc.c b/mm/vmalloc.c
index 857dd8415a2e..84f50d7e40bc 100644
--- a/mm/vmalloc.c
+++ b/mm/vmalloc.c
@@ -534,20 +534,17 @@ link_va(struct vmap_area *va, struct rb_root *root,
534static __always_inline void 534static __always_inline void
535unlink_va(struct vmap_area *va, struct rb_root *root) 535unlink_va(struct vmap_area *va, struct rb_root *root)
536{ 536{
537 /* 537 if (WARN_ON(RB_EMPTY_NODE(&va->rb_node)))
538 * During merging a VA node can be empty, therefore 538 return;
539 * not linked with the tree nor list. Just check it.
540 */
541 if (!RB_EMPTY_NODE(&va->rb_node)) {
542 if (root == &free_vmap_area_root)
543 rb_erase_augmented(&va->rb_node,
544 root, &free_vmap_area_rb_augment_cb);
545 else
546 rb_erase(&va->rb_node, root);
547 539
548 list_del(&va->list); 540 if (root == &free_vmap_area_root)
549 RB_CLEAR_NODE(&va->rb_node); 541 rb_erase_augmented(&va->rb_node,
550 } 542 root, &free_vmap_area_rb_augment_cb);
543 else
544 rb_erase(&va->rb_node, root);
545
546 list_del(&va->list);
547 RB_CLEAR_NODE(&va->rb_node);
551} 548}
552 549
553#if DEBUG_AUGMENT_PROPAGATE_CHECK 550#if DEBUG_AUGMENT_PROPAGATE_CHECK
@@ -1162,8 +1159,6 @@ EXPORT_SYMBOL_GPL(unregister_vmap_purge_notifier);
1162 1159
1163static void __free_vmap_area(struct vmap_area *va) 1160static void __free_vmap_area(struct vmap_area *va)
1164{ 1161{
1165 BUG_ON(RB_EMPTY_NODE(&va->rb_node));
1166
1167 /* 1162 /*
1168 * Remove from the busy tree/list. 1163 * Remove from the busy tree/list.
1169 */ 1164 */