diff --git a/net.c b/net.c index 6edeee81da80fb19dddb0fc2575a756a80f3a448..c581dcc087b7c3fc1dea82b02ea9cbb64fa7faba 100644 --- a/net.c +++ b/net.c @@ -1597,7 +1597,7 @@ int net_client_init(const char *device, const char *p) name = NULL; nb_nics++; vlan->nb_guest_devs++; - ret = 0; + ret = idx; } else if (!strcmp(device, "none")) { /* does nothing. It is needed to signal that no network cards diff --git a/sysemu.h b/sysemu.h index 9b993433689c9b69f4d78c6d31db494a4d82a529..2cd16b1f605810cfe491545d261f688627791108 100644 --- a/sysemu.h +++ b/sysemu.h @@ -163,6 +163,9 @@ struct drive_opt { extern struct drive_opt drives_opt[MAX_DRIVES]; extern int nb_drives_opt; +extern int drive_add(const char *file, const char *fmt, ...); +extern int drive_init(struct drive_opt *arg, int snapshot, void *machine); + /* serial ports */ #define MAX_SERIAL_PORTS 4 diff --git a/vl.c b/vl.c index 7b51b54b9e87dc43534c36580e7898d2b79fb7a2..ba1e643573149065cab260638bcd5eb323472be5 100644 --- a/vl.c +++ b/vl.c @@ -2158,14 +2158,14 @@ static int drive_get_free_idx(void) return -1; } -static int drive_add(const char *file, const char *fmt, ...) +int drive_add(const char *file, const char *fmt, ...) { va_list ap; int index = drive_opt_get_free_idx(); if (nb_drives_opt >= MAX_DRIVES || index == -1) { fprintf(stderr, "qemu: too many drives\n"); - exit(1); + return -1; } drives_opt[index].file = file; @@ -2255,8 +2255,7 @@ void drive_uninit(BlockDriverState *bdrv) } } -static int drive_init(struct drive_opt *arg, int snapshot, - QEMUMachine *machine) +int drive_init(struct drive_opt *arg, int snapshot, void *opaque) { char buf[128]; char file[1024]; @@ -2269,6 +2268,7 @@ static int drive_init(struct drive_opt *arg, int snapshot, int cyls, heads, secs, translation; BlockDriverState *bdrv; BlockDriver *drv = NULL; + QEMUMachine *machine = opaque; int max_devs; int index; int cache; @@ -2535,7 +2535,7 @@ static int drive_init(struct drive_opt *arg, int snapshot, */ if (drive_get_index(type, bus_id, unit_id) != -1) - return 0; + return -2; /* init */ @@ -2585,7 +2585,7 @@ static int drive_init(struct drive_opt *arg, int snapshot, break; } if (!file[0]) - return 0; + return -2; bdrv_flags = 0; if (snapshot) { bdrv_flags |= BDRV_O_SNAPSHOT; @@ -2602,7 +2602,7 @@ static int drive_init(struct drive_opt *arg, int snapshot, file); return -1; } - return 0; + return drives_table_idx; } /***********************************************************/