]> xenbits.xensource.com Git - qemu-xen.git/commitdiff
ppc/pnv: Fix check on block device before updating drive contents
authorCédric Le Goater <clg@kaod.org>
Tue, 2 Nov 2021 16:29:05 +0000 (17:29 +0100)
committerDavid Gibson <david@gibson.dropbear.id.au>
Mon, 8 Nov 2021 23:32:52 +0000 (10:32 +1100)
Test is wrong and the backend can never updated. It could have led to
a QEMU crash but since the firmware deactivates flash access if a valid
layout is not detected, it went unnoticed.

Reported-by: Coverity CID 1465223
Fixes: 35dde5766211 ("ppc/pnv: Add a PNOR model")
Signed-off-by: Cédric Le Goater <clg@kaod.org>
Message-Id: <20211102162905.762078-1-clg@kaod.org>
Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
hw/ppc/pnv_pnor.c

index 5ef1cf2afbe1b811fa9c15d267d51926cad3fac9..83ecccca28df1a3609d3f3b26fa1691f91d9ac0b 100644 (file)
@@ -36,7 +36,7 @@ static void pnv_pnor_update(PnvPnor *s, int offset, int size)
     int offset_end;
     int ret;
 
-    if (s->blk) {
+    if (!s->blk || !blk_is_writable(s->blk)) {
         return;
     }