From: Juha Riihimäki Date: Thu, 20 Oct 2011 12:53:35 +0000 (+0200) Subject: hw/onenand: reject read-only drives X-Git-Tag: qemu-xen-4.3.0-rc1~2002 X-Git-Url: http://xenbits.xensource.com/gitweb?a=commitdiff_plain;h=a3efecb847dd89886f7cd3f71661b2d79ec68072;p=qemu-upstream-4.6-testing.git hw/onenand: reject read-only drives Signed-off-by: Juha Riihimäki Reviewed-by: Markus Armbruster Signed-off-by: Andrzej Zaborowski --- diff --git a/hw/onenand.c b/hw/onenand.c index 6f68f7069..7898da932 100644 --- a/hw/onenand.c +++ b/hw/onenand.c @@ -26,6 +26,7 @@ #include "memory.h" #include "exec-memory.h" #include "sysbus.h" +#include "qemu-error.h" /* 11 for 2kB-page OneNAND ("2nd generation") and 10 for 1kB-page chips */ #define PAGE_SHIFT 11 @@ -772,6 +773,10 @@ static int onenand_initfn(SysBusDevice *dev) s->image = memset(g_malloc(size + (size >> 5)), 0xff, size + (size >> 5)); } else { + if (bdrv_is_read_only(s->bdrv)) { + error_report("Can't use a read-only drive"); + return -1; + } s->bdrv_cur = s->bdrv; } s->otp = memset(g_malloc((64 + 2) << PAGE_SHIFT),