svn commit: r279885 - projects/ifnet/sys/netinet6
Gleb Smirnoff
glebius at FreeBSD.org
Wed Mar 11 13:07:12 UTC 2015
Author: glebius
Date: Wed Mar 11 13:07:11 2015
New Revision: 279885
URL: https://svnweb.freebsd.org/changeset/base/279885
Log:
if_drv_flags are no more.
Modified:
projects/ifnet/sys/netinet6/nd6_nbr.c
Modified: projects/ifnet/sys/netinet6/nd6_nbr.c
==============================================================================
--- projects/ifnet/sys/netinet6/nd6_nbr.c Wed Mar 11 12:57:07 2015 (r279884)
+++ projects/ifnet/sys/netinet6/nd6_nbr.c Wed Mar 11 13:07:11 2015 (r279885)
@@ -1431,8 +1431,7 @@ nd6_dad_timer(struct dadq *dp)
/* Stop DAD if the interface is down even after dad_maxtry attempts. */
if ((dp->dad_ns_tcount > V_dad_maxtry) &&
- (((ifp->if_flags & IFF_UP) == 0) ||
- ((ifp->if_drv_flags & IFF_DRV_RUNNING) == 0))) {
+ ((ifp->if_flags & IFF_UP) == 0)) {
nd6log((LOG_INFO, "%s: could not run DAD, driver problem?\n",
if_name(ifa->ifa_ifp)));
goto err;
More information about the svn-src-projects
mailing list