Skip to content

Commit

Permalink
[AF_KEY]: suppress a warning for 64k pages.
Browse files Browse the repository at this point in the history
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: Stephen Rothwell <sfr@canb.auug.org.au>
Signed-off-by: David S. Miller <davem@davemloft.net>
  • Loading branch information
Stephen Rothwell authored and David S. Miller committed Oct 31, 2007
1 parent 97ef1bb commit 298bb62
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions net/key/af_key.c
Original file line number Diff line number Diff line change
Expand Up @@ -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)
{
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;

len = pfkey_sec_ctx_len(sec_ctx);
Expand Down

0 comments on commit 298bb62

Please sign in to comment.