[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <MW2PR2101MB10526621D88B9D2327394F17D7F00@MW2PR2101MB1052.namprd21.prod.outlook.com>
Date: Mon, 23 Mar 2020 17:16:39 +0000
From: Michael Kelley <mikelley@...rosoft.com>
To: "ltykernel@...il.com" <ltykernel@...il.com>,
KY Srinivasan <kys@...rosoft.com>,
Haiyang Zhang <haiyangz@...rosoft.com>,
Stephen Hemminger <sthemmin@...rosoft.com>,
Wei Liu <liuwe@...rosoft.com>,
"tglx@...utronix.de" <tglx@...utronix.de>,
"mingo@...hat.com" <mingo@...hat.com>,
"bp@...en8.de" <bp@...en8.de>, "hpa@...or.com" <hpa@...or.com>,
"x86@...nel.org" <x86@...nel.org>
CC: Tianyu Lan <Tianyu.Lan@...rosoft.com>,
"linux-hyperv@...r.kernel.org" <linux-hyperv@...r.kernel.org>,
"linux-kernel@...r.kernel.org" <linux-kernel@...r.kernel.org>,
vkuznets <vkuznets@...hat.com>
Subject: RE: [PATCH V2 4/6] x86/Hyper-V: Report crash register data or ksmg
before running crash kernel
From: Tianyu Lan <Tianyu.Lan@...rosoft.com> Sent: Monday, March 23, 2020 6:09 AM
>
> When a guest VM panics, Hyper-V should be notified only once via the
> crash synthetic MSRs. Current Linux code might write these crash MSRs
> twice during a system panic:
> 1) hyperv_panic/die_event() calling hyperv_report_panic()
> 2) hv_kmsg_dump() calling hyperv_report_panic_msg()
>
> Fix this by not calling hyperv_report_panic() if a kmsg dump has been
> successfully registered. The notification will happen later via
> hyperv_report_panic_msg().
I think this patch got the wrong commit message. This message is the same
as in patch 3 of the series.
>
> Signed-off-by: Tianyu Lan <Tianyu.Lan@...rosoft.com>
> ---
> Change since v1:
> Update commit log
> ---
> arch/x86/kernel/cpu/mshyperv.c | 10 ++++++++++
> 1 file changed, 10 insertions(+)
>
> diff --git a/arch/x86/kernel/cpu/mshyperv.c b/arch/x86/kernel/cpu/mshyperv.c
> index caa032ce3fe3..5e296a7e6036 100644
> --- a/arch/x86/kernel/cpu/mshyperv.c
> +++ b/arch/x86/kernel/cpu/mshyperv.c
> @@ -263,6 +263,16 @@ static void __init ms_hyperv_init_platform(void)
> cpuid_eax(HYPERV_CPUID_NESTED_FEATURES);
> }
>
> + /*
> + * Hyper-V expects to get crash register data or kmsg when
> + * crash enlightment is available and system crashes. Set
> + * crash_kexec_post_notifiers to be true to make sure that
> + * calling crash enlightment interface before running kdump
> + * kernel.
> + */
> + if (ms_hyperv.misc_features & HV_FEATURE_GUEST_CRASH_MSR_AVAILABLE)
> + crash_kexec_post_notifiers = true;
> +
> #ifdef CONFIG_X86_LOCAL_APIC
> if (ms_hyperv.features & HV_X64_ACCESS_FREQUENCY_MSRS &&
> ms_hyperv.misc_features & HV_FEATURE_FREQUENCY_MSRS_AVAILABLE) {
> --
> 2.14.5
Powered by blists - more mailing lists