[PATCH net-next] ipv6: recursive check rt->dst.from when call rt6_check_expired

Subsystems: networking [general], networking [ipv4/ipv6], the rest

STALE5103d

4 messages, 3 authors, 2012-09-19 · open the first message on its own page

[PATCH net-next] ipv6: recursive check rt->dst.from when call rt6_check_expired

From: <hidden>
Date: 2012-09-14 05:55:08

From: Li RongQing <redacted>

If dst cache dst_a copies from dst_b, and dst_b copies from dst_c, check
if dst_a is expired or not, we should not end with dst_a->dst.from, dst_b,
we should check dst_c.

CC: Gao feng <redacted>
Signed-off-by: Li RongQing <redacted>
---
 net/ipv6/route.c |    6 +-----
 1 files changed, 1 insertions(+), 5 deletions(-)
diff --git a/net/ipv6/route.c b/net/ipv6/route.c
index 83dafa5..0607ee3 100644
--- a/net/ipv6/route.c
+++ b/net/ipv6/route.c
@@ -369,15 +369,11 @@ static void ip6_dst_ifdown(struct dst_entry *dst, struct net_device *dev,
 
 static bool rt6_check_expired(const struct rt6_info *rt)
 {
-	struct rt6_info *ort = NULL;
-
 	if (rt->rt6i_flags & RTF_EXPIRES) {
 		if (time_after(jiffies, rt->dst.expires))
 			return true;
 	} else if (rt->dst.from) {
-		ort = (struct rt6_info *) rt->dst.from;
-		return (ort->rt6i_flags & RTF_EXPIRES) &&
-			time_after(jiffies, ort->dst.expires);
+		return rt6_check_expired((struct rt6_info *) rt->dst.from);
 	}
 	return false;
 }
-- 
1.7.4.1

Re: [PATCH net-next] ipv6: recursive check rt->dst.from when call rt6_check_expired

From: Gao feng <hidden>
Date: 2012-09-19 08:22:22

于 2012年09月14日 13:54, roy.qing.li@gmail.com 写道:
From: Li RongQing <redacted>

If dst cache dst_a copies from dst_b, and dst_b copies from dst_c, check
if dst_a is expired or not, we should not end with dst_a->dst.from, dst_b,
we should check dst_c.

CC: Gao feng <redacted>
Signed-off-by: Li RongQing <redacted>
---
Looks good to me,thanks rongqing :)

Re: [PATCH net-next] ipv6: recursive check rt->dst.from when call rt6_check_expired

From: David Miller <davem@davemloft.net>
Date: 2012-09-19 17:41:41

From: Gao feng <redacted>
Date: Wed, 19 Sep 2012 16:22:22 +0800
于 2012年09月14日 13:54, roy.qing.li@gmail.com 写道:
quoted
From: Li RongQing <redacted>

If dst cache dst_a copies from dst_b, and dst_b copies from dst_c, check
if dst_a is expired or not, we should not end with dst_a->dst.from, dst_b,
we should check dst_c.

CC: Gao feng <redacted>
Signed-off-by: Li RongQing <redacted>
---
Looks good to me,thanks rongqing :)
An explicit "Acked-by: " is more useful to us than simply saying
it looks good.

Re: [PATCH net-next] ipv6: recursive check rt->dst.from when call rt6_check_expired

From: David Miller <davem@davemloft.net>
Date: 2012-09-19 19:35:59

From: roy.qing.li@gmail.com
Date: Fri, 14 Sep 2012 13:54:57 +0800
From: Li RongQing <redacted>

If dst cache dst_a copies from dst_b, and dst_b copies from dst_c, check
if dst_a is expired or not, we should not end with dst_a->dst.from, dst_b,
we should check dst_c.

CC: Gao feng <redacted>
Signed-off-by: Li RongQing <redacted>
Applied, thanks.
Keyboard shortcuts
hback out one level
jnext message in thread
kprevious message in thread
ldrill in
Escclose help / fold thread tree
?toggle this help