aboutsummaryrefslogtreecommitdiff
path: root/net
diff options
context:
space:
mode:
authorVenkateswararao Jujjuri (JV) <jvrao@linux.vnet.ibm.com>2011-06-29 18:06:33 -0700
committerEric Van Hensbergen <ericvh@gmail.com>2011-07-23 09:32:52 -0500
commitc9ffb05ca5b5098d6ea468c909dd384d90da7d54 (patch)
tree6bf4dce83412a48bdfa5f7692c853464b3d9c6d2 /net
parent48e370ff93769ee6e592ddef3bb38686b8147c67 (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')
-rw-r--r--net/9p/client.c4
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)
if (err)
goto destroy_fidpool;
- if ((clnt->msize+P9_IOHDRSZ) > clnt->trans_mod->maxsize)
- clnt->msize = clnt->trans_mod->maxsize-P9_IOHDRSZ;
+ if (clnt->msize > clnt->trans_mod->maxsize)
+ clnt->msize = clnt->trans_mod->maxsize;
err = p9_client_version(clnt);
if (err)