9p/trans_virtio: discard zero-length reply
authorGreg Kurz <groug@kaod.org>
Mon, 22 Jan 2018 21:02:05 +0000 (22:02 +0100)
committerBen Hutchings <ben@decadent.org.uk>
Thu, 31 May 2018 23:30:13 +0000 (00:30 +0100)
commit498f0cc811a3fb51e374c8a2d1fe18dd352d1495
treeaddfcf9dbbdc685e2535b1c36c00dfa16d17a870
parent9ecf90b305220eade0a5634e6e604cf0e4fed796
9p/trans_virtio: discard zero-length reply

commit 26d99834f89e76514076d9cd06f61e56e6a509b8 upstream.

When a 9p request is successfully flushed, the server is expected to just
mark it as used without sending a 9p reply (ie, without writing data into
the buffer). In this case, virtqueue_get_buf() will return len == 0 and
we must not report a REQ_STATUS_RCVD status to the client, otherwise the
client will erroneously assume the request has not been flushed.

Signed-off-by: Greg Kurz <groug@kaod.org>
Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
[bwh: Backported to 3.2: adjust context]
Signed-off-by: Ben Hutchings <ben@decadent.org.uk>
net/9p/trans_virtio.c