From: "Aneesh Kumar K. V" <aneesh.kumar@linux.vnet.ibm.com>
To: "Venkateswararao Jujjuri \(JV\)" <jvrao@linux.vnet.ibm.com>,
v9fs-developer@lists.sourceforge.net
Cc: linux-fsdevel@vger.kernel.org,
"Venkateswararao Jujjuri \(JV\)" <jvrao@linux.vnet.ibm.com>
Subject: Re: [RFC-V3 6/7] [net/9p] Read and Write side zerocopy changes for 9P2000.L protocol.
Date: Sat, 12 Feb 2011 01:05:18 +0530 [thread overview]
Message-ID: <87mxm2nz49.fsf@linux.vnet.ibm.com> (raw)
In-Reply-To: <1297387511-2697-7-git-send-email-jvrao@linux.vnet.ibm.com>
On Thu, 10 Feb 2011 17:25:10 -0800, "Venkateswararao Jujjuri (JV)" <jvrao@linux.vnet.ibm.com> wrote:
> Signed-off-by: Venkateswararao Jujjuri <jvrao@linux.vnet.ibm.com>
> ---
> net/9p/client.c | 47 +++++++++++++++++++++++++++++++++--------------
> net/9p/protocol.c | 21 +++++++++++++++++++++
> 2 files changed, 54 insertions(+), 14 deletions(-)
>
> diff --git a/net/9p/client.c b/net/9p/client.c
> index a848bca..f6d8531 100644
> --- a/net/9p/client.c
> +++ b/net/9p/client.c
> @@ -1270,7 +1270,15 @@ p9_client_read(struct p9_fid *fid, char *data, char __user *udata, u64 offset,
> if (count < rsize)
> rsize = count;
>
> - req = p9_client_rpc(clnt, P9_TREAD, "dqd", fid->fid, offset, rsize);
> + /* Don't bother zerocopy form small IO (< 1024) */
> + if (((clnt->trans_mod->pref & P9_TRANS_PREF_PAYLOAD_MASK) ==
> + P9_TRANS_PREF_PAYLOAD_SEP) && (rsize > 1024)) {
> + req = p9_client_rpc(clnt, P9_TREAD, "dqE", fid->fid, offset,
> + rsize, data, udata);
> + } else {
> + req = p9_client_rpc(clnt, P9_TREAD, "dqd", fid->fid, offset,
> + rsize);
> + }
> if (IS_ERR(req)) {
> err = PTR_ERR(req);
> goto error;
> @@ -1284,13 +1292,15 @@ p9_client_read(struct p9_fid *fid, char *data, char __user *udata, u64 offset,
>
> P9_DPRINTK(P9_DEBUG_9P, "<<< RREAD count %d\n", count);
>
> - if (data) {
> - memmove(data, dataptr, count);
> - } else {
> - err = copy_to_user(udata, dataptr, count);
> - if (err) {
> - err = -EFAULT;
> - goto free_and_error;
> + if (!req->tc->pbuf_size) {
> + if (data) {
> + memmove(data, dataptr, count);
> + } else {
> + err = copy_to_user(udata, dataptr, count);
> + if (err) {
> + err = -EFAULT;
> + goto free_and_error;
> + }
> }
> }
> p9_free_req(clnt, req);
> @@ -1323,12 +1333,21 @@ p9_client_write(struct p9_fid *fid, char *data, const char __user *udata,
>
> if (count < rsize)
> rsize = count;
> - if (data)
> - req = p9_client_rpc(clnt, P9_TWRITE, "dqD", fid->fid, offset,
> - rsize, data);
> - else
> - req = p9_client_rpc(clnt, P9_TWRITE, "dqU", fid->fid, offset,
> - rsize, udata);
> +
> + /* Don't bother zerocopy form small IO (< 1024) */
> + if (((clnt->trans_mod->pref & P9_TRANS_PREF_PAYLOAD_MASK) ==
> + P9_TRANS_PREF_PAYLOAD_SEP) && (rsize > 1024)) {
> + req = p9_client_rpc(clnt, P9_TWRITE, "dqE", fid->fid, offset,
> + rsize, data, udata);
> + } else {
> + if (data)
> + req = p9_client_rpc(clnt, P9_TWRITE, "dqD", fid->fid,
> + offset, rsize, data);
> + else
> + req = p9_client_rpc(clnt, P9_TWRITE, "dqU", fid->fid,
> + offset, rsize, udata);
> + }
> +
> if (IS_ERR(req)) {
> err = PTR_ERR(req);
> goto error;
> diff --git a/net/9p/protocol.c b/net/9p/protocol.c
> index 5936c50..830b999 100644
> --- a/net/9p/protocol.c
> +++ b/net/9p/protocol.c
> @@ -114,6 +114,17 @@ pdu_write_u(struct p9_fcall *pdu, const char __user *udata, size_t size)
> return size - len;
> }
>
> +static size_t
> +pdu_write_urw(struct p9_fcall *pdu, const char *kdata, const char __user *udata,
> + size_t size)
> +{
> + size_t len = min(pdu->capacity - pdu->size, size);
Why do we need to do this ? We are not placing anything in the pdu right ?
> + pdu->pubuf = (char __user *)udata;
> + pdu->pkbuf = (char *)kdata;
> + pdu->pbuf_size = len;
> + return size - len;
Does this mean a zero copy write of a buffer larger than msize will
result in a failure ?
> +}
> +
> /*
> b - int8_t
> w - int16_t
> @@ -445,6 +456,16 @@ p9pdu_vwritef(struct p9_fcall *pdu, int proto_version, const char *fmt,
> errcode = -EFAULT;
> }
> break;
> + case 'E':{
> + int32_t cnt = va_arg(ap, int32_t);
> + const char *k = va_arg(ap, const void *);
> + const char *u = va_arg(ap, const void *);
> + errcode = p9pdu_writef(pdu, proto_version, "d",
> + cnt);
> + if (!errcode && pdu_write_urw(pdu, k, u, cnt))
> + errcode = -EFAULT;
> + }
> + break;
> case 'U':{
> int32_t count = va_arg(ap, int32_t);
> const char __user *udata =
-aneesh
next prev parent reply other threads:[~2011-02-11 19:35 UTC|newest]
Thread overview: 17+ messages / expand[flat|nested] mbox.gz Atom feed top
2011-02-11 1:25 [RFC-V3] [net/9p] [PATCH 0/7] Zero Copy Venkateswararao Jujjuri (JV)
2011-02-11 1:25 ` [RFC-V3 1/7] [net/9p] Additional elements to p9_fcall to acoomodate zero copy Venkateswararao Jujjuri (JV)
2011-02-11 1:25 ` [RFC-V3 2/7] [net/9p] Adds supporting functions for " Venkateswararao Jujjuri (JV)
2011-02-11 1:25 ` [RFC-V3 3/7] [net/9p] Assign type of transaction to tc->pdu->id which is otherwise unsed Venkateswararao Jujjuri (JV)
2011-02-11 6:59 ` Aneesh Kumar K. V
2011-02-11 1:25 ` [RFC-V3 4/7] [net/9p] Add gup/zero_copy support to VirtIO transport layer Venkateswararao Jujjuri (JV)
2011-02-11 7:07 ` Aneesh Kumar K. V
2011-02-11 16:08 ` Venkateswararao Jujjuri (JV)
2011-02-11 17:58 ` Aneesh Kumar K. V
2011-02-11 18:42 ` Venkateswararao Jujjuri (JV)
2011-02-11 1:25 ` [RFC-V3 5/7] [net/9p] Add preferences to " Venkateswararao Jujjuri (JV)
2011-02-11 1:25 ` [RFC-V3 6/7] [net/9p] Read and Write side zerocopy changes for 9P2000.L protocol Venkateswararao Jujjuri (JV)
2011-02-11 19:35 ` Aneesh Kumar K. V [this message]
2011-02-11 21:03 ` Venkateswararao Jujjuri (JV)
2011-02-11 1:25 ` [RFC-V3 7/7] [net/9p] Handle TREAD/RERROR case in !dotl case Venkateswararao Jujjuri (JV)
2011-02-11 18:10 ` Aneesh Kumar K. V
2011-02-11 18:46 ` Venkateswararao Jujjuri (JV)
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=87mxm2nz49.fsf@linux.vnet.ibm.com \
--to=aneesh.kumar@linux.vnet.ibm.com \
--cc=jvrao@linux.vnet.ibm.com \
--cc=linux-fsdevel@vger.kernel.org \
--cc=v9fs-developer@lists.sourceforge.net \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).