From: Don Slutz <dslutz@verizon.com>
To: Stefano Stabellini <stefano.stabellini@eu.citrix.com>,
qemu-devel@nongnu.org
Cc: xen-devel@lists.xensource.com,
Ian Campbell <Ian.Campbell@citrix.com>,
dslutz@verizon.com, Paul Durrant <paul.durrant@citrix.com>
Subject: Re: [Qemu-devel] [PATCH v2] fix QEMU build on Xen/ARM
Date: Fri, 23 Jan 2015 13:36:32 -0500 [thread overview]
Message-ID: <54C294B0.20505@terremark.com> (raw)
In-Reply-To: <alpine.DEB.2.02.1501231216580.18131@kaball.uk.xensource.com>
On 01/23/15 07:19, Stefano Stabellini wrote:
> xen_get_vmport_regs_pfn should take a xen_pfn_t argument, not an
> unsigned long argument (in fact xen_pfn_t is defined as uint64_t on
> ARM).
>
> Also use xc_hvm_param_get instead of the deprecated xc_get_hvm_param.
>
> Signed-off-by: Stefano Stabellini <stefano.stabellini@eu.citrix.com>
>
> ---
>
I have tested this on x86_64 with a xen that has
HVM_PARAM_VMPORT_REGS_PFN defined.
And the change looks good to me, so
Reviewed-by: Don Slutz <dslutz@verizon.com>
-Don Slutz
> Changes in v2:
> - properly handle return codes and set *vmport_regs_pfn before returning.
>
> diff --git a/include/hw/xen/xen_common.h b/include/hw/xen/xen_common.h
> index 519696f..38f29fb 100644
> --- a/include/hw/xen/xen_common.h
> +++ b/include/hw/xen/xen_common.h
> @@ -168,14 +168,19 @@ void xen_shutdown_fatal_error(const char *fmt, ...) GCC_FMT_ATTR(1, 2);
>
> #ifdef HVM_PARAM_VMPORT_REGS_PFN
> static inline int xen_get_vmport_regs_pfn(XenXC xc, domid_t dom,
> - unsigned long *vmport_regs_pfn)
> + xen_pfn_t *vmport_regs_pfn)
> {
> - return xc_get_hvm_param(xc, dom, HVM_PARAM_VMPORT_REGS_PFN,
> - vmport_regs_pfn);
> + int rc;
> + uint64_t value;
> + rc = xc_hvm_param_get(xc, dom, HVM_PARAM_VMPORT_REGS_PFN, &value);
> + if (rc >= 0) {
> + *vmport_regs_pfn = (xen_pfn_t) value;
> + }
> + return rc;
> }
> #else
> static inline int xen_get_vmport_regs_pfn(XenXC xc, domid_t dom,
> - unsigned long *vmport_regs_pfn)
> + xen_pfn_t *vmport_regs_pfn)
> {
> return -ENOSYS;
> }
>
WARNING: multiple messages have this Message-ID (diff)
From: Don Slutz <dslutz@verizon.com>
To: Stefano Stabellini <stefano.stabellini@eu.citrix.com>,
qemu-devel@nongnu.org
Cc: xen-devel@lists.xensource.com,
Ian Campbell <Ian.Campbell@citrix.com>,
dslutz@verizon.com, Paul Durrant <paul.durrant@citrix.com>
Subject: Re: [PATCH v2] fix QEMU build on Xen/ARM
Date: Fri, 23 Jan 2015 13:36:32 -0500 [thread overview]
Message-ID: <54C294B0.20505@terremark.com> (raw)
In-Reply-To: <alpine.DEB.2.02.1501231216580.18131@kaball.uk.xensource.com>
On 01/23/15 07:19, Stefano Stabellini wrote:
> xen_get_vmport_regs_pfn should take a xen_pfn_t argument, not an
> unsigned long argument (in fact xen_pfn_t is defined as uint64_t on
> ARM).
>
> Also use xc_hvm_param_get instead of the deprecated xc_get_hvm_param.
>
> Signed-off-by: Stefano Stabellini <stefano.stabellini@eu.citrix.com>
>
> ---
>
I have tested this on x86_64 with a xen that has
HVM_PARAM_VMPORT_REGS_PFN defined.
And the change looks good to me, so
Reviewed-by: Don Slutz <dslutz@verizon.com>
-Don Slutz
> Changes in v2:
> - properly handle return codes and set *vmport_regs_pfn before returning.
>
> diff --git a/include/hw/xen/xen_common.h b/include/hw/xen/xen_common.h
> index 519696f..38f29fb 100644
> --- a/include/hw/xen/xen_common.h
> +++ b/include/hw/xen/xen_common.h
> @@ -168,14 +168,19 @@ void xen_shutdown_fatal_error(const char *fmt, ...) GCC_FMT_ATTR(1, 2);
>
> #ifdef HVM_PARAM_VMPORT_REGS_PFN
> static inline int xen_get_vmport_regs_pfn(XenXC xc, domid_t dom,
> - unsigned long *vmport_regs_pfn)
> + xen_pfn_t *vmport_regs_pfn)
> {
> - return xc_get_hvm_param(xc, dom, HVM_PARAM_VMPORT_REGS_PFN,
> - vmport_regs_pfn);
> + int rc;
> + uint64_t value;
> + rc = xc_hvm_param_get(xc, dom, HVM_PARAM_VMPORT_REGS_PFN, &value);
> + if (rc >= 0) {
> + *vmport_regs_pfn = (xen_pfn_t) value;
> + }
> + return rc;
> }
> #else
> static inline int xen_get_vmport_regs_pfn(XenXC xc, domid_t dom,
> - unsigned long *vmport_regs_pfn)
> + xen_pfn_t *vmport_regs_pfn)
> {
> return -ENOSYS;
> }
>
next prev parent reply other threads:[~2015-01-23 18:36 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-01-23 12:19 [Qemu-devel] [PATCH v2] fix QEMU build on Xen/ARM Stefano Stabellini
2015-01-23 12:19 ` Stefano Stabellini
2015-01-23 18:36 ` Don Slutz [this message]
2015-01-23 18:36 ` Don Slutz
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=54C294B0.20505@terremark.com \
--to=dslutz@verizon.com \
--cc=Ian.Campbell@citrix.com \
--cc=paul.durrant@citrix.com \
--cc=qemu-devel@nongnu.org \
--cc=stefano.stabellini@eu.citrix.com \
--cc=xen-devel@lists.xensource.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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.