All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] SUPPORT.md: add Domain 0 section
@ 2018-03-23 10:27 Roger Pau Monne
  2018-03-23 11:06 ` George Dunlap
  0 siblings, 1 reply; 4+ messages in thread
From: Roger Pau Monne @ 2018-03-23 10:27 UTC (permalink / raw)
  To: xen-devel
  Cc: Stefano Stabellini, Wei Liu, George Dunlap, Andrew Cooper,
	Ian Jackson, Tim Deegan, Julien Grall, Jan Beulich,
	Roger Pau Monne

Signed-off-by: Roger Pau Monné <roger.pau@citrix.com>
---
Cc: Andrew Cooper <andrew.cooper3@citrix.com>
Cc: George Dunlap <George.Dunlap@eu.citrix.com>
Cc: Ian Jackson <ian.jackson@eu.citrix.com>
Cc: Jan Beulich <jbeulich@suse.com>
Cc: Julien Grall <julien.grall@arm.com>
Cc: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
Cc: Stefano Stabellini <sstabellini@kernel.org>
Cc: Tim Deegan <tim@xen.org>
Cc: Wei Liu <wei.liu2@citrix.com>
---
 SUPPORT.md | 24 ++++++++++++++++++++++++
 1 file changed, 24 insertions(+)

diff --git a/SUPPORT.md b/SUPPORT.md
index ddcdfab5ad..fb0151aa7b 100644
--- a/SUPPORT.md
+++ b/SUPPORT.md
@@ -96,6 +96,30 @@ Requires hardware virtualisation support (Intel VMX / AMD SVM)
 
 ARM only has one guest type at the moment
 
+## Domain 0 Type
+
+### x86/PV Dom0
+
+    Status: Supported
+
+Traditional Xen PV Domain 0
+
+No hardware requirements
+
+### x86/PVH Dom0
+
+    Status: Experimental
+
+PVH based Domain 0
+
+Requires CPU hardware virtualization extensions and an IOMMU.
+
+### ARM Dom0
+
+    Status: Supported
+
+ARM only has one Domain 0 type at the moment
+
 ## Toolstack
 
 ### xl
-- 
2.16.2


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

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

* Re: [PATCH] SUPPORT.md: add Domain 0 section
  2018-03-23 10:27 [PATCH] SUPPORT.md: add Domain 0 section Roger Pau Monne
@ 2018-03-23 11:06 ` George Dunlap
  2018-03-23 11:14   ` Roger Pau Monné
  0 siblings, 1 reply; 4+ messages in thread
From: George Dunlap @ 2018-03-23 11:06 UTC (permalink / raw)
  To: Roger Pau Monne, xen-devel
  Cc: Stefano Stabellini, Wei Liu, George Dunlap, Andrew Cooper,
	Ian Jackson, Tim Deegan, Julien Grall, Jan Beulich

On 03/23/2018 10:27 AM, Roger Pau Monne wrote:
> Signed-off-by: Roger Pau Monné <roger.pau@citrix.com>
> ---
> Cc: Andrew Cooper <andrew.cooper3@citrix.com>
> Cc: George Dunlap <George.Dunlap@eu.citrix.com>
> Cc: Ian Jackson <ian.jackson@eu.citrix.com>
> Cc: Jan Beulich <jbeulich@suse.com>
> Cc: Julien Grall <julien.grall@arm.com>
> Cc: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
> Cc: Stefano Stabellini <sstabellini@kernel.org>
> Cc: Tim Deegan <tim@xen.org>
> Cc: Wei Liu <wei.liu2@citrix.com>
> ---
>  SUPPORT.md | 24 ++++++++++++++++++++++++
>  1 file changed, 24 insertions(+)
> 
> diff --git a/SUPPORT.md b/SUPPORT.md
> index ddcdfab5ad..fb0151aa7b 100644
> --- a/SUPPORT.md
> +++ b/SUPPORT.md
> @@ -96,6 +96,30 @@ Requires hardware virtualisation support (Intel VMX / AMD SVM)
>  
>  ARM only has one guest type at the moment
>  
> +## Domain 0 Type
> +
> +### x86/PV Dom0
> +
> +    Status: Supported
> +
> +Traditional Xen PV Domain 0
> +
> +No hardware requirements
> +
> +### x86/PVH Dom0
> +
> +    Status: Experimental
> +
> +PVH based Domain 0
> +
> +Requires CPU hardware virtualization extensions and an IOMMU.
> +
> +### ARM Dom0
> +
> +    Status: Supported
> +
> +ARM only has one Domain 0 type at the moment
> +

There's a lot of redundancy here.  What about keeping the guest types
together, like the following?

---
### x86/PVH

    Status, domU: Supported
    Status, dom0: Experimental

[description]

Note also that dom0 support requires IOMMU or VT-d hardware.
---

 -George

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

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

* Re: [PATCH] SUPPORT.md: add Domain 0 section
  2018-03-23 11:06 ` George Dunlap
@ 2018-03-23 11:14   ` Roger Pau Monné
  2018-03-23 11:16     ` George Dunlap
  0 siblings, 1 reply; 4+ messages in thread
From: Roger Pau Monné @ 2018-03-23 11:14 UTC (permalink / raw)
  To: George Dunlap
  Cc: Stefano Stabellini, Wei Liu, George Dunlap, Andrew Cooper,
	Ian Jackson, Tim Deegan, Julien Grall, Jan Beulich, xen-devel

On Fri, Mar 23, 2018 at 11:06:54AM +0000, George Dunlap wrote:
> On 03/23/2018 10:27 AM, Roger Pau Monne wrote:
> > Signed-off-by: Roger Pau Monné <roger.pau@citrix.com>
> > ---
> > Cc: Andrew Cooper <andrew.cooper3@citrix.com>
> > Cc: George Dunlap <George.Dunlap@eu.citrix.com>
> > Cc: Ian Jackson <ian.jackson@eu.citrix.com>
> > Cc: Jan Beulich <jbeulich@suse.com>
> > Cc: Julien Grall <julien.grall@arm.com>
> > Cc: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
> > Cc: Stefano Stabellini <sstabellini@kernel.org>
> > Cc: Tim Deegan <tim@xen.org>
> > Cc: Wei Liu <wei.liu2@citrix.com>
> > ---
> >  SUPPORT.md | 24 ++++++++++++++++++++++++
> >  1 file changed, 24 insertions(+)
> > 
> > diff --git a/SUPPORT.md b/SUPPORT.md
> > index ddcdfab5ad..fb0151aa7b 100644
> > --- a/SUPPORT.md
> > +++ b/SUPPORT.md
> > @@ -96,6 +96,30 @@ Requires hardware virtualisation support (Intel VMX / AMD SVM)
> >  
> >  ARM only has one guest type at the moment
> >  
> > +## Domain 0 Type
> > +
> > +### x86/PV Dom0
> > +
> > +    Status: Supported
> > +
> > +Traditional Xen PV Domain 0
> > +
> > +No hardware requirements
> > +
> > +### x86/PVH Dom0
> > +
> > +    Status: Experimental
> > +
> > +PVH based Domain 0
> > +
> > +Requires CPU hardware virtualization extensions and an IOMMU.
> > +
> > +### ARM Dom0
> > +
> > +    Status: Supported
> > +
> > +ARM only has one Domain 0 type at the moment
> > +
> 
> There's a lot of redundancy here.  What about keeping the guest types
> together, like the following?
> 
> ---
> ### x86/PVH
> 
>     Status, domU: Supported
>     Status, dom0: Experimental
> 
> [description]
> 
> Note also that dom0 support requires IOMMU or VT-d hardware.

Sure. I wasn't aware that we could use 'Status, XXX:'. Somehow I
thought this won't be processed correctly, but there are bunch of
entries using this format already.

Let me send v2.

Thanks, Roger.

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

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

* Re: [PATCH] SUPPORT.md: add Domain 0 section
  2018-03-23 11:14   ` Roger Pau Monné
@ 2018-03-23 11:16     ` George Dunlap
  0 siblings, 0 replies; 4+ messages in thread
From: George Dunlap @ 2018-03-23 11:16 UTC (permalink / raw)
  To: Roger Pau Monné
  Cc: Stefano Stabellini, Wei Liu, George Dunlap, Andrew Cooper,
	Ian Jackson, Tim Deegan, Julien Grall, Jan Beulich, xen-devel

On 03/23/2018 11:14 AM, Roger Pau Monné wrote:
> On Fri, Mar 23, 2018 at 11:06:54AM +0000, George Dunlap wrote:
>> On 03/23/2018 10:27 AM, Roger Pau Monne wrote:
>>> Signed-off-by: Roger Pau Monné <roger.pau@citrix.com>
>>> ---
>>> Cc: Andrew Cooper <andrew.cooper3@citrix.com>
>>> Cc: George Dunlap <George.Dunlap@eu.citrix.com>
>>> Cc: Ian Jackson <ian.jackson@eu.citrix.com>
>>> Cc: Jan Beulich <jbeulich@suse.com>
>>> Cc: Julien Grall <julien.grall@arm.com>
>>> Cc: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
>>> Cc: Stefano Stabellini <sstabellini@kernel.org>
>>> Cc: Tim Deegan <tim@xen.org>
>>> Cc: Wei Liu <wei.liu2@citrix.com>
>>> ---
>>>  SUPPORT.md | 24 ++++++++++++++++++++++++
>>>  1 file changed, 24 insertions(+)
>>>
>>> diff --git a/SUPPORT.md b/SUPPORT.md
>>> index ddcdfab5ad..fb0151aa7b 100644
>>> --- a/SUPPORT.md
>>> +++ b/SUPPORT.md
>>> @@ -96,6 +96,30 @@ Requires hardware virtualisation support (Intel VMX / AMD SVM)
>>>  
>>>  ARM only has one guest type at the moment
>>>  
>>> +## Domain 0 Type
>>> +
>>> +### x86/PV Dom0
>>> +
>>> +    Status: Supported
>>> +
>>> +Traditional Xen PV Domain 0
>>> +
>>> +No hardware requirements
>>> +
>>> +### x86/PVH Dom0
>>> +
>>> +    Status: Experimental
>>> +
>>> +PVH based Domain 0
>>> +
>>> +Requires CPU hardware virtualization extensions and an IOMMU.
>>> +
>>> +### ARM Dom0
>>> +
>>> +    Status: Supported
>>> +
>>> +ARM only has one Domain 0 type at the moment
>>> +
>>
>> There's a lot of redundancy here.  What about keeping the guest types
>> together, like the following?
>>
>> ---
>> ### x86/PVH
>>
>>     Status, domU: Supported
>>     Status, dom0: Experimental
>>
>> [description]
>>
>> Note also that dom0 support requires IOMMU or VT-d hardware.
> 
> Sure. I wasn't aware that we could use 'Status, XXX:'. Somehow I
> thought this won't be processed correctly, but there are bunch of
> entries using this format already.

Well at the moment there isn't any processing.  If it turns out to be
too difficult to process as it is, then we'll have to figure something
else out; but as you say, there are already dozens of other entries that
will need to be changed as well.

> Let me send v2.

Thanks,
 -George

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

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

end of thread, other threads:[~2018-03-23 11:17 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-03-23 10:27 [PATCH] SUPPORT.md: add Domain 0 section Roger Pau Monne
2018-03-23 11:06 ` George Dunlap
2018-03-23 11:14   ` Roger Pau Monné
2018-03-23 11:16     ` George Dunlap

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.