From: Andrew Cooper <andrew.cooper3@citrix.com>
To: George Dunlap <george.dunlap@citrix.com>, xen-devel@lists.xenproject.org
Cc: Stefano Stabellini <sstabellini@kernel.org>,
Wei Liu <wei.liu2@citrix.com>,
Tamas K Lengyel <tamas.lengyel@zentific.com>,
Dario Faggioli <dario.faggioli@citrix.com>,
Tim Deegan <tim@xen.org>, Julien Grall <julien.grall@arm.com>,
Paul Durrant <paul.durrant@citrix.com>,
Jan Beulich <jbeulich@suse.com>,
Anthony Perard <anthony.perard@citrix.com>,
Ian Jackson <ian.jackson@citrix.com>,
Roger Pau Monne <roger.pau@citrix.com>
Subject: Re: [PATCH RFC v2] Add SUPPORT.md
Date: Mon, 11 Sep 2017 18:53:55 +0100 [thread overview]
Message-ID: <50f9cf70-c6e4-aeac-c8e2-3e671e87b8b9@citrix.com> (raw)
In-Reply-To: <20170911170159.3083-1-george.dunlap@citrix.com>
On 11/09/17 18:01, George Dunlap wrote:
> +### x86/PV
> +
> + Status: Supported
> +
> +Traditional Xen Project PV guest
What's a "Xen Project" PV guest? Just Xen here.
Also, a perhaps a statement of "No hardware requirements" ?
> +### x86/RAM
> +
> + Limit, x86: 16TiB
> + Limit, ARM32: 16GiB
> + Limit, ARM64: 5TiB
> +
> +[XXX: Andy to suggest what this should say for x86]
The limit for x86 is either 16TiB or 123TiB, depending on
CONFIG_BIGMEM. CONFIG_BIGMEM is exposed via menuconfig without
XEN_CONFIG_EXPERT, so falls into at least some kind of support statement.
As for practical limits, I don't think its reasonable to claim anything
which we can't test. What are the specs in the MA colo?
> +
> +## Limits/Guest
> +
> +### Virtual CPUs
> +
> + Limit, x86 PV: 512
Where did this number come from? The actual limit as enforced in Xen is
8192, and it has been like that for a very long time (i.e. the 3.x days)
[root@fusebot ~]# python
Python 2.7.5 (default, Nov 20 2015, 02:00:19)
[GCC 4.8.5 20150623 (Red Hat 4.8.5-4)] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> from xen.lowlevel.xc import xc as XC
>>> xc = XC()
>>> xc.domain_create()
1
>>> xc.domain_max_vcpus(1, 8192)
0
>>> xc.domain_create()
2
>>> xc.domain_max_vcpus(2, 8193)
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
xen.lowlevel.xc.Error: (22, 'Invalid argument')
Trying to shut such a domain down however does tickle a host watchdog
timeout as the for_each_vcpu() loops in domain_kill() are very long.
> + Limit, x86 HVM: 128
> + Limit, ARM32: 8
> + Limit, ARM64: 128
> +
> +[XXX Andrew Cooper: Do want to add "Limit-Security" here for some of these?]
32 for each. 64 vcpu HVM guests can excerpt enough p2m lock pressure to
trigger a 5 second host watchdog timeout.
> +
> +### Virtual RAM
> +
> + Limit, x86 PV: >1TB
> + Limit, x86 HVM: 1TB
> + Limit, ARM32: 16GiB
> + Limit, ARM64: 1TB
There is no specific upper bound on the size of PV or HVM guests that I
am aware of. 1.5TB HVM domains definitely work, because that's what we
test and support in XenServer.
> +
> +### x86 PV/Event Channels
> +
> + Limit: 131072
Why do we call out event channel limits but not grant table limits?
Also, why is this x86? The 2l and fifo ABIs are arch agnostic, as far
as I am aware.
> +## High Availability and Fault Tolerance
> +
> +### Live Migration, Save & Restore
> +
> + Status, x86: Supported
With caveats. From docs/features/migration.pandoc
* x86 HVM guest physmap operations (not reflected in logdirty bitmap)
* x86 HVM with PoD pages (attempts to map cause PoD allocations)
* x86 HVM with nested-virt (no relevant information included in the stream)
* x86 PV ballooning (P2M marked dirty, target frame not marked)
* x86 PV P2M structure changes (not noticed, stale mappings used) for
guests not using the linear p2m layout
Also, features such as vNUMA and nested virt (which are two I know for
certain) have all state discarded on the source side, because they were
never suitably plumbed in.
~Andrew
_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xen.org
https://lists.xen.org/xen-devel
next prev parent reply other threads:[~2017-09-11 17:53 UTC|newest]
Thread overview: 38+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-09-11 17:01 [PATCH RFC v2] Add SUPPORT.md George Dunlap
2017-09-11 17:53 ` Andrew Cooper [this message]
2017-09-12 9:48 ` Jan Beulich
2017-09-12 9:49 ` Wei Liu
2017-10-23 16:22 ` George Dunlap
2017-10-23 17:55 ` Andrew Cooper
2017-10-23 20:57 ` Stefano Stabellini
2017-10-24 10:27 ` George Dunlap
2017-10-24 11:42 ` Andrew Cooper
2017-10-25 10:59 ` George Dunlap
2017-10-25 11:30 ` Andrew Cooper
2017-10-26 9:19 ` Jan Beulich
2017-10-26 10:59 ` Andrew Cooper
2017-10-24 10:29 ` Julien Grall
2017-09-12 5:09 ` Juergen Gross
2017-09-12 10:39 ` Roger Pau Monné
2017-09-12 19:52 ` Stefano Stabellini
2017-09-12 20:09 ` Julien Grall
2017-11-01 17:01 ` George Dunlap
2017-11-01 16:57 ` George Dunlap
2017-09-12 13:14 ` George Dunlap
2017-09-12 15:35 ` Rich Persaud
2017-10-09 13:53 ` Lars Kurth
2017-10-24 14:00 ` George Dunlap
2017-09-15 14:51 ` Konrad Rzeszutek Wilk
2017-10-24 15:22 ` George Dunlap
2017-11-01 17:10 ` Konrad Rzeszutek Wilk
2017-11-02 10:46 ` George Dunlap
2017-11-02 15:23 ` Konrad Rzeszutek Wilk
2017-09-25 23:10 ` Stefano Stabellini
2017-09-26 7:12 ` Dario Faggioli
2017-09-27 12:57 ` Robert VanVossen
2017-09-27 13:48 ` Dario Faggioli
2017-10-09 14:14 ` Lars Kurth
2017-10-27 15:09 ` NathanStuder
2017-11-02 17:34 ` George Dunlap
2017-11-02 20:42 ` NathanStuder
2017-09-26 10:34 ` George Dunlap
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=50f9cf70-c6e4-aeac-c8e2-3e671e87b8b9@citrix.com \
--to=andrew.cooper3@citrix.com \
--cc=anthony.perard@citrix.com \
--cc=dario.faggioli@citrix.com \
--cc=george.dunlap@citrix.com \
--cc=ian.jackson@citrix.com \
--cc=jbeulich@suse.com \
--cc=julien.grall@arm.com \
--cc=paul.durrant@citrix.com \
--cc=roger.pau@citrix.com \
--cc=sstabellini@kernel.org \
--cc=tamas.lengyel@zentific.com \
--cc=tim@xen.org \
--cc=wei.liu2@citrix.com \
--cc=xen-devel@lists.xenproject.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
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).