Update both files for disk io limits.
[qemu-dev-zwu.git] / blockdev.c
blobe81e0abd61575f2ee92eee1f0821fb8ccab25857
1 /*
2 * QEMU host block devices
4 * Copyright (c) 2003-2008 Fabrice Bellard
6 * This work is licensed under the terms of the GNU GPL, version 2 or
7 * later. See the COPYING file in the top-level directory.
8 */
10 #include "block.h"
11 #include "blockdev.h"
12 #include "monitor.h"
13 #include "qerror.h"
14 #include "qemu-option.h"
15 #include "qemu-config.h"
16 #include "sysemu.h"
17 #include "hw/qdev.h"
18 #include "block_int.h"
20 DriveInfo *extboot_drive = NULL;
22 static QTAILQ_HEAD(drivelist, DriveInfo) drives = QTAILQ_HEAD_INITIALIZER(drives);
24 static const char *const if_name[IF_COUNT] = {
25 [IF_NONE] = "none",
26 [IF_IDE] = "ide",
27 [IF_SCSI] = "scsi",
28 [IF_FLOPPY] = "floppy",
29 [IF_PFLASH] = "pflash",
30 [IF_MTD] = "mtd",
31 [IF_SD] = "sd",
32 [IF_VIRTIO] = "virtio",
33 [IF_XEN] = "xen",
36 static const int if_max_devs[IF_COUNT] = {
38 * Do not change these numbers! They govern how drive option
39 * index maps to unit and bus. That mapping is ABI.
41 * All controllers used to imlement if=T drives need to support
42 * if_max_devs[T] units, for any T with if_max_devs[T] != 0.
43 * Otherwise, some index values map to "impossible" bus, unit
44 * values.
46 * For instance, if you change [IF_SCSI] to 255, -drive
47 * if=scsi,index=12 no longer means bus=1,unit=5, but
48 * bus=0,unit=12. With an lsi53c895a controller (7 units max),
49 * the drive can't be set up. Regression.
51 [IF_IDE] = 2,
52 [IF_SCSI] = 7,
56 * We automatically delete the drive when a device using it gets
57 * unplugged. Questionable feature, but we can't just drop it.
58 * Device models call blockdev_mark_auto_del() to schedule the
59 * automatic deletion, and generic qdev code calls blockdev_auto_del()
60 * when deletion is actually safe.
62 void blockdev_mark_auto_del(BlockDriverState *bs)
64 DriveInfo *dinfo = drive_get_by_blockdev(bs);
66 if (dinfo) {
67 dinfo->auto_del = 1;
71 void blockdev_auto_del(BlockDriverState *bs)
73 DriveInfo *dinfo = drive_get_by_blockdev(bs);
75 if (dinfo && dinfo->auto_del) {
76 drive_put_ref(dinfo);
80 static int drive_index_to_bus_id(BlockInterfaceType type, int index)
82 int max_devs = if_max_devs[type];
83 return max_devs ? index / max_devs : 0;
86 static int drive_index_to_unit_id(BlockInterfaceType type, int index)
88 int max_devs = if_max_devs[type];
89 return max_devs ? index % max_devs : index;
92 QemuOpts *drive_def(const char *optstr)
94 return qemu_opts_parse(qemu_find_opts("drive"), optstr, 0);
97 QemuOpts *drive_add(BlockInterfaceType type, int index, const char *file,
98 const char *optstr)
100 QemuOpts *opts;
101 char buf[32];
103 opts = drive_def(optstr);
104 if (!opts) {
105 return NULL;
107 if (type != IF_DEFAULT) {
108 qemu_opt_set(opts, "if", if_name[type]);
110 if (index >= 0) {
111 snprintf(buf, sizeof(buf), "%d", index);
112 qemu_opt_set(opts, "index", buf);
114 if (file)
115 qemu_opt_set(opts, "file", file);
116 return opts;
119 DriveInfo *drive_get(BlockInterfaceType type, int bus, int unit)
121 DriveInfo *dinfo;
123 /* seek interface, bus and unit */
125 QTAILQ_FOREACH(dinfo, &drives, next) {
126 if (dinfo->type == type &&
127 dinfo->bus == bus &&
128 dinfo->unit == unit)
129 return dinfo;
132 return NULL;
135 DriveInfo *drive_get_by_index(BlockInterfaceType type, int index)
137 return drive_get(type,
138 drive_index_to_bus_id(type, index),
139 drive_index_to_unit_id(type, index));
142 int drive_get_max_bus(BlockInterfaceType type)
144 int max_bus;
145 DriveInfo *dinfo;
147 max_bus = -1;
148 QTAILQ_FOREACH(dinfo, &drives, next) {
149 if(dinfo->type == type &&
150 dinfo->bus > max_bus)
151 max_bus = dinfo->bus;
153 return max_bus;
156 /* Get a block device. This should only be used for single-drive devices
157 (e.g. SD/Floppy/MTD). Multi-disk devices (scsi/ide) should use the
158 appropriate bus. */
159 DriveInfo *drive_get_next(BlockInterfaceType type)
161 static int next_block_unit[IF_COUNT];
163 return drive_get(type, 0, next_block_unit[type]++);
166 DriveInfo *drive_get_by_blockdev(BlockDriverState *bs)
168 DriveInfo *dinfo;
170 QTAILQ_FOREACH(dinfo, &drives, next) {
171 if (dinfo->bdrv == bs) {
172 return dinfo;
175 return NULL;
178 static void bdrv_format_print(void *opaque, const char *name)
180 error_printf(" %s", name);
183 static void drive_uninit(DriveInfo *dinfo)
185 qemu_opts_del(dinfo->opts);
186 bdrv_delete(dinfo->bdrv);
187 qemu_free(dinfo->id);
188 QTAILQ_REMOVE(&drives, dinfo, next);
189 qemu_free(dinfo);
192 void drive_put_ref(DriveInfo *dinfo)
194 assert(dinfo->refcount);
195 if (--dinfo->refcount == 0) {
196 drive_uninit(dinfo);
200 void drive_get_ref(DriveInfo *dinfo)
202 dinfo->refcount++;
205 static int parse_block_error_action(const char *buf, int is_read)
207 if (!strcmp(buf, "ignore")) {
208 return BLOCK_ERR_IGNORE;
209 } else if (!is_read && !strcmp(buf, "enospc")) {
210 return BLOCK_ERR_STOP_ENOSPC;
211 } else if (!strcmp(buf, "stop")) {
212 return BLOCK_ERR_STOP_ANY;
213 } else if (!strcmp(buf, "report")) {
214 return BLOCK_ERR_REPORT;
215 } else {
216 error_report("'%s' invalid %s error action",
217 buf, is_read ? "read" : "write");
218 return -1;
222 DriveInfo *drive_init(QemuOpts *opts, int default_to_scsi)
224 const char *buf;
225 const char *file = NULL;
226 char devname[128];
227 const char *serial;
228 const char *mediastr = "";
229 BlockInterfaceType type;
230 enum { MEDIA_DISK, MEDIA_CDROM } media;
231 int bus_id, unit_id;
232 int cyls, heads, secs, translation;
233 BlockDriver *drv = NULL;
234 int max_devs;
235 int index;
236 int ro = 0;
237 int bdrv_flags = 0;
238 int on_read_error, on_write_error;
239 const char *devaddr;
240 DriveInfo *dinfo;
241 int is_extboot = 0;
242 int snapshot = 0;
243 int ret;
245 translation = BIOS_ATA_TRANSLATION_AUTO;
247 if (default_to_scsi) {
248 type = IF_SCSI;
249 pstrcpy(devname, sizeof(devname), "scsi");
250 } else {
251 type = IF_IDE;
252 pstrcpy(devname, sizeof(devname), "ide");
254 media = MEDIA_DISK;
256 /* extract parameters */
257 bus_id = qemu_opt_get_number(opts, "bus", 0);
258 unit_id = qemu_opt_get_number(opts, "unit", -1);
259 index = qemu_opt_get_number(opts, "index", -1);
261 cyls = qemu_opt_get_number(opts, "cyls", 0);
262 heads = qemu_opt_get_number(opts, "heads", 0);
263 secs = qemu_opt_get_number(opts, "secs", 0);
265 snapshot = qemu_opt_get_bool(opts, "snapshot", 0);
266 ro = qemu_opt_get_bool(opts, "readonly", 0);
268 file = qemu_opt_get(opts, "file");
269 serial = qemu_opt_get(opts, "serial");
271 if ((buf = qemu_opt_get(opts, "if")) != NULL) {
272 pstrcpy(devname, sizeof(devname), buf);
273 for (type = 0; type < IF_COUNT && strcmp(buf, if_name[type]); type++)
275 if (type == IF_COUNT) {
276 error_report("unsupported bus type '%s'", buf);
277 return NULL;
280 max_devs = if_max_devs[type];
282 if (cyls || heads || secs) {
283 if (cyls < 1 || (type == IF_IDE && cyls > 16383)) {
284 error_report("invalid physical cyls number");
285 return NULL;
287 if (heads < 1 || (type == IF_IDE && heads > 16)) {
288 error_report("invalid physical heads number");
289 return NULL;
291 if (secs < 1 || (type == IF_IDE && secs > 63)) {
292 error_report("invalid physical secs number");
293 return NULL;
297 if ((buf = qemu_opt_get(opts, "trans")) != NULL) {
298 if (!cyls) {
299 error_report("'%s' trans must be used with cyls,heads and secs",
300 buf);
301 return NULL;
303 if (!strcmp(buf, "none"))
304 translation = BIOS_ATA_TRANSLATION_NONE;
305 else if (!strcmp(buf, "lba"))
306 translation = BIOS_ATA_TRANSLATION_LBA;
307 else if (!strcmp(buf, "auto"))
308 translation = BIOS_ATA_TRANSLATION_AUTO;
309 else {
310 error_report("'%s' invalid translation type", buf);
311 return NULL;
315 if ((buf = qemu_opt_get(opts, "media")) != NULL) {
316 if (!strcmp(buf, "disk")) {
317 media = MEDIA_DISK;
318 } else if (!strcmp(buf, "cdrom")) {
319 if (cyls || secs || heads) {
320 error_report("'%s' invalid physical CHS format", buf);
321 return NULL;
323 media = MEDIA_CDROM;
324 } else {
325 error_report("'%s' invalid media", buf);
326 return NULL;
330 if ((buf = qemu_opt_get(opts, "cache")) != NULL) {
331 if (!strcmp(buf, "off") || !strcmp(buf, "none")) {
332 bdrv_flags |= BDRV_O_NOCACHE | BDRV_O_CACHE_WB;
333 } else if (!strcmp(buf, "writeback")) {
334 bdrv_flags |= BDRV_O_CACHE_WB;
335 } else if (!strcmp(buf, "unsafe")) {
336 bdrv_flags |= BDRV_O_CACHE_WB;
337 bdrv_flags |= BDRV_O_NO_FLUSH;
338 } else if (!strcmp(buf, "writethrough")) {
339 /* this is the default */
340 } else {
341 error_report("invalid cache option");
342 return NULL;
346 #ifdef CONFIG_LINUX_AIO
347 if ((buf = qemu_opt_get(opts, "aio")) != NULL) {
348 if (!strcmp(buf, "native")) {
349 bdrv_flags |= BDRV_O_NATIVE_AIO;
350 } else if (!strcmp(buf, "threads")) {
351 /* this is the default */
352 } else {
353 error_report("invalid aio option");
354 return NULL;
357 #endif
359 if ((buf = qemu_opt_get(opts, "format")) != NULL) {
360 if (strcmp(buf, "?") == 0) {
361 error_printf("Supported formats:");
362 bdrv_iterate_format(bdrv_format_print, NULL);
363 error_printf("\n");
364 return NULL;
366 drv = bdrv_find_whitelisted_format(buf);
367 if (!drv) {
368 error_report("'%s' invalid format", buf);
369 return NULL;
373 is_extboot = qemu_opt_get_bool(opts, "boot", 0);
374 if (is_extboot && extboot_drive) {
375 fprintf(stderr, "qemu: two bootable drives specified\n");
376 return NULL;
379 on_write_error = BLOCK_ERR_STOP_ENOSPC;
380 if ((buf = qemu_opt_get(opts, "werror")) != NULL) {
381 if (type != IF_IDE && type != IF_SCSI && type != IF_VIRTIO && type != IF_NONE) {
382 error_report("werror is not supported by this bus type");
383 return NULL;
386 on_write_error = parse_block_error_action(buf, 0);
387 if (on_write_error < 0) {
388 return NULL;
392 on_read_error = BLOCK_ERR_REPORT;
393 if ((buf = qemu_opt_get(opts, "rerror")) != NULL) {
394 if (type != IF_IDE && type != IF_VIRTIO && type != IF_SCSI && type != IF_NONE) {
395 error_report("rerror is not supported by this bus type");
396 return NULL;
399 on_read_error = parse_block_error_action(buf, 1);
400 if (on_read_error < 0) {
401 return NULL;
405 if ((devaddr = qemu_opt_get(opts, "addr")) != NULL) {
406 if (type != IF_VIRTIO) {
407 error_report("addr is not supported by this bus type");
408 return NULL;
412 /* compute bus and unit according index */
414 if (index != -1) {
415 if (bus_id != 0 || unit_id != -1) {
416 error_report("index cannot be used with bus and unit");
417 return NULL;
419 bus_id = drive_index_to_bus_id(type, index);
420 unit_id = drive_index_to_unit_id(type, index);
423 /* if user doesn't specify a unit_id,
424 * try to find the first free
427 if (unit_id == -1) {
428 unit_id = 0;
429 while (drive_get(type, bus_id, unit_id) != NULL) {
430 unit_id++;
431 if (max_devs && unit_id >= max_devs) {
432 unit_id -= max_devs;
433 bus_id++;
438 /* check unit id */
440 if (max_devs && unit_id >= max_devs) {
441 error_report("unit %d too big (max is %d)",
442 unit_id, max_devs - 1);
443 return NULL;
447 * catch multiple definitions
450 if (drive_get(type, bus_id, unit_id) != NULL) {
451 error_report("drive with bus=%d, unit=%d (index=%d) exists",
452 bus_id, unit_id, index);
453 return NULL;
456 /* init */
458 dinfo = qemu_mallocz(sizeof(*dinfo));
459 if ((buf = qemu_opts_id(opts)) != NULL) {
460 dinfo->id = qemu_strdup(buf);
461 } else {
462 /* no id supplied -> create one */
463 dinfo->id = qemu_mallocz(32);
464 if (type == IF_IDE || type == IF_SCSI)
465 mediastr = (media == MEDIA_CDROM) ? "-cd" : "-hd";
466 if (max_devs)
467 snprintf(dinfo->id, 32, "%s%i%s%i",
468 devname, bus_id, mediastr, unit_id);
469 else
470 snprintf(dinfo->id, 32, "%s%s%i",
471 devname, mediastr, unit_id);
473 dinfo->bdrv = bdrv_new(dinfo->id);
474 dinfo->devaddr = devaddr;
475 dinfo->type = type;
476 dinfo->bus = bus_id;
477 dinfo->unit = unit_id;
478 dinfo->opts = opts;
479 dinfo->refcount = 1;
480 if (serial)
481 strncpy(dinfo->serial, serial, sizeof(dinfo->serial) - 1);
482 QTAILQ_INSERT_TAIL(&drives, dinfo, next);
484 if (is_extboot) {
485 extboot_drive = dinfo;
488 bdrv_set_on_error(dinfo->bdrv, on_read_error, on_write_error);
490 switch(type) {
491 case IF_IDE:
492 case IF_SCSI:
493 case IF_XEN:
494 case IF_NONE:
495 switch(media) {
496 case MEDIA_DISK:
497 if (cyls != 0) {
498 bdrv_set_geometry_hint(dinfo->bdrv, cyls, heads, secs);
499 bdrv_set_translation_hint(dinfo->bdrv, translation);
501 break;
502 case MEDIA_CDROM:
503 bdrv_set_removable(dinfo->bdrv, 1);
504 dinfo->media_cd = 1;
505 break;
507 break;
508 case IF_SD:
509 /* FIXME: This isn't really a floppy, but it's a reasonable
510 approximation. */
511 case IF_FLOPPY:
512 bdrv_set_removable(dinfo->bdrv, 1);
513 break;
514 case IF_PFLASH:
515 case IF_MTD:
516 break;
517 case IF_VIRTIO:
518 /* add virtio block device */
519 opts = qemu_opts_create(qemu_find_opts("device"), NULL, 0);
520 qemu_opt_set(opts, "driver", "virtio-blk");
521 qemu_opt_set(opts, "drive", dinfo->id);
522 if (devaddr)
523 qemu_opt_set(opts, "addr", devaddr);
524 break;
525 default:
526 abort();
528 if (!file || !*file) {
529 return dinfo;
531 if (snapshot) {
532 /* always use cache=unsafe with snapshot */
533 bdrv_flags &= ~BDRV_O_CACHE_MASK;
534 bdrv_flags |= (BDRV_O_SNAPSHOT|BDRV_O_CACHE_WB|BDRV_O_NO_FLUSH);
537 if (media == MEDIA_CDROM) {
538 /* CDROM is fine for any interface, don't check. */
539 ro = 1;
540 } else if (ro == 1) {
541 if (type != IF_SCSI && type != IF_VIRTIO && type != IF_FLOPPY && type != IF_NONE) {
542 error_report("readonly not supported by this bus type");
543 goto err;
547 bdrv_flags |= ro ? 0 : BDRV_O_RDWR;
549 ret = bdrv_open(dinfo->bdrv, file, bdrv_flags, drv);
550 if (ret < 0) {
551 error_report("could not open disk image %s: %s",
552 file, strerror(-ret));
553 goto err;
556 if (bdrv_key_required(dinfo->bdrv))
557 autostart = 0;
558 return dinfo;
560 err:
561 bdrv_delete(dinfo->bdrv);
562 qemu_free(dinfo->id);
563 QTAILQ_REMOVE(&drives, dinfo, next);
564 qemu_free(dinfo);
565 return NULL;
568 void do_commit(Monitor *mon, const QDict *qdict)
570 const char *device = qdict_get_str(qdict, "device");
571 BlockDriverState *bs;
573 if (!strcmp(device, "all")) {
574 bdrv_commit_all();
575 } else {
576 bs = bdrv_find(device);
577 if (!bs) {
578 qerror_report(QERR_DEVICE_NOT_FOUND, device);
579 return;
581 bdrv_commit(bs);
585 int do_snapshot_blkdev(Monitor *mon, const QDict *qdict, QObject **ret_data)
587 const char *device = qdict_get_str(qdict, "device");
588 const char *filename = qdict_get_try_str(qdict, "snapshot_file");
589 const char *format = qdict_get_try_str(qdict, "format");
590 BlockDriverState *bs;
591 BlockDriver *drv, *old_drv, *proto_drv;
592 int ret = 0;
593 int flags;
594 char old_filename[1024];
596 if (!filename) {
597 qerror_report(QERR_MISSING_PARAMETER, "snapshot_file");
598 ret = -1;
599 goto out;
602 bs = bdrv_find(device);
603 if (!bs) {
604 qerror_report(QERR_DEVICE_NOT_FOUND, device);
605 ret = -1;
606 goto out;
609 pstrcpy(old_filename, sizeof(old_filename), bs->filename);
611 old_drv = bs->drv;
612 flags = bs->open_flags;
614 if (!format) {
615 format = "qcow2";
618 drv = bdrv_find_format(format);
619 if (!drv) {
620 qerror_report(QERR_INVALID_BLOCK_FORMAT, format);
621 ret = -1;
622 goto out;
625 proto_drv = bdrv_find_protocol(filename);
626 if (!proto_drv) {
627 qerror_report(QERR_INVALID_BLOCK_FORMAT, format);
628 ret = -1;
629 goto out;
632 ret = bdrv_img_create(filename, format, bs->filename,
633 bs->drv->format_name, NULL, -1, flags);
634 if (ret) {
635 goto out;
638 qemu_aio_flush();
639 bdrv_flush(bs);
641 bdrv_close(bs);
642 ret = bdrv_open(bs, filename, flags, drv);
644 * If reopening the image file we just created fails, fall back
645 * and try to re-open the original image. If that fails too, we
646 * are in serious trouble.
648 if (ret != 0) {
649 ret = bdrv_open(bs, old_filename, flags, old_drv);
650 if (ret != 0) {
651 qerror_report(QERR_OPEN_FILE_FAILED, old_filename);
652 } else {
653 qerror_report(QERR_OPEN_FILE_FAILED, filename);
656 out:
657 if (ret) {
658 ret = -1;
661 return ret;
664 static int eject_device(Monitor *mon, BlockDriverState *bs, int force)
666 if (!force) {
667 if (!bdrv_is_removable(bs)) {
668 qerror_report(QERR_DEVICE_NOT_REMOVABLE,
669 bdrv_get_device_name(bs));
670 return -1;
672 if (bdrv_is_locked(bs)) {
673 qerror_report(QERR_DEVICE_LOCKED, bdrv_get_device_name(bs));
674 return -1;
677 bdrv_close(bs);
678 return 0;
681 int do_eject(Monitor *mon, const QDict *qdict, QObject **ret_data)
683 BlockDriverState *bs;
684 int force = qdict_get_try_bool(qdict, "force", 0);
685 const char *filename = qdict_get_str(qdict, "device");
687 bs = bdrv_find(filename);
688 if (!bs) {
689 qerror_report(QERR_DEVICE_NOT_FOUND, filename);
690 return -1;
692 return eject_device(mon, bs, force);
695 int do_block_set_passwd(Monitor *mon, const QDict *qdict,
696 QObject **ret_data)
698 BlockDriverState *bs;
699 int err;
701 bs = bdrv_find(qdict_get_str(qdict, "device"));
702 if (!bs) {
703 qerror_report(QERR_DEVICE_NOT_FOUND, qdict_get_str(qdict, "device"));
704 return -1;
707 err = bdrv_set_key(bs, qdict_get_str(qdict, "password"));
708 if (err == -EINVAL) {
709 qerror_report(QERR_DEVICE_NOT_ENCRYPTED, bdrv_get_device_name(bs));
710 return -1;
711 } else if (err < 0) {
712 qerror_report(QERR_INVALID_PASSWORD);
713 return -1;
716 return 0;
719 int do_change_block(Monitor *mon, const char *device,
720 const char *filename, const char *fmt)
722 BlockDriverState *bs;
723 BlockDriver *drv = NULL;
724 int bdrv_flags;
726 bs = bdrv_find(device);
727 if (!bs) {
728 qerror_report(QERR_DEVICE_NOT_FOUND, device);
729 return -1;
731 if (fmt) {
732 drv = bdrv_find_whitelisted_format(fmt);
733 if (!drv) {
734 qerror_report(QERR_INVALID_BLOCK_FORMAT, fmt);
735 return -1;
738 if (eject_device(mon, bs, 0) < 0) {
739 return -1;
741 bdrv_flags = bdrv_is_read_only(bs) ? 0 : BDRV_O_RDWR;
742 bdrv_flags |= bdrv_is_snapshot(bs) ? BDRV_O_SNAPSHOT : 0;
743 if (bdrv_open(bs, filename, bdrv_flags, drv) < 0) {
744 qerror_report(QERR_OPEN_FILE_FAILED, filename);
745 return -1;
747 return monitor_read_bdrv_key_start(mon, bs, NULL, NULL);
750 int do_drive_del(Monitor *mon, const QDict *qdict, QObject **ret_data)
752 const char *id = qdict_get_str(qdict, "id");
753 BlockDriverState *bs;
755 bs = bdrv_find(id);
756 if (!bs) {
757 qerror_report(QERR_DEVICE_NOT_FOUND, id);
758 return -1;
760 if (bdrv_in_use(bs)) {
761 qerror_report(QERR_DEVICE_IN_USE, id);
762 return -1;
765 /* quiesce block driver; prevent further io */
766 qemu_aio_flush();
767 bdrv_flush(bs);
768 bdrv_close(bs);
770 /* if we have a device associated with this BlockDriverState (bs->peer)
771 * then we need to make the drive anonymous until the device
772 * can be removed. If this is a drive with no device backing
773 * then we can just get rid of the block driver state right here.
775 if (bs->peer) {
776 bdrv_make_anon(bs);
777 } else {
778 drive_uninit(drive_get_by_blockdev(bs));
781 return 0;
785 * XXX: replace the QERR_UNDEFINED_ERROR errors with real values once the
786 * existing QERR_ macro mess is cleaned up. A good example for better
787 * error reports can be found in the qemu-img resize code.
789 int do_block_resize(Monitor *mon, const QDict *qdict, QObject **ret_data)
791 const char *device = qdict_get_str(qdict, "device");
792 int64_t size = qdict_get_int(qdict, "size");
793 BlockDriverState *bs;
795 bs = bdrv_find(device);
796 if (!bs) {
797 qerror_report(QERR_DEVICE_NOT_FOUND, device);
798 return -1;
801 if (size < 0) {
802 qerror_report(QERR_UNDEFINED_ERROR);
803 return -1;
806 if (bdrv_truncate(bs, size)) {
807 qerror_report(QERR_UNDEFINED_ERROR);
808 return -1;
811 return 0;