Skip to content

Commit 8f0149a

Browse files
nbd168jmberg-intel
authored andcommitted
wifi: mac80211: fix mesh forwarding
Linearize packets (needed for forwarding A-MSDU subframes). Fixes: 986e43b ("wifi: mac80211: fix receiving A-MSDU frames on mesh interfaces") Signed-off-by: Felix Fietkau <nbd@nbd.name> Link: https://lore.kernel.org/r/20230324120924.38412-1-nbd@nbd.name Signed-off-by: Johannes Berg <johannes.berg@intel.com>
1 parent e26c094 commit 8f0149a

1 file changed

Lines changed: 3 additions & 0 deletions

File tree

net/mac80211/rx.c

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2833,6 +2833,9 @@ ieee80211_rx_mesh_data(struct ieee80211_sub_if_data *sdata, struct sta_info *sta
28332833

28342834
if (skb_cow_head(fwd_skb, hdrlen - sizeof(struct ethhdr)))
28352835
return RX_DROP_UNUSABLE;
2836+
2837+
if (skb_linearize(fwd_skb))
2838+
return RX_DROP_UNUSABLE;
28362839
}
28372840

28382841
fwd_hdr = skb_push(fwd_skb, hdrlen - sizeof(struct ethhdr));

0 commit comments

Comments
 (0)