6lowpan: iphc: fix invalid case handling
authorAlexander Aring <aar@pengutronix.de>
Fri, 26 Feb 2016 08:06:07 +0000 (09:06 +0100)
committerMarcel Holtmann <marcel@holtmann.org>
Fri, 26 Feb 2016 08:08:15 +0000 (09:08 +0100)
This patch fixes the return value in a case which should never occur.
Instead returning "-EINVAL" we return LOWPAN_IPHC_DAM_00 which is
invalid on context based addresses. Also change the WARN_ON_ONCE to
WARN_ONCE which was suggested by Dan Carpenter.

Reported-by: Dan Carpenter <dan.carpenter@oracle.com>
Signed-off-by: Alexander Aring <aar@pengutronix.de>
Signed-off-by: Marcel Holtmann <marcel@holtmann.org>
net/6lowpan/iphc.c

index 06287ac..7217251 100644 (file)
@@ -811,8 +811,8 @@ static u8 lowpan_compress_ctx_addr(u8 **hc_ptr, const struct in6_addr *ipaddr,
                goto out;
        }
 
-       WARN_ON_ONCE("context found but no address mode matched\n");
-       return -EINVAL;
+       WARN_ONCE(1, "context found but no address mode matched\n");
+       return LOWPAN_IPHC_DAM_00;
 out:
 
        if (sam)