projects
/
GitHub
/
LineageOS
/
android_kernel_motorola_exynos9610.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
b2e2583
)
sh: fix up the dwarf unwinder build for MODULES=n.
author
Paul Mundt
<lethal@linux-sh.org>
Thu, 20 May 2010 11:46:27 +0000
(20:46 +0900)
committer
Paul Mundt
<lethal@linux-sh.org>
Sat, 22 May 2010 07:38:26 +0000
(16:38 +0900)
Presently the dwarf unwinder build blows up if modules are disabled,
fix it up.
Signed-off-by: Paul Mundt <lethal@linux-sh.org>
arch/sh/kernel/dwarf.c
patch
|
blob
|
blame
|
history
diff --git
a/arch/sh/kernel/dwarf.c
b/arch/sh/kernel/dwarf.c
index 5ec1d1818691e5968609e58087e0502f49eb7475..886d7d83ace38912aa4966da50159d43686b0fde 100644
(file)
--- a/
arch/sh/kernel/dwarf.c
+++ b/
arch/sh/kernel/dwarf.c
@@
-845,8
+845,10
@@
static int dwarf_parse_cie(void *entry, void *p, unsigned long len,
rb_link_node(&cie->node, parent, rb_node);
rb_insert_color(&cie->node, &cie_root);
+#ifdef CONFIG_MODULES
if (mod != NULL)
list_add_tail(&cie->link, &mod->arch.cie_list);
+#endif
spin_unlock_irqrestore(&dwarf_cie_lock, flags);
@@
-935,8
+937,10
@@
static int dwarf_parse_fde(void *entry, u32 entry_type,
rb_link_node(&fde->node, parent, rb_node);
rb_insert_color(&fde->node, &fde_root);
+#ifdef CONFIG_MODULES
if (mod != NULL)
list_add_tail(&fde->link, &mod->arch.fde_list);
+#endif
spin_unlock_irqrestore(&dwarf_fde_lock, flags);