From 8bb2ea12ec784719bef982cd49314b2fdc465b26 Mon Sep 17 00:00:00 2001 From: David P Date: Tue, 31 Jul 2018 13:42:52 -0400 Subject: remove Arch Linux git format-patch patches Arch now builds their kernels from their github repo https://git.archlinux.org/svntogit/packages.git/commit/repos/core-x86_64?h=packages/linux&id=973e9461f3f2a558bfc49f49d659ea3f7e5aec44 hence, instead of cloning and deblobbing their repo, I'll maintain the diff (of Arch's kernel and vanilla) as a patch in our repos. Also, be careful, DO NOT USE CONFIG_LOCALVERSION_AUTO=y, and remember to always use CONFIG_LOCALVERSION="$_kernelname" in the config.$KARCH file Signed-off-by: David P --- ...sable-BHs-preemption-in-ieee80211_tx_cont.patch | 46 ---------------------- 1 file changed, 46 deletions(-) delete mode 100644 libre/linux-libre/0004-mac80211-disable-BHs-preemption-in-ieee80211_tx_cont.patch (limited to 'libre/linux-libre/0004-mac80211-disable-BHs-preemption-in-ieee80211_tx_cont.patch') diff --git a/libre/linux-libre/0004-mac80211-disable-BHs-preemption-in-ieee80211_tx_cont.patch b/libre/linux-libre/0004-mac80211-disable-BHs-preemption-in-ieee80211_tx_cont.patch deleted file mode 100644 index de3385e8d..000000000 --- a/libre/linux-libre/0004-mac80211-disable-BHs-preemption-in-ieee80211_tx_cont.patch +++ /dev/null @@ -1,46 +0,0 @@ -From 32a72bee7a275f47c235fdb36249703c892ce8d8 Mon Sep 17 00:00:00 2001 -Message-Id: <32a72bee7a275f47c235fdb36249703c892ce8d8.1531335939.git.jan.steffens@gmail.com> -In-Reply-To: -References: -From: Denis Kenzior -Date: Tue, 19 Jun 2018 10:39:50 -0500 -Subject: [PATCH 4/4] mac80211: disable BHs/preemption in - ieee80211_tx_control_port() - -On pre-emption enabled kernels the following print was being seen due to -missing local_bh_disable/local_bh_enable calls. mac80211 assumes that -pre-emption is disabled in the data path. - - BUG: using smp_processor_id() in preemptible [00000000] code: iwd/517 - caller is __ieee80211_subif_start_xmit+0x144/0x210 [mac80211] - [...] - Call Trace: - dump_stack+0x5c/0x80 - check_preemption_disabled.cold.0+0x46/0x51 - __ieee80211_subif_start_xmit+0x144/0x210 [mac80211] - -Fixes: 911806491425 ("mac80211: Add support for tx_control_port") -Signed-off-by: Denis Kenzior -[commit message rewrite, fixes tag] -Signed-off-by: Johannes Berg ---- - net/mac80211/tx.c | 2 ++ - 1 file changed, 2 insertions(+) - -diff --git a/net/mac80211/tx.c b/net/mac80211/tx.c -index 05a265cd573d..7404a5114597 100644 ---- a/net/mac80211/tx.c -+++ b/net/mac80211/tx.c -@@ -4800,7 +4800,9 @@ int ieee80211_tx_control_port(struct wiphy *wiphy, struct net_device *dev, - skb_reset_network_header(skb); - skb_reset_mac_header(skb); - -+ local_bh_disable(); - __ieee80211_subif_start_xmit(skb, skb->dev, flags); -+ local_bh_enable(); - - return 0; - } --- -2.18.0 - -- cgit v1.2.3