summaryrefslogtreecommitdiff
path: root/util_lib/elf_info.c
diff options
context:
space:
mode:
authorPingfan Liu <piliu@redhat.com>2022-01-18 15:48:11 +0800
committerSimon Horman <horms@verge.net.au>2022-01-24 10:05:20 +0100
commit454395e18ff12d2728ee458695160e9ab4899e33 (patch)
tree64b6b8e91d8974c7bcb2a526daad913685e75c16 /util_lib/elf_info.c
parentbde864387a104137ff3bd5f0871709846d5c7943 (diff)
arm64: read VA_BITS from kcore for 52-bits VA kernel
phys_to_virt() calculates virtual address. As a important factor, page_offset is excepted to be accurate. Since arm64 kernel exposes va_bits through vmcore, using it. Signed-off-by: Pingfan Liu <piliu@redhat.com> Reviewed-by: Philipp Rudo <prudo@redhat.com> Signed-off-by: Simon Horman <horms@verge.net.au>
Diffstat (limited to 'util_lib/elf_info.c')
-rw-r--r--util_lib/elf_info.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/util_lib/elf_info.c b/util_lib/elf_info.c
index 5574c7f..d252eff 100644
--- a/util_lib/elf_info.c
+++ b/util_lib/elf_info.c
@@ -310,6 +310,8 @@ int get_pt_load(int idx,
#define NOT_FOUND_LONG_VALUE (-1)
+void (*arch_scan_vmcoreinfo)(char *pos);
+
void scan_vmcoreinfo(char *start, size_t size)
{
char *last = start + size - 1;
@@ -551,6 +553,9 @@ void scan_vmcoreinfo(char *start, size_t size)
}
}
+ if (arch_scan_vmcoreinfo != NULL)
+ (*arch_scan_vmcoreinfo)(pos);
+
if (last_line)
break;
}