Skip to content

Commit

Permalink
dump: Replace TARGET_PAGE_SIZE -> qemu_target_page_size()
Browse files Browse the repository at this point in the history
TARGET_PAGE_SIZE is target specific. In preparation of
making dump.c target-agnostic, replace the compile-time
TARGET_PAGE_SIZE definition by runtime qemu_target_page_size().

Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
Reviewed-by: Thomas Huth <thuth@redhat.com>
Reviewed-by: Marc-André Lureau <marcandre.lureau@redhat.com>
Message-Id: <20230225094903.53167-3-philmd@linaro.org>
  • Loading branch information
philmd committed Feb 27, 2023
1 parent bb509d9 commit c5d40b2
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion dump/dump.c
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
#include "qemu/cutils.h"
#include "elf.h"
#include "exec/hwaddr.h"
#include "exec/target_page.h"
#include "monitor/monitor.h"
#include "sysemu/kvm.h"
#include "sysemu/dump.h"
Expand Down Expand Up @@ -1860,7 +1861,7 @@ static void dump_init(DumpState *s, int fd, bool has_format,
}

if (!s->dump_info.page_size) {
s->dump_info.page_size = TARGET_PAGE_SIZE;
s->dump_info.page_size = qemu_target_page_size();
}

s->note_size = cpu_get_note_size(s->dump_info.d_class,
Expand Down

0 comments on commit c5d40b2

Please sign in to comment.