mirror of
https://github.com/torvalds/linux.git
synced 2024-11-06 03:51:48 +00:00
ipv4: Fix again the time difference calculation
Fix again the diff value in rt_bind_exception after collision of two latest patches, my original commit actually fixed the same problem. Signed-off-by: Julian Anastasov <ja@ssi.bg> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
abaa72d7fd
commit
f31fd38382
@ -1926,7 +1926,7 @@ restart:
|
||||
if (daddr != fnhe_daddr)
|
||||
continue;
|
||||
if (pmtu) {
|
||||
unsigned long diff = jiffies - expires;
|
||||
unsigned long diff = expires - jiffies;
|
||||
|
||||
if (time_before(jiffies, expires)) {
|
||||
rt->rt_pmtu = pmtu;
|
||||
|
Loading…
Reference in New Issue
Block a user