* [PATCH net-next] ipv6: trival improvements
@ 2013-12-19 6:18 roy.qing.li
2013-12-19 19:45 ` David Miller
0 siblings, 1 reply; 3+ messages in thread
From: roy.qing.li @ 2013-12-19 6:18 UTC (permalink / raw)
To: netdev
From: Li RongQing <roy.qing.li@gmail.com>
1. remove the unnecessary setting rt.rt6i_metric to 0 since memset() has clear
them.
2. call ip6_rt_put to release rt only when rt is not null in addrconf_prefix_rcv.
Signed-off-by: Li RongQing <roy.qing.li@gmail.com>
---
net/ipv6/addrconf.c | 3 ++-
net/ipv6/route.c | 2 --
2 files changed, 2 insertions(+), 3 deletions(-)
diff --git a/net/ipv6/addrconf.c b/net/ipv6/addrconf.c
index 3c3425e..6ef2e11 100644
--- a/net/ipv6/addrconf.c
+++ b/net/ipv6/addrconf.c
@@ -2167,6 +2167,8 @@ void addrconf_prefix_rcv(struct net_device *dev, u8 *opt, int len, bool sllao)
} else {
rt6_clean_expires(rt);
}
+
+ ip6_rt_put(rt);
} else if (valid_lft) {
clock_t expires = 0;
int flags = RTF_ADDRCONF | RTF_PREFIX_RT;
@@ -2178,7 +2180,6 @@ void addrconf_prefix_rcv(struct net_device *dev, u8 *opt, int len, bool sllao)
addrconf_prefix_route(&pinfo->prefix, pinfo->prefix_len,
dev, expires, flags);
}
- ip6_rt_put(rt);
}
/* Try to figure out our local address for this prefix */
diff --git a/net/ipv6/route.c b/net/ipv6/route.c
index a1a5752..b962f29 100644
--- a/net/ipv6/route.c
+++ b/net/ipv6/route.c
@@ -1060,7 +1060,6 @@ struct dst_entry *ip6_blackhole_route(struct net *net, struct dst_entry *dst_ori
rt->rt6i_gateway = ort->rt6i_gateway;
rt->rt6i_flags = ort->rt6i_flags;
- rt->rt6i_metric = 0;
memcpy(&rt->rt6i_dst, &ort->rt6i_dst, sizeof(struct rt6key));
#ifdef CONFIG_IPV6_SUBTREES
@@ -1912,7 +1911,6 @@ static struct rt6_info *ip6_rt_copy(struct rt6_info *ort,
if ((ort->rt6i_flags & (RTF_DEFAULT | RTF_ADDRCONF)) ==
(RTF_DEFAULT | RTF_ADDRCONF))
rt6_set_from(rt, ort);
- rt->rt6i_metric = 0;
#ifdef CONFIG_IPV6_SUBTREES
memcpy(&rt->rt6i_src, &ort->rt6i_src, sizeof(struct rt6key));
--
1.7.10.4
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [PATCH net-next] ipv6: trival improvements
2013-12-19 6:18 [PATCH net-next] ipv6: trival improvements roy.qing.li
@ 2013-12-19 19:45 ` David Miller
2013-12-20 1:01 ` RongQing Li
0 siblings, 1 reply; 3+ messages in thread
From: David Miller @ 2013-12-19 19:45 UTC (permalink / raw)
To: roy.qing.li; +Cc: netdev
From: roy.qing.li@gmail.com
Date: Thu, 19 Dec 2013 14:18:52 +0800
> From: Li RongQing <roy.qing.li@gmail.com>
>
> 1. remove the unnecessary setting rt.rt6i_metric to 0 since memset() has clear
> them.
> 2. call ip6_rt_put to release rt only when rt is not null in addrconf_prefix_rcv.
>
> Signed-off-by: Li RongQing <roy.qing.li@gmail.com>
ip6_rt_put() transparently handles NULL just fine, don't special
case it like this.
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH net-next] ipv6: trival improvements
2013-12-19 19:45 ` David Miller
@ 2013-12-20 1:01 ` RongQing Li
0 siblings, 0 replies; 3+ messages in thread
From: RongQing Li @ 2013-12-20 1:01 UTC (permalink / raw)
To: David Miller; +Cc: netdev
On Fri, Dec 20, 2013 at 3:45 AM, David Miller <davem@davemloft.net> wrote:
> From: roy.qing.li@gmail.com
> Date: Thu, 19 Dec 2013 14:18:52 +0800
>
>> From: Li RongQing <roy.qing.li@gmail.com>
>>
>> 1. remove the unnecessary setting rt.rt6i_metric to 0 since memset() has clear
>> them.
>> 2. call ip6_rt_put to release rt only when rt is not null in addrconf_prefix_rcv.
>>
>> Signed-off-by: Li RongQing <roy.qing.li@gmail.com>
>
> ip6_rt_put() transparently handles NULL just fine, don't special
> case it like this.
Yes, ip6_rt_put() can handles NULL, but this change can free cpu to do judgement
one time if rt is NULL.
Thanks
-Roy
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2013-12-20 1:01 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-12-19 6:18 [PATCH net-next] ipv6: trival improvements roy.qing.li
2013-12-19 19:45 ` David Miller
2013-12-20 1:01 ` RongQing Li
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).