From: Venkateswararao Jujjuri (JV) Date: Thu, 30 Jun 2011 01:06:33 +0000 (-0700) Subject: net/9p: Fix the msize calculation. X-Git-Tag: v3.1-rc1~272^2 X-Git-Url: https://git.openpandora.org/cgi-bin/gitweb.cgi?p=pandora-kernel.git;a=commitdiff_plain;h=c9ffb05ca5b5098d6ea468c909dd384d90da7d54;hp=48e370ff93769ee6e592ddef3bb38686b8147c67 net/9p: Fix the msize calculation. msize represents the maximum PDU size that includes P9_IOHDRSZ. Signed-off-by: Venkateswararao Jujjuri " Signed-off-by: Aneesh Kumar K.V Signed-off-by: Eric Van Hensbergen --- 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)