]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
ipv6: Optimize ipv6_addr_is_solict_mult().
authorYOSHIFUJI Hideaki / 吉藤英明 <yoshfuji@linux-ipv6.org>
Sun, 20 Jan 2013 07:39:07 +0000 (07:39 +0000)
committerDavid S. Miller <davem@davemloft.net>
Mon, 21 Jan 2013 03:29:49 +0000 (22:29 -0500)
Signed-off-by: YOSHIFUJI Hideaki <yoshfuji@linux-ipv6.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
include/net/addrconf.h

index 3a3eeb407f4b719c2e8bdfbe1118ba6a995d78be..9dc5efc3b0d6925cb7ff2b91e06f9ed83d926555 100644 (file)
@@ -307,10 +307,17 @@ static inline bool ipv6_addr_is_isatap(const struct in6_addr *addr)
 
 static inline bool ipv6_addr_is_solict_mult(const struct in6_addr *addr)
 {
-       return (addr->s6_addr32[0] == htonl(0xff020000) &&
-               addr->s6_addr32[1] == htonl(0x00000000) &&
-               addr->s6_addr32[2] == htonl(0x00000001) &&
-               addr->s6_addr[12] == 0xff);
+#if defined(CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS) && BITS_PER_LONG == 64
+       __u64 *p = (__u64 *)addr;
+       return ((p[0] ^ cpu_to_be64(0xff02000000000000UL)) |
+               ((p[1] ^ cpu_to_be64(0x00000001ff000000UL)) &
+                cpu_to_be64(0xffffffffff000000UL))) == 0UL;
+#else
+       return ((addr->s6_addr32[0] ^ htonl(0xff020000)) |
+               addr->s6_addr32[1] |
+               (addr->s6_addr32[2] ^ htonl(0x00000001)) |
+               (addr->s6_addr[12] ^ 0xff)) == 0;
+#endif
 }
 
 #ifdef CONFIG_PROC_FS