提交 ef6b0807 编写于 作者: D Dan Carpenter 提交者: Eric Van Hensbergen

fs/9p: change an int to unsigned int

Without this msize=4294967295 will result in a crash
Signed-off-by: NDan Carpenter <error27@gmail.com>
Signed-off-by: NAneesh Kumar K.V <aneesh.kumar@linux.vnet.ibm.com>
Signed-off-by: NEric Van Hensbergen <ericvh@gmail.com>
上级 4d5077f1
......@@ -151,7 +151,7 @@ struct p9_req_t {
struct p9_client {
spinlock_t lock; /* protect client structure */
int msize;
unsigned int msize;
unsigned char proto_version;
struct p9_trans_module *trans_mod;
enum p9_trans_status status;
......
......@@ -201,7 +201,8 @@ static int parse_opts(char *opts, struct p9_client *clnt)
*
*/
static struct p9_req_t *p9_tag_alloc(struct p9_client *c, u16 tag, int max_size)
static struct p9_req_t *
p9_tag_alloc(struct p9_client *c, u16 tag, unsigned int max_size)
{
unsigned long flags;
int row, col;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册