diff options
author | Dan Carpenter <error27@gmail.com> | 2011-08-26 19:57:40 +0300 |
---|---|---|
committer | Eric Van Hensbergen <ericvh@gmail.com> | 2011-10-24 11:13:12 -0500 |
commit | ef6b0807e2c986d5f1cb878e1b32a7cf4c32b4c8 (patch) | |
tree | 6735db224148cc9c75ba722a8a338323626c3d46 /net | |
parent | 4d5077f1b2aa502a0ca98b450d1b16fbccfe9c63 (diff) | |
download | linux-3.10-ef6b0807e2c986d5f1cb878e1b32a7cf4c32b4c8.tar.gz linux-3.10-ef6b0807e2c986d5f1cb878e1b32a7cf4c32b4c8.tar.bz2 linux-3.10-ef6b0807e2c986d5f1cb878e1b32a7cf4c32b4c8.zip |
fs/9p: change an int to unsigned int
Without this msize=4294967295 will result in a crash
Signed-off-by: Dan Carpenter <error27@gmail.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.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/net/9p/client.c b/net/9p/client.c index 0edee4de608..b1c02187f86 100644 --- a/net/9p/client.c +++ b/net/9p/client.c @@ -201,7 +201,8 @@ free_and_return: * */ -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; |