@@ -1979,9 +1979,6 @@ typedef struct libxl__qmp_handler libxl__qmp_handler;
*/
_hidden libxl__qmp_handler *libxl__qmp_initialize(libxl__gc *gc,
uint32_t domid);
-_hidden int libxl__qmp_run_command_flexarray(libxl__gc *gc, int domid,
- const char *cmd,
- flexarray_t *array);
_hidden int libxl__qmp_pci_add(libxl__gc *gc, int d, libxl_device_pci *pcidev);
_hidden int libxl__qmp_pci_del(libxl__gc *gc, int domid,
libxl_device_pci *pcidev);
@@ -833,22 +833,6 @@ static int qmp_run_command(libxl__gc *gc, int domid,
return rc;
}
-int libxl__qmp_run_command_flexarray(libxl__gc *gc, int domid,
- const char *cmd, flexarray_t *array)
-{
- libxl__json_object *args = NULL;
- int i;
- void *name, *value;
-
- for (i = 0; i < array->count; i += 2) {
- flexarray_get(array, i, &name);
- flexarray_get(array, i + 1, &value);
- libxl__qmp_param_add_string(gc, &args, (char *)name, (char *)value);
- }
-
- return qmp_run_command(gc, domid, cmd, args, NULL, NULL);
-}
-
int libxl__qmp_pci_add(libxl__gc *gc, int domid, libxl_device_pci *pcidev)
{
libxl__qmp_handler *qmp = NULL;
There are no more users. Signed-off-by: Anthony PERARD <anthony.perard@citrix.com> --- tools/libxl/libxl_internal.h | 3 --- tools/libxl/libxl_qmp.c | 16 ---------------- 2 files changed, 19 deletions(-)