Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/netbsd-8]: src/sys/net Pull up following revision(s) (requested by nonak...
details: https://anonhg.NetBSD.org/src/rev/681a393a5d59
branches: netbsd-8
changeset: 435039:681a393a5d59
user: martin <martin%NetBSD.org@localhost>
date: Sat Jun 09 14:44:33 2018 +0000
description:
Pull up following revision(s) (requested by nonaka in ticket #862):
sys/net/if_llatbl.c: revision 1.27
It is necessary to set wall time instead of monotonic time to rmx_expire.
diffstat:
sys/net/if_llatbl.c | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
diffs (20 lines):
diff -r 7640ab9e6db7 -r 681a393a5d59 sys/net/if_llatbl.c
--- a/sys/net/if_llatbl.c Sat Jun 09 14:38:18 2018 +0000
+++ b/sys/net/if_llatbl.c Sat Jun 09 14:44:33 2018 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: if_llatbl.c,v 1.18.6.3 2018/03/13 13:27:10 martin Exp $ */
+/* $NetBSD: if_llatbl.c,v 1.18.6.4 2018/06/09 14:44:33 martin Exp $ */
/*
* Copyright (c) 2004 Luigi Rizzo, Alessandro Cerri. All rights reserved.
* Copyright (c) 2004-2008 Qing Li. All rights reserved.
@@ -112,8 +112,8 @@
/* Need to copy by myself */
rtm->rtm_index = ifp->if_index;
rtm->rtm_rmx.rmx_mtu = 0;
- rtm->rtm_rmx.rmx_expire =
- (lle->la_flags & LLE_STATIC) ? 0 : lle->la_expire;
+ rtm->rtm_rmx.rmx_expire = (lle->la_flags & LLE_STATIC) ? 0 :
+ time_mono_to_wall(lle->la_expire);
rtm->rtm_flags = RTF_UP;
rtm->rtm_flags |= RTF_HOST; /* For ndp */
/* For backward compatibility */
Home |
Main Index |
Thread Index |
Old Index