diff options
| author | Eric Blake | 2017-09-05 21:11:14 +0200 |
|---|---|---|
| committer | Eric Blake | 2017-09-06 17:11:54 +0200 |
| commit | 030fa7f6f950f5c8963f1dee8e6bb7387ed86a99 (patch) | |
| tree | c604ccc0c3afbfa97fa60839fce99619bf20e457 /include | |
| parent | io: Add new qio_channel_read{, v}_all_eof functions (diff) | |
| download | qemu-030fa7f6f950f5c8963f1dee8e6bb7387ed86a99.tar.gz qemu-030fa7f6f950f5c8963f1dee8e6bb7387ed86a99.tar.xz qemu-030fa7f6f950f5c8963f1dee8e6bb7387ed86a99.zip | |
nbd: Use new qio_channel_*_all() functions
Rather than open-coding our own read/write-all functions, we
can make use of the recently-added qio code. It slightly
changes the error message in one of the iotests.
Signed-off-by: Eric Blake <eblake@redhat.com>
Message-Id: <20170905191114.5959-4-eblake@redhat.com>
Reviewed-by: Daniel P. Berrange <berrange@redhat.com>
Diffstat (limited to 'include')
| -rw-r--r-- | include/block/nbd.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/include/block/nbd.h b/include/block/nbd.h index 040cdd2e60..707fd37575 100644 --- a/include/block/nbd.h +++ b/include/block/nbd.h @@ -155,8 +155,6 @@ struct NBDExportInfo { }; typedef struct NBDExportInfo NBDExportInfo; -ssize_t nbd_rwv(QIOChannel *ioc, struct iovec *iov, size_t niov, size_t length, - bool do_read, Error **errp); int nbd_receive_negotiate(QIOChannel *ioc, const char *name, QCryptoTLSCreds *tlscreds, const char *hostname, QIOChannel **outioc, NBDExportInfo *info, |
