summaryrefslogtreecommitdiff
path: root/arch/arc/include/asm/unwind.h
diff options
context:
space:
mode:
authorVineet Gupta <vgupta@synopsys.com>2015-12-11 18:04:22 +0530
committerVineet Gupta <vgupta@synopsys.com>2015-12-17 11:10:23 +0530
commitbc79c9a7216562a2035d2f64f73626613c1300d0 (patch)
tree7dceeabe3e3ec851813eb6f752e15eeb95bc7f58 /arch/arc/include/asm/unwind.h
parentff1c0b6a795bce744527bc10c8268127ed818b42 (diff)
ARC: dw2 unwind: Reinstante unwinding out of modules
The fix which removed linear searching of dwarf (because binary lookup data always exists) missed out on the fact that modules don't get the binary lookup tables info. This caused unwinding out of modules to stop working. So add binary lookup header setup (equivalent of eh_frame_hdr setup) to modules as well. While at it, confine the header setup to within unwinder code, reducing one API exposed out of unwinder code. Fixes: 2e22502c080f ARC: dw2 unwind: Remove falllback linear search thru FDE entries Cc: <stable@vger.kernel.org> Signed-off-by: Vineet Gupta <vgupta@synopsys.com>
Diffstat (limited to 'arch/arc/include/asm/unwind.h')
-rw-r--r--arch/arc/include/asm/unwind.h4
1 files changed, 0 insertions, 4 deletions
diff --git a/arch/arc/include/asm/unwind.h b/arch/arc/include/asm/unwind.h
index 7ca628b6ee2a..c11a25bb8158 100644
--- a/arch/arc/include/asm/unwind.h
+++ b/arch/arc/include/asm/unwind.h
@@ -112,7 +112,6 @@ struct unwind_frame_info {
extern int arc_unwind(struct unwind_frame_info *frame);
extern void arc_unwind_init(void);
-extern void arc_unwind_setup(void);
extern void *unwind_add_table(struct module *module, const void *table_start,
unsigned long table_size);
extern void unwind_remove_table(void *handle, int init_only);
@@ -152,9 +151,6 @@ static inline void arc_unwind_init(void)
{
}
-static inline void arc_unwind_setup(void)
-{
-}
#define unwind_add_table(a, b, c)
#define unwind_remove_table(a, b)