aboutsummaryrefslogtreecommitdiff
path: root/sys/dev/wi
diff options
context:
space:
mode:
authorSam Leffler <sam@FreeBSD.org>2004-04-01 00:33:33 +0000
committerSam Leffler <sam@FreeBSD.org>2004-04-01 00:33:33 +0000
commit8d798b52fdfc38cd3d4fcbb244e62851115e637c (patch)
tree676c9c8fed45ca5992c08a3b9b1e83a3e964f7d5 /sys/dev/wi
parent2fc0588da2382381d50bd32f3ee007471ab5dc11 (diff)
Notes
Diffstat (limited to 'sys/dev/wi')
-rw-r--r--sys/dev/wi/if_wi.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/sys/dev/wi/if_wi.c b/sys/dev/wi/if_wi.c
index c0361991e21f4..fb45ee94921a2 100644
--- a/sys/dev/wi/if_wi.c
+++ b/sys/dev/wi/if_wi.c
@@ -939,10 +939,6 @@ wi_start(struct ifnet *ifp)
}
frmhdr.wi_tx_ctl |= htole16(WI_TXCNTL_NOCRYPT);
}
- m_copydata(m0, 0, sizeof(struct ieee80211_frame),
- (caddr_t)&frmhdr.wi_whdr);
- m_adj(m0, sizeof(struct ieee80211_frame));
- frmhdr.wi_dat_len = htole16(m0->m_pkthdr.len);
#if NBPFILTER > 0
if (sc->sc_drvbpf) {
sc->sc_tx_th.wt_rate =
@@ -951,6 +947,10 @@ wi_start(struct ifnet *ifp)
&sc->sc_tx_th, sizeof(sc->sc_tx_th), m0);
}
#endif
+ m_copydata(m0, 0, sizeof(struct ieee80211_frame),
+ (caddr_t)&frmhdr.wi_whdr);
+ m_adj(m0, sizeof(struct ieee80211_frame));
+ frmhdr.wi_dat_len = htole16(m0->m_pkthdr.len);
if (IFF_DUMPPKTS(ifp))
wi_dump_pkt(&frmhdr, NULL, -1);
fid = sc->sc_txd[cur].d_fid;