neigh: split lines for NEIGH_VAR_SET so they are not too long
authorJiri Pirko <jiri@resnulli.us>
Tue, 14 Jan 2014 14:46:07 +0000 (15:46 +0100)
committerDavid S. Miller <davem@davemloft.net>
Wed, 15 Jan 2014 22:46:00 +0000 (14:46 -0800)
introduced by:
commit 1f9248e5606afc6485255e38ad57bdac08fa7711
"neigh: convert parms to an array"

Signed-off-by: Jiri Pirko <jiri@resnulli.us>
Signed-off-by: David S. Miller <davem@davemloft.net>
net/core/neighbour.c

index e360d9e65c0401020218e9c0c7b057743c4ac919..f8012feddf6daca79b0d155215b518dee202ebab 100644 (file)
@@ -2087,13 +2087,16 @@ static int neightbl_set(struct sk_buff *skb, struct nlmsghdr *nlh)
                                              nla_get_msecs(tbp[i]));
                                break;
                        case NDTPA_ANYCAST_DELAY:
-                               NEIGH_VAR_SET(p, ANYCAST_DELAY, nla_get_msecs(tbp[i]));
+                               NEIGH_VAR_SET(p, ANYCAST_DELAY,
+                                             nla_get_msecs(tbp[i]));
                                break;
                        case NDTPA_PROXY_DELAY:
-                               NEIGH_VAR_SET(p, PROXY_DELAY, nla_get_msecs(tbp[i]));
+                               NEIGH_VAR_SET(p, PROXY_DELAY,
+                                             nla_get_msecs(tbp[i]));
                                break;
                        case NDTPA_LOCKTIME:
-                               NEIGH_VAR_SET(p, LOCKTIME, nla_get_msecs(tbp[i]));
+                               NEIGH_VAR_SET(p, LOCKTIME,
+                                             nla_get_msecs(tbp[i]));
                                break;
                        }
                }