Stop VM on error in scsi-disk (Gleb Natapov)

Signed-off-by: Gleb Natapov <gleb@redhat.com>
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>


git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@6409 c046a42c-6fe2-441c-8c8c-71466251a162
This commit is contained in:
aliguori 2009-01-22 19:52:21 +00:00
parent 7e739a58bb
commit ea8a5d7f1f
2 changed files with 73 additions and 21 deletions

4
vl.c
View file

@ -2432,8 +2432,8 @@ static int drive_init(struct drive_opt *arg, int snapshot,
onerror = BLOCK_ERR_REPORT;
if (get_param_value(buf, sizeof(serial), "werror", str)) {
if (type != IF_IDE) {
fprintf(stderr, "werror is supported only by IDE\n");
if (type != IF_IDE && type != IF_SCSI) {
fprintf(stderr, "werror is no supported by this format\n");
return -1;
}
if (!strcmp(buf, "ignore"))