diff options
author | Max Reitz <mreitz@redhat.com> | 2015-02-25 13:08:25 -0500 |
---|---|---|
committer | Paolo Bonzini <pbonzini@redhat.com> | 2015-03-18 12:07:01 +0100 |
commit | 3f4726596dafd2e27485e51f4cc4a2363f48d4a3 (patch) | |
tree | 5e4ca6984fa89f47467cd38b93fa6398a735f747 /qemu-nbd.c | |
parent | ac97393dc7c4761af6104fb8fca5f600899f687b (diff) | |
download | qemu-3f4726596dafd2e27485e51f4cc4a2363f48d4a3.zip |
nbd: Set block size to BDRV_SECTOR_SIZE
Signed-off-by: Max Reitz <mreitz@redhat.com>
Message-Id: <1424887718-10800-13-git-send-email-mreitz@redhat.com>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'qemu-nbd.c')
-rw-r--r-- | qemu-nbd.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/qemu-nbd.c b/qemu-nbd.c index a4a9a0cf37..7e690fff7e 100644 --- a/qemu-nbd.c +++ b/qemu-nbd.c @@ -279,7 +279,6 @@ static void *nbd_client_thread(void *arg) { char *device = arg; off_t size; - size_t blocksize; uint32_t nbdflags; int fd, sock; int ret; @@ -292,7 +291,7 @@ static void *nbd_client_thread(void *arg) } ret = nbd_receive_negotiate(sock, NULL, &nbdflags, - &size, &blocksize, &local_error); + &size, &local_error); if (ret < 0) { if (local_error) { fprintf(stderr, "%s\n", error_get_pretty(local_error)); @@ -308,7 +307,7 @@ static void *nbd_client_thread(void *arg) goto out_socket; } - ret = nbd_init(fd, sock, nbdflags, size, blocksize); + ret = nbd_init(fd, sock, nbdflags, size); if (ret < 0) { goto out_fd; } |