aboutsummaryrefslogtreecommitdiffstats
path: root/net/core/neighbour.c
diff options
context:
space:
mode:
authorJiri Pirko <jiri@resnulli.us>2014-01-14 15:46:07 +0100
committerDavid S. Miller <davem@davemloft.net>2014-01-15 14:46:00 -0800
commit3977458c9c61fc27a5a88cfcf51696b838d1ecc9 (patch)
treedd61dee5b54430783fa6dcf9b39fa2860d565ede /net/core/neighbour.c
parentgianfar: Fix portabilty issues for ethtool and ptp (diff)
downloadlinux-dev-3977458c9c61fc27a5a88cfcf51696b838d1ecc9.tar.xz
linux-dev-3977458c9c61fc27a5a88cfcf51696b838d1ecc9.zip
neigh: split lines for NEIGH_VAR_SET so they are not too long
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>
Diffstat (limited to 'net/core/neighbour.c')
-rw-r--r--net/core/neighbour.c9
1 files changed, 6 insertions, 3 deletions
diff --git a/net/core/neighbour.c b/net/core/neighbour.c
index e360d9e65c04..f8012feddf6d 100644
--- a/net/core/neighbour.c
+++ b/net/core/neighbour.c
@@ -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;
}
}