diff options
Diffstat (limited to 'blockdev-nbd.c')
-rw-r--r-- | blockdev-nbd.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/blockdev-nbd.c b/blockdev-nbd.c index 274fba6e46..e362572279 100644 --- a/blockdev-nbd.c +++ b/blockdev-nbd.c @@ -93,6 +93,13 @@ void qmp_nbd_server_add(const char *device, bool has_writable, bool writable, return; } + if (!has_writable) { + writable = true; + } + if (bdrv_is_read_only(bs)) { + writable = false; + } + exp = nbd_export_new(bs, 0, -1, writable ? 0 : NBD_FLAG_READ_ONLY, nbd_server_put_ref); |