mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-03 15:53:54 -06:00
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:
parent
7e739a58bb
commit
ea8a5d7f1f
2 changed files with 73 additions and 21 deletions
4
vl.c
4
vl.c
|
@ -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"))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue