From 6f24fa48dcd6014650c9699872a0e444f5a56b42 Mon Sep 17 00:00:00 2001 From: Jiri Pirko Date: Tue, 14 Jan 2014 15:46:07 +0100 Subject: [PATCH] neigh: split lines for NEIGH_VAR_SET so they are not too long introduced by: commit 09f77105705ef973d41fa2f6814b742e0d40af36 "neigh: convert parms to an array" Signed-off-by: Jiri Pirko Signed-off-by: David S. Miller --- net/core/neighbour.c | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/net/core/neighbour.c b/net/core/neighbour.c index e360d9e65c040..f8012feddf6da 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; } } -- 2.39.5