Tag outbound raw 802.11 frames with both the node and an mbuf tag

with the transmit params.

This allows raw 802.11 frames to be queued in the driver if necessary,
rather than requiring it to be direct-dispatched into the hardware.

Tested:

* ath(4), STA mode
* iwn(4), STA mode

MFC after:	2 weeks
Sponsored by:	Norse Corp, Inc.
This commit is contained in:
Adrian Chadd 2015-06-04 17:54:41 +00:00
parent 6d906814eb
commit ff09e23f53
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=283994

View File

@ -508,6 +508,25 @@ ieee80211_raw_output(struct ieee80211vap *vap, struct ieee80211_node *ni,
{
struct ieee80211com *ic = vap->iv_ic;
/*
* Set node - the caller has taken a reference, so ensure
* that the mbuf has the same node value that
* it would if it were going via the normal path.
*/
m->m_pkthdr.rcvif = (void *)ni;
/*
* Attempt to add bpf transmit parameters.
*
* For now it's ok to fail; the raw_xmit api still takes
* them as an option.
*
* Later on when ic_raw_xmit() has params removed,
* they'll have to be added - so fail the transmit if
* they can't be.
*/
(void) ieee80211_add_xmit_params(m, params);
return (ic->ic_raw_xmit(ni, m, params));
}