From: "Roger Pau Monné" <roger.pau@citrix.com>
To: Wei Liu <wei.liu2@citrix.com>
Cc: Andrew Cooper <andrew.cooper3@citrix.com>,
Julien Grall <julien.grall@arm.com>,
Ian Jackson <Ian.Jackson@eu.citrix.com>,
Xen-devel <xen-devel@lists.xen.org>
Subject: Re: [PATCH for-4.10 1/5] tools/dombuilder: Drop more PVH v1 leftovers
Date: Fri, 6 Oct 2017 10:40:36 +0100 [thread overview]
Message-ID: <20171006094036.zadv2erseucj3csw@MacBook-Pro-de-Roger.local> (raw)
In-Reply-To: <20171006093352.zez5nczv2fht3g7g@citrix.com>
On Fri, Oct 06, 2017 at 09:33:52AM +0000, Wei Liu wrote:
> On Fri, Oct 06, 2017 at 10:26:03AM +0100, Roger Pau Monné wrote:
> > On Thu, Oct 05, 2017 at 06:23:39PM +0000, Andrew Cooper wrote:
> > > alloc_magic_pages() is renamed to alloc_magic_pages_pv() to mirror its
> > > alloc_magic_pages_hvm() counterpart. Delete a redundant comment, introduce
> > > some newlines clarity, and remove a logically dead allocation of shared info.
> > >
> > > Signed-off-by: Andrew Cooper <andrew.cooper3@citrix.com>
> >
> > Reviewed-by: Roger Pau Monné <roger.pau@citrix.com>
> >
> > > ---
> > > CC: Ian Jackson <Ian.Jackson@eu.citrix.com>
> > > CC: Wei Liu <wei.liu2@citrix.com>
> > > CC: Julien Grall <julien.grall@arm.com>
> > > ---
> > > tools/libxc/xc_dom_x86.c | 16 ++++++----------
> > > 1 file changed, 6 insertions(+), 10 deletions(-)
> > >
> > > diff --git a/tools/libxc/xc_dom_x86.c b/tools/libxc/xc_dom_x86.c
> > > index cb68efc..885ca1b 100644
> > > --- a/tools/libxc/xc_dom_x86.c
> > > +++ b/tools/libxc/xc_dom_x86.c
> > > @@ -534,24 +534,20 @@ static int alloc_p2m_list_x86_64(struct xc_dom_image *dom)
> > >
> > > /* ------------------------------------------------------------------------ */
> > >
> > > -static int alloc_magic_pages(struct xc_dom_image *dom)
> > > +static int alloc_magic_pages_pv(struct xc_dom_image *dom)
> > > {
> > > - /* allocate special pages */
> > > dom->start_info_pfn = xc_dom_alloc_page(dom, "start info");
> > > if ( dom->start_info_pfn == INVALID_PFN )
> > > return -1;
> >
> > Maybe those errors paths should set errno = ENOMEM?
>
> I believe the actual allocation function already does that.
Doesn't seem like xc_dom_alloc_page or xc_dom_chk_alloc_pages set
errno at all (or I'm not able to find it), but in any case it should
be set there rather than here. libxc is a disaster in this regard I'm
afraid.
Roger.
_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xen.org
https://lists.xen.org/xen-devel
next prev parent reply other threads:[~2017-10-06 9:40 UTC|newest]
Thread overview: 30+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-10-05 18:23 [PATCH for-4.10 0/5] tools/dombuilder: Fixes and improvements to grant handling Andrew Cooper
2017-10-05 18:23 ` [PATCH for-4.10 1/5] tools/dombuilder: Drop more PVH v1 leftovers Andrew Cooper
2017-10-06 9:26 ` Roger Pau Monné
2017-10-06 9:33 ` Wei Liu
2017-10-06 9:40 ` Roger Pau Monné [this message]
2017-10-06 10:06 ` Wei Liu
2017-10-06 9:33 ` Wei Liu
2017-10-05 18:23 ` [PATCH for-4.10 2/5] tools/dombuilder: Remove clear_page() from xc_dom_boot.c Andrew Cooper
2017-10-06 9:35 ` Roger Pau Monné
2017-10-06 9:51 ` Andrew Cooper
2017-10-06 17:28 ` Wei Liu
2017-10-05 18:23 ` [PATCH for-4.10 3/5] tools/dombuilder: Switch to using gfn terminology for console and xenstore rings Andrew Cooper
2017-10-06 9:57 ` Roger Pau Monné
2017-10-06 10:03 ` Andrew Cooper
2017-10-06 10:36 ` Roger Pau Monné
2017-10-06 14:48 ` Julien Grall
2017-10-06 17:35 ` Roger Pau Monné
2017-10-06 17:34 ` Wei Liu
2017-10-05 18:23 ` [PATCH for-4.10 4/5] tools/dombuilder: Fix asymetry when setting up " Andrew Cooper
2017-10-06 17:36 ` Wei Liu
2017-10-05 18:23 ` [PATCH for-4.10 4/5] tools/dombuilder: Fix asymmetry " Andrew Cooper
2017-10-06 10:17 ` Roger Pau Monné
2017-10-06 10:27 ` Andrew Cooper
2017-10-05 18:23 ` [PATCH for-4.10 5/5] tools/dombuilder: Prevent failures of xc_dom_gnttab_init() Andrew Cooper
2017-10-06 10:30 ` Roger Pau Monné
2017-10-06 18:04 ` Andrew Cooper
2017-10-09 15:33 ` Wei Liu
2017-10-06 17:39 ` Wei Liu
2017-10-06 18:22 ` Andrew Cooper
2017-10-09 11:03 ` [PATCH for-4.10 0/5] tools/dombuilder: Fixes and improvements to grant handling Julien Grall
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=20171006094036.zadv2erseucj3csw@MacBook-Pro-de-Roger.local \
--to=roger.pau@citrix.com \
--cc=Ian.Jackson@eu.citrix.com \
--cc=andrew.cooper3@citrix.com \
--cc=julien.grall@arm.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).