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

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


Author: sbruno
Date: Wed Jul 20 22:32:19 2016
New Revision: 303117
URL: https://svnweb.freebsd.org/changeset/base/303117

Log:
  Fix lem(4) build after r303107
  
  Submitted by:	Jason Wolfe <j at nitrology.com>

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

Modified: stable/10/sys/dev/e1000/if_lem.c
==============================================================================
--- stable/10/sys/dev/e1000/if_lem.c	Wed Jul 20 22:28:26 2016	(r303116)
+++ stable/10/sys/dev/e1000/if_lem.c	Wed Jul 20 22:32:19 2016	(r303117)
@@ -1047,7 +1047,7 @@ lem_ioctl(struct ifnet *ifp, u_long comm
 		ifp->if_mtu = ifr->ifr_mtu;
 		adapter->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)
 			lem_init_locked(adapter);
 		EM_CORE_UNLOCK(adapter);
 		break;


More information about the svn-src-stable mailing list