lwtunnel: change prototype of lwtunnel_state_get()
It saves some lines and simplify a bit the code when the state is returning by this function. It's also useful to handle a NULL entry. To avoid too long lines, I've also renamed lwtunnel_state_get() and lwtunnel_state_put() to lwtstate_get() and lwtstate_put(). CC: Thomas Graf <tgraf@suug.ch> CC: Roopa Prabhu <roopa@cumulusnetworks.com> Signed-off-by: Nicolas Dichtel <nicolas.dichtel@6wind.com> Acked-by: Thomas Graf <tgraf@suug.ch> Acked-by: Roopa Prabhu <roopa@cumulusnetworks.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:

committed by
David S. Miller

parent
d943659508
commit
5a6228a0b4
@@ -1778,8 +1778,7 @@ int ip6_route_add(struct fib6_config *cfg)
|
||||
cfg->fc_encap, &lwtstate);
|
||||
if (err)
|
||||
goto out;
|
||||
lwtunnel_state_get(lwtstate);
|
||||
rt->rt6i_lwtstate = lwtstate;
|
||||
rt->rt6i_lwtstate = lwtstate_get(lwtstate);
|
||||
if (lwtunnel_output_redirect(rt->rt6i_lwtstate))
|
||||
rt->dst.output = lwtunnel_output6;
|
||||
}
|
||||
@@ -2161,10 +2160,7 @@ static void ip6_rt_copy_init(struct rt6_info *rt, struct rt6_info *ort)
|
||||
#endif
|
||||
rt->rt6i_prefsrc = ort->rt6i_prefsrc;
|
||||
rt->rt6i_table = ort->rt6i_table;
|
||||
if (ort->rt6i_lwtstate) {
|
||||
lwtunnel_state_get(ort->rt6i_lwtstate);
|
||||
rt->rt6i_lwtstate = ort->rt6i_lwtstate;
|
||||
}
|
||||
rt->rt6i_lwtstate = lwtstate_get(ort->rt6i_lwtstate);
|
||||
}
|
||||
|
||||
#ifdef CONFIG_IPV6_ROUTE_INFO
|
||||
|
Reference in New Issue
Block a user