Closed Arch-Zheng closed 2 years ago
Thank you for the report.
Do you know how we can check if it's a xen dump on arm? We can avoid the error on arm with the following, but instead we will need another way to check it for arm.
- if (symbol_exists("xen_start_info") &&
+ if (!machine_type("ARM") &&
+ symbol_exists("xen_start_info") &&
Do you know how we can check if it's a xen dump on arm?
Sorry, I don't know how to check this.
- if (symbol_exists("xen_start_info") &&
- if (!machine_type("ARM") &&
- symbol_exists("xen_start_info") &&
BTW, not only arm, arm64 also has this problem.
Hi k-hagio,
I send the fix patch([PATCH] Fix pvops Xen detection for arm machine) to the crash-utility@redhat.com, please review.
Thanks, Qi
Hi all,
The commit 4badc6229c69f5cd9da7eb7bdf400a53ec6db01a ("Fix pvops Xen detection for kernels >= v4.20") will cause this error on arm machine:
More detail here: https://github.com/crash-utility/crash/commit/4badc6229c69f5cd9da7eb7bdf400a53ec6db01a#commitcomment-61017469.
Thanks, Qi