svn commit: r194620 - head/sys/net
Bjoern A. Zeeb
bz at FreeBSD.org
Mon Jun 22 10:27:21 UTC 2009
Author: bz
Date: Mon Jun 22 10:27:20 2009
New Revision: 194620
URL: http://svn.freebsd.org/changeset/base/194620
Log:
After the update to fxp(4) in r194573 we should no longer need
this DELAY(100) hack introduced in r56938.
Thanks to: yongari
MFC after: 6 weeks
X-MFC note: not before the fxp(4) changes
Modified:
head/sys/net/if.c
Modified: head/sys/net/if.c
==============================================================================
--- head/sys/net/if.c Mon Jun 22 10:23:54 2009 (r194619)
+++ head/sys/net/if.c Mon Jun 22 10:27:20 2009 (r194620)
@@ -2465,7 +2465,6 @@ ifioctl(struct socket *so, u_long cmd, c
if ((oif_flags ^ ifp->if_flags) & IFF_UP) {
#ifdef INET6
- DELAY(100);/* XXX: temporary workaround for fxp issue*/
if (ifp->if_flags & IFF_UP) {
int s = splimp();
in6_if_up(ifp);
More information about the svn-src-all
mailing list