From: Wen Congyang Date: Tue, 30 Jun 2015 08:55:32 +0000 (+0800) Subject: libxl: remove now unnecessary gc from libxl__async_exec_start calls X-Git-Tag: archive/raspbian/4.8.0-1+rpi1~1^2~2981 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=c7f3416663bdffaa6b962c916740a56b216b740f;p=xen.git libxl: remove now unnecessary gc from libxl__async_exec_start calls These were removed in commit f5f8400f. Signed-off-by: Wen Congyang Acked-by: Ian Jackson --- diff --git a/tools/libxl/libxl_netbuffer.c b/tools/libxl/libxl_netbuffer.c index ff2d6c73e7..107e8675d3 100644 --- a/tools/libxl/libxl_netbuffer.c +++ b/tools/libxl/libxl_netbuffer.c @@ -310,7 +310,7 @@ static void nic_setup(libxl__egc *egc, libxl__remus_device *dev) } setup_async_exec(dev, "setup"); - rc = libxl__async_exec_start(gc, &dev->aodev.aes); + rc = libxl__async_exec_start(&dev->aodev.aes); if (rc) goto out; @@ -402,7 +402,7 @@ static void nic_teardown(libxl__egc *egc, libxl__remus_device *dev) setup_async_exec(dev, "teardown"); - rc = libxl__async_exec_start(gc, &dev->aodev.aes); + rc = libxl__async_exec_start(&dev->aodev.aes); if (rc) goto out;