aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjvrao <[email protected]>2011-06-30 23:18:39 +0000
committerEric Van Hensbergen <[email protected]>2011-07-23 09:32:47 -0500
commit114e6f3a5ede73d5b56e145f04680c61c3dd67c4 (patch)
treec5fd9409bd9cb68b9d44adf3878aa92a80a5c49a
parente660a828f017991468ce322742586e8ebb047ae6 (diff)
Fix the size of receive buffer packing onto VirtIO ring.
Signed-off-by: Venkateswararao Jujjuri "<[email protected]> Reviewed-by: Aneesh Kumar K.V <[email protected]> Signed-off-by: Eric Van Hensbergen <[email protected]>
-rw-r--r--net/9p/trans_virtio.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/net/9p/trans_virtio.c b/net/9p/trans_virtio.c
index 244e70742183..0ec5423b409e 100644
--- a/net/9p/trans_virtio.c
+++ b/net/9p/trans_virtio.c
@@ -367,7 +367,7 @@ req_retry_pinned:
in += inp;
} else {
in = pack_sg_list(chan->sg, out, VIRTQUEUE_NUM, rdata,
- client->msize);
+ req->rc->capacity);
}
err = virtqueue_add_buf(chan->vq, chan->sg, out, in, req->tc);