From 26609dab56fd64b07ccc0cfd7080dc37665fbdc1 Mon Sep 17 00:00:00 2001 From: Roger Pau Monne Date: Wed, 2 Oct 2013 11:24:24 +0200 Subject: [PATCH] libxl: remove unneeded libxl_domain_info in wait_device_connection MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit 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 --- tools/libxl/libxl_device.c | 10 ---------- 1 file changed, 10 deletions(-) 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; } -- 2.30.2