libdwfl/linux-kernel-modules.c (report_kernel): Pass add_p_vaddr as true.
authorMark Wielaard <mjw@redhat.com>
Thu, 22 Aug 2013 11:45:16 +0000 (13:45 +0200)
committerMark Wielaard <mjw@redhat.com>
Mon, 26 Aug 2013 13:59:28 +0000 (15:59 +0200)
On some architectures (e.g. x86_64) the vmlinux is ET_EXEC, while on
others (e.g. ppc64) it is ET_DYN.  In both cases the phdr p_vaddr will
be non-zero.  We want the image to be placed as if it was ET_DYN, so
pass true for add_p_vaddr which will do the right thing (in combination
with a zero base) in either case.

Signed-off-by: Mark Wielaard <mjw@redhat.com>
libdwfl/ChangeLog
libdwfl/linux-kernel-modules.c

index 88bdfc6..90ba686 100644 (file)
@@ -1,3 +1,8 @@
+2013-08-25  Mark Wielaard  <mjw@redhat.com>
+
+       * linux-kernel-modules.c (report_kernel): Pass add_p_vaddr as true
+       to dwfl_report_elf.
+
 2013-07-25  Jan Kratochvil  <jan.kratochvil@redhat.com>
 
        * dwfl_segment_report_module.c (dwfl_segment_report_module): Check for
index dec1a59..fe01028 100644 (file)
@@ -216,8 +216,14 @@ report_kernel (Dwfl *dwfl, const char **release,
 
       if (report)
        {
+         /* Note that on some architectures (e.g. x86_64) the vmlinux
+            is ET_EXEC, while on others (e.g. ppc64) it is ET_DYN.
+            In both cases the phdr p_vaddr load address will be non-zero.
+            We want the image to be placed as if it was ET_DYN, so
+            pass true for add_p_vaddr which will do the right thing
+            (in combination with a zero base) in either case.  */
          Dwfl_Module *mod = INTUSE(dwfl_report_elf) (dwfl, KERNEL_MODNAME,
-                                                     fname, fd, 0, false);
+                                                     fname, fd, 0, true);
          if (mod == NULL)
            result = -1;
          else