* [PATCH] ipv4: Minor logic clean-up in ipv4_mtu
@ 2012-08-27 16:30 Alexander Duyck
2012-08-31 20:23 ` David Miller
0 siblings, 1 reply; 2+ messages in thread
From: Alexander Duyck @ 2012-08-27 16:30 UTC (permalink / raw)
To: netdev; +Cc: davem, jeffrey.t.kirsher
In ipv4_mtu there is some logic where we are testing for a non-zero value
and a timer expiration, then setting the value to zero, and then testing if
the value is zero we set it to a value based on the dst. Instead of
bothering with the extra steps it is easier to just cleanup the logic so
that we set it to the dst based value if it is zero or if the timer has
expired.
Signed-off-by: Alexander Duyck <alexander.h.duyck@intel.com>
---
net/ipv4/route.c | 5 +----
1 files changed, 1 insertions(+), 4 deletions(-)
diff --git a/net/ipv4/route.c b/net/ipv4/route.c
index 50f6d3a..5162824 100644
--- a/net/ipv4/route.c
+++ b/net/ipv4/route.c
@@ -1132,10 +1132,7 @@ static unsigned int ipv4_mtu(const struct dst_entry *dst)
const struct rtable *rt = (const struct rtable *) dst;
unsigned int mtu = rt->rt_pmtu;
- if (mtu && time_after_eq(jiffies, rt->dst.expires))
- mtu = 0;
-
- if (!mtu)
+ if (!mtu || time_after_eq(jiffies, rt->dst.expires))
mtu = dst_metric_raw(dst, RTAX_MTU);
if (mtu && rt_is_output_route(rt))
^ permalink raw reply related [flat|nested] 2+ messages in thread
* Re: [PATCH] ipv4: Minor logic clean-up in ipv4_mtu
2012-08-27 16:30 [PATCH] ipv4: Minor logic clean-up in ipv4_mtu Alexander Duyck
@ 2012-08-31 20:23 ` David Miller
0 siblings, 0 replies; 2+ messages in thread
From: David Miller @ 2012-08-31 20:23 UTC (permalink / raw)
To: alexander.h.duyck; +Cc: netdev, jeffrey.t.kirsher
From: Alexander Duyck <alexander.h.duyck@intel.com>
Date: Mon, 27 Aug 2012 09:30:01 -0700
> In ipv4_mtu there is some logic where we are testing for a non-zero value
> and a timer expiration, then setting the value to zero, and then testing if
> the value is zero we set it to a value based on the dst. Instead of
> bothering with the extra steps it is easier to just cleanup the logic so
> that we set it to the dst based value if it is zero or if the timer has
> expired.
>
> Signed-off-by: Alexander Duyck <alexander.h.duyck@intel.com>
Applied to net-next, thanks.
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2012-08-31 20:23 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-08-27 16:30 [PATCH] ipv4: Minor logic clean-up in ipv4_mtu Alexander Duyck
2012-08-31 20:23 ` David Miller
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).