summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMark Wielaard <mjw@redhat.com>2011-10-20 16:53:54 +0200
committerMark Wielaard <mjw@redhat.com>2011-10-20 16:53:54 +0200
commitf43feb5146788052eb3f43174e0b1a6638155a0a (patch)
treed102022dbf8e5ed47143b308771834b231949c41
parente9bf1d30e7fd35cbe11c6586500cab11a1d91918 (diff)
derelocate.c (cache_sections): Intern mod->reloc_info check.
-rw-r--r--libdwfl/ChangeLog7
-rw-r--r--libdwfl/derelocate.c10
2 files changed, 12 insertions, 5 deletions
diff --git a/libdwfl/ChangeLog b/libdwfl/ChangeLog
index c2e126a6..adf3efac 100644
--- a/libdwfl/ChangeLog
+++ b/libdwfl/ChangeLog
@@ -1,3 +1,10 @@
+2011-10-20 Mark Wielaard <mjw@redhat.com>
+
+ * derelocate.c (cache_sections): Intern mod->reloc_info check.
+ (dwfl_module_relocations): Don't check mod->reloc_info.
+ (dwfl_module_relocation_info): Likewise.
+ (find_section): Likewise.
+
2011-07-09 Roland McGrath <roland@hack.frob.com>
* image-header.c (LE32): Macro removed (now in lib/system.h).
diff --git a/libdwfl/derelocate.c b/libdwfl/derelocate.c
index ba6d9db4..b8c8dd73 100644
--- a/libdwfl/derelocate.c
+++ b/libdwfl/derelocate.c
@@ -90,6 +90,9 @@ compare_secrefs (const void *a, const void *b)
static int
cache_sections (Dwfl_Module *mod)
{
+ if (likely (mod->reloc_info != NULL))
+ return mod->reloc_info->count;
+
struct secref *refs = NULL;
size_t nrefs = 0;
@@ -227,9 +230,6 @@ dwfl_module_relocations (Dwfl_Module *mod)
if (mod == NULL)
return -1;
- if (mod->reloc_info != NULL)
- return mod->reloc_info->count;
-
switch (mod->e_type)
{
case ET_REL:
@@ -269,7 +269,7 @@ dwfl_module_relocation_info (Dwfl_Module *mod, unsigned int idx,
return NULL;
}
- if (unlikely (mod->reloc_info == NULL) && cache_sections (mod) < 0)
+ if (cache_sections (mod) < 0)
return NULL;
struct dwfl_relocation *sections = mod->reloc_info;
@@ -318,7 +318,7 @@ check_module (Dwfl_Module *mod)
static int
find_section (Dwfl_Module *mod, Dwarf_Addr *addr)
{
- if (unlikely (mod->reloc_info == NULL) && cache_sections (mod) < 0)
+ if (cache_sections (mod) < 0)
return -1;
struct dwfl_relocation *sections = mod->reloc_info;