aboutsummaryrefslogtreecommitdiff
path: root/nbd.h
diff options
context:
space:
mode:
authorPaolo Bonzini <pbonzini@redhat.com>2011-09-19 13:50:54 +0200
committerPaolo Bonzini <pbonzini@redhat.com>2011-12-22 11:53:58 +0100
commit94607e7a775ae7b57219e2078b00ed2930ab98de (patch)
treea82dc89b82bda6d6a9b4a5209ef5ade16c9ab568 /nbd.h
parent3e05c785516efa6911504b1ddf936d2386c2e0b6 (diff)
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.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/nbd.h b/nbd.h
index 61553f4128..ebdb2dbf41 100644
--- a/nbd.h
+++ b/nbd.h
@@ -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);