diff options
Diffstat (limited to 'arch/sh/kernel/dwarf.c')
-rw-r--r-- | arch/sh/kernel/dwarf.c | 18 |
1 files changed, 4 insertions, 14 deletions
diff --git a/arch/sh/kernel/dwarf.c b/arch/sh/kernel/dwarf.c index 49c09c7d5b77..67a049e75ec1 100644 --- a/arch/sh/kernel/dwarf.c +++ b/arch/sh/kernel/dwarf.c | |||
@@ -995,29 +995,19 @@ static struct unwinder dwarf_unwinder = { | |||
995 | 995 | ||
996 | static void dwarf_unwinder_cleanup(void) | 996 | static void dwarf_unwinder_cleanup(void) |
997 | { | 997 | { |
998 | struct rb_node **fde_rb_node = &fde_root.rb_node; | 998 | struct dwarf_fde *fde, *next_fde; |
999 | struct rb_node **cie_rb_node = &cie_root.rb_node; | 999 | struct dwarf_cie *cie, *next_cie; |
1000 | 1000 | ||
1001 | /* | 1001 | /* |
1002 | * Deallocate all the memory allocated for the DWARF unwinder. | 1002 | * Deallocate all the memory allocated for the DWARF unwinder. |
1003 | * Traverse all the FDE/CIE lists and remove and free all the | 1003 | * Traverse all the FDE/CIE lists and remove and free all the |
1004 | * memory associated with those data structures. | 1004 | * memory associated with those data structures. |
1005 | */ | 1005 | */ |
1006 | while (*fde_rb_node) { | 1006 | rbtree_postorder_for_each_entry_safe(fde, next_fde, &fde_root, node) |
1007 | struct dwarf_fde *fde; | ||
1008 | |||
1009 | fde = rb_entry(*fde_rb_node, struct dwarf_fde, node); | ||
1010 | rb_erase(*fde_rb_node, &fde_root); | ||
1011 | kfree(fde); | 1007 | kfree(fde); |
1012 | } | ||
1013 | 1008 | ||
1014 | while (*cie_rb_node) { | 1009 | rbtree_postorder_for_each_entry_safe(cie, next_cie, &cie_root, node) |
1015 | struct dwarf_cie *cie; | ||
1016 | |||
1017 | cie = rb_entry(*cie_rb_node, struct dwarf_cie, node); | ||
1018 | rb_erase(*cie_rb_node, &cie_root); | ||
1019 | kfree(cie); | 1010 | kfree(cie); |
1020 | } | ||
1021 | 1011 | ||
1022 | kmem_cache_destroy(dwarf_reg_cachep); | 1012 | kmem_cache_destroy(dwarf_reg_cachep); |
1023 | kmem_cache_destroy(dwarf_frame_cachep); | 1013 | kmem_cache_destroy(dwarf_frame_cachep); |