mirror of
https://github.com/openwrt/openwrt.git
synced 2024-12-22 15:02:32 +00:00
ac5a6acbb1
This updates the backports package used in mac80211 to version 4.19.7-1 which is based on kernel 4.19.7. This integrates all the stable fixes introduces in this kernel version. The deleted patches are not needed any more because they are either included in the upstream Linux kernel 4.19.7 or in backports 4.19.7-1. Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de>
16 lines
451 B
Diff
16 lines
451 B
Diff
--- a/net/mac80211/tx.c
|
|
+++ b/net/mac80211/tx.c
|
|
@@ -3791,6 +3791,12 @@ out:
|
|
netdev_tx_t ieee80211_subif_start_xmit(struct sk_buff *skb,
|
|
struct net_device *dev)
|
|
{
|
|
+#if defined(sk_pacing_shift) || LINUX_VERSION_IS_GEQ(4,15,0)
|
|
+ if (skb->sk && sk_fullsock(skb->sk) &&
|
|
+ skb->sk->sk_pacing_shift != 6)
|
|
+ skb->sk->sk_pacing_shift = 6;
|
|
+#endif
|
|
+
|
|
if (unlikely(ieee80211_multicast_to_unicast(skb, dev))) {
|
|
struct sk_buff_head queue;
|
|
|