xen-devel.lists.xenproject.org archive mirror
 help / color / mirror / Atom feed
From: Paul Durrant <Paul.Durrant@citrix.com>
To: 'Jan Beulich' <JBeulich@suse.com>,
	Roger Pau Monne <roger.pau@citrix.com>,
	Juergen Gross <jgross@suse.com>
Cc: "xen-devel@lists.xen.org" <xen-devel@lists.xen.org>
Subject: Re: [PATCH v4 08/12] x86/hvm/ioreq: maintain an array of ioreq servers rather than a list
Date: Fri, 8 Sep 2017 08:32:18 +0000	[thread overview]
Message-ID: <39e3c03938f54c4fa14a817182713520@AMSPEX02CL03.citrite.net> (raw)
In-Reply-To: <59B17EEF02000078001787B5@prv-mh.provo.novell.com>

> -----Original Message-----
> From: Jan Beulich [mailto:JBeulich@suse.com]
> Sent: 07 September 2017 16:17
> To: Roger Pau Monne <roger.pau@citrix.com>; Juergen Gross
> <jgross@suse.com>
> Cc: Paul Durrant <Paul.Durrant@citrix.com>; xen-devel@lists.xen.org
> Subject: Re: [Xen-devel] [PATCH v4 08/12] x86/hvm/ioreq: maintain an array
> of ioreq servers rather than a list
> 
> >>> On 07.09.17 at 16:51, <jgross@suse.com> wrote:
> > On 07/09/17 16:41, Roger Pau Monné wrote:
> >> On Tue, Sep 05, 2017 at 12:37:12PM +0100, Paul Durrant wrote:
> >>> A subsequent patch will remove the current implicit limitation on
> creation
> >>> of ioreq servers which is due to the allocation of gfns for the ioreq
> >>> structures and buffered ioreq ring.
> >>>
> >>> It will therefore be necessary to introduce an explicit limit and, since
> >>> this limit should be small, it simplifies the code to maintain an array of
> >>> that size rather than using a list.
> >>>
> >>> Also, by reserving an array slot for the default server and populating
> >>> array slots early in create, the need to pass an 'is_default' boolean
> >>> to sub-functions can be avoided.
> >>>
> >>> Signed-off-by: Paul Durrant <paul.durrant@citrix.com>
> >>
> >> LGTM, just a couple of nitpicks, I think they can be fixed upon commit
> >> if desired.
> >>
> >> Reviewed-by: Roger Pau Monné <roger.pau@citrix.com>
> >>
> >>> ---
> >>> Cc: Jan Beulich <jbeulich@suse.com>
> >>> Cc: Andrew Cooper <andrew.cooper3@citrix.com>
> >>>
> >>> v4:
> >>>  - Introduced more helper macros and relocated them to the top of the
> >>>    code.
> >>>
> >>> v3:
> >>>  - New patch (replacing "move is_default into struct hvm_ioreq_server")
> in
> >>>    response to review comments.
> >>> ---
> >>>  xen/arch/x86/hvm/ioreq.c         | 491
> > ++++++++++++++++++---------------------
> >>>  xen/include/asm-x86/hvm/domain.h |  11 +-
> >>>  2 files changed, 235 insertions(+), 267 deletions(-)
> >>>
> >>> diff --git a/xen/arch/x86/hvm/ioreq.c b/xen/arch/x86/hvm/ioreq.c
> >>> index f2e0b3f74a..287572bd1f 100644
> >>> --- a/xen/arch/x86/hvm/ioreq.c
> >>> +++ b/xen/arch/x86/hvm/ioreq.c
> >>> @@ -33,6 +33,22 @@
> >>>
> >>>  #include <public/hvm/ioreq.h>
> >>>
> >>> +#define SET_IOREQ_SERVER(d, id, s) \
> >>> +    (d)->arch.hvm_domain.ioreq_server.server[id] = (s)
> >>
> >> Are the parentheses around s required?
> >>
> >>> +
> >>> +#define GET_IOREQ_SERVER(d, id) \
> >>> +    (((id) < MAX_NR_IOREQ_SERVERS) ? \
> >>> +     (d)->arch.hvm_domain.ioreq_server.server[id] : \
> >>> +     NULL)
> >>> +
> >>> +#define FOR_EACH_IOREQ_SERVER(d, id, s) \
> >>> +    for ( (id) = 0, (s) = GET_IOREQ_SERVER((d), (id)); \
> >>> +          (id) < MAX_NR_IOREQ_SERVERS; \
> >>> +          (id)++, (s) = GET_IOREQ_SERVER((d), (id)) )
> >>
> >> Same here about the parentheses around s, d and id in the
> >> GET_IOREQ_SERVER calls. In fact you could compact the afterthought as:
> >>
> >> s = GET_IOREQ_SERVER(d, ++(id))
> >
> > Uuh, this would be wrong: id is used twice in GET_IOREQ_SERVER(), so it
> > would be incremented twice...

Ouch! Thanks for spotting that.

> 
> Which suggests that GET_IOREQ_SERVER() might better use a local
> variable.

I'll turn it into a function.

  Paul

> 
> Btw, somewhere on the path here Paul and Roger have got dropped
> from the list of recipients...
> 
> Jan
_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xen.org
https://lists.xen.org/xen-devel

  reply	other threads:[~2017-09-08  8:32 UTC|newest]

Thread overview: 46+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2017-09-05 11:37 [PATCH v4 00/12] x86: guest resource mapping Paul Durrant
2017-09-05 11:37 ` [PATCH v4 01/12] x86/mm: allow a privileged PV domain to map guest mfns Paul Durrant
2017-09-07 11:02   ` Wei Liu
2017-09-07 11:05     ` Paul Durrant
2017-09-07 11:09       ` Wei Liu
2017-09-07 11:19     ` Andrew Cooper
2017-09-05 11:37 ` [PATCH v4 02/12] x86/mm: add HYPERVISOR_memory_op to acquire guest resources Paul Durrant
2017-09-07 11:10   ` Wei Liu
2017-09-07 11:18     ` Paul Durrant
2017-09-07 11:36       ` Wei Liu
2017-09-07 11:37         ` Paul Durrant
2017-09-07 11:54         ` Jan Beulich
2017-09-05 11:37 ` [PATCH v4 03/12] tools/libxenforeignmemory: add support for resource mapping Paul Durrant
2017-09-07 11:48   ` Wei Liu
2017-09-05 11:37 ` [PATCH v4 04/12] tools/libxenforeignmemory: reduce xenforeignmemory_restrict code footprint Paul Durrant
2017-09-07 11:48   ` Wei Liu
2017-09-05 11:37 ` [PATCH v4 05/12] tools/libxenctrl: use new xenforeignmemory API to seed grant table Paul Durrant
2017-09-07 11:49   ` Wei Liu
2017-09-05 11:37 ` [PATCH v4 06/12] x86/hvm/ioreq: rename .*pfn and .*gmfn to .*gfn Paul Durrant
2017-09-05 11:37 ` [PATCH v4 07/12] x86/hvm/ioreq: use bool rather than bool_t Paul Durrant
2017-09-07 11:10   ` Wei Liu
2017-09-05 11:37 ` [PATCH v4 08/12] x86/hvm/ioreq: maintain an array of ioreq servers rather than a list Paul Durrant
2017-09-07 11:40   ` Wei Liu
2017-09-07 14:41   ` Roger Pau Monné
2017-09-07 14:51     ` Juergen Gross
2017-09-07 14:57       ` Roger Pau Monné
2017-09-07 15:16       ` Jan Beulich
2017-09-08  8:32         ` Paul Durrant [this message]
2017-09-05 11:37 ` [PATCH v4 09/12] x86/hvm/ioreq: simplify code and use consistent naming Paul Durrant
2017-09-07 11:45   ` Wei Liu
2017-09-05 11:37 ` [PATCH v4 10/12] x86/hvm/ioreq: use gfn_t in struct hvm_ioreq_page Paul Durrant
2017-09-07 11:45   ` Wei Liu
2017-09-05 11:37 ` [PATCH v4 11/12] x86/hvm/ioreq: defer mapping gfns until they are actually requsted Paul Durrant
2017-09-07 12:00   ` Wei Liu
2017-09-07 12:03     ` Paul Durrant
2017-09-07 12:16       ` Wei Liu
2017-09-07 12:29         ` Paul Durrant
2017-09-07 14:22           ` Wei Liu
2017-09-08  8:34             ` Paul Durrant
2017-09-05 11:37 ` [PATCH v4 12/12] x86/hvm/ioreq: add a new mappable resource type Paul Durrant
2017-09-07 14:51   ` Wei Liu
2017-09-08  8:28     ` Paul Durrant
2017-09-07 14:56   ` Roger Pau Monné
2017-09-07 14:59     ` Wei Liu
2017-09-07 15:23       ` Roger Pau Monné
2017-09-08  8:29         ` Paul Durrant

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=39e3c03938f54c4fa14a817182713520@AMSPEX02CL03.citrite.net \
    --to=paul.durrant@citrix.com \
    --cc=JBeulich@suse.com \
    --cc=jgross@suse.com \
    --cc=roger.pau@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).