Commit 298bb621 authored by Stephen Rothwell's avatar Stephen Rothwell Committed by David S. Miller

[AF_KEY]: suppress a warning for 64k pages.

On PowerPC allmodconfig build we get this:

net/key/af_key.c:400: warning: comparison is always false due to limited range of data type
Signed-off-by: default avatarStephen Rothwell <sfr@canb.auug.org.au>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 97ef1bb0
...@@ -395,9 +395,9 @@ static inline int pfkey_sec_ctx_len(struct sadb_x_sec_ctx *sec_ctx) ...@@ -395,9 +395,9 @@ static inline int pfkey_sec_ctx_len(struct sadb_x_sec_ctx *sec_ctx)
static inline int verify_sec_ctx_len(void *p) static inline int verify_sec_ctx_len(void *p)
{ {
struct sadb_x_sec_ctx *sec_ctx = (struct sadb_x_sec_ctx *)p; struct sadb_x_sec_ctx *sec_ctx = (struct sadb_x_sec_ctx *)p;
int len; int len = sec_ctx->sadb_x_ctx_len;
if (sec_ctx->sadb_x_ctx_len > PAGE_SIZE) if (len > PAGE_SIZE)
return -EINVAL; return -EINVAL;
len = pfkey_sec_ctx_len(sec_ctx); len = pfkey_sec_ctx_len(sec_ctx);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment