mac80211: implement multicast forwarding on fast-RX path
authorJohannes Berg <johannes.berg@intel.com>
Wed, 14 Dec 2016 15:47:43 +0000 (16:47 +0100)
committerJohannes Berg <johannes.berg@intel.com>
Mon, 9 Jan 2017 10:12:04 +0000 (11:12 +0100)
commiteeb0d56fab4cd7848cf2be6704fa48900dbc1381
tree39e39ba8bdce2af0d6e4351031e66bb8cf1c8771
parent03430fa10b99e95e3a15eb7c00978fb1652f3b24
mac80211: implement multicast forwarding on fast-RX path

In AP (or VLAN) mode, when unicast 802.11 packets are received,
they might actually be multicast after conversion. In this case
the fast-RX path didn't handle them properly to send them back
to the wireless medium. Implement that by copying the SKB and
sending it back out.

The possible alternative would be to just punt the packet back
to the regular (slow) RX path, but since we have almost all of
the required code here already it's not so complicated to add
here. Punting it back would also mean acquiring the spinlock,
which would be bad for the stated purpose of the fast-RX path,
to enable well-performing parallel RX.

Cc: stable@vger.kernel.org
Signed-off-by: Johannes Berg <johannes.berg@intel.com>
net/mac80211/rx.c