diff options
author | Paolo Bonzini <pbonzini@redhat.com> | 2011-09-19 13:50:54 +0200 |
---|---|---|
committer | Paolo Bonzini <pbonzini@redhat.com> | 2011-12-22 11:53:58 +0100 |
commit | 94607e7a775ae7b57219e2078b00ed2930ab98de (patch) | |
tree | a82dc89b82bda6d6a9b4a5209ef5ade16c9ab568 /nbd.h | |
parent | 3e05c785516efa6911504b1ddf936d2386c2e0b6 (diff) | |
download | qemu-94607e7a775ae7b57219e2078b00ed2930ab98de.tar.gz qemu-94607e7a775ae7b57219e2078b00ed2930ab98de.tar.bz2 qemu-94607e7a775ae7b57219e2078b00ed2930ab98de.zip |
qemu-nbd: remove offset argument to nbd_trip
The argument is write-only.
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'nbd.h')
-rw-r--r-- | nbd.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -72,7 +72,7 @@ int nbd_init(int fd, int csock, uint32_t flags, off_t size, size_t blocksize); int nbd_send_request(int csock, struct nbd_request *request); int nbd_receive_reply(int csock, struct nbd_reply *reply); int nbd_trip(BlockDriverState *bs, int csock, off_t size, uint64_t dev_offset, - off_t *offset, uint32_t nbdflags, uint8_t *data, int data_size); + uint32_t nbdflags, uint8_t *data, int data_size); int nbd_client(int fd); int nbd_disconnect(int fd); |