svn commit: r303116 - stable/10/sys/dev/e1000

Sean Bruno sbruno at FreeBSD.org
Wed Jul 20 22:28:28 UTC 2016


Author: sbruno
Date: Wed Jul 20 22:28:26 2016
New Revision: 303116
URL: https://svnweb.freebsd.org/changeset/base/303116

Log:
  Fix em(4) build after r303107
  
  Reported by:	Jason Wolf <j at nitrology.com>

Modified:
  stable/10/sys/dev/e1000/if_em.c

Modified: stable/10/sys/dev/e1000/if_em.c
==============================================================================
--- stable/10/sys/dev/e1000/if_em.c	Wed Jul 20 22:05:44 2016	(r303115)
+++ stable/10/sys/dev/e1000/if_em.c	Wed Jul 20 22:28:26 2016	(r303116)
@@ -1220,7 +1220,7 @@ em_ioctl(struct ifnet *ifp, u_long comma
 		ifp->if_mtu = ifr->ifr_mtu;
 		adapter->hw.mac.max_frame_size =
 		    ifp->if_mtu + ETHER_HDR_LEN + ETHER_CRC_LEN;
-		if (if_getdrvflags(ifp) & IFF_DRV_RUNNING)
+		if (ifp->if_drv_flags & IFF_DRV_RUNNING)
 			em_init_locked(adapter);
 		EM_CORE_UNLOCK(adapter);
 		break;


More information about the svn-src-all mailing list