From: juha.riihimaki@nokia.com
To: qemu-devel@nongnu.org
Subject: [Qemu-devel] [PATCH v2 1/2] hw/nand: reject read-only drives
Date: Thu, 20 Oct 2011 15:53:34 +0300	[thread overview]
Message-ID: <1319115215-21224-2-git-send-email-juha.riihimaki@nokia.com> (raw)
In-Reply-To: <1319115215-21224-1-git-send-email-juha.riihimaki@nokia.com>
From: Juha Riihimäki <juha.riihimaki@nokia.com>
also gracefully fail on nand_device_init() for unsupported block
size instead of aborting.
Signed-off-by: Juha Riihimäki <juha.riihimaki@nokia.com>
---
 hw/nand.c |   20 +++++++++++++-------
 1 files changed, 13 insertions(+), 7 deletions(-)
diff --git a/hw/nand.c b/hw/nand.c
index c27783e..fad00d1 100644
--- a/hw/nand.c
+++ b/hw/nand.c
@@ -19,6 +19,7 @@
 # include "flash.h"
 # include "blockdev.h"
 # include "sysbus.h"
+#include "qemu-error.h"
 
 # define NAND_CMD_READ0		0x00
 # define NAND_CMD_READ1		0x01
@@ -384,18 +385,23 @@ static int nand_device_init(SysBusDevice *dev)
         nand_init_2048(s);
         break;
     default:
-        hw_error("%s: Unsupported NAND block size.\n", __func__);
+        error_report("Unsupported NAND block size");
+        return -1;
     }
 
     pagesize = 1 << s->oob_shift;
     s->mem_oob = 1;
-    if (s->bdrv && bdrv_getlength(s->bdrv) >=
+    if (s->bdrv) {
+        if (bdrv_is_read_only(s->bdrv)) {
+            error_report("Can't use a read-only drive");
+            return -1;
+        }
+        if (bdrv_getlength(s->bdrv) >=
             (s->pages << s->page_shift) + (s->pages << s->oob_shift)) {
-        pagesize = 0;
-        s->mem_oob = 0;
-    }
-
-    if (!s->bdrv) {
+            pagesize = 0;
+            s->mem_oob = 0;
+        }
+    } else {
         pagesize += 1 << s->page_shift;
     }
     if (pagesize) {
-- 
1.7.5.4
next prev parent reply	other threads:[~2011-10-20 12:53 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2011-10-20 12:53 [Qemu-devel] [PATCH v2 0/2] nand/onenand: reject read-only drives juha.riihimaki
2011-10-20 12:53 ` juha.riihimaki [this message]
2011-10-20 12:53 ` [Qemu-devel] [PATCH v2 2/2] hw/onenand: " juha.riihimaki
2011-11-08  9:17 ` [Qemu-devel] [PATCH v2 0/2] nand/onenand: " Markus Armbruster
2011-11-14  3:02 ` andrzej zaborowski
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox
  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):
  git send-email \
    --in-reply-to=1319115215-21224-2-git-send-email-juha.riihimaki@nokia.com \
    --to=juha.riihimaki@nokia.com \
    --cc=qemu-devel@nongnu.org \
    /path/to/YOUR_REPLY
  https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
  Be sure your reply has a Subject: header at the top and a blank line
  before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).