bridge: add space before '(/{', after ',', etc.
authortanxiaojun <tanxiaojun@huawei.com>
Thu, 19 Dec 2013 05:28:12 +0000 (13:28 +0800)
committerDavid S. Miller <davem@davemloft.net>
Fri, 20 Dec 2013 00:27:26 +0000 (19:27 -0500)
Spaces required before the open parenthesis '(', before the open
brace '{', after that ',' and around that '?/:'.

Signed-off-by: Tan Xiaojun <tanxiaojun@huawei.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
net/bridge/br_ioctl.c
net/bridge/br_private.h
net/bridge/br_stp_timer.c
net/bridge/br_sysfs_if.c
net/bridge/netfilter/ebt_log.c
net/bridge/netfilter/ebt_snat.c
net/bridge/netfilter/ebtables.c

index cd8c3a44ab7dccbdb82ddb0cba3fe0a8c2e978c0..a9a4a1b7863d11c1972c13ba0767c0ccdcfcfe35 100644 (file)
@@ -381,7 +381,7 @@ int br_dev_ioctl(struct net_device *dev, struct ifreq *rq, int cmd)
 {
        struct net_bridge *br = netdev_priv(dev);
 
-       switch(cmd) {
+       switch (cmd) {
        case SIOCDEVPRIVATE:
                return old_dev_ioctl(dev, rq, cmd);
 
index 045d56eaeca2b777973bf1450d7b410a09d2d9f1..2e77d923c8ee3a9943ed356362b5c8712227d4ff 100644 (file)
@@ -721,7 +721,7 @@ void br_netfilter_fini(void);
 void br_netfilter_rtable_init(struct net_bridge *);
 #else
 #define br_netfilter_init()    (0)
-#define br_netfilter_fini()    do { } while(0)
+#define br_netfilter_fini()    do { } while (0)
 #define br_netfilter_rtable_init(x)
 #endif
 
index 950663d4d3303327e9dcf6d383069734af441a44..558c46d19e0559c6c4f015e49d6b3e77d2205f87 100644 (file)
@@ -110,7 +110,7 @@ static void br_tcn_timer_expired(unsigned long arg)
        if (!br_is_root_bridge(br) && (br->dev->flags & IFF_UP)) {
                br_transmit_tcn(br);
 
-               mod_timer(&br->tcn_timer,jiffies + br->bridge_hello_time);
+               mod_timer(&br->tcn_timer, jiffies + br->bridge_hello_time);
        }
        spin_unlock(&br->lock);
 }
index 2a2cdb756d51e1944cb707b2945ba034ab22fe71..1549b26ad4e5fd9642eb8e8c11be9ac2fc667ee0 100644 (file)
@@ -26,7 +26,7 @@ struct brport_attribute {
        int (*store)(struct net_bridge_port *, unsigned long);
 };
 
-#define BRPORT_ATTR(_name,_mode,_show,_store)                  \
+#define BRPORT_ATTR(_name, _mode, _show, _store)               \
 const struct brport_attribute brport_attr_##_name = {          \
        .attr = {.name = __stringify(_name),                    \
                 .mode = _mode },                               \
index 19c37a4929bcd7619d43573285d5d33dfa3b865f..5322a36867a314c796bc8ff20f095fa217aea1f3 100644 (file)
@@ -96,7 +96,7 @@ ebt_log_packet(struct net *net, u_int8_t pf, unsigned int hooknum,
                bitmask = NF_LOG_MASK;
 
        if ((bitmask & EBT_LOG_IP) && eth_hdr(skb)->h_proto ==
-          htons(ETH_P_IP)){
+          htons(ETH_P_IP)) {
                const struct iphdr *ih;
                struct iphdr _iph;
 
index f8f0bd1a1d5122e01bae405a1ad78d70be7a25ce..0f6b118d6cb21cc19c891c37d974ddd4ad2bcd6a 100644 (file)
@@ -35,7 +35,7 @@ ebt_snat_tg(struct sk_buff *skb, const struct xt_action_param *par)
                        return EBT_DROP;
                if (ap->ar_hln != ETH_ALEN)
                        goto out;
-               if (skb_store_bits(skb, sizeof(_ah), info->mac,ETH_ALEN))
+               if (skb_store_bits(skb, sizeof(_ah), info->mac, ETH_ALEN))
                        return EBT_DROP;
        }
 out:
index 09d16d76e4c89b392bdb333d5bf3149c5b8a8f4a..185aa9ca2a0266e0aaf2379517d1e5b103a11016 100644 (file)
@@ -121,7 +121,7 @@ ebt_dev_check(const char *entry, const struct net_device *device)
        return devname[i] != entry[i] && entry[i] != 1;
 }
 
-#define FWINV2(bool,invflg) ((bool) ^ !!(e->invflags & invflg))
+#define FWINV2(bool, invflg) ((bool) ^ !!(e->invflags & invflg))
 /* process standard matches */
 static inline int
 ebt_basic_match(const struct ebt_entry *e, const struct sk_buff *skb,
@@ -1441,7 +1441,7 @@ static int copy_everything_to_user(struct ebt_table *t, void __user *user,
                return -EFAULT;
 
        if (*len != sizeof(struct ebt_replace) + entries_size +
-          (tmp.num_counters? nentries * sizeof(struct ebt_counter): 0))
+          (tmp.num_counters ? nentries * sizeof(struct ebt_counter) : 0))
                return -EINVAL;
 
        if (tmp.nentries != nentries) {
@@ -1477,7 +1477,7 @@ static int do_ebt_set_ctl(struct sock *sk,
        if (!ns_capable(net->user_ns, CAP_NET_ADMIN))
                return -EPERM;
 
-       switch(cmd) {
+       switch (cmd) {
        case EBT_SO_SET_ENTRIES:
                ret = do_replace(net, user, len);
                break;
@@ -1507,10 +1507,10 @@ static int do_ebt_get_ctl(struct sock *sk, int cmd, void __user *user, int *len)
        if (!t)
                return ret;
 
-       switch(cmd) {
+       switch (cmd) {
        case EBT_SO_GET_INFO:
        case EBT_SO_GET_INIT_INFO:
-               if (*len != sizeof(struct ebt_replace)){
+               if (*len != sizeof(struct ebt_replace)) {
                        ret = -EINVAL;
                        mutex_unlock(&ebt_mutex);
                        break;
@@ -1525,7 +1525,7 @@ static int do_ebt_get_ctl(struct sock *sk, int cmd, void __user *user, int *len)
                        tmp.valid_hooks = t->table->valid_hooks;
                }
                mutex_unlock(&ebt_mutex);
-               if (copy_to_user(user, &tmp, *len) != 0){
+               if (copy_to_user(user, &tmp, *len) != 0) {
                        BUGPRINT("c2u Didn't work\n");
                        ret = -EFAULT;
                        break;