]> git.openfabrics.org - ~shefty/rdma-dev.git/commitdiff
netfilter: ipset: whitespace and coding fixes detected by checkpatch.pl
authorJozsef Kadlecsik <kadlec@blackhole.kfki.hu>
Thu, 16 Jun 2011 17:01:26 +0000 (19:01 +0200)
committerPatrick McHardy <kaber@trash.net>
Thu, 16 Jun 2011 17:01:26 +0000 (19:01 +0200)
Signed-off-by: Jozsef Kadlecsik <kadlec@blackhole.kfki.hu>
Signed-off-by: Patrick McHardy <kaber@trash.net>
include/linux/netfilter/ipset/ip_set.h
include/linux/netfilter/ipset/ip_set_ahash.h
include/linux/netfilter/ipset/ip_set_timeout.h
include/linux/netfilter/ipset/pfxlen.h
net/netfilter/ipset/ip_set_bitmap_ipmac.c
net/netfilter/ipset/ip_set_core.c
net/netfilter/ipset/ip_set_hash_net.c
net/netfilter/ipset/ip_set_hash_netiface.c
net/netfilter/ipset/ip_set_hash_netport.c
net/netfilter/ipset/pfxlen.c
net/netfilter/xt_set.c

index e40917334d0472833c8846b19000e8b2866f1529..3540c6e262f7b1288c31e32b0769d40a90e9b1e3 100644 (file)
@@ -331,7 +331,7 @@ struct ip_set {
 /* register and unregister set references */
 extern ip_set_id_t ip_set_get_byname(const char *name, struct ip_set **set);
 extern void ip_set_put_byindex(ip_set_id_t index);
-extern const char * ip_set_name_byindex(ip_set_id_t index);
+extern const char *ip_set_name_byindex(ip_set_id_t index);
 extern ip_set_id_t ip_set_nfnl_get(const char *name);
 extern ip_set_id_t ip_set_nfnl_get_byindex(ip_set_id_t index);
 extern void ip_set_nfnl_put(ip_set_id_t index);
@@ -349,7 +349,7 @@ extern int ip_set_test(ip_set_id_t id, const struct sk_buff *skb,
                       const struct ip_set_adt_opt *opt);
 
 /* Utility functions */
-extern void * ip_set_alloc(size_t size);
+extern void *ip_set_alloc(size_t size);
 extern void ip_set_free(void *members);
 extern int ip_set_get_ipaddr4(struct nlattr *nla,  __be32 *ipaddr);
 extern int ip_set_get_ipaddr6(struct nlattr *nla, union nf_inet_addr *ipaddr);
@@ -359,7 +359,7 @@ ip_set_get_hostipaddr4(struct nlattr *nla, u32 *ipaddr)
 {
        __be32 ip;
        int ret = ip_set_get_ipaddr4(nla, &ip);
-       
+
        if (ret)
                return ret;
        *ipaddr = ntohl(ip);
index 8a0999a8baa11e1cee3f7d9173dc7ea5d799c823..c5b06aaa205c6e3db1b1ce5296f622ee0349167d 100644 (file)
@@ -43,7 +43,7 @@ struct htable {
        struct hbucket bucket[0]; /* hashtable buckets */
 };
 
-#define hbucket(h, i)          &((h)->bucket[i])
+#define hbucket(h, i)          (&((h)->bucket[i]))
 
 /* Book-keeping of the prefixes added to the set */
 struct ip_set_hash_nets {
index bae086af0e44b2c77572881c207df3079081a814..47923205a4ad426906d1fba4525645d4d547bcab 100644 (file)
@@ -78,7 +78,7 @@ ip_set_timeout_set(u32 timeout)
 static inline u32
 ip_set_timeout_get(unsigned long timeout)
 {
-       return timeout == IPSET_ELEM_PERMANENT ? 0 : 
+       return timeout == IPSET_ELEM_PERMANENT ? 0 :
                jiffies_to_msecs(timeout - jiffies)/1000;
 }
 
index d55a6ccf662e0b20441e9c04bb6efe04a8d63917..199fd11fedc076a8c8364b17857fdd5a6192f652 100644 (file)
@@ -2,7 +2,7 @@
 #define _PFXLEN_H
 
 #include <asm/byteorder.h>
-#include <linux/netfilter.h> 
+#include <linux/netfilter.h>
 #include <net/tcp.h>
 
 /* Prefixlen maps, by Jan Engelhardt  */
index 51ab66435a0a2372e9d9bb7a3c3666197a304b14..56096f544978e68ce089524e15bd3cb23dff389b 100644 (file)
@@ -635,7 +635,8 @@ static struct ip_set_type bitmap_ipmac_type = {
        },
        .adt_policy     = {
                [IPSET_ATTR_IP]         = { .type = NLA_NESTED },
-               [IPSET_ATTR_ETHER]      = { .type = NLA_BINARY, .len  = ETH_ALEN },
+               [IPSET_ATTR_ETHER]      = { .type = NLA_BINARY,
+                                           .len  = ETH_ALEN },
                [IPSET_ATTR_TIMEOUT]    = { .type = NLA_U32 },
                [IPSET_ATTR_LINENO]     = { .type = NLA_U32 },
        },
index 80a1262104bf30744601791774a039cbcb348444..c012985a5a2640f82ee73658593121d08e621dc7 100644 (file)
@@ -683,8 +683,8 @@ ip_set_create(struct sock *ctnl, struct sk_buff *skb,
        if (attr[IPSET_ATTR_DATA] &&
            nla_parse_nested(tb, IPSET_ATTR_CREATE_MAX, attr[IPSET_ATTR_DATA],
                             set->type->create_policy)) {
-               ret = -IPSET_ERR_PROTOCOL;
-               goto put_out;
+               ret = -IPSET_ERR_PROTOCOL;
+               goto put_out;
        }
 
        ret = set->type->create(set, tb, flags);
index 050163fb6094b211708904e86e962db3b264636f..2d4b1f48e8c9869267f4b2848a633a1530e0b593 100644 (file)
@@ -187,7 +187,7 @@ hash_net4_uadt(struct ip_set *set, struct nlattr *tb[],
                        return -IPSET_ERR_TIMEOUT;
                timeout = ip_set_timeout_uget(tb[IPSET_ATTR_TIMEOUT]);
        }
-       
+
        if (adt == IPSET_TEST || !tb[IPSET_ATTR_IP_TO]) {
                data.ip = htonl(ip & ip_set_hostmask(data.cidr));
                ret = adtfn(set, &data, timeout, flags);
@@ -205,7 +205,7 @@ hash_net4_uadt(struct ip_set *set, struct nlattr *tb[],
                        return -IPSET_ERR_HASH_RANGE;
        }
        if (retried)
-               ip = h->next.ip;                
+               ip = h->next.ip;
        while (!after(ip, ip_to)) {
                data.ip = htonl(ip);
                last = ip_set_range_to_cidr(ip, ip_to, &data.cidr);
index 51e5df12bd0058d21db7ea95fb445c8f52818ff5..3d6c53b6211a48bc2b420ef5f3fa8febdb30c239 100644 (file)
@@ -100,7 +100,7 @@ iface_test(struct rb_root *root, const char **iface)
        while (n) {
                const char *d = iface_data(n);
                int res = ifname_compare(*iface, d);
-               
+
                if (res < 0)
                        n = n->rb_left;
                else if (res > 0)
@@ -118,7 +118,7 @@ iface_add(struct rb_root *root, const char **iface)
 {
        struct rb_node **n = &(root->rb_node), *p = NULL;
        struct iface_node *d;
-       
+
        while (*n) {
                char *ifname = iface_data(*n);
                int res = ifname_compare(*iface, ifname);
@@ -296,10 +296,10 @@ hash_netiface4_kadt(struct ip_set *set, const struct sk_buff *skb,
        if (opt->cmdflags & IPSET_FLAG_PHYSDEV) {
 #ifdef CONFIG_BRIDGE_NETFILTER
                const struct nf_bridge_info *nf_bridge = skb->nf_bridge;
-               
+
                if (!nf_bridge)
                        return -EINVAL;
-               data.iface = SRCDIR ? PHYSDEV(physindev): PHYSDEV(physoutdev);
+               data.iface = SRCDIR ? PHYSDEV(physindev) : PHYSDEV(physoutdev);
                data.physdev = 1;
 #else
                data.iface = NULL;
@@ -350,7 +350,7 @@ hash_netiface4_uadt(struct ip_set *set, struct nlattr *tb[],
        if (tb[IPSET_ATTR_CIDR]) {
                data.cidr = nla_get_u8(tb[IPSET_ATTR_CIDR]);
                if (!data.cidr)
-                       return -IPSET_ERR_INVALID_CIDR; 
+                       return -IPSET_ERR_INVALID_CIDR;
        }
 
        if (tb[IPSET_ATTR_TIMEOUT]) {
@@ -359,7 +359,7 @@ hash_netiface4_uadt(struct ip_set *set, struct nlattr *tb[],
                timeout = ip_set_timeout_uget(tb[IPSET_ATTR_TIMEOUT]);
        }
 
-       strcpy(iface, nla_data(tb[IPSET_ATTR_IFACE])); 
+       strcpy(iface, nla_data(tb[IPSET_ATTR_IFACE]));
        data.iface = iface;
        ret = iface_test(&h->rbtree, &data.iface);
        if (adt == IPSET_ADD) {
@@ -372,8 +372,8 @@ hash_netiface4_uadt(struct ip_set *set, struct nlattr *tb[],
                return ret;
 
        if (tb[IPSET_ATTR_CADT_FLAGS]) {
-               u32 flags = ip_set_get_h32(tb[IPSET_ATTR_CADT_FLAGS]);
-               if (flags & IPSET_FLAG_PHYSDEV)
+               u32 cadt_flags = ip_set_get_h32(tb[IPSET_ATTR_CADT_FLAGS]);
+               if (cadt_flags & IPSET_FLAG_PHYSDEV)
                        data.physdev = 1;
        }
 
@@ -559,10 +559,10 @@ hash_netiface6_kadt(struct ip_set *set, const struct sk_buff *skb,
        if (opt->cmdflags & IPSET_FLAG_PHYSDEV) {
 #ifdef CONFIG_BRIDGE_NETFILTER
                const struct nf_bridge_info *nf_bridge = skb->nf_bridge;
-               
+
                if (!nf_bridge)
                        return -EINVAL;
-               data.iface = SRCDIR ? PHYSDEV(physindev): PHYSDEV(physoutdev);
+               data.iface = SRCDIR ? PHYSDEV(physindev) : PHYSDEV(physoutdev);
                data.physdev = 1;
 #else
                data.iface = NULL;
@@ -623,7 +623,7 @@ hash_netiface6_uadt(struct ip_set *set, struct nlattr *tb[],
                timeout = ip_set_timeout_uget(tb[IPSET_ATTR_TIMEOUT]);
        }
 
-       strcpy(iface, nla_data(tb[IPSET_ATTR_IFACE])); 
+       strcpy(iface, nla_data(tb[IPSET_ATTR_IFACE]));
        data.iface = iface;
        ret = iface_test(&h->rbtree, &data.iface);
        if (adt == IPSET_ADD) {
@@ -636,8 +636,8 @@ hash_netiface6_uadt(struct ip_set *set, struct nlattr *tb[],
                return ret;
 
        if (tb[IPSET_ATTR_CADT_FLAGS]) {
-               u32 flags = ip_set_get_h32(tb[IPSET_ATTR_CADT_FLAGS]);
-               if (flags & IPSET_FLAG_PHYSDEV)
+               u32 cadt_flags = ip_set_get_h32(tb[IPSET_ATTR_CADT_FLAGS]);
+               if (cadt_flags & IPSET_FLAG_PHYSDEV)
                        data.physdev = 1;
        }
 
index d7710a9fb7c7427b719076c7eb0e94c5f9509ff9..fe203d12f56b19ded1461a1ba4ed918ae3efa169 100644 (file)
@@ -199,7 +199,7 @@ hash_netport4_uadt(struct ip_set *set, struct nlattr *tb[],
        if (tb[IPSET_ATTR_CIDR]) {
                data.cidr = nla_get_u8(tb[IPSET_ATTR_CIDR]);
                if (!data.cidr)
-                       return -IPSET_ERR_INVALID_CIDR; 
+                       return -IPSET_ERR_INVALID_CIDR;
        }
 
        if (tb[IPSET_ATTR_PORT])
index b57a85673de78a62e9fcb675ba9b614eccad64d1..bd13d66220f154801b4b21662f25990b27d829b8 100644 (file)
@@ -148,7 +148,7 @@ const union nf_inet_addr ip_set_netmask_map[] = {
 EXPORT_SYMBOL_GPL(ip_set_netmask_map);
 
 #undef  E
-#define E(a, b, c, d)                                          \
+#define E(a, b, c, d)                                          \
        {.ip6 = { (__force __be32) a, (__force __be32) b,       \
                  (__force __be32) c, (__force __be32) d,       \
        } }
index 453847f293d30bf9a89407745b67cb4e27c751ba..19461c462dbd41e3f4a595fbfaf34a7f904cff39 100644 (file)
@@ -37,7 +37,7 @@ match_set(ip_set_id_t index, const struct sk_buff *skb,
        return inv;
 }
 
-#define ADT_OPT(n, f, d, fs, cfs, t)   \
+#define ADT_OPT(n, f, d, fs, cfs, t)   \
 const struct ip_set_adt_opt n = {      \
        .family = f,                    \
        .dim = d,                       \