diff options
author | Venkateswararao Jujjuri (JV) <jvrao@linux.vnet.ibm.com> | 2011-06-29 21:06:33 -0400 |
---|---|---|
committer | Eric Van Hensbergen <ericvh@gmail.com> | 2011-07-23 10:32:52 -0400 |
commit | c9ffb05ca5b5098d6ea468c909dd384d90da7d54 (patch) | |
tree | 6bf4dce83412a48bdfa5f7692c853464b3d9c6d2 /net/9p | |
parent | 48e370ff93769ee6e592ddef3bb38686b8147c67 (diff) |
net/9p: Fix the msize calculation.
msize represents the maximum PDU size that includes P9_IOHDRSZ.
Signed-off-by: Venkateswararao Jujjuri "<jvrao@linux.vnet.ibm.com>
Signed-off-by: Aneesh Kumar K.V <aneesh.kumar@linux.vnet.ibm.com>
Signed-off-by: Eric Van Hensbergen <ericvh@gmail.com>
Diffstat (limited to 'net/9p')
-rw-r--r-- | net/9p/client.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/net/9p/client.c b/net/9p/client.c index a953baa3624e..0505a03c374c 100644 --- a/net/9p/client.c +++ b/net/9p/client.c | |||
@@ -841,8 +841,8 @@ struct p9_client *p9_client_create(const char *dev_name, char *options) | |||
841 | if (err) | 841 | if (err) |
842 | goto destroy_fidpool; | 842 | goto destroy_fidpool; |
843 | 843 | ||
844 | if ((clnt->msize+P9_IOHDRSZ) > clnt->trans_mod->maxsize) | 844 | if (clnt->msize > clnt->trans_mod->maxsize) |
845 | clnt->msize = clnt->trans_mod->maxsize-P9_IOHDRSZ; | 845 | clnt->msize = clnt->trans_mod->maxsize; |
846 | 846 | ||
847 | err = p9_client_version(clnt); | 847 | err = p9_client_version(clnt); |
848 | if (err) | 848 | if (err) |