From: Blue Swirl Date: Sat, 17 Oct 2009 09:08:47 +0000 (+0000) Subject: Only IDE needs limits for CHS configuration X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=5afe3f042ae34a2645684d932a584aed980c045f;p=qemu.git Only IDE needs limits for CHS configuration Signed-off-by: Blue Swirl --- diff --git a/vl.c b/vl.c index 96838f85e9..eb2744e594 100644 --- a/vl.c +++ b/vl.c @@ -2078,15 +2078,15 @@ DriveInfo *drive_init(QemuOpts *opts, void *opaque, } if (cyls || heads || secs) { - if (cyls < 1 || cyls > 16383) { + if (cyls < 1 || (type == IF_IDE && cyls > 16383)) { fprintf(stderr, "qemu: '%s' invalid physical cyls number\n", buf); return NULL; } - if (heads < 1 || heads > 16) { + if (heads < 1 || (type == IF_IDE && heads > 16)) { fprintf(stderr, "qemu: '%s' invalid physical heads number\n", buf); return NULL; } - if (secs < 1 || secs > 63) { + if (secs < 1 || (type == IF_IDE && secs > 63)) { fprintf(stderr, "qemu: '%s' invalid physical secs number\n", buf); return NULL; }