On PowerPC allmodconfig build we get this:

security/selinux/xfrm.c:214: warning: comparison is always false due to limited 
range of data type

Signed-off-by: Stephen Rothwell <[EMAIL PROTECTED]>
---
 security/selinux/xfrm.c |    3 +++
 1 files changed, 3 insertions(+), 0 deletions(-)

-- 
Cheers,
Stephen Rothwell                    [EMAIL PROTECTED]

diff --git a/security/selinux/xfrm.c b/security/selinux/xfrm.c
index 36a191e..602beb0 100644
--- a/security/selinux/xfrm.c
+++ b/security/selinux/xfrm.c
@@ -211,8 +211,11 @@ static int selinux_xfrm_sec_ctx_alloc(struct xfrm_sec_ctx 
**ctxp,
        if (uctx->ctx_doi != XFRM_SC_ALG_SELINUX)
                return -EINVAL;
 
+       /* ctx_len is __u16 */
+#if PAGE_SIZE < (1 << 16)
        if (uctx->ctx_len >= PAGE_SIZE)
                return -ENOMEM;
+#endif
 
        *ctxp = ctx = kmalloc(sizeof(*ctx) +
                              uctx->ctx_len + 1,
-- 
1.5.3.4

-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

Reply via email to