stable.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
To: stable@vger.kernel.org
Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>,
	patches@lists.linux.dev, Felix Fietkau <nbd@nbd.name>,
	Johannes Berg <johannes.berg@intel.com>,
	Sasha Levin <sashal@kernel.org>
Subject: [PATCH 6.6 037/186] wifi: mac80211: split mesh fast tx cache into local/proxied/forwarded
Date: Tue, 30 Apr 2024 12:38:09 +0200	[thread overview]
Message-ID: <20240430103059.107554272@linuxfoundation.org> (raw)
In-Reply-To: <20240430103058.010791820@linuxfoundation.org>

6.6-stable review patch.  If anyone has any objections, please let me know.

------------------

From: Felix Fietkau <nbd@nbd.name>

[ Upstream commit 8c75cdcdf869acabfdc7858827099dcde9f24e6c ]

Depending on the origin of the packets (and their SA), 802.11 + mesh headers
could be filled in differently. In order to properly deal with that, add a
new field to the lookup key, indicating the type (local, proxied or
forwarded). This can fix spurious packet drop issues that depend on the order
in which nodes/hosts communicate with each other.

Fixes: d5edb9ae8d56 ("wifi: mac80211: mesh fast xmit support")
Signed-off-by: Felix Fietkau <nbd@nbd.name>
Link: https://msgid.link/20240415121811.13391-1-nbd@nbd.name
[use sizeof_field() for key_len]
Signed-off-by: Johannes Berg <johannes.berg@intel.com>
Signed-off-by: Sasha Levin <sashal@kernel.org>
---
 net/mac80211/mesh.c         |  8 +++++++-
 net/mac80211/mesh.h         | 36 +++++++++++++++++++++++++++++++++---
 net/mac80211/mesh_pathtbl.c | 31 ++++++++++++++++++++++---------
 net/mac80211/rx.c           | 13 ++++++++++---
 4 files changed, 72 insertions(+), 16 deletions(-)

diff --git a/net/mac80211/mesh.c b/net/mac80211/mesh.c
index e31c312c124a1..7b3ecc288f09d 100644
--- a/net/mac80211/mesh.c
+++ b/net/mac80211/mesh.c
@@ -765,6 +765,9 @@ bool ieee80211_mesh_xmit_fast(struct ieee80211_sub_if_data *sdata,
 			      struct sk_buff *skb, u32 ctrl_flags)
 {
 	struct ieee80211_if_mesh *ifmsh = &sdata->u.mesh;
+	struct ieee80211_mesh_fast_tx_key key = {
+		.type = MESH_FAST_TX_TYPE_LOCAL
+	};
 	struct ieee80211_mesh_fast_tx *entry;
 	struct ieee80211s_hdr *meshhdr;
 	u8 sa[ETH_ALEN] __aligned(2);
@@ -800,7 +803,10 @@ bool ieee80211_mesh_xmit_fast(struct ieee80211_sub_if_data *sdata,
 			return false;
 	}
 
-	entry = mesh_fast_tx_get(sdata, skb->data);
+	ether_addr_copy(key.addr, skb->data);
+	if (!ether_addr_equal(skb->data + ETH_ALEN, sdata->vif.addr))
+		key.type = MESH_FAST_TX_TYPE_PROXIED;
+	entry = mesh_fast_tx_get(sdata, &key);
 	if (!entry)
 		return false;
 
diff --git a/net/mac80211/mesh.h b/net/mac80211/mesh.h
index ad8469293d712..58c619874ca6a 100644
--- a/net/mac80211/mesh.h
+++ b/net/mac80211/mesh.h
@@ -133,10 +133,39 @@ struct mesh_path {
 #define MESH_FAST_TX_CACHE_THRESHOLD_SIZE	384
 #define MESH_FAST_TX_CACHE_TIMEOUT		8000 /* msecs */
 
+/**
+ * enum ieee80211_mesh_fast_tx_type - cached mesh fast tx entry type
+ *
+ * @MESH_FAST_TX_TYPE_LOCAL: tx from the local vif address as SA
+ * @MESH_FAST_TX_TYPE_PROXIED: local tx with a different SA (e.g. bridged)
+ * @MESH_FAST_TX_TYPE_FORWARDED: forwarded from a different mesh point
+ * @NUM_MESH_FAST_TX_TYPE: number of entry types
+ */
+enum ieee80211_mesh_fast_tx_type {
+	MESH_FAST_TX_TYPE_LOCAL,
+	MESH_FAST_TX_TYPE_PROXIED,
+	MESH_FAST_TX_TYPE_FORWARDED,
+
+	/* must be last */
+	NUM_MESH_FAST_TX_TYPE
+};
+
+
+/**
+ * struct ieee80211_mesh_fast_tx_key - cached mesh fast tx entry key
+ *
+ * @addr: The Ethernet DA for this entry
+ * @type: cache entry type
+ */
+struct ieee80211_mesh_fast_tx_key {
+	u8 addr[ETH_ALEN] __aligned(2);
+	u16 type;
+};
+
 /**
  * struct ieee80211_mesh_fast_tx - cached mesh fast tx entry
  * @rhash: rhashtable pointer
- * @addr_key: The Ethernet DA which is the key for this entry
+ * @key: the lookup key for this cache entry
  * @fast_tx: base fast_tx data
  * @hdr: cached mesh and rfc1042 headers
  * @hdrlen: length of mesh + rfc1042
@@ -147,7 +176,7 @@ struct mesh_path {
  */
 struct ieee80211_mesh_fast_tx {
 	struct rhash_head rhash;
-	u8 addr_key[ETH_ALEN] __aligned(2);
+	struct ieee80211_mesh_fast_tx_key key;
 
 	struct ieee80211_fast_tx fast_tx;
 	u8 hdr[sizeof(struct ieee80211s_hdr) + sizeof(rfc1042_header)];
@@ -333,7 +362,8 @@ void mesh_path_tx_root_frame(struct ieee80211_sub_if_data *sdata);
 
 bool mesh_action_is_path_sel(struct ieee80211_mgmt *mgmt);
 struct ieee80211_mesh_fast_tx *
-mesh_fast_tx_get(struct ieee80211_sub_if_data *sdata, const u8 *addr);
+mesh_fast_tx_get(struct ieee80211_sub_if_data *sdata,
+		 struct ieee80211_mesh_fast_tx_key *key);
 bool ieee80211_mesh_xmit_fast(struct ieee80211_sub_if_data *sdata,
 			      struct sk_buff *skb, u32 ctrl_flags);
 void mesh_fast_tx_cache(struct ieee80211_sub_if_data *sdata,
diff --git a/net/mac80211/mesh_pathtbl.c b/net/mac80211/mesh_pathtbl.c
index c7173190f9b93..59f7264194ce3 100644
--- a/net/mac80211/mesh_pathtbl.c
+++ b/net/mac80211/mesh_pathtbl.c
@@ -36,8 +36,8 @@ static const struct rhashtable_params mesh_rht_params = {
 static const struct rhashtable_params fast_tx_rht_params = {
 	.nelem_hint = 10,
 	.automatic_shrinking = true,
-	.key_len = ETH_ALEN,
-	.key_offset = offsetof(struct ieee80211_mesh_fast_tx, addr_key),
+	.key_len = sizeof_field(struct ieee80211_mesh_fast_tx, key),
+	.key_offset = offsetof(struct ieee80211_mesh_fast_tx, key),
 	.head_offset = offsetof(struct ieee80211_mesh_fast_tx, rhash),
 	.hashfn = mesh_table_hash,
 };
@@ -426,20 +426,21 @@ static void mesh_fast_tx_entry_free(struct mesh_tx_cache *cache,
 }
 
 struct ieee80211_mesh_fast_tx *
-mesh_fast_tx_get(struct ieee80211_sub_if_data *sdata, const u8 *addr)
+mesh_fast_tx_get(struct ieee80211_sub_if_data *sdata,
+		 struct ieee80211_mesh_fast_tx_key *key)
 {
 	struct ieee80211_mesh_fast_tx *entry;
 	struct mesh_tx_cache *cache;
 
 	cache = &sdata->u.mesh.tx_cache;
-	entry = rhashtable_lookup(&cache->rht, addr, fast_tx_rht_params);
+	entry = rhashtable_lookup(&cache->rht, key, fast_tx_rht_params);
 	if (!entry)
 		return NULL;
 
 	if (!(entry->mpath->flags & MESH_PATH_ACTIVE) ||
 	    mpath_expired(entry->mpath)) {
 		spin_lock_bh(&cache->walk_lock);
-		entry = rhashtable_lookup(&cache->rht, addr, fast_tx_rht_params);
+		entry = rhashtable_lookup(&cache->rht, key, fast_tx_rht_params);
 		if (entry)
 		    mesh_fast_tx_entry_free(cache, entry);
 		spin_unlock_bh(&cache->walk_lock);
@@ -484,18 +485,24 @@ void mesh_fast_tx_cache(struct ieee80211_sub_if_data *sdata,
 	if (!sta)
 		return;
 
+	build.key.type = MESH_FAST_TX_TYPE_LOCAL;
 	if ((meshhdr->flags & MESH_FLAGS_AE) == MESH_FLAGS_AE_A5_A6) {
 		/* This is required to keep the mppath alive */
 		mppath = mpp_path_lookup(sdata, meshhdr->eaddr1);
 		if (!mppath)
 			return;
 		build.mppath = mppath;
+		if (!ether_addr_equal(meshhdr->eaddr2, sdata->vif.addr))
+			build.key.type = MESH_FAST_TX_TYPE_PROXIED;
 	} else if (ieee80211_has_a4(hdr->frame_control)) {
 		mppath = mpath;
 	} else {
 		return;
 	}
 
+	if (!ether_addr_equal(hdr->addr4, sdata->vif.addr))
+		build.key.type = MESH_FAST_TX_TYPE_FORWARDED;
+
 	/* rate limit, in case fast xmit can't be enabled */
 	if (mppath->fast_tx_check == jiffies)
 		return;
@@ -542,7 +549,7 @@ void mesh_fast_tx_cache(struct ieee80211_sub_if_data *sdata,
 		}
 	}
 
-	memcpy(build.addr_key, mppath->dst, ETH_ALEN);
+	memcpy(build.key.addr, mppath->dst, ETH_ALEN);
 	build.timestamp = jiffies;
 	build.fast_tx.band = info->band;
 	build.fast_tx.da_offs = offsetof(struct ieee80211_hdr, addr3);
@@ -641,12 +648,18 @@ void mesh_fast_tx_flush_addr(struct ieee80211_sub_if_data *sdata,
 			     const u8 *addr)
 {
 	struct mesh_tx_cache *cache = &sdata->u.mesh.tx_cache;
+	struct ieee80211_mesh_fast_tx_key key = {};
 	struct ieee80211_mesh_fast_tx *entry;
+	int i;
 
+	ether_addr_copy(key.addr, addr);
 	spin_lock_bh(&cache->walk_lock);
-	entry = rhashtable_lookup_fast(&cache->rht, addr, fast_tx_rht_params);
-	if (entry)
-		mesh_fast_tx_entry_free(cache, entry);
+	for (i = 0; i < NUM_MESH_FAST_TX_TYPE; i++) {
+		key.type = i;
+		entry = rhashtable_lookup_fast(&cache->rht, &key, fast_tx_rht_params);
+		if (entry)
+			mesh_fast_tx_entry_free(cache, entry);
+	}
 	spin_unlock_bh(&cache->walk_lock);
 }
 
diff --git a/net/mac80211/rx.c b/net/mac80211/rx.c
index 26ca2f5dc52b2..604863cebc198 100644
--- a/net/mac80211/rx.c
+++ b/net/mac80211/rx.c
@@ -2726,7 +2726,10 @@ ieee80211_rx_mesh_fast_forward(struct ieee80211_sub_if_data *sdata,
 			       struct sk_buff *skb, int hdrlen)
 {
 	struct ieee80211_if_mesh *ifmsh = &sdata->u.mesh;
-	struct ieee80211_mesh_fast_tx *entry = NULL;
+	struct ieee80211_mesh_fast_tx_key key = {
+		.type = MESH_FAST_TX_TYPE_FORWARDED
+	};
+	struct ieee80211_mesh_fast_tx *entry;
 	struct ieee80211s_hdr *mesh_hdr;
 	struct tid_ampdu_tx *tid_tx;
 	struct sta_info *sta;
@@ -2735,9 +2738,13 @@ ieee80211_rx_mesh_fast_forward(struct ieee80211_sub_if_data *sdata,
 
 	mesh_hdr = (struct ieee80211s_hdr *)(skb->data + sizeof(eth));
 	if ((mesh_hdr->flags & MESH_FLAGS_AE) == MESH_FLAGS_AE_A5_A6)
-		entry = mesh_fast_tx_get(sdata, mesh_hdr->eaddr1);
+		ether_addr_copy(key.addr, mesh_hdr->eaddr1);
 	else if (!(mesh_hdr->flags & MESH_FLAGS_AE))
-		entry = mesh_fast_tx_get(sdata, skb->data);
+		ether_addr_copy(key.addr, skb->data);
+	else
+		return false;
+
+	entry = mesh_fast_tx_get(sdata, &key);
 	if (!entry)
 		return false;
 
-- 
2.43.0




  parent reply	other threads:[~2024-04-30 11:09 UTC|newest]

Thread overview: 207+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-04-30 10:37 [PATCH 6.6 000/186] 6.6.30-rc1 review Greg Kroah-Hartman
2024-04-30 10:37 ` [PATCH 6.6 001/186] cifs: Fix reacquisition of volume cookie on still-live connection Greg Kroah-Hartman
2024-04-30 10:37 ` [PATCH 6.6 002/186] smb: client: fix rename(2) regression against samba Greg Kroah-Hartman
2024-04-30 10:37 ` [PATCH 6.6 003/186] cifs: reinstate original behavior again for forceuid/forcegid Greg Kroah-Hartman
2024-04-30 10:37 ` [PATCH 6.6 004/186] HID: intel-ish-hid: ipc: Fix dev_err usage with uninitialized dev->devc Greg Kroah-Hartman
2024-04-30 10:37 ` [PATCH 6.6 005/186] HID: logitech-dj: allow mice to use all types of reports Greg Kroah-Hartman
2024-04-30 10:37 ` [PATCH 6.6 006/186] arm64: dts: rockchip: set PHY address of MT7531 switch to 0x1f Greg Kroah-Hartman
2024-04-30 10:37 ` [PATCH 6.6 007/186] arm64: dts: rockchip: enable internal pull-up on Q7_USB_ID for RK3399 Puma Greg Kroah-Hartman
2024-04-30 10:37 ` [PATCH 6.6 008/186] arm64: dts: rockchip: fix alphabetical ordering RK3399 puma Greg Kroah-Hartman
2024-04-30 10:37 ` [PATCH 6.6 009/186] arm64: dts: rockchip: enable internal pull-up on PCIE_WAKE# for RK3399 Puma Greg Kroah-Hartman
2024-04-30 10:37 ` [PATCH 6.6 010/186] arm64: dts: rockchip: Remove unsupported node from the Pinebook Pro dts Greg Kroah-Hartman
2024-04-30 10:37 ` [PATCH 6.6 011/186] arm64: dts: mediatek: mt8183: Add power-domains properity to mfgcfg Greg Kroah-Hartman
2024-04-30 10:37 ` [PATCH 6.6 012/186] arm64: dts: mediatek: mt8192: Add missing gce-client-reg to mutex Greg Kroah-Hartman
2024-04-30 10:37 ` [PATCH 6.6 013/186] arm64: dts: mediatek: mt8195: Add missing gce-client-reg to vpp/vdosys Greg Kroah-Hartman
2024-04-30 10:37 ` [PATCH 6.6 014/186] arm64: dts: mediatek: mt8195: Add missing gce-client-reg to mutex Greg Kroah-Hartman
2024-04-30 10:37 ` [PATCH 6.6 015/186] arm64: dts: mediatek: mt8195: Add missing gce-client-reg to mutex1 Greg Kroah-Hartman
2024-04-30 10:37 ` [PATCH 6.6 016/186] arm64: dts: mediatek: cherry: Add platform thermal configuration Greg Kroah-Hartman
2024-04-30 10:37 ` [PATCH 6.6 017/186] arm64: dts: mediatek: cherry: Describe CPU supplies Greg Kroah-Hartman
2024-04-30 10:37 ` [PATCH 6.6 018/186] arm64: dts: mediatek: mt8192-asurada: Update min voltage constraint for MT6315 Greg Kroah-Hartman
2024-04-30 10:37 ` [PATCH 6.6 019/186] arm64: dts: mediatek: mt8195-cherry: " Greg Kroah-Hartman
2024-04-30 10:37 ` [PATCH 6.6 020/186] arm64: dts: mediatek: mt8183-kukui: Use default min voltage for MT6358 Greg Kroah-Hartman
2024-04-30 10:37 ` [PATCH 6.6 021/186] arm64: dts: mediatek: mt7622: fix clock controllers Greg Kroah-Hartman
2024-04-30 10:37 ` [PATCH 6.6 022/186] arm64: dts: mediatek: mt7622: fix IR nodename Greg Kroah-Hartman
2024-04-30 10:37 ` [PATCH 6.6 023/186] arm64: dts: mediatek: mt7622: fix ethernet controller "compatible" Greg Kroah-Hartman
2024-04-30 10:37 ` [PATCH 6.6 024/186] arm64: dts: mediatek: mt7622: drop "reset-names" from thermal block Greg Kroah-Hartman
2024-04-30 10:37 ` [PATCH 6.6 025/186] arm64: dts: mediatek: mt7986: reorder properties Greg Kroah-Hartman
2024-04-30 10:37 ` [PATCH 6.6 026/186] arm64: dts: mediatek: mt7986: drop invalid properties from ethsys Greg Kroah-Hartman
2024-04-30 10:37 ` [PATCH 6.6 027/186] arm64: dts: mediatek: mt7986: drop "#reset-cells" from Ethernet controller Greg Kroah-Hartman
2024-04-30 10:38 ` [PATCH 6.6 028/186] arm64: dts: mediatek: mt7986: reorder nodes Greg Kroah-Hartman
2024-04-30 10:38 ` [PATCH 6.6 029/186] arm64: dts: mediatek: mt7986: drop invalid thermal block clock Greg Kroah-Hartman
2024-04-30 10:38 ` [PATCH 6.6 030/186] arm64: dts: mediatek: mt7986: prefix BPI-R3 cooling maps with "map-" Greg Kroah-Hartman
2024-04-30 10:38 ` [PATCH 6.6 031/186] arm64: dts: mediatek: mt2712: fix validation errors Greg Kroah-Hartman
2024-04-30 10:38 ` [PATCH 6.6 032/186] arm64: dts: rockchip: regulator for sd needs to be always on for BPI-R2Pro Greg Kroah-Hartman
2024-04-30 10:38 ` [PATCH 6.6 033/186] arm64: dts: qcom: sc8180x: Fix ss_phy_irq for secondary USB controller Greg Kroah-Hartman
2024-04-30 10:38 ` [PATCH 6.6 034/186] gpio: tangier: Use correct type for the IRQ chip data Greg Kroah-Hartman
2024-04-30 10:38 ` [PATCH 6.6 035/186] ARC: [plat-hsdk]: Remove misplaced interrupt-cells property Greg Kroah-Hartman
2024-04-30 10:38 ` [PATCH 6.6 036/186] wifi: mac80211: clean up assignments to pointer cache Greg Kroah-Hartman
2024-04-30 10:38 ` Greg Kroah-Hartman [this message]
2024-04-30 10:38 ` [PATCH 6.6 038/186] wifi: iwlwifi: mvm: remove old PASN station when adding a new one Greg Kroah-Hartman
2024-04-30 10:38 ` [PATCH 6.6 039/186] wifi: iwlwifi: mvm: return uid from iwl_mvm_build_scan_cmd Greg Kroah-Hartman
2024-04-30 10:38 ` [PATCH 6.6 040/186] drm/gma500: Remove lid code Greg Kroah-Hartman
2024-04-30 10:38 ` [PATCH 6.6 041/186] wifi: mac80211_hwsim: init peer measurement result Greg Kroah-Hartman
2024-04-30 10:38 ` [PATCH 6.6 042/186] wifi: mac80211: remove link before AP Greg Kroah-Hartman
2024-04-30 10:38 ` [PATCH 6.6 043/186] wifi: mac80211: fix unaligned le16 access Greg Kroah-Hartman
2024-04-30 10:38 ` [PATCH 6.6 044/186] net: libwx: fix alloc msix vectors failed Greg Kroah-Hartman
2024-09-27  1:54   ` 答复: " duanqiangwen
2024-09-27  2:02   ` duanqiangwen
2024-09-27  6:53     ` 'Greg Kroah-Hartman'
2024-09-27  6:59       ` duanqiangwen
2024-09-27  7:07         ` 'Greg Kroah-Hartman'
2024-04-30 10:38 ` [PATCH 6.6 045/186] vxlan: drop packets from invalid src-address Greg Kroah-Hartman
2024-04-30 10:38 ` [PATCH 6.6 046/186] net: bcmasp: fix memory leak when bringing down interface Greg Kroah-Hartman
2024-04-30 10:38 ` [PATCH 6.6 047/186] mlxsw: core: Unregister EMAD trap using FORWARD action Greg Kroah-Hartman
2024-04-30 10:38 ` [PATCH 6.6 048/186] mlxsw: core_env: Fix driver initialization with old firmware Greg Kroah-Hartman
2024-04-30 10:38 ` [PATCH 6.6 049/186] ARM: dts: microchip: at91-sama7g5ek: Replace regulator-suspend-voltage with the valid property Greg Kroah-Hartman
2024-04-30 10:38 ` [PATCH 6.6 050/186] icmp: prevent possible NULL dereferences from icmp_build_probe() Greg Kroah-Hartman
2024-04-30 10:38 ` [PATCH 6.6 051/186] bridge/br_netlink.c: no need to return void function Greg Kroah-Hartman
2024-04-30 10:38 ` [PATCH 6.6 052/186] bnxt_en: refactor reset close code Greg Kroah-Hartman
2024-04-30 10:38 ` [PATCH 6.6 053/186] bnxt_en: Fix the PCI-AER routines Greg Kroah-Hartman
2024-04-30 10:38 ` [PATCH 6.6 054/186] cxl/core: Fix potential payload size confusion in cxl_mem_get_poison() Greg Kroah-Hartman
2024-04-30 10:38 ` [PATCH 6.6 055/186] net: dsa: mv88e6xx: fix supported_interfaces setup in mv88e6250_phylink_get_caps() Greg Kroah-Hartman
2024-04-30 10:38 ` [PATCH 6.6 056/186] NFC: trf7970a: disable all regulators on removal Greg Kroah-Hartman
2024-04-30 10:38 ` [PATCH 6.6 057/186] ax25: Fix netdev refcount issue Greg Kroah-Hartman
2024-04-30 10:38 ` [PATCH 6.6 058/186] tools: ynl: dont ignore errors in NLMSG_DONE messages Greg Kroah-Hartman
2024-04-30 10:38 ` [PATCH 6.6 059/186] net: make SK_MEMORY_PCPU_RESERV tunable Greg Kroah-Hartman
2024-04-30 10:38 ` [PATCH 6.6 060/186] net: fix sk_memory_allocated_{add|sub} vs softirqs Greg Kroah-Hartman
2024-04-30 10:38 ` [PATCH 6.6 061/186] ipv4: check for NULL idev in ip_route_use_hint() Greg Kroah-Hartman
2024-04-30 10:38 ` [PATCH 6.6 062/186] net: usb: ax88179_178a: stop lying about skb->truesize Greg Kroah-Hartman
2024-04-30 10:38 ` [PATCH 6.6 063/186] net: gtp: Fix Use-After-Free in gtp_dellink Greg Kroah-Hartman
2024-04-30 10:38 ` [PATCH 6.6 064/186] net: phy: mediatek-ge-soc: follow netdev LED trigger semantics Greg Kroah-Hartman
2024-04-30 10:38 ` [PATCH 6.6 065/186] gpio: tegra186: Fix tegra186_gpio_is_accessible() check Greg Kroah-Hartman
2024-04-30 10:38 ` [PATCH 6.6 066/186] Bluetooth: btusb: Fix triggering coredump implementation for QCA Greg Kroah-Hartman
2024-04-30 10:38 ` [PATCH 6.6 067/186] Bluetooth: hci_event: Fix sending HCI_OP_READ_ENC_KEY_SIZE Greg Kroah-Hartman
2024-04-30 10:38 ` [PATCH 6.6 068/186] Bluetooth: MGMT: Fix failing to MGMT_OP_ADD_UUID/MGMT_OP_REMOVE_UUID Greg Kroah-Hartman
2024-04-30 10:38 ` [PATCH 6.6 069/186] Bluetooth: btusb: mediatek: Fix double free of skb in coredump Greg Kroah-Hartman
2024-04-30 10:38 ` [PATCH 6.6 070/186] Bluetooth: hci_sync: Using hci_cmd_sync_submit when removing Adv Monitor Greg Kroah-Hartman
2024-04-30 10:38 ` [PATCH 6.6 071/186] Bluetooth: qca: set power_ctrl_enabled on NULL returned by gpiod_get_optional() Greg Kroah-Hartman
2024-04-30 10:38 ` [PATCH 6.6 072/186] ipvs: Fix checksumming on GSO of SCTP packets Greg Kroah-Hartman
2024-04-30 10:38 ` [PATCH 6.6 073/186] net: openvswitch: Fix Use-After-Free in ovs_ct_exit Greg Kroah-Hartman
2024-04-30 10:38 ` [PATCH 6.6 074/186] mlxsw: Use refcount_t for reference counting Greg Kroah-Hartman
2024-04-30 10:38 ` [PATCH 6.6 075/186] mlxsw: spectrum_acl_tcam: Fix race in region ID allocation Greg Kroah-Hartman
2024-04-30 10:38 ` [PATCH 6.6 076/186] mlxsw: spectrum_acl_tcam: Fix race during rehash delayed work Greg Kroah-Hartman
2024-04-30 10:38 ` [PATCH 6.6 077/186] mlxsw: spectrum_acl_tcam: Fix possible use-after-free during activity update Greg Kroah-Hartman
2024-04-30 10:38 ` [PATCH 6.6 078/186] mlxsw: spectrum_acl_tcam: Fix possible use-after-free during rehash Greg Kroah-Hartman
2024-04-30 10:38 ` [PATCH 6.6 079/186] mlxsw: spectrum_acl_tcam: Rate limit error message Greg Kroah-Hartman
2024-04-30 10:38 ` [PATCH 6.6 080/186] mlxsw: spectrum_acl_tcam: Fix memory leak during rehash Greg Kroah-Hartman
2024-04-30 10:38 ` [PATCH 6.6 081/186] mlxsw: spectrum_acl_tcam: Fix warning " Greg Kroah-Hartman
2024-04-30 10:38 ` [PATCH 6.6 082/186] mlxsw: spectrum_acl_tcam: Fix incorrect list API usage Greg Kroah-Hartman
2024-04-30 10:38 ` [PATCH 6.6 083/186] mlxsw: spectrum_acl_tcam: Fix memory leak when canceling rehash work Greg Kroah-Hartman
2024-04-30 10:38 ` [PATCH 6.6 084/186] eth: bnxt: fix counting packets discarded due to OOM and netpoll Greg Kroah-Hartman
2024-04-30 10:38 ` [PATCH 6.6 085/186] ARM: dts: imx6ull-tarragon: fix USB over-current polarity Greg Kroah-Hartman
2024-04-30 10:38 ` [PATCH 6.6 086/186] netfilter: nf_tables: honor table dormant flag from netdev release event path Greg Kroah-Hartman
2024-04-30 10:38 ` [PATCH 6.6 087/186] net: phy: dp83869: Fix MII mode failure Greg Kroah-Hartman
2024-04-30 10:39 ` [PATCH 6.6 088/186] net: ti: icssg-prueth: Fix signedness bug in prueth_init_rx_chns() Greg Kroah-Hartman
2024-04-30 10:39 ` [PATCH 6.6 089/186] i40e: Do not use WQ_MEM_RECLAIM flag for workqueue Greg Kroah-Hartman
2024-04-30 10:39 ` [PATCH 6.6 090/186] i40e: Report MFS in decimal base instead of hex Greg Kroah-Hartman
2024-04-30 10:39 ` [PATCH 6.6 091/186] iavf: Fix TC config comparison with existing adapter TC config Greg Kroah-Hartman
2024-04-30 10:39 ` [PATCH 6.6 092/186] ice: fix LAG and VF lock dependency in ice_reset_vf() Greg Kroah-Hartman
2024-04-30 10:39 ` [PATCH 6.6 093/186] net: ethernet: ti: am65-cpts: Fix PTPv1 message type on TX packets Greg Kroah-Hartman
2024-04-30 10:39 ` [PATCH 6.6 094/186] tls: fix lockless read of strp->msg_ready in ->poll Greg Kroah-Hartman
2024-04-30 10:39 ` [PATCH 6.6 095/186] af_unix: Suppress false-positive lockdep splat for spin_lock() in __unix_gc() Greg Kroah-Hartman
2024-04-30 10:39 ` [PATCH 6.6 096/186] KVM: x86/pmu: Zero out PMU metadata on AMD if PMU is disabled Greg Kroah-Hartman
2024-04-30 10:39 ` [PATCH 6.6 097/186] KVM: x86/pmu: Set enable bits for GP counters in PERF_GLOBAL_CTRL at "RESET" Greg Kroah-Hartman
2024-04-30 10:39 ` [PATCH 6.6 098/186] mm/gup: explicitly define and check internal GUP flags, disallow FOLL_TOUCH Greg Kroah-Hartman
2024-04-30 10:39 ` [PATCH 6.6 099/186] mm/madvise: make MADV_POPULATE_(READ|WRITE) handle VM_FAULT_RETRY properly Greg Kroah-Hartman
2024-04-30 10:39 ` [PATCH 6.6 100/186] drm: add drm_gem_object_is_shared_for_memory_stats() helper Greg Kroah-Hartman
2024-04-30 10:39 ` [PATCH 6.6 101/186] drm/amdgpu: add shared fdinfo stats Greg Kroah-Hartman
2024-04-30 10:39 ` [PATCH 6.6 102/186] drm/amdgpu: fix visible VRAM handling during faults Greg Kroah-Hartman
2024-04-30 10:39 ` [PATCH 6.6 103/186] mm, treewide: introduce NR_PAGE_ORDERS Greg Kroah-Hartman
2024-04-30 10:39 ` [PATCH 6.6 104/186] drm/ttm: stop pooling cached NUMA pages v2 Greg Kroah-Hartman
2024-04-30 10:39 ` [PATCH 6.6 105/186] squashfs: convert to new timestamp accessors Greg Kroah-Hartman
2024-04-30 10:39 ` [PATCH 6.6 106/186] Squashfs: check the inode number is not the invalid value of zero Greg Kroah-Hartman
2024-04-30 10:39 ` [PATCH 6.6 107/186] selftests/seccomp: user_notification_addfd check nextfd is available Greg Kroah-Hartman
2024-04-30 10:39 ` [PATCH 6.6 108/186] selftests/seccomp: Change the syscall used in KILL_THREAD test Greg Kroah-Hartman
2024-04-30 10:39 ` [PATCH 6.6 109/186] selftests/seccomp: Handle EINVAL on unshare(CLONE_NEWPID) Greg Kroah-Hartman
2024-04-30 10:39 ` [PATCH 6.6 110/186] fork: defer linking file vma until vma is fully initialized Greg Kroah-Hartman
2024-04-30 10:39 ` [PATCH 6.6 111/186] x86/cpu: Fix check for RDPKRU in __show_regs() Greg Kroah-Hartman
2024-04-30 10:39 ` [PATCH 6.6 112/186] rust: dont select CONSTRUCTORS Greg Kroah-Hartman
2024-04-30 10:39 ` [PATCH 6.6 113/186] rust: init: remove impl Zeroable for Infallible Greg Kroah-Hartman
2024-04-30 10:39 ` [PATCH 6.6 114/186] rust: make mutually exclusive with CFI_CLANG Greg Kroah-Hartman
2024-04-30 10:39 ` [PATCH 6.6 115/186] kbuild: rust: remove unneeded `@rustc_cfg` to avoid ICE Greg Kroah-Hartman
2024-04-30 10:39 ` [PATCH 6.6 116/186] kbuild: rust: force `alloc` extern to allow "empty" Rust files Greg Kroah-Hartman
2024-04-30 10:39 ` [PATCH 6.6 117/186] rust: remove `params` from `module` macro example Greg Kroah-Hartman
2024-04-30 10:39 ` [PATCH 6.6 118/186] Bluetooth: Fix type of len in {l2cap,sco}_sock_getsockopt_old() Greg Kroah-Hartman
2024-04-30 10:39 ` [PATCH 6.6 119/186] Bluetooth: btusb: Add Realtek RTL8852BE support ID 0x0bda:0x4853 Greg Kroah-Hartman
2024-04-30 10:39 ` [PATCH 6.6 120/186] Bluetooth: qca: fix NULL-deref on non-serdev suspend Greg Kroah-Hartman
2024-04-30 10:39 ` [PATCH 6.6 121/186] Bluetooth: qca: fix NULL-deref on non-serdev setup Greg Kroah-Hartman
2024-04-30 10:39 ` [PATCH 6.6 122/186] mtd: rawnand: qcom: Fix broken OP_RESET_DEVICE command in qcom_misc_cmd_type_exec() Greg Kroah-Hartman
2024-04-30 10:39 ` [PATCH 6.6 123/186] mm/hugetlb: fix missing hugetlb_lock for resv uncharge Greg Kroah-Hartman
2024-04-30 10:39 ` [PATCH 6.6 124/186] mmc: sdhci-msm: pervent access to suspended controller Greg Kroah-Hartman
2024-04-30 10:39 ` [PATCH 6.6 125/186] mm: create FOLIO_FLAG_FALSE and FOLIO_TYPE_OPS macros Greg Kroah-Hartman
2024-04-30 10:39 ` [PATCH 6.6 126/186] mm: support page_mapcount() on page_has_type() pages Greg Kroah-Hartman
2024-04-30 10:39 ` [PATCH 6.6 127/186] smb: client: Fix struct_group() usage in __packed structs Greg Kroah-Hartman
2024-04-30 10:39 ` [PATCH 6.6 128/186] smb3: missing lock when picking channel Greg Kroah-Hartman
2024-04-30 10:39 ` [PATCH 6.6 129/186] smb3: fix lock ordering potential deadlock in cifs_sync_mid_result Greg Kroah-Hartman
2024-04-30 10:39 ` [PATCH 6.6 130/186] HID: i2c-hid: remove I2C_HID_READ_PENDING flag to prevent lock-up Greg Kroah-Hartman
2024-04-30 10:39 ` [PATCH 6.6 131/186] btrfs: fallback if compressed IO fails for ENOSPC Greg Kroah-Hartman
2024-04-30 10:39 ` [PATCH 6.6 132/186] btrfs: fix wrong block_start calculation for btrfs_drop_extent_map_range() Greg Kroah-Hartman
2024-04-30 10:39 ` [PATCH 6.6 133/186] btrfs: scrub: run relocation repair when/only needed Greg Kroah-Hartman
2024-04-30 10:39 ` [PATCH 6.6 134/186] btrfs: fix information leak in btrfs_ioctl_logical_to_ino() Greg Kroah-Hartman
2024-04-30 10:39 ` [PATCH 6.6 135/186] cpu: Re-enable CPU mitigations by default for !X86 architectures Greg Kroah-Hartman
2024-04-30 10:39 ` [PATCH 6.6 136/186] LoongArch: Fix callchain parse error with kernel tracepoint events Greg Kroah-Hartman
2024-04-30 10:39 ` [PATCH 6.6 137/186] LoongArch: Fix access error when read fault on a write-only VMA Greg Kroah-Hartman
2024-04-30 10:39 ` [PATCH 6.6 138/186] arm64: dts: qcom: sc8280xp: add missing PCIe minimum OPP Greg Kroah-Hartman
2024-04-30 10:39 ` [PATCH 6.6 139/186] arm64: dts: qcom: sm8450: Fix the msi-map entries Greg Kroah-Hartman
2024-04-30 10:39 ` [PATCH 6.6 140/186] arm64: dts: rockchip: enable internal pull-up for Q7_THRM# on RK3399 Puma Greg Kroah-Hartman
2024-04-30 10:39 ` [PATCH 6.6 141/186] drm/amdgpu/sdma5.2: use legacy HDP flush for SDMA2/3 Greg Kroah-Hartman
2024-04-30 10:39 ` [PATCH 6.6 142/186] drm/amdgpu: Assign correct bits for SDMA HDP flush Greg Kroah-Hartman
2024-04-30 10:39 ` [PATCH 6.6 143/186] drm/amdgpu: Fix leak when GPU memory allocation fails Greg Kroah-Hartman
2024-04-30 10:39 ` [PATCH 6.6 144/186] irqchip/gic-v3-its: Prevent double free on error Greg Kroah-Hartman
2024-04-30 10:39 ` [PATCH 6.6 145/186] ACPI: CPPC: Use access_width over bit_width for system memory accesses Greg Kroah-Hartman
2024-04-30 10:39 ` [PATCH 6.6 146/186] ACPI: CPPC: Fix bit_offset shift in MASK_VAL() macro Greg Kroah-Hartman
2024-04-30 10:39 ` [PATCH 6.6 147/186] ACPI: CPPC: Fix access width used for PCC registers Greg Kroah-Hartman
2024-04-30 10:40 ` [PATCH 6.6 148/186] ethernet: Add helper for assigning packet type when dest address does not match device address Greg Kroah-Hartman
2024-04-30 10:40 ` [PATCH 6.6 149/186] net: b44: set pause params only when interface is up Greg Kroah-Hartman
2024-04-30 10:40 ` [PATCH 6.6 150/186] stackdepot: respect __GFP_NOLOCKDEP allocation flag Greg Kroah-Hartman
2024-04-30 10:40 ` [PATCH 6.6 151/186] fbdev: fix incorrect address computation in deferred IO Greg Kroah-Hartman
2024-04-30 10:40 ` [PATCH 6.6 152/186] udp: preserve the connected status if only UDP cmsg Greg Kroah-Hartman
2024-04-30 10:40 ` [PATCH 6.6 153/186] mtd: diskonchip: work around ubsan link failure Greg Kroah-Hartman
2024-04-30 10:40 ` [PATCH 6.6 154/186] phy: qcom: qmp-combo: Fix register base for QSERDES_DP_PHY_MODE Greg Kroah-Hartman
2024-04-30 10:40 ` [PATCH 6.6 155/186] phy: qcom: qmp-combo: Fix VCO div offset on v3 Greg Kroah-Hartman
2024-04-30 10:40 ` [PATCH 6.6 156/186] x86/tdx: Preserve shared bit on mprotect() Greg Kroah-Hartman
2024-04-30 10:40 ` [PATCH 6.6 157/186] mm: turn folio_test_hugetlb into a PageType Greg Kroah-Hartman
2024-04-30 10:40 ` [PATCH 6.6 158/186] dmaengine: owl: fix register access functions Greg Kroah-Hartman
2024-04-30 10:40 ` [PATCH 6.6 159/186] dmaengine: tegra186: Fix residual calculation Greg Kroah-Hartman
2024-04-30 10:40 ` [PATCH 6.6 160/186] idma64: Dont try to serve interrupts when device is powered off Greg Kroah-Hartman
2024-04-30 10:40 ` [PATCH 6.6 161/186] soundwire: amd: fix for wake interrupt handling for clockstop mode Greg Kroah-Hartman
2024-04-30 10:40 ` [PATCH 6.6 162/186] phy: marvell: a3700-comphy: Fix out of bounds read Greg Kroah-Hartman
2024-04-30 10:40 ` [PATCH 6.6 163/186] phy: marvell: a3700-comphy: Fix hardcoded array size Greg Kroah-Hartman
2024-04-30 10:40 ` [PATCH 6.6 164/186] phy: freescale: imx8m-pcie: fix pcie link-up instability Greg Kroah-Hartman
2024-04-30 10:40 ` [PATCH 6.6 165/186] phy: rockchip-snps-pcie3: fix bifurcation on rk3588 Greg Kroah-Hartman
2024-04-30 10:40 ` [PATCH 6.6 166/186] phy: rockchip-snps-pcie3: fix clearing PHP_GRF_PCIESEL_CON bits Greg Kroah-Hartman
2024-04-30 10:40 ` [PATCH 6.6 167/186] phy: rockchip: naneng-combphy: Fix mux on rk3588 Greg Kroah-Hartman
2024-04-30 10:40 ` [PATCH 6.6 168/186] phy: qcom: m31: match requested regulator name with dt schema Greg Kroah-Hartman
2024-04-30 10:40 ` [PATCH 6.6 169/186] dmaengine: idxd: Convert spinlock to mutex to lock evl workqueue Greg Kroah-Hartman
2024-04-30 10:40 ` [PATCH 6.6 170/186] dma: xilinx_dpdma: Fix locking Greg Kroah-Hartman
2024-04-30 10:40 ` [PATCH 6.6 171/186] dmaengine: idxd: Fix oops during rmmod on single-CPU platforms Greg Kroah-Hartman
2024-04-30 10:40 ` [PATCH 6.6 172/186] riscv: fix VMALLOC_START definition Greg Kroah-Hartman
2024-04-30 10:40 ` [PATCH 6.6 173/186] riscv: Fix TASK_SIZE on 64-bit NOMMU Greg Kroah-Hartman
2024-04-30 10:40 ` [PATCH 6.6 174/186] riscv: Fix loading 64-bit NOMMU kernels past the start of RAM Greg Kroah-Hartman
2024-04-30 10:40 ` [PATCH 6.6 175/186] phy: ti: tusb1210: Resolve charger-det crash if charger psy is unregistered Greg Kroah-Hartman
2024-04-30 10:40 ` [PATCH 6.6 176/186] sched/eevdf: Always update V if se->on_rq when reweighting Greg Kroah-Hartman
2024-04-30 10:40 ` [PATCH 6.6 177/186] sched/eevdf: Fix miscalculation in reweight_entity() when se is not curr Greg Kroah-Hartman
2024-04-30 10:40 ` [PATCH 6.6 178/186] sched/eevdf: Prevent vlag from going out of bounds in reweight_eevdf() Greg Kroah-Hartman
2024-04-30 10:40 ` [PATCH 6.6 179/186] i2c: smbus: fix NULL function pointer dereference Greg Kroah-Hartman
2024-04-30 10:40 ` [PATCH 6.6 180/186] phy: qcom: qmp-combo: fix VCO div offset on v5_5nm and v6 Greg Kroah-Hartman
2024-04-30 10:40 ` [PATCH 6.6 181/186] ovl: fix memory leak in ovl_parse_param() Greg Kroah-Hartman
2024-04-30 10:40 ` [PATCH 6.6 182/186] Revert "riscv: kdump: fix crashkernel reserving problem on RISC-V" Greg Kroah-Hartman
2024-04-30 10:40 ` [PATCH 6.6 183/186] macsec: Enable devices to advertise whether they update sk_buff md_dst during offloads Greg Kroah-Hartman
2024-04-30 10:40 ` [PATCH 6.6 184/186] macsec: Detect if Rx skb is macsec-related for offloading devices that update md_dst Greg Kroah-Hartman
2024-04-30 10:40 ` [PATCH 6.6 185/186] net/mlx5e: Advertise mlx5 ethernet driver updates sk_buff md_dst for MACsec Greg Kroah-Hartman
2024-04-30 10:40 ` [PATCH 6.6 186/186] bounds: Use the right number of bits for power-of-two CONFIG_NR_CPUS Greg Kroah-Hartman
2024-04-30 16:19 ` [PATCH 6.6 000/186] 6.6.30-rc1 review Harshit Mogalapalli
2024-04-30 16:48 ` SeongJae Park
2024-04-30 19:17 ` Florian Fainelli
2024-05-01  8:39 ` Ron Economos
2024-05-01  9:03 ` Naresh Kamboju
2024-05-01 11:34 ` Miguel Ojeda
2024-05-01 12:25 ` Takeshi Ogasawara
2024-05-01 13:38 ` Jon Hunter
2024-05-01 13:41 ` Mark Brown
2024-05-01 19:47 ` Pavel Machek
2024-05-02  3:01 ` Shuah Khan
2024-05-02  6:44 ` Pascal Ernster
2024-05-02  6:50   ` Greg Kroah-Hartman
2024-05-02  7:29     ` Pascal Ernster
2024-05-02 14:14       ` Jonathan Corbet

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20240430103059.107554272@linuxfoundation.org \
    --to=gregkh@linuxfoundation.org \
    --cc=johannes.berg@intel.com \
    --cc=nbd@nbd.name \
    --cc=patches@lists.linux.dev \
    --cc=sashal@kernel.org \
    --cc=stable@vger.kernel.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).