OSDN Git Service

geneve: Get rid of is_all_zero(), streamline is_tnl_info_zero()
authorStefano Brivio <sbrivio@redhat.com>
Fri, 20 Oct 2017 11:31:36 +0000 (13:31 +0200)
committerDavid S. Miller <davem@davemloft.net>
Sun, 22 Oct 2017 01:42:39 +0000 (02:42 +0100)
No need to re-invent memchr_inv() with !is_all_zero(). While at
it, replace conditional and return clauses with a single return
clause in is_tnl_info_zero().

Signed-off-by: Stefano Brivio <sbrivio@redhat.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/geneve.c

index f640407..01f7355 100644 (file)
@@ -1140,24 +1140,11 @@ static struct geneve_dev *geneve_find_dev(struct geneve_net *gn,
        return t;
 }
 
-static bool is_all_zero(const u8 *fp, size_t size)
-{
-       int i;
-
-       for (i = 0; i < size; i++)
-               if (fp[i])
-                       return false;
-       return true;
-}
-
 static bool is_tnl_info_zero(const struct ip_tunnel_info *info)
 {
-       if (info->key.tun_id || info->key.tun_flags || info->key.tos ||
-           info->key.ttl || info->key.label || info->key.tp_src ||
-           !is_all_zero((const u8 *)&info->key.u, sizeof(info->key.u)))
-               return false;
-       else
-               return true;
+       return !(info->key.tun_id || info->key.tun_flags || info->key.tos ||
+                info->key.ttl || info->key.label || info->key.tp_src ||
+                memchr_inv(&info->key.u, 0, sizeof(info->key.u)));
 }
 
 static bool geneve_dst_addr_equal(struct ip_tunnel_info *a,