aboutsummaryrefslogtreecommitdiffstats
path: root/tools/ocaml
diff options
context:
space:
mode:
authorIan Jackson <ian.jackson@eu.citrix.com>2012-01-27 17:01:26 +0000
committerIan Jackson <ian.jackson@eu.citrix.com>2012-01-27 17:01:26 +0000
commit43e5afa7c827eb1ccf1c6ebae9b4f5e0c5cc468b (patch)
tree7e87f99a5cd0c5c7c2632b4f2682db3c071f26ac /tools/ocaml
parenta057e090a1bc8090e347d4918cc516d082b6ed3f (diff)
downloadxen-43e5afa7c827eb1ccf1c6ebae9b4f5e0c5cc468b.tar.gz
xen-43e5afa7c827eb1ccf1c6ebae9b4f5e0c5cc468b.tar.bz2
xen-43e5afa7c827eb1ccf1c6ebae9b4f5e0c5cc468b.zip
libxl: Convert to asynchronous: device removal
Convert libxl_FOO_device_remove, and the function which does the bulk of the work, libxl__device_remove, to the new async ops scheme. Adjust all callers. Also remove libxl__wait_for_device_state which is now obsolete. Signed-off-by: Ian Jackson <ian.jackson@eu.citrix.com> Acked-by: Ian Campbell <ian.campbell@citrix.com> Committed-by: Ian Jackson <Ian.Jackson@eu.citrix.com>
Diffstat (limited to 'tools/ocaml')
-rw-r--r--tools/ocaml/libs/xl/xenlight_stubs.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/tools/ocaml/libs/xl/xenlight_stubs.c b/tools/ocaml/libs/xl/xenlight_stubs.c
index 0944c5696f..59329f184f 100644
--- a/tools/ocaml/libs/xl/xenlight_stubs.c
+++ b/tools/ocaml/libs/xl/xenlight_stubs.c
@@ -247,7 +247,7 @@ value stub_xl_device_disk_del(value info, value domid)
device_disk_val(&gc, &lg, &c_info, info);
INIT_CTX();
- ret = libxl_device_disk_remove(ctx, Int_val(domid), &c_info);
+ ret = libxl_device_disk_remove(ctx, Int_val(domid), &c_info, 0);
if (ret != 0)
failwith_xl("disk_del", &lg);
FREE_CTX();
@@ -281,7 +281,7 @@ value stub_xl_device_nic_del(value info, value domid)
device_nic_val(&gc, &lg, &c_info, info);
INIT_CTX();
- ret = libxl_device_nic_remove(ctx, Int_val(domid), &c_info);
+ ret = libxl_device_nic_remove(ctx, Int_val(domid), &c_info, 0);
if (ret != 0)
failwith_xl("nic_del", &lg);
FREE_CTX();
@@ -316,7 +316,7 @@ value stub_xl_device_vkb_remove(value info, value domid)
device_vkb_val(&gc, &lg, &c_info, info);
INIT_CTX();
- ret = libxl_device_vkb_remove(ctx, Int_val(domid), &c_info);
+ ret = libxl_device_vkb_remove(ctx, Int_val(domid), &c_info, 0);
if (ret != 0)
failwith_xl("vkb_clean_shutdown", &lg);
FREE_CTX();
@@ -370,7 +370,7 @@ value stub_xl_device_vfb_remove(value info, value domid)
device_vfb_val(&gc, &lg, &c_info, info);
INIT_CTX();
- ret = libxl_device_vfb_remove(ctx, Int_val(domid), &c_info);
+ ret = libxl_device_vfb_remove(ctx, Int_val(domid), &c_info, 0);
if (ret != 0)
failwith_xl("vfb_clean_shutdown", &lg);
FREE_CTX();