dump: Reintroduce memory_offset and section_offset
authorJanosch Frank <frankja@linux.ibm.com>
Mon, 17 Oct 2022 08:38:16 +0000 (08:38 +0000)
committerMarc-André Lureau <marcandre.lureau@redhat.com>
Mon, 24 Oct 2022 18:30:10 +0000 (22:30 +0400)
section_offset will later be used to store the offset to the section
data which will be stored last. For now memory_offset is only needed
to make section_offset look nicer.

Signed-off-by: Janosch Frank <frankja@linux.ibm.com>
Reviewed-by: Marc-André Lureau <marcandre.lureau@redhat.com>
Message-Id: <20221017083822.43118-5-frankja@linux.ibm.com>

dump/dump.c

index b168a25321555e249364e8dae4ea598050d8a780..626f7b2fd0b193d528eb0029f8d8ce1a9ce3fed3 100644 (file)
@@ -1876,6 +1876,8 @@ static void dump_init(DumpState *s, int fd, bool has_format,
         s->phdr_offset = s->shdr_offset + sizeof(Elf32_Shdr) * s->shdr_num;
         s->note_offset = s->phdr_offset + sizeof(Elf32_Phdr) * s->phdr_num;
     }
+    s->memory_offset = s->note_offset + s->note_size;
+    s->section_offset = s->memory_offset + s->total_size;
 
     return;