arm64: Change tcr_el1_t1sz variable name to TCR_EL1_T1SZ

Since linux kernel commit bbdbc11804ff ("arm64/crash_core: Export
TCR_EL1.T1SZ in vmcoreinfo") [available in linux-next now], the name
of tcr_el1_t1sz vmcoreinfo variable has been changed to TCR_EL1_T1SZ.

Make a similar change in crash-utility.

Signed-off-by: Bhupesh Sharma <bhsharma@redhat.com>
This commit is contained in:
Bhupesh Sharma 2020-07-14 01:14:49 +05:30 committed by Kazuhito Hagio
parent 314d8c74ff
commit 1c45cea02d
2 changed files with 2 additions and 2 deletions

View File

@ -3922,7 +3922,7 @@ arm64_calc_VA_BITS(void)
} else if (ACTIVE())
error(FATAL, "cannot determine VA_BITS_ACTUAL: please use /proc/kcore\n");
else {
if ((string = pc->read_vmcoreinfo("NUMBER(tcr_el1_t1sz)"))) {
if ((string = pc->read_vmcoreinfo("NUMBER(TCR_EL1_T1SZ)"))) {
/* See ARMv8 ARM for the description of
* TCR_EL1.T1SZ and how it can be used
* to calculate the vabits_actual

View File

@ -1887,7 +1887,7 @@ vmcoreinfo_read_string(const char *key)
sprintf(value, "%ld", nd->arch_data2 & 0xffffffff);
return value;
}
if (STREQ(key, "NUMBER(tcr_el1_t1sz)") && nd->arch_data2) {
if (STREQ(key, "NUMBER(TCR_EL1_T1SZ)") && nd->arch_data2) {
value = calloc(VADDR_PRLEN+1, sizeof(char));
sprintf(value, "%lld", ((ulonglong)nd->arch_data2 >> 32) & 0xffffffff);
pc->read_vmcoreinfo = no_vmcoreinfo;