Use proper if_getdrvflags() API.

This is a NOP.

Sponsored by:	Dell EMC Isilon
This commit is contained in:
Bryan Drewery 2016-10-25 03:55:56 +00:00
parent 7888d6422d
commit 1648616981
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=307897

View File

@ -5603,7 +5603,7 @@ bxe_tx_start(if_t ifp)
fp = &sc->fp[0];
if (ifp->if_drv_flags & IFF_DRV_OACTIVE) {
if (if_getdrvflags(ifp) & IFF_DRV_OACTIVE) {
fp->eth_q_stats.tx_queue_full_return++;
return;
}
@ -5643,7 +5643,7 @@ bxe_tx_mq_start_locked(struct bxe_softc *sc,
}
}
if (!sc->link_vars.link_up || !(ifp->if_drv_flags & IFF_DRV_RUNNING)) {
if (!sc->link_vars.link_up || !(if_getdrvflags(ifp) & IFF_DRV_RUNNING)) {
fp->eth_q_stats.tx_request_link_down_failures++;
goto bxe_tx_mq_start_locked_exit;
}