Re: [PATCH] net: clean up some sparse endianness warnings in ipv6.h

From: David Miller
Date: Tue Jul 15 2014 - 19:06:00 EST


From: Jeff Layton <jlayton@xxxxxxxxxxxxxxx>
Date: Mon, 14 Jul 2014 08:25:46 -0400

> #endif
> - (a->s6_addr32[2] ^ htonl(0x0000ffff))) == 0UL;
> + ((a->s6_addr32[2] ^ htonl(0x0000ffff)) == cpu_to_be32(0)));

While you are spinning a new version, change this htonl() to be
cpu_to_be32(). All the rest of this entire expression uses the
cpu_to_*() interfaces, so for consistency this should too.

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