From: Roger Pau Monne Date: Wed, 2 Oct 2013 09:24:24 +0000 (+0200) Subject: libxl: remove unneeded libxl_domain_info in wait_device_connection X-Git-Tag: archive/raspbian/4.8.0-1+rpi1~1^2~6067 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=26609dab56fd64b07ccc0cfd7080dc37665fbdc1;p=xen.git libxl: remove unneeded libxl_domain_info in wait_device_connection The info fetched by libxl_domain_info is not used anywere in the function. Signed-off-by: Roger Pau Monné Acked-by: Ian Campbell Acked-by: Ian Jackson --- diff --git a/tools/libxl/libxl_device.c b/tools/libxl/libxl_device.c index 16a92a4bec..2971dd354d 100644 --- a/tools/libxl/libxl_device.c +++ b/tools/libxl/libxl_device.c @@ -715,16 +715,8 @@ void libxl__wait_device_connection(libxl__egc *egc, libxl__ao_device *aodev) STATE_AO_GC(aodev->ao); char *be_path = libxl__device_backend_path(gc, aodev->dev); char *state_path = libxl__sprintf(gc, "%s/state", be_path); - libxl_dominfo info; - uint32_t domid = aodev->dev->domid; int rc = 0; - libxl_dominfo_init(&info); - rc = libxl_domain_info(CTX, &info, domid); - if (rc) { - LOG(ERROR, "unable to get info for domain %d", domid); - goto out; - } if (QEMU_BACKEND(aodev->dev)) { /* * If Qemu is not running, there's no point in waiting for @@ -746,12 +738,10 @@ void libxl__wait_device_connection(libxl__egc *egc, libxl__ao_device *aodev) goto out; } - libxl_dominfo_dispose(&info); return; out: aodev->rc = rc; - libxl_dominfo_dispose(&info); device_hotplug_done(egc, aodev); return; }