diff options
| author | Peter Maydell <peter.maydell@linaro.org> | 2024-03-25 10:41:01 +0000 |
|---|---|---|
| committer | Peter Maydell <peter.maydell@linaro.org> | 2024-03-25 10:41:01 +0000 |
| commit | b13ba381ca4d0b3e96a9e5bd138a1f3e11b5a637 (patch) | |
| tree | 25baf92ea298dc6583c6169f83b1d753c115f4e6 /hw/nvram/mac_nvram.c | |
| parent | c67f7580697198800c57ced59f1dfbce1aaeb4ae (diff) | |
| download | focaccia-qemu-b13ba381ca4d0b3e96a9e5bd138a1f3e11b5a637.tar.gz focaccia-qemu-b13ba381ca4d0b3e96a9e5bd138a1f3e11b5a637.zip | |
hw/nvram/mac_nvram: Report failure to write data
There's no way for the macio_nvram device to report failure to write data, but we can at least report it to the user with error_report() as we do in other devices like xlnx-efuse. Spotted by Coverity. Resolves: Coverity CID 1507628 Signed-off-by: Peter Maydell <peter.maydell@linaro.org> Reviewed-by: Richard Henderson <richard.henderson@linaro.org> Reviewed-by: Thomas Huth <thuth@redhat.com> Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org> Message-id: 20240312183810.557768-6-peter.maydell@linaro.org
Diffstat (limited to 'hw/nvram/mac_nvram.c')
| -rw-r--r-- | hw/nvram/mac_nvram.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/hw/nvram/mac_nvram.c b/hw/nvram/mac_nvram.c index 5f9d16fb3e..fe9df9fa35 100644 --- a/hw/nvram/mac_nvram.c +++ b/hw/nvram/mac_nvram.c @@ -33,6 +33,7 @@ #include "migration/vmstate.h" #include "qemu/cutils.h" #include "qemu/module.h" +#include "qemu/error-report.h" #include "trace.h" #include <zlib.h> @@ -48,7 +49,10 @@ static void macio_nvram_writeb(void *opaque, hwaddr addr, trace_macio_nvram_write(addr, value); s->data[addr] = value; if (s->blk) { - blk_pwrite(s->blk, addr, 1, &s->data[addr], 0); + if (blk_pwrite(s->blk, addr, 1, &s->data[addr], 0) < 0) { + error_report("%s: write of NVRAM data to backing store failed", + blk_name(s->blk)); + } } } |