summaryrefslogtreecommitdiffstats
path: root/tools/virtiofsd
diff options
context:
space:
mode:
authorVivek Goyal2021-05-18 23:35:33 +0200
committerDr. David Alan Gilbert2021-05-26 19:39:32 +0200
commitb31ff389315f2745cecc0f42cca7f4383b1a2a0d (patch)
tree18597003218d7bf472e073b293b2888fdb0896d9 /tools/virtiofsd
parentvirtiofsd: Check for EINTR in preadv() and retry (diff)
downloadqemu-b31ff389315f2745cecc0f42cca7f4383b1a2a0d.tar.gz
qemu-b31ff389315f2745cecc0f42cca7f4383b1a2a0d.tar.xz
qemu-b31ff389315f2745cecc0f42cca7f4383b1a2a0d.zip
virtiofsd: Get rid of unreachable code in read
pvreadv() can return following. - error - 0 in case of EOF - short read We seem to handle all the cases already. We are retrying read in case of short read. So another check for short read seems like dead code. Get rid of it. Reviewed-by: Dr. David Alan Gilbert <dgilbert@redhat.com> Reviewed-by: Connor Kuehl <ckuehl@redhat.com> Signed-off-by: Vivek Goyal <vgoyal@redhat.com> Message-Id: <20210518213538.693422-3-vgoyal@redhat.com> Signed-off-by: Dr. David Alan Gilbert <dgilbert@redhat.com>
Diffstat (limited to 'tools/virtiofsd')
-rw-r--r--tools/virtiofsd/fuse_virtio.c5
1 files changed, 0 insertions, 5 deletions
diff --git a/tools/virtiofsd/fuse_virtio.c b/tools/virtiofsd/fuse_virtio.c
index 755d7fb25c..28e2974d1a 100644
--- a/tools/virtiofsd/fuse_virtio.c
+++ b/tools/virtiofsd/fuse_virtio.c
@@ -446,11 +446,6 @@ int virtio_send_data_iov(struct fuse_session *se, struct fuse_chan *ch,
in_sg_left);
break;
}
- if (ret != len) {
- fuse_log(FUSE_LOG_DEBUG, "%s: ret!=len\n", __func__);
- ret = EIO;
- goto err;
- }
in_sg_left -= ret;
len -= ret;
} while (in_sg_left);