From: "Chen, Tiejun" <tiejun.chen@intel.com>
To: Ian Jackson <Ian.Jackson@eu.citrix.com>
Cc: Stefano Stabellini <stefano.stabellini@eu.citrix.com>,
Wei Liu <wei.liu2@citrix.com>,
Ian Campbell <ian.campbell@citrix.com>,
xen-devel@lists.xen.org
Subject: Re: [v5][PATCH 10/16] tools: introduce some new parameters to set rdm policy
Date: Tue, 07 Jul 2015 21:53:00 +0800 [thread overview]
Message-ID: <559BD9BC.7070203@intel.com> (raw)
In-Reply-To: <21915.54159.831999.669747@mariner.uk.xensource.com>
On 2015/7/7 21:26, Ian Jackson wrote:
> Chen, Tiejun writes ("Re: [v5][PATCH 10/16] tools: introduce some new parameters to set rdm policy"):
>>> [Later:]
>>>> As I discussed with Campbell we'd like not to expose "none" in xl level
>>>> since this is equivalent to that case we don't set anything.
>>>
>>> I think this observation of mine applies to the libxl API level too.
>>
>> Sorry I don't know what I should do at this point.
>
> I was suggesting (in text that you have snipped) that "none" in the
> API should be remamed "ignore".
So sounds you're saying these two changes,
@@ -77,7 +77,7 @@ libxl_domain_type = Enumeration("domain_type", [
], init_val = "LIBXL_DOMAIN_TYPE_INVALID")
libxl_rdm_reserve_type = Enumeration("rdm_reserve_type", [
- (0, "none"),
+ (0, "ignore"),
(1, "host"),
])
@@ -381,8 +381,8 @@ libxl_vnode_info = Struct("vnode_info", [
])
libxl_rdm_reserve = Struct("rdm_reserve", [
- ("type", libxl_rdm_reserve_type),
- ("reserve", libxl_rdm_reserve_flag),
+ ("strategy", libxl_rdm_reserve_type),
+ ("reserve", libxl_rdm_reserve_flag),
])
libxl_domain_build_info = Struct("domain_build_info",[
Right?
>
>>>>> This suggests that the default is "do the dangerous thing". That
>>>>> doesn't seem right.
>>>>
>>>> As I discussed with Campbell we'd like not to expose "none" in xl level
>>>> since this is equivalent to that case we don't set anything.
>>>
>>> That's not really an answer to what I have said, I think.
>>>
>>> Why is the default the option that the documentation recommends to
>>> avoid ?
>>
>> I mean not all devices really needs this option and actually these
>> devices are very rare. Currently just IGD GFX needs this consideration
>> so we'd like to make "none" as a default value.
>
> What happens if "host" is used as a default with other devices ?
"host" just means we should concern all RDMS no matter if these devices
own any RDM, and even actually you don't pass though any devices.
> AFAICT such other decices do not have any RDM so "host" would work
> fine.
Yes but its really not pointless to keep setting host if you already
make sure nothing is involved to RDM. So why we still set 'host' to cost
those instructions cycles in this case? I don't think its not better to
set 'host' by default.
>
>>>> "none" means we have a chance to work as before since not all devices
>>>> own RDM. But as I said above this is same as !rdm.
>>>
>>> Are we expecting many existing devices, and existing setups, to break
>>> if we don't make the default be to ignore the problem ?
>>
>> If we don't set anything we don't hope you can ignore this existing problem.
>
> Is "none" not "hoping the user can ignore the problem" ?
Its impossible since the hypervisor or tools can't prevent from
accessing RDM by a VM. So as I said early, "none" is just suitable to
two cases,
#1. Those devices don't own any RDM
#2. Guest OS doesn't access RDM
Compared to other cases, these two cases are more popular in real world
and actual usage. So we'd like to keep "none" as a default.
Thanks
Tiejun
next prev parent reply other threads:[~2015-07-07 13:53 UTC|newest]
Thread overview: 51+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-07-07 6:17 [v5][PATCH 00/16] Fix RMRR Tiejun Chen
2015-07-07 6:17 ` [v5][PATCH 01/16] xen: introduce XENMEM_reserved_device_memory_map Tiejun Chen
2015-07-07 11:17 ` Ian Jackson
2015-07-07 12:46 ` Jan Beulich
2015-07-07 13:23 ` Ian Jackson
2015-07-07 14:05 ` Jan Beulich
2015-07-07 21:32 ` Chen, Tiejun
2015-07-08 6:25 ` Jan Beulich
2015-07-07 6:17 ` [v5][PATCH 02/16] xen/vtd: create RMRR mapping Tiejun Chen
2015-07-07 6:17 ` [v5][PATCH 03/16] xen/passthrough: extend hypercall to support rdm reservation policy Tiejun Chen
2015-07-07 6:17 ` [v5][PATCH 04/16] xen: enable XENMEM_memory_map in hvm Tiejun Chen
2015-07-07 6:17 ` [v5][PATCH 05/16] hvmloader: get guest memory map into memory_map[] Tiejun Chen
2015-07-07 6:17 ` [v5][PATCH 06/16] hvmloader/pci: skip reserved ranges Tiejun Chen
2015-07-07 6:17 ` [v5][PATCH 07/16] hvmloader/e820: construct guest e820 table Tiejun Chen
2015-07-07 6:17 ` [v5][PATCH 08/16] tools/libxc: Expose new hypercall xc_reserved_device_memory_map Tiejun Chen
2015-07-07 6:17 ` [v5][PATCH 09/16] tools: extend xc_assign_device() to support rdm reservation policy Tiejun Chen
2015-07-07 6:17 ` [v5][PATCH 10/16] tools: introduce some new parameters to set rdm policy Tiejun Chen
2015-07-07 10:21 ` Wei Liu
2015-07-08 0:54 ` Chen, Tiejun
2015-07-08 8:32 ` Ian Campbell
2015-07-08 9:06 ` Chen, Tiejun
2015-07-08 9:17 ` Ian Campbell
2015-07-07 11:47 ` Ian Jackson
2015-07-07 12:03 ` Chen, Tiejun
2015-07-07 12:14 ` Ian Jackson
2015-07-07 12:31 ` Chen, Tiejun
2015-07-07 13:26 ` Ian Jackson
2015-07-07 13:53 ` Chen, Tiejun [this message]
2015-07-07 14:16 ` Ian Jackson
2015-07-07 14:40 ` Ian Jackson
2015-07-07 15:16 ` Chen, Tiejun
2015-07-07 15:39 ` Chen, Tiejun
2015-07-07 17:08 ` Ian Jackson
2015-07-07 21:45 ` Chen, Tiejun
2015-07-07 6:17 ` [v5][PATCH 11/16] tools/libxl: detect and avoid conflicts with RDM Tiejun Chen
2015-07-07 11:20 ` Wei Liu
2015-07-07 11:51 ` Ian Jackson
2015-07-07 12:08 ` Wei Liu
2015-07-07 12:16 ` Ian Jackson
2015-07-07 11:57 ` Ian Jackson
2015-07-07 14:52 ` Chen, Tiejun
2015-07-07 14:57 ` Ian Jackson
2015-07-07 15:27 ` Chen, Tiejun
2015-07-07 16:01 ` Ian Jackson
2015-07-07 6:17 ` [v5][PATCH 12/16] tools: introduce a new parameter to set a predefined rdm boundary Tiejun Chen
2015-07-07 11:22 ` Wei Liu
2015-07-07 6:17 ` [v5][PATCH 13/16] libxl: construct e820 map with RDM information for HVM guest Tiejun Chen
2015-07-07 9:03 ` Wei Liu
2015-07-07 6:17 ` [v5][PATCH 14/16] xen/vtd: enable USB device assignment Tiejun Chen
2015-07-07 6:17 ` [v5][PATCH 15/16] xen/vtd: prevent from assign the device with shared rmrr Tiejun Chen
2015-07-07 6:17 ` [v5][PATCH 16/16] tools: parse to enable new rdm policy parameters Tiejun Chen
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=559BD9BC.7070203@intel.com \
--to=tiejun.chen@intel.com \
--cc=Ian.Jackson@eu.citrix.com \
--cc=ian.campbell@citrix.com \
--cc=stefano.stabellini@eu.citrix.com \
--cc=wei.liu2@citrix.com \
--cc=xen-devel@lists.xen.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).