From: "Yu, Zhang" <yu.c.zhang@linux.intel.com>
To: Jan Beulich <JBeulich@suse.com>
Cc: kevin.tian@intel.com, wei.liu2@citrix.com,
ian.campbell@citrix.com, stefano.stabellini@eu.citrix.com,
andrew.cooper3@citrix.com, ian.jackson@eu.citrix.com,
xen-devel@lists.xen.org, Paul.Durrant@citrix.com,
zhiyuan.lv@intel.com, keir@xen.org
Subject: Re: [PATCH v2 3/3] tools: introduce parameter max_wp_ram_ranges.
Date: Tue, 26 Jan 2016 15:32:44 +0800 [thread overview]
Message-ID: <56A7211C.5040204@linux.intel.com> (raw)
In-Reply-To: <56A1EFEE02000078000C9E1E@prv-mh.provo.novell.com>
Thank you, Jan.
On 1/22/2016 4:01 PM, Jan Beulich wrote:
>>>> On 22.01.16 at 04:20, <yu.c.zhang@linux.intel.com> wrote:
>> --- a/xen/arch/x86/hvm/hvm.c
>> +++ b/xen/arch/x86/hvm/hvm.c
>> @@ -940,6 +940,10 @@ static int hvm_ioreq_server_alloc_rangesets(struct
>> hvm_ioreq_server *s,
>> {
>> unsigned int i;
>> int rc;
>> + unsigned int max_wp_ram_ranges =
>> + ( s->domain->arch.hvm_domain.params[HVM_PARAM_MAX_WP_RAM_RANGES] > 0 ) ?
>> + s->domain->arch.hvm_domain.params[HVM_PARAM_MAX_WP_RAM_RANGES] :
>> + MAX_NR_IO_RANGES;
>
> Besides this having stray blanks inside the parentheses it truncates
> the value from 64 to 32 bits and would benefit from using the gcc
> extension of omitting the middle operand of ?:. But even better
> would imo be if you avoided the local variable and ...
>
After second thought, how about we define a default value for this
parameter in libx.h, and initialize the parameter when creating the
domain with default value if it's not configured.
About this local variable, we keep it, and ...
>> @@ -962,7 +966,10 @@ static int hvm_ioreq_server_alloc_rangesets(struct hvm_ioreq_server *s,
>> if ( !s->range[i] )
>> goto fail;
>>
>> - rangeset_limit(s->range[i], MAX_NR_IO_RANGES);
>> + if ( i == HVMOP_IO_RANGE_WP_MEM )
>> + rangeset_limit(s->range[i], max_wp_ram_ranges);
>> + else
>> + rangeset_limit(s->range[i], MAX_NR_IO_RANGES);
>
> ... did the entire computation here, using ?: for the second argument
> of the function invocation.
>
... replace the if/else pair with sth. like:
rangeset_limit(s->range[i],
((i == HVMOP_IO_RANGE_WP_MEM)?
max_wp_ram_ranges:
MAX_NR_IO_RANGES));
This 'max_wp_ram_ranges' has no particular usages, but the string
"s->domain->arch.hvm_domain.params[HVM_PARAM_MAX_WP_RAM_RANGES] "
is too lengthy, and can easily break the 80 column limitation. :)
Does this approach sounds OK? :)
>> @@ -6009,6 +6016,7 @@ static int hvm_allow_set_param(struct domain *d,
>> case HVM_PARAM_IOREQ_SERVER_PFN:
>> case HVM_PARAM_NR_IOREQ_SERVER_PAGES:
>> case HVM_PARAM_ALTP2M:
>> + case HVM_PARAM_MAX_WP_RAM_RANGES:
>> if ( value != 0 && a->value != value )
>> rc = -EEXIST;
>> break;
>
> Is there a particular reason you want this limit to be unchangeable
> after having got set once?
>
Well, not exactly. :)
I added this limit because by now we do not have any approach to
change the max range numbers inside ioreq server during run-time.
I can add another patch to introduce an xl command, which can change
it dynamically. But I doubt the necessity of this new command and
am also wonder if this new command would cause more confusion for
the user...
> Jan
>
>
B.R.
Yu
> _______________________________________________
> Xen-devel mailing list
> Xen-devel@lists.xen.org
> http://lists.xen.org/xen-devel
>
next prev parent reply other threads:[~2016-01-26 7:32 UTC|newest]
Thread overview: 23+ messages / expand[flat|nested] mbox.gz Atom feed top
2016-01-22 3:20 [PATCH v11 0/3] Refactor ioreq server for better performance Yu Zhang
2016-01-22 3:20 ` [PATCH v11 1/3] Refactor rangeset structure " Yu Zhang
2016-01-22 3:20 ` [PATCH v11 2/3] Differentiate IO/mem resources tracked by ioreq server Yu Zhang
2016-01-22 11:43 ` Jan Beulich
2016-01-26 7:59 ` Yu, Zhang
2016-01-26 11:24 ` Jan Beulich
2016-01-27 7:02 ` Yu, Zhang
2016-01-27 10:28 ` Jan Beulich
2016-01-22 3:20 ` [PATCH v2 3/3] tools: introduce parameter max_wp_ram_ranges Yu Zhang
2016-01-22 8:01 ` Jan Beulich
2016-01-26 7:32 ` Yu, Zhang [this message]
2016-01-26 11:00 ` Jan Beulich
2016-01-27 7:01 ` Yu, Zhang
2016-01-27 10:27 ` Jan Beulich
2016-01-27 14:13 ` Yu, Zhang
2016-01-27 14:32 ` Jan Beulich
2016-01-27 14:56 ` Yu, Zhang
2016-01-27 15:12 ` Jan Beulich
2016-01-27 15:23 ` Yu, Zhang
2016-01-27 15:58 ` Jan Beulich
2016-01-27 16:12 ` Yu, Zhang
2016-01-26 11:16 ` David Vrabel
2016-01-27 7:03 ` Yu, Zhang
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=56A7211C.5040204@linux.intel.com \
--to=yu.c.zhang@linux.intel.com \
--cc=JBeulich@suse.com \
--cc=Paul.Durrant@citrix.com \
--cc=andrew.cooper3@citrix.com \
--cc=ian.campbell@citrix.com \
--cc=ian.jackson@eu.citrix.com \
--cc=keir@xen.org \
--cc=kevin.tian@intel.com \
--cc=stefano.stabellini@eu.citrix.com \
--cc=wei.liu2@citrix.com \
--cc=xen-devel@lists.xen.org \
--cc=zhiyuan.lv@intel.com \
/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).