summaryrefslogtreecommitdiffstats
path: root/block.c
diff options
context:
space:
mode:
authorKevin Wolf2016-07-06 11:22:39 +0200
committerKevin Wolf2016-09-05 19:06:47 +0200
commitcd7fca952ce8456955f7f4e11df9ced14204c2f1 (patch)
tree2d58a11ca8c6f967356c111e5750f9f8c924dd5a /block.c
parentblock: Accept node-name for drive-mirror (diff)
downloadqemu-cd7fca952ce8456955f7f4e11df9ced14204c2f1.tar.gz
qemu-cd7fca952ce8456955f7f4e11df9ced14204c2f1.tar.xz
qemu-cd7fca952ce8456955f7f4e11df9ced14204c2f1.zip
nbd-server: Use a separate BlockBackend
The builtin NBD server uses its own BlockBackend now instead of reusing the monitor/guest device one. This means that it has its own writethrough setting now. The builtin NBD server always uses writeback caching now regardless of whether the guest device has WCE enabled. qemu-nbd respects the cache mode given on the command line. We still need to keep a reference to the monitor BB because we put an eject notifier on it, but we don't use it for any I/O. Signed-off-by: Kevin Wolf <kwolf@redhat.com> Reviewed-by: Eric Blake <eblake@redhat.com> Reviewed-by: Max Reitz <mreitz@redhat.com>
Diffstat (limited to 'block.c')
-rw-r--r--block.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/block.c b/block.c
index 30d64e6ca5..101f8c628f 100644
--- a/block.c
+++ b/block.c
@@ -25,6 +25,7 @@
#include "trace.h"
#include "block/block_int.h"
#include "block/blockjob.h"
+#include "block/nbd.h"
#include "qemu/error-report.h"
#include "qemu/module.h"
#include "qapi/qmp/qerror.h"
@@ -2206,6 +2207,7 @@ static void bdrv_close(BlockDriverState *bs)
void bdrv_close_all(void)
{
block_job_cancel_sync_all();
+ nbd_export_close_all();
/* Drop references from requests still in flight, such as canceled block
* jobs whose AIO context has not been polled yet */