aboutsummaryrefslogtreecommitdiff
path: root/sys/dev/bxe
diff options
context:
space:
mode:
authorJustin Hibbits <jhibbits@FreeBSD.org>2023-07-21 18:16:25 +0000
committerJustin Hibbits <jhibbits@FreeBSD.org>2023-08-25 16:50:14 +0000
commit2a3716432d209c5fef1eb1a719f4c1914e7c8b5a (patch)
tree5786c53ffd485f694049b342f1c1080acfb24336 /sys/dev/bxe
parent8052b01e7e4113fa8296ce43c354116b0a1774b7 (diff)
Diffstat (limited to 'sys/dev/bxe')
-rw-r--r--sys/dev/bxe/bxe.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/bxe/bxe.c b/sys/dev/bxe/bxe.c
index 60450d0a6fbb..36b03ee5c135 100644
--- a/sys/dev/bxe/bxe.c
+++ b/sys/dev/bxe/bxe.c
@@ -5574,7 +5574,7 @@ bxe_tx_start_locked(struct bxe_softc *sc,
tx_count++;
/* send a copy of the frame to any BPF listeners. */
- if_etherbpfmtap(ifp, m);
+ ether_bpf_mtap_if(ifp, m);
tx_bd_avail = bxe_tx_avail(sc, fp);
@@ -5715,7 +5715,7 @@ bxe_tx_mq_start_locked(struct bxe_softc *sc,
tx_count++;
/* send a copy of the frame to any BPF listeners */
- if_etherbpfmtap(ifp, next);
+ ether_bpf_mtap_if(ifp, next);
drbr_advance(ifp, tx_br);
}