linux56-tkg: 5.6.2
This commit is contained in:
parent
8f097f6bd5
commit
e4541e99aa
@ -87,9 +87,9 @@ else
|
|||||||
fi
|
fi
|
||||||
pkgname=("${pkgbase}" "${pkgbase}-headers")
|
pkgname=("${pkgbase}" "${pkgbase}-headers")
|
||||||
_basekernel=5.6
|
_basekernel=5.6
|
||||||
_sub=1
|
_sub=2
|
||||||
pkgver="${_basekernel}"."${_sub}"
|
pkgver="${_basekernel}"."${_sub}"
|
||||||
pkgrel=4
|
pkgrel=5
|
||||||
pkgdesc='Linux-tkg'
|
pkgdesc='Linux-tkg'
|
||||||
arch=('x86_64') # no i686 in here
|
arch=('x86_64') # no i686 in here
|
||||||
url="http://www.kernel.org/"
|
url="http://www.kernel.org/"
|
||||||
@ -130,11 +130,11 @@ source=("https://www.kernel.org/pub/linux/kernel/v5.x/linux-${_basekernel}.tar.x
|
|||||||
0013-tp_smapi_ec.patch
|
0013-tp_smapi_ec.patch
|
||||||
)
|
)
|
||||||
sha256sums=('e342b04a2aa63808ea0ef1baab28fc520bd031ef8cf93d9ee4a31d4058fcb622'
|
sha256sums=('e342b04a2aa63808ea0ef1baab28fc520bd031ef8cf93d9ee4a31d4058fcb622'
|
||||||
'75adbc3fae5ddd49e9292e9d0816f230c8bff3efd35dd2c06c3c9330c480d4ef'
|
'f16c1edbc79caa6098ca9964b27330cff970f016adc32c7baf95f4c2e7a1665d'
|
||||||
'b0e40c7d0be7fa64f9bdcb0d56d3f055b1ceff60c4a6c83fa972db329af1ff0d'
|
'b0e40c7d0be7fa64f9bdcb0d56d3f055b1ceff60c4a6c83fa972db329af1ff0d'
|
||||||
'31dc68e84aecfb7d069efb1305049122c65694676be8b955634abcf0675922a2'
|
'31dc68e84aecfb7d069efb1305049122c65694676be8b955634abcf0675922a2'
|
||||||
'd02bf5ca08fd610394b9d3a0c3b176d74af206f897dee826e5cbaec97bb4a4aa'
|
'd02bf5ca08fd610394b9d3a0c3b176d74af206f897dee826e5cbaec97bb4a4aa'
|
||||||
'9447bdd83f43e65f713fb4ec583203da929cb2b2fea808aad575b3fefb2fd531'
|
'dd5236f4109193dc518cf6e0a490600ae613c24232011f59d4069ce48ece32bd'
|
||||||
'7058e57fd68367b029adc77f2a82928f1433daaf02c8c279cb2d13556c8804d7'
|
'7058e57fd68367b029adc77f2a82928f1433daaf02c8c279cb2d13556c8804d7'
|
||||||
'c605f638d74c61861ebdc36ebd4cb8b6475eae2f6273e1ccb2bbb3e10a2ec3fe'
|
'c605f638d74c61861ebdc36ebd4cb8b6475eae2f6273e1ccb2bbb3e10a2ec3fe'
|
||||||
'bc69d6e5ee8172b0242c8fa72d13cfe2b8d2b6601468836908a7dfe8b78a3bbb'
|
'bc69d6e5ee8172b0242c8fa72d13cfe2b8d2b6601468836908a7dfe8b78a3bbb'
|
||||||
|
@ -1457,38 +1457,3 @@ index d2fa3e9ccd97c..bd10cb02fc0ff 100644
|
|||||||
if (!strcmp(str, "force"))
|
if (!strcmp(str, "force"))
|
||||||
force_load = 1;
|
force_load = 1;
|
||||||
if (!strcmp(str, "hwp_only"))
|
if (!strcmp(str, "hwp_only"))
|
||||||
From be8c827f50a0bcd56361b31ada11dc0a3c2fd240 Mon Sep 17 00:00:00 2001
|
|
||||||
From: Johannes Berg <johannes.berg@intel.com>
|
|
||||||
Date: Sun, 29 Mar 2020 22:50:06 +0200
|
|
||||||
Subject: mac80211: fix authentication with iwlwifi/mvm
|
|
||||||
|
|
||||||
The original patch didn't copy the ieee80211_is_data() condition
|
|
||||||
because on most drivers the management frames don't go through
|
|
||||||
this path. However, they do on iwlwifi/mvm, so we do need to keep
|
|
||||||
the condition here.
|
|
||||||
|
|
||||||
Cc: stable@vger.kernel.org
|
|
||||||
Fixes: ce2e1ca70307 ("mac80211: Check port authorization in the ieee80211_tx_dequeue() case")
|
|
||||||
Signed-off-by: Johannes Berg <johannes.berg@intel.com>
|
|
||||||
Signed-off-by: David S. Miller <davem@davemloft.net>
|
|
||||||
---
|
|
||||||
net/mac80211/tx.c | 3 ++-
|
|
||||||
1 file changed, 2 insertions(+), 1 deletion(-)
|
|
||||||
|
|
||||||
diff --git a/net/mac80211/tx.c b/net/mac80211/tx.c
|
|
||||||
index d9cca6dbd870..efe4c1fc68e5 100644
|
|
||||||
--- a/net/mac80211/tx.c
|
|
||||||
+++ b/net/mac80211/tx.c
|
|
||||||
@@ -3610,7 +3610,8 @@ begin:
|
|
||||||
* Drop unicast frames to unauthorised stations unless they are
|
|
||||||
* EAPOL frames from the local station.
|
|
||||||
*/
|
|
||||||
- if (unlikely(!ieee80211_vif_is_mesh(&tx.sdata->vif) &&
|
|
||||||
+ if (unlikely(ieee80211_is_data(hdr->frame_control) &&
|
|
||||||
+ !ieee80211_vif_is_mesh(&tx.sdata->vif) &&
|
|
||||||
tx.sdata->vif.type != NL80211_IFTYPE_OCB &&
|
|
||||||
!is_multicast_ether_addr(hdr->addr1) &&
|
|
||||||
!test_sta_flag(tx.sta, WLAN_STA_AUTHORIZED) &&
|
|
||||||
--
|
|
||||||
cgit 1.2-0.3.lf.el7
|
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user