diff options
author | Uladzislau Rezki (Sony) <urezki@gmail.com> | 2019-07-11 23:59:03 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2019-07-12 14:05:46 -0400 |
commit | 460e42d19a13d49455c5b269e8e0a1b1d522a895 (patch) | |
tree | 993c113f71022e4b2ed4ca820fd9bb4824de6490 /mm | |
parent | 54f63d9d8a39118486eb8a7168cda5845240c3d2 (diff) |
mm/vmalloc.c: switch to WARN_ON() and move it under unlink_va()
Trigger a warning if an object that is about to be freed is detached. We
used to have a BUG_ON(), but even though it is considered as faulty
behaviour that is not a good reason to break a system.
Link: http://lkml.kernel.org/r/20190606120411.8298-5-urezki@gmail.com
Signed-off-by: Uladzislau Rezki (Sony) <urezki@gmail.com>
Cc: Roman Gushchin <guro@fb.com>
Cc: Hillf Danton <hdanton@sina.com>
Cc: Michal Hocko <mhocko@suse.com>
Cc: Matthew Wilcox <willy@infradead.org>
Cc: Oleksiy Avramchenko <oleksiy.avramchenko@sonymobile.com>
Cc: Steven Rostedt <rostedt@goodmis.org>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'mm')
-rw-r--r-- | mm/vmalloc.c | 25 |
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, | |||
534 | static __always_inline void | 534 | static __always_inline void |
535 | unlink_va(struct vmap_area *va, struct rb_root *root) | 535 | unlink_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 | ||
1163 | static void __free_vmap_area(struct vmap_area *va) | 1160 | static 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 | */ |