xen-devel.lists.xenproject.org archive mirror
 help / color / mirror / Atom feed
* [Xen-devel] [PATCH] x86/viridian: Reword HV_X64_MSR_CRASH_CTL print message
@ 2019-09-13 16:04 Andrew Cooper
  2019-09-15 11:51 ` Paul Durrant
  0 siblings, 1 reply; 9+ messages in thread
From: Andrew Cooper @ 2019-09-13 16:04 UTC (permalink / raw)
  To: Xen-devel
  Cc: Andrew Cooper, Paul Durrant, Wei Liu, Jan Beulich, Roger Pau Monné

Message such as:

  (XEN) d3v0 VIRIDIAN CRASH: 51 1 ffff9700e146b000 1000 204

have confused many people into thinking the the problem is a bug in the
viridian code.  The prefix was intended to signify the use of the viridian
crash-reporting interface.

Replace the VIRIDIAN prefix with 'reported' to reduce the confusion to
non-xen-developers trying to interpret the message.

Signed-off-by: Andrew Cooper <andrew.cooper3@citrix.com>
---
CC: Jan Beulich <JBeulich@suse.com>
CC: Wei Liu <wl@xen.org>
CC: Roger Pau Monné <roger.pau@citrix.com>
CC: Paul Durrant <paul.durrant@citrix.com>

This wants backporting to every stable tree which has viridian crash interface
support.
---
 xen/arch/x86/hvm/viridian/viridian.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/xen/arch/x86/hvm/viridian/viridian.c b/xen/arch/x86/hvm/viridian/viridian.c
index 4b06b78a27..f98c8e7753 100644
--- a/xen/arch/x86/hvm/viridian/viridian.c
+++ b/xen/arch/x86/hvm/viridian/viridian.c
@@ -357,7 +357,7 @@ int guest_wrmsr_viridian(struct vcpu *v, uint32_t idx, uint64_t val)
         d->shutdown_code = SHUTDOWN_crash;
         spin_unlock(&d->shutdown_lock);
 
-        gprintk(XENLOG_WARNING, "VIRIDIAN CRASH: %lx %lx %lx %lx %lx\n",
+        gprintk(XENLOG_WARNING, "reported CRASH: %lx %lx %lx %lx %lx\n",
                 vv->crash_param[0], vv->crash_param[1], vv->crash_param[2],
                 vv->crash_param[3], vv->crash_param[4]);
         break;
-- 
2.11.0


_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xenproject.org
https://lists.xenproject.org/mailman/listinfo/xen-devel

^ permalink raw reply related	[flat|nested] 9+ messages in thread

* Re: [Xen-devel] [PATCH] x86/viridian: Reword HV_X64_MSR_CRASH_CTL print message
  2019-09-13 16:04 [Xen-devel] [PATCH] x86/viridian: Reword HV_X64_MSR_CRASH_CTL print message Andrew Cooper
@ 2019-09-15 11:51 ` Paul Durrant
  2019-09-16 12:47   ` Andrew Cooper
  0 siblings, 1 reply; 9+ messages in thread
From: Paul Durrant @ 2019-09-15 11:51 UTC (permalink / raw)
  To: Andrew Cooper, Xen-devel
  Cc: Andrew Cooper, Wei Liu, Jan Beulich, Roger Pau Monne

> -----Original Message-----
> From: Andrew Cooper <andrew.cooper3@citrix.com>
> Sent: 13 September 2019 17:04
> To: Xen-devel <xen-devel@lists.xenproject.org>
> Cc: Andrew Cooper <Andrew.Cooper3@citrix.com>; Jan Beulich <JBeulich@suse.com>; Wei Liu <wl@xen.org>;
> Roger Pau Monne <roger.pau@citrix.com>; Paul Durrant <Paul.Durrant@citrix.com>
> Subject: [PATCH] x86/viridian: Reword HV_X64_MSR_CRASH_CTL print message
> 
> Message such as:
> 
>   (XEN) d3v0 VIRIDIAN CRASH: 51 1 ffff9700e146b000 1000 204
> 
> have confused many people into thinking the the problem is a bug in the
> viridian code.  The prefix was intended to signify the use of the viridian
> crash-reporting interface.
> 
> Replace the VIRIDIAN prefix with 'reported' to reduce the confusion to
> non-xen-developers trying to interpret the message.

This is a message that is peculiar to Windows VMs, so how about "Windows VM CRASH"?

 Paul

> 
> Signed-off-by: Andrew Cooper <andrew.cooper3@citrix.com>
> ---
> CC: Jan Beulich <JBeulich@suse.com>
> CC: Wei Liu <wl@xen.org>
> CC: Roger Pau Monné <roger.pau@citrix.com>
> CC: Paul Durrant <paul.durrant@citrix.com>
> 
> This wants backporting to every stable tree which has viridian crash interface
> support.
> ---
>  xen/arch/x86/hvm/viridian/viridian.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/xen/arch/x86/hvm/viridian/viridian.c b/xen/arch/x86/hvm/viridian/viridian.c
> index 4b06b78a27..f98c8e7753 100644
> --- a/xen/arch/x86/hvm/viridian/viridian.c
> +++ b/xen/arch/x86/hvm/viridian/viridian.c
> @@ -357,7 +357,7 @@ int guest_wrmsr_viridian(struct vcpu *v, uint32_t idx, uint64_t val)
>          d->shutdown_code = SHUTDOWN_crash;
>          spin_unlock(&d->shutdown_lock);
> 
> -        gprintk(XENLOG_WARNING, "VIRIDIAN CRASH: %lx %lx %lx %lx %lx\n",
> +        gprintk(XENLOG_WARNING, "reported CRASH: %lx %lx %lx %lx %lx\n",
>                  vv->crash_param[0], vv->crash_param[1], vv->crash_param[2],
>                  vv->crash_param[3], vv->crash_param[4]);
>          break;
> --
> 2.11.0

_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xenproject.org
https://lists.xenproject.org/mailman/listinfo/xen-devel

^ permalink raw reply	[flat|nested] 9+ messages in thread

* Re: [Xen-devel] [PATCH] x86/viridian: Reword HV_X64_MSR_CRASH_CTL print message
  2019-09-15 11:51 ` Paul Durrant
@ 2019-09-16 12:47   ` Andrew Cooper
  2019-09-16 12:56     ` Paul Durrant
  0 siblings, 1 reply; 9+ messages in thread
From: Andrew Cooper @ 2019-09-16 12:47 UTC (permalink / raw)
  To: Paul Durrant, Xen-devel; +Cc: Wei Liu, Jan Beulich, Roger Pau Monne

On 15/09/2019 12:51, Paul Durrant wrote:
>> -----Original Message-----
>> From: Andrew Cooper <andrew.cooper3@citrix.com>
>> Sent: 13 September 2019 17:04
>> To: Xen-devel <xen-devel@lists.xenproject.org>
>> Cc: Andrew Cooper <Andrew.Cooper3@citrix.com>; Jan Beulich <JBeulich@suse.com>; Wei Liu <wl@xen.org>;
>> Roger Pau Monne <roger.pau@citrix.com>; Paul Durrant <Paul.Durrant@citrix.com>
>> Subject: [PATCH] x86/viridian: Reword HV_X64_MSR_CRASH_CTL print message
>>
>> Message such as:
>>
>>   (XEN) d3v0 VIRIDIAN CRASH: 51 1 ffff9700e146b000 1000 204
>>
>> have confused many people into thinking the the problem is a bug in the
>> viridian code.  The prefix was intended to signify the use of the viridian
>> crash-reporting interface.
>>
>> Replace the VIRIDIAN prefix with 'reported' to reduce the confusion to
>> non-xen-developers trying to interpret the message.
> This is a message that is peculiar to Windows VMs, so how about "Windows VM CRASH"?

I presume you mean particular, but no - it isn't windows which is the
exclusive user of this interface.  Linux has a driver to use it when
running under HyperV.

~Andrew

_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xenproject.org
https://lists.xenproject.org/mailman/listinfo/xen-devel

^ permalink raw reply	[flat|nested] 9+ messages in thread

* Re: [Xen-devel] [PATCH] x86/viridian: Reword HV_X64_MSR_CRASH_CTL print message
  2019-09-16 12:47   ` Andrew Cooper
@ 2019-09-16 12:56     ` Paul Durrant
  2019-09-16 13:13       ` Andrew Cooper
  0 siblings, 1 reply; 9+ messages in thread
From: Paul Durrant @ 2019-09-16 12:56 UTC (permalink / raw)
  To: Andrew Cooper, Xen-devel; +Cc: Wei Liu, Jan Beulich, Roger Pau Monne

> -----Original Message-----
> From: Andrew Cooper <Andrew.Cooper3@citrix.com>
> Sent: 16 September 2019 13:48
> To: Paul Durrant <Paul.Durrant@citrix.com>; Xen-devel <xen-devel@lists.xenproject.org>
> Cc: Jan Beulich <JBeulich@suse.com>; Wei Liu <wl@xen.org>; Roger Pau Monne <roger.pau@citrix.com>
> Subject: Re: [PATCH] x86/viridian: Reword HV_X64_MSR_CRASH_CTL print message
> 
> On 15/09/2019 12:51, Paul Durrant wrote:
> >> -----Original Message-----
> >> From: Andrew Cooper <andrew.cooper3@citrix.com>
> >> Sent: 13 September 2019 17:04
> >> To: Xen-devel <xen-devel@lists.xenproject.org>
> >> Cc: Andrew Cooper <Andrew.Cooper3@citrix.com>; Jan Beulich <JBeulich@suse.com>; Wei Liu
> <wl@xen.org>;
> >> Roger Pau Monne <roger.pau@citrix.com>; Paul Durrant <Paul.Durrant@citrix.com>
> >> Subject: [PATCH] x86/viridian: Reword HV_X64_MSR_CRASH_CTL print message
> >>
> >> Message such as:
> >>
> >>   (XEN) d3v0 VIRIDIAN CRASH: 51 1 ffff9700e146b000 1000 204
> >>
> >> have confused many people into thinking the the problem is a bug in the
> >> viridian code.  The prefix was intended to signify the use of the viridian
> >> crash-reporting interface.
> >>
> >> Replace the VIRIDIAN prefix with 'reported' to reduce the confusion to
> >> non-xen-developers trying to interpret the message.
> > This is a message that is peculiar to Windows VMs, so how about "Windows VM CRASH"?
> 
> I presume you mean particular, but no - it isn't windows which is the
> exclusive user of this interface.  Linux has a driver to use it when
> running under HyperV.

Hmm, that's a bit odd. I thought the crash codes are Windows specific. Perhaps they can be distinguished in some way. All the same, the log line needs to lead people to some way of decoding the magic numbers I think. How about:

"VIRIDIAN REPORTED CRASH"

?

  Paul

> 
> ~Andrew
_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xenproject.org
https://lists.xenproject.org/mailman/listinfo/xen-devel

^ permalink raw reply	[flat|nested] 9+ messages in thread

* Re: [Xen-devel] [PATCH] x86/viridian: Reword HV_X64_MSR_CRASH_CTL print message
  2019-09-16 12:56     ` Paul Durrant
@ 2019-09-16 13:13       ` Andrew Cooper
  2019-09-16 13:28         ` Wei Liu
  0 siblings, 1 reply; 9+ messages in thread
From: Andrew Cooper @ 2019-09-16 13:13 UTC (permalink / raw)
  To: Paul Durrant, Xen-devel; +Cc: Wei Liu, Jan Beulich, Roger Pau Monne

On 16/09/2019 13:56, Paul Durrant wrote:
>> -----Original Message-----
>> From: Andrew Cooper <Andrew.Cooper3@citrix.com>
>> Sent: 16 September 2019 13:48
>> To: Paul Durrant <Paul.Durrant@citrix.com>; Xen-devel <xen-devel@lists.xenproject.org>
>> Cc: Jan Beulich <JBeulich@suse.com>; Wei Liu <wl@xen.org>; Roger Pau Monne <roger.pau@citrix.com>
>> Subject: Re: [PATCH] x86/viridian: Reword HV_X64_MSR_CRASH_CTL print message
>>
>> On 15/09/2019 12:51, Paul Durrant wrote:
>>>> -----Original Message-----
>>>> From: Andrew Cooper <andrew.cooper3@citrix.com>
>>>> Sent: 13 September 2019 17:04
>>>> To: Xen-devel <xen-devel@lists.xenproject.org>
>>>> Cc: Andrew Cooper <Andrew.Cooper3@citrix.com>; Jan Beulich <JBeulich@suse.com>; Wei Liu
>> <wl@xen.org>;
>>>> Roger Pau Monne <roger.pau@citrix.com>; Paul Durrant <Paul.Durrant@citrix.com>
>>>> Subject: [PATCH] x86/viridian: Reword HV_X64_MSR_CRASH_CTL print message
>>>>
>>>> Message such as:
>>>>
>>>>   (XEN) d3v0 VIRIDIAN CRASH: 51 1 ffff9700e146b000 1000 204
>>>>
>>>> have confused many people into thinking the the problem is a bug in the
>>>> viridian code.  The prefix was intended to signify the use of the viridian
>>>> crash-reporting interface.
>>>>
>>>> Replace the VIRIDIAN prefix with 'reported' to reduce the confusion to
>>>> non-xen-developers trying to interpret the message.
>>> This is a message that is peculiar to Windows VMs, so how about "Windows VM CRASH"?
>> I presume you mean particular, but no - it isn't windows which is the
>> exclusive user of this interface.  Linux has a driver to use it when
>> running under HyperV.
> Hmm, that's a bit odd. I thought the crash codes are Windows specific. Perhaps they can be distinguished in some way.

Linux sets its own guest OS identifier, which is some function of
HV_LINUX_VENDOR_ID.

>  All the same, the log line needs to lead people to some way of decoding the magic numbers I think. How about:
>
> "VIRIDIAN REPORTED CRASH"
>
> ?

That is still just as confusing to read.

There is no way to decode the numbers without knowing what OS is
running, and simply saying "Viridian" doesn't help with that.

~Andrew

_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xenproject.org
https://lists.xenproject.org/mailman/listinfo/xen-devel

^ permalink raw reply	[flat|nested] 9+ messages in thread

* Re: [Xen-devel] [PATCH] x86/viridian: Reword HV_X64_MSR_CRASH_CTL print message
  2019-09-16 13:13       ` Andrew Cooper
@ 2019-09-16 13:28         ` Wei Liu
  2019-09-16 13:56           ` Paul Durrant
  0 siblings, 1 reply; 9+ messages in thread
From: Wei Liu @ 2019-09-16 13:28 UTC (permalink / raw)
  To: Andrew Cooper
  Cc: Xen-devel, Paul Durrant, Wei Liu, Jan Beulich, Roger Pau Monne

On Mon, 16 Sep 2019 at 14:13, Andrew Cooper <andrew.cooper3@citrix.com> wrote:
[...]
> >>>> Replace the VIRIDIAN prefix with 'reported' to reduce the confusion to
> >>>> non-xen-developers trying to interpret the message.
> >>> This is a message that is peculiar to Windows VMs, so how about "Windows VM CRASH"?
> >> I presume you mean particular, but no - it isn't windows which is the
> >> exclusive user of this interface.  Linux has a driver to use it when
> >> running under HyperV.
> > Hmm, that's a bit odd. I thought the crash codes are Windows specific. Perhaps they can be distinguished in some way.
>
> Linux sets its own guest OS identifier, which is some function of
> HV_LINUX_VENDOR_ID.
>
> >  All the same, the log line needs to lead people to some way of decoding the magic numbers I think. How about:
> >
> > "VIRIDIAN REPORTED CRASH"
> >
> > ?
>
> That is still just as confusing to read.
>
> There is no way to decode the numbers without knowing what OS is
> running, and simply saying "Viridian" doesn't help with that.
>

Would it make sense to call dump_guest_os_id here as well? Seeing that
it is only printed when it was first set.

Wei.

> ~Andrew

_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xenproject.org
https://lists.xenproject.org/mailman/listinfo/xen-devel

^ permalink raw reply	[flat|nested] 9+ messages in thread

* Re: [Xen-devel] [PATCH] x86/viridian: Reword HV_X64_MSR_CRASH_CTL print message
  2019-09-16 13:28         ` Wei Liu
@ 2019-09-16 13:56           ` Paul Durrant
  2019-09-17 16:31             ` Andrew Cooper
  0 siblings, 1 reply; 9+ messages in thread
From: Paul Durrant @ 2019-09-16 13:56 UTC (permalink / raw)
  To: 'Wei Liu', Andrew Cooper; +Cc: Xen-devel, Jan Beulich, Roger Pau Monne

> -----Original Message-----
> From: Wei Liu <wl@xen.org>
> Sent: 16 September 2019 14:29
> To: Andrew Cooper <Andrew.Cooper3@citrix.com>
> Cc: Paul Durrant <Paul.Durrant@citrix.com>; Xen-devel <xen-devel@lists.xenproject.org>; Jan Beulich
> <JBeulich@suse.com>; Wei Liu <wl@xen.org>; Roger Pau Monne <roger.pau@citrix.com>
> Subject: Re: [PATCH] x86/viridian: Reword HV_X64_MSR_CRASH_CTL print message
> 
> On Mon, 16 Sep 2019 at 14:13, Andrew Cooper <andrew.cooper3@citrix.com> wrote:
> [...]
> > >>>> Replace the VIRIDIAN prefix with 'reported' to reduce the confusion to
> > >>>> non-xen-developers trying to interpret the message.
> > >>> This is a message that is peculiar to Windows VMs, so how about "Windows VM CRASH"?
> > >> I presume you mean particular, but no - it isn't windows which is the
> > >> exclusive user of this interface.  Linux has a driver to use it when
> > >> running under HyperV.
> > > Hmm, that's a bit odd. I thought the crash codes are Windows specific. Perhaps they can be
> distinguished in some way.
> >
> > Linux sets its own guest OS identifier, which is some function of
> > HV_LINUX_VENDOR_ID.
> >
> > >  All the same, the log line needs to lead people to some way of decoding the magic numbers I
> think. How about:
> > >
> > > "VIRIDIAN REPORTED CRASH"
> > >
> > > ?
> >
> > That is still just as confusing to read.
> >
> > There is no way to decode the numbers without knowing what OS is
> > running, and simply saying "Viridian" doesn't help with that.
> >
> 
> Would it make sense to call dump_guest_os_id here as well? Seeing that
> it is only printed when it was first set.

Yes, that's not a bad idea.

  Paul

> 
> Wei.
> 
> > ~Andrew
_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xenproject.org
https://lists.xenproject.org/mailman/listinfo/xen-devel

^ permalink raw reply	[flat|nested] 9+ messages in thread

* Re: [Xen-devel] [PATCH] x86/viridian: Reword HV_X64_MSR_CRASH_CTL print message
  2019-09-16 13:56           ` Paul Durrant
@ 2019-09-17 16:31             ` Andrew Cooper
  2019-09-18 10:21               ` Wei Liu
  0 siblings, 1 reply; 9+ messages in thread
From: Andrew Cooper @ 2019-09-17 16:31 UTC (permalink / raw)
  To: Paul Durrant, 'Wei Liu'; +Cc: Xen-devel, Jan Beulich, Roger Pau Monne

On 16/09/2019 14:56, Paul Durrant wrote:
>> -----Original Message-----
>> From: Wei Liu <wl@xen.org>
>> Sent: 16 September 2019 14:29
>> To: Andrew Cooper <Andrew.Cooper3@citrix.com>
>> Cc: Paul Durrant <Paul.Durrant@citrix.com>; Xen-devel <xen-devel@lists.xenproject.org>; Jan Beulich
>> <JBeulich@suse.com>; Wei Liu <wl@xen.org>; Roger Pau Monne <roger.pau@citrix.com>
>> Subject: Re: [PATCH] x86/viridian: Reword HV_X64_MSR_CRASH_CTL print message
>>
>> On Mon, 16 Sep 2019 at 14:13, Andrew Cooper <andrew.cooper3@citrix.com> wrote:
>> [...]
>>>>>>> Replace the VIRIDIAN prefix with 'reported' to reduce the confusion to
>>>>>>> non-xen-developers trying to interpret the message.
>>>>>> This is a message that is peculiar to Windows VMs, so how about "Windows VM CRASH"?
>>>>> I presume you mean particular, but no - it isn't windows which is the
>>>>> exclusive user of this interface.  Linux has a driver to use it when
>>>>> running under HyperV.
>>>> Hmm, that's a bit odd. I thought the crash codes are Windows specific. Perhaps they can be
>> distinguished in some way.
>>> Linux sets its own guest OS identifier, which is some function of
>>> HV_LINUX_VENDOR_ID.
>>>
>>>>  All the same, the log line needs to lead people to some way of decoding the magic numbers I
>> think. How about:
>>>> "VIRIDIAN REPORTED CRASH"
>>>>
>>>> ?
>>> That is still just as confusing to read.
>>>
>>> There is no way to decode the numbers without knowing what OS is
>>> running, and simply saying "Viridian" doesn't help with that.
>>>
>> Would it make sense to call dump_guest_os_id here as well? Seeing that
>> it is only printed when it was first set.
> Yes, that's not a bad idea.

This is as maybe, but still doesn't help with ambiguity because you
can't expect people to recognise guest-id's by their hex value.  It also
doesn't help with the confusion of having the word viridian in the
printed string.

~Andrew

_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xenproject.org
https://lists.xenproject.org/mailman/listinfo/xen-devel

^ permalink raw reply	[flat|nested] 9+ messages in thread

* Re: [Xen-devel] [PATCH] x86/viridian: Reword HV_X64_MSR_CRASH_CTL print message
  2019-09-17 16:31             ` Andrew Cooper
@ 2019-09-18 10:21               ` Wei Liu
  0 siblings, 0 replies; 9+ messages in thread
From: Wei Liu @ 2019-09-18 10:21 UTC (permalink / raw)
  To: Andrew Cooper
  Cc: Xen-devel, Paul Durrant, Jan Beulich, Wei Liu, Roger Pau Monne

On Tue, 17 Sep 2019 at 17:31, Andrew Cooper <andrew.cooper3@citrix.com> wrote:
>
> On 16/09/2019 14:56, Paul Durrant wrote:
> >> -----Original Message-----
> >> From: Wei Liu <wl@xen.org>
> >> Sent: 16 September 2019 14:29
> >> To: Andrew Cooper <Andrew.Cooper3@citrix.com>
> >> Cc: Paul Durrant <Paul.Durrant@citrix.com>; Xen-devel <xen-devel@lists.xenproject.org>; Jan Beulich
> >> <JBeulich@suse.com>; Wei Liu <wl@xen.org>; Roger Pau Monne <roger.pau@citrix.com>
> >> Subject: Re: [PATCH] x86/viridian: Reword HV_X64_MSR_CRASH_CTL print message
> >>
> >> On Mon, 16 Sep 2019 at 14:13, Andrew Cooper <andrew.cooper3@citrix.com> wrote:
> >> [...]
> >>>>>>> Replace the VIRIDIAN prefix with 'reported' to reduce the confusion to
> >>>>>>> non-xen-developers trying to interpret the message.
> >>>>>> This is a message that is peculiar to Windows VMs, so how about "Windows VM CRASH"?
> >>>>> I presume you mean particular, but no - it isn't windows which is the
> >>>>> exclusive user of this interface.  Linux has a driver to use it when
> >>>>> running under HyperV.
> >>>> Hmm, that's a bit odd. I thought the crash codes are Windows specific. Perhaps they can be
> >> distinguished in some way.
> >>> Linux sets its own guest OS identifier, which is some function of
> >>> HV_LINUX_VENDOR_ID.
> >>>
> >>>>  All the same, the log line needs to lead people to some way of decoding the magic numbers I
> >> think. How about:
> >>>> "VIRIDIAN REPORTED CRASH"
> >>>>
> >>>> ?
> >>> That is still just as confusing to read.
> >>>
> >>> There is no way to decode the numbers without knowing what OS is
> >>> running, and simply saying "Viridian" doesn't help with that.
> >>>
> >> Would it make sense to call dump_guest_os_id here as well? Seeing that
> >> it is only printed when it was first set.
> > Yes, that's not a bad idea.
>
> This is as maybe, but still doesn't help with ambiguity because you
> can't expect people to recognise guest-id's by their hex value.  It also
> doesn't help with the confusion of having the word viridian in the
> printed string.
>

I look closer today. They can be interpreted at least for Linux. It is
useful information to have. If we want to print crash control values
at all, OS information shouldn't be omitted.

I don't really have an opinion on whether the viridian prefix is useful or not.

Wei.

> ~Andrew

_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xenproject.org
https://lists.xenproject.org/mailman/listinfo/xen-devel

^ permalink raw reply	[flat|nested] 9+ messages in thread

end of thread, other threads:[~2019-09-18 10:21 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-09-13 16:04 [Xen-devel] [PATCH] x86/viridian: Reword HV_X64_MSR_CRASH_CTL print message Andrew Cooper
2019-09-15 11:51 ` Paul Durrant
2019-09-16 12:47   ` Andrew Cooper
2019-09-16 12:56     ` Paul Durrant
2019-09-16 13:13       ` Andrew Cooper
2019-09-16 13:28         ` Wei Liu
2019-09-16 13:56           ` Paul Durrant
2019-09-17 16:31             ` Andrew Cooper
2019-09-18 10:21               ` Wei Liu

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).