svn commit: r216226 - head/libexec/bootpd

Gleb Smirnoff glebius at FreeBSD.org
Mon Dec 6 09:39:37 UTC 2010


Author: glebius
Date: Mon Dec  6 09:39:36 2010
New Revision: 216226
URL: http://svn.freebsd.org/changeset/base/216226

Log:
  Catch up with kernel using time_uptime to drive ARP timeouts.
  
  Noticed by:	jilles

Modified:
  head/libexec/bootpd/rtmsg.c

Modified: head/libexec/bootpd/rtmsg.c
==============================================================================
--- head/libexec/bootpd/rtmsg.c	Mon Dec  6 09:37:56 2010	(r216225)
+++ head/libexec/bootpd/rtmsg.c	Mon Dec  6 09:39:36 2010	(r216226)
@@ -126,7 +126,7 @@ int bsd_arp_set(ia, eaddr, len)
 	register struct sockaddr_dl *sdl;
 	register struct rt_msghdr *rtm = &(m_rtmsg.m_rtm);
 	u_char *ea;
-	struct timeval time;
+	struct timespec tp;
 	int op = RTM_ADD;
 
 	getsocket();
@@ -140,8 +140,8 @@ int bsd_arp_set(ia, eaddr, len)
 	doing_proxy = flags = export_only = expire_time = 0;
 
 	/* make arp entry temporary */
-	gettimeofday(&time, 0);
-	expire_time = time.tv_sec + 20 * 60;
+	clock_gettime(CLOCK_MONOTONIC, &tp);
+	expire_time = tp.tv_sec + 20 * 60;
 
 tryagain:
 	if (rtmsg(RTM_GET) < 0) {


More information about the svn-src-head mailing list