From: "Roger Pau Monné" <roger.pau@citrix.com>
To: George Dunlap <george.dunlap@eu.citrix.com>
Cc: Ian Jackson <Ian.Jackson@eu.citrix.com>,
Ian Campbell <Ian.Campbell@citrix.com>,
"xen-devel@lists.xen.org" <xen-devel@lists.xen.org>
Subject: Re: [PATCH 1/2] libxl: Introduce functions to add and remove host USB devices to an HVM guest
Date: Tue, 19 Mar 2013 14:14:42 +0100 [thread overview]
Message-ID: <514864C2.8060603@citrix.com> (raw)
In-Reply-To: <1363694970-17267-1-git-send-email-george.dunlap@eu.citrix.com>
On 19/03/13 13:09, George Dunlap wrote:
> This uses the qmp functionality, and is thus only available for qemu-xen,
> not qemu-traditional.
>
> Devices must be removed by "id", an identifying string, which must be
> specified when the device is created. The caller can either pass one
> in to request; if none is passed in, then libxl will choose one and pass
> it back to the caller.
>
> qemu will reject duplicate ids. There is a small possibility that the
> libxl-chosen id my collide with a previously created one, in which
> case the add will fail. It would be nice if the library could
> automatically modify it until it found a unique one, but at the moment
> qmp_run_command() doesn't return which error the command failed by, so
> the caller can't tell that the command failed because of a duplicate
> id.
>
> Since it's additional work, and it's not clear that the situation can
> actually happen in practice, I'm considering it a "maybe do later".
>
> Signed-off-by: George Dunlap <george.dunlap@eu.citrix.com>
> ---
> tools/libxl/libxl.c | 85 ++++++++++++++++++++++++++++++++++++++++++
> tools/libxl/libxl.h | 32 ++++++++++++++++
> tools/libxl/libxl_internal.h | 3 ++
> tools/libxl/libxl_qmp.c | 45 ++++++++++++++++++++++
> tools/libxl/libxl_types.idl | 8 ++++
> 5 files changed, 173 insertions(+)
>
> diff --git a/tools/libxl/libxl.c b/tools/libxl/libxl.c
> index 572c2c6..34b648e 100644
> --- a/tools/libxl/libxl.c
> +++ b/tools/libxl/libxl.c
> @@ -2498,6 +2498,91 @@ out:
> return AO_INPROGRESS;
> }
>
> +int libxl_hvm_host_usb_add(libxl_ctx *ctx, uint32_t domid,
> + libxl_device_host_usb *dev)
Would it make sense to just call this function libxl_device_usb_add and
fail if guest type is not HVM?
If we later add usb support to PV guests, I would prefer to avoid having
another libxl_pv_host_usb_add or libxl_pvh_host_usb_add.
Also you should add a "const libxl_asyncop_how *ao_how", even if this is
not an async op right now, we might want to make it async in the future.
> +{
> + GC_INIT(ctx);
> + int rc, dm_ver;
> +
> + libxl_domain_type type = libxl__domain_type(gc, domid);
> + if (type == LIBXL_DOMAIN_TYPE_INVALID) {
> + rc = ERROR_FAIL;
> + goto out;
> + }
> + if (type != LIBXL_DOMAIN_TYPE_HVM) {
> + LOG(ERROR, "hvm-host-usb-add requires an HVM domain");
> + rc = ERROR_INVAL;
> + goto out;
> + }
> +
> + if (libxl_get_stubdom_id(ctx, domid) != 0) {
> + LOG(ERROR, "hvm-host-usb-add doesn't work for stub domains");
> + rc = ERROR_INVAL;
> + goto out;
> + }
> +
> + dm_ver = libxl__device_model_version_running(gc, domid);
> + if (dm_ver == -1) {
> + LOG(ERROR, "cannot determine device model version");
> + rc = ERROR_FAIL;
> + goto out;
> + }
> +
> + if (dm_ver == LIBXL_DEVICE_MODEL_VERSION_QEMU_XEN) {
> + rc = libxl__qmp_host_usb_add(gc, domid, dev);
> + } else {
> + LOG(ERROR, "hvm-host-usb-add not yet implemented for qemu-traditional");
> + rc = ERROR_FAIL;
> + }
> +
> +out:
> + GC_FREE;
> + return rc;
> +}
> +
> +int libxl_hvm_host_usb_del(libxl_ctx *ctx, uint32_t domid,
> + const char * id)
Same here, libxl_device_usb_remove will probably be a better name to
keep in sync with the current device functions, and it's also missing a
"const libxl_asyncop_how *ao_how".
Is it possible to pass a libxl_device_host_usb *dev instead of an id? So
that the function resembles to the other _remove/_destroy functions.
next prev parent reply other threads:[~2013-03-19 13:14 UTC|newest]
Thread overview: 10+ messages / expand[flat|nested] mbox.gz Atom feed top
2013-03-19 12:09 [PATCH 1/2] libxl: Introduce functions to add and remove host USB devices to an HVM guest George Dunlap
2013-03-19 12:09 ` [PATCH 2/2] xl: Add hvm-host-usb-add and hvm-host-usb-del commands George Dunlap
2013-03-19 13:14 ` Roger Pau Monné [this message]
2013-03-19 14:04 ` [PATCH 1/2] libxl: Introduce functions to add and remove host USB devices to an HVM guest George Dunlap
2013-03-19 17:55 ` Roger Pau Monné
2013-03-20 11:35 ` George Dunlap
2013-03-20 16:51 ` Ian Jackson
2013-03-20 17:50 ` George Dunlap
2013-03-20 18:26 ` Ian Jackson
2013-03-22 16:16 ` Marek Marczykowski
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=514864C2.8060603@citrix.com \
--to=roger.pau@citrix.com \
--cc=Ian.Campbell@citrix.com \
--cc=Ian.Jackson@eu.citrix.com \
--cc=george.dunlap@eu.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).