]> xenbits.xensource.com Git - xen.git/commitdiff
libxl: remove now unnecessary gc from libxl__async_exec_start calls
authorWen Congyang <wency@cn.fujitsu.com>
Tue, 30 Jun 2015 08:55:32 +0000 (16:55 +0800)
committerIan Jackson <Ian.Jackson@eu.citrix.com>
Tue, 30 Jun 2015 09:16:07 +0000 (10:16 +0100)
These were removed in commit f5f8400f.

Signed-off-by: Wen Congyang <wency@cn.fujitsu.com>
Acked-by: Ian Jackson <ian.jackson@eu.citrix.com>
tools/libxl/libxl_netbuffer.c

index ff2d6c73e7fcbc9a267ee8a4572c370d2b205806..107e8675d39ff115e1f0298a363b74fedc1b1ce1 100644 (file)
@@ -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;