public inbox for stable@vger.kernel.org
 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, Yong Wang <yongwang@nvidia.com>,
	Andy Roulin <aroulin@nvidia.com>,
	Ido Schimmel <idosch@nvidia.com>, Petr Machata <petrm@nvidia.com>,
	Nikolay Aleksandrov <razor@blackwall.org>,
	"David S. Miller" <davem@davemloft.net>,
	Sasha Levin <sashal@kernel.org>
Subject: [PATCH 6.6 175/290] net: bridge: mcast: re-implement br_multicast_{enable, disable}_port functions
Date: Mon, 23 Jun 2025 15:07:16 +0200	[thread overview]
Message-ID: <20250623130632.148950599@linuxfoundation.org> (raw)
In-Reply-To: <20250623130626.910356556@linuxfoundation.org>

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

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

From: Yong Wang <yongwang@nvidia.com>

[ Upstream commit 4b30ae9adb047dd0a7982975ec3933c529537026 ]

When a bridge port STP state is changed from BLOCKING/DISABLED to
FORWARDING, the port's igmp query timer will NOT re-arm itself if the
bridge has been configured as per-VLAN multicast snooping.

Solve this by choosing the correct multicast context(s) to enable/disable
port multicast based on whether per-VLAN multicast snooping is enabled or
not, i.e. using per-{port, VLAN} context in case of per-VLAN multicast
snooping by re-implementing br_multicast_enable_port() and
br_multicast_disable_port() functions.

Before the patch, the IGMP query does not happen in the last step of the
following test sequence, i.e. no growth for tx counter:
 # ip link add name br1 up type bridge vlan_filtering 1 mcast_snooping 1 mcast_vlan_snooping 1 mcast_querier 1 mcast_stats_enabled 1
 # bridge vlan global set vid 1 dev br1 mcast_snooping 1 mcast_querier 1 mcast_query_interval 100 mcast_startup_query_count 0
 # ip link add name swp1 up master br1 type dummy
 # bridge link set dev swp1 state 0
 # ip -j -p stats show dev swp1 group xstats_slave subgroup bridge suite mcast | jq '.[]["multicast"]["igmp_queries"]["tx_v2"]'
1
 # sleep 1
 # ip -j -p stats show dev swp1 group xstats_slave subgroup bridge suite mcast | jq '.[]["multicast"]["igmp_queries"]["tx_v2"]'
1
 # bridge link set dev swp1 state 3
 # sleep 2
 # ip -j -p stats show dev swp1 group xstats_slave subgroup bridge suite mcast | jq '.[]["multicast"]["igmp_queries"]["tx_v2"]'
1

After the patch, the IGMP query happens in the last step of the test:
 # ip link add name br1 up type bridge vlan_filtering 1 mcast_snooping 1 mcast_vlan_snooping 1 mcast_querier 1 mcast_stats_enabled 1
 # bridge vlan global set vid 1 dev br1 mcast_snooping 1 mcast_querier 1 mcast_query_interval 100 mcast_startup_query_count 0
 # ip link add name swp1 up master br1 type dummy
 # bridge link set dev swp1 state 0
 # ip -j -p stats show dev swp1 group xstats_slave subgroup bridge suite mcast | jq '.[]["multicast"]["igmp_queries"]["tx_v2"]'
1
 # sleep 1
 # ip -j -p stats show dev swp1 group xstats_slave subgroup bridge suite mcast | jq '.[]["multicast"]["igmp_queries"]["tx_v2"]'
1
 # bridge link set dev swp1 state 3
 # sleep 2
 # ip -j -p stats show dev swp1 group xstats_slave subgroup bridge suite mcast | jq '.[]["multicast"]["igmp_queries"]["tx_v2"]'
3

Signed-off-by: Yong Wang <yongwang@nvidia.com>
Reviewed-by: Andy Roulin <aroulin@nvidia.com>
Reviewed-by: Ido Schimmel <idosch@nvidia.com>
Signed-off-by: Petr Machata <petrm@nvidia.com>
Acked-by: Nikolay Aleksandrov <razor@blackwall.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
Signed-off-by: Sasha Levin <sashal@kernel.org>
---
 net/bridge/br_multicast.c | 77 +++++++++++++++++++++++++++++++++++----
 1 file changed, 69 insertions(+), 8 deletions(-)

diff --git a/net/bridge/br_multicast.c b/net/bridge/br_multicast.c
index ea71a64f915f9..fa16ee88ec396 100644
--- a/net/bridge/br_multicast.c
+++ b/net/bridge/br_multicast.c
@@ -2104,12 +2104,17 @@ static void __br_multicast_enable_port_ctx(struct net_bridge_mcast_port *pmctx)
 	}
 }
 
-void br_multicast_enable_port(struct net_bridge_port *port)
+static void br_multicast_enable_port_ctx(struct net_bridge_mcast_port *pmctx)
 {
-	struct net_bridge *br = port->br;
+	struct net_bridge *br = pmctx->port->br;
 
 	spin_lock_bh(&br->multicast_lock);
-	__br_multicast_enable_port_ctx(&port->multicast_ctx);
+	if (br_multicast_port_ctx_is_vlan(pmctx) &&
+	    !(pmctx->vlan->priv_flags & BR_VLFLAG_MCAST_ENABLED)) {
+		spin_unlock_bh(&br->multicast_lock);
+		return;
+	}
+	__br_multicast_enable_port_ctx(pmctx);
 	spin_unlock_bh(&br->multicast_lock);
 }
 
@@ -2136,11 +2141,67 @@ static void __br_multicast_disable_port_ctx(struct net_bridge_mcast_port *pmctx)
 	br_multicast_rport_del_notify(pmctx, del);
 }
 
+static void br_multicast_disable_port_ctx(struct net_bridge_mcast_port *pmctx)
+{
+	struct net_bridge *br = pmctx->port->br;
+
+	spin_lock_bh(&br->multicast_lock);
+	if (br_multicast_port_ctx_is_vlan(pmctx) &&
+	    !(pmctx->vlan->priv_flags & BR_VLFLAG_MCAST_ENABLED)) {
+		spin_unlock_bh(&br->multicast_lock);
+		return;
+	}
+
+	__br_multicast_disable_port_ctx(pmctx);
+	spin_unlock_bh(&br->multicast_lock);
+}
+
+static void br_multicast_toggle_port(struct net_bridge_port *port, bool on)
+{
+#if IS_ENABLED(CONFIG_BRIDGE_VLAN_FILTERING)
+	if (br_opt_get(port->br, BROPT_MCAST_VLAN_SNOOPING_ENABLED)) {
+		struct net_bridge_vlan_group *vg;
+		struct net_bridge_vlan *vlan;
+
+		rcu_read_lock();
+		vg = nbp_vlan_group_rcu(port);
+		if (!vg) {
+			rcu_read_unlock();
+			return;
+		}
+
+		/* iterate each vlan, toggle vlan multicast context */
+		list_for_each_entry_rcu(vlan, &vg->vlan_list, vlist) {
+			struct net_bridge_mcast_port *pmctx =
+						&vlan->port_mcast_ctx;
+			u8 state = br_vlan_get_state(vlan);
+			/* enable vlan multicast context when state is
+			 * LEARNING or FORWARDING
+			 */
+			if (on && br_vlan_state_allowed(state, true))
+				br_multicast_enable_port_ctx(pmctx);
+			else
+				br_multicast_disable_port_ctx(pmctx);
+		}
+		rcu_read_unlock();
+		return;
+	}
+#endif
+	/* toggle port multicast context when vlan snooping is disabled */
+	if (on)
+		br_multicast_enable_port_ctx(&port->multicast_ctx);
+	else
+		br_multicast_disable_port_ctx(&port->multicast_ctx);
+}
+
+void br_multicast_enable_port(struct net_bridge_port *port)
+{
+	br_multicast_toggle_port(port, true);
+}
+
 void br_multicast_disable_port(struct net_bridge_port *port)
 {
-	spin_lock_bh(&port->br->multicast_lock);
-	__br_multicast_disable_port_ctx(&port->multicast_ctx);
-	spin_unlock_bh(&port->br->multicast_lock);
+	br_multicast_toggle_port(port, false);
 }
 
 static int __grp_src_delete_marked(struct net_bridge_port_group *pg)
@@ -4329,9 +4390,9 @@ int br_multicast_toggle_vlan_snooping(struct net_bridge *br, bool on,
 		__br_multicast_open(&br->multicast_ctx);
 	list_for_each_entry(p, &br->port_list, list) {
 		if (on)
-			br_multicast_disable_port(p);
+			br_multicast_disable_port_ctx(&p->multicast_ctx);
 		else
-			br_multicast_enable_port(p);
+			br_multicast_enable_port_ctx(&p->multicast_ctx);
 	}
 
 	list_for_each_entry(vlan, &vg->vlan_list, vlist)
-- 
2.39.5




  parent reply	other threads:[~2025-06-23 21:43 UTC|newest]

Thread overview: 295+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2025-06-23 13:04 [PATCH 6.6 000/290] 6.6.95-rc1 review Greg Kroah-Hartman
2025-06-23 13:04 ` [PATCH 6.6 001/290] configfs: Do not override creating attribute file failure in populate_attrs() Greg Kroah-Hartman
2025-06-23 13:04 ` [PATCH 6.6 002/290] crypto: marvell/cesa - Do not chain submitted requests Greg Kroah-Hartman
2025-06-23 13:04 ` [PATCH 6.6 003/290] gfs2: move msleep to sleepable context Greg Kroah-Hartman
2025-06-23 13:04 ` [PATCH 6.6 004/290] ASoC: qcom: sdm845: Add error handling in sdm845_slim_snd_hw_params() Greg Kroah-Hartman
2025-06-23 13:04 ` [PATCH 6.6 005/290] ASoC: meson: meson-card-utils: use of_property_present() for DT parsing Greg Kroah-Hartman
2025-06-23 13:04 ` [PATCH 6.6 006/290] io_uring: account drain memory to cgroup Greg Kroah-Hartman
2025-06-23 13:04 ` [PATCH 6.6 007/290] io_uring/kbuf: account ring io_buffer_list memory Greg Kroah-Hartman
2025-06-23 13:04 ` [PATCH 6.6 008/290] powerpc/pseries/msi: Avoid reading PCI device registers in reduced power states Greg Kroah-Hartman
2025-06-23 13:04 ` [PATCH 6.6 009/290] regulator: max20086: Fix MAX200086 chip id Greg Kroah-Hartman
2025-06-23 13:04 ` [PATCH 6.6 010/290] regulator: max20086: Change enable gpio to optional Greg Kroah-Hartman
2025-06-23 13:04 ` [PATCH 6.6 011/290] net/mlx5_core: Add error handling inmlx5_query_nic_vport_qkey_viol_cntr() Greg Kroah-Hartman
2025-06-23 13:04 ` [PATCH 6.6 012/290] net/mlx5: Add error handling in mlx5_query_nic_vport_node_guid() Greg Kroah-Hartman
2025-06-23 13:04 ` [PATCH 6.6 013/290] wifi: p54: prevent buffer-overflow in p54_rx_eeprom_readback() Greg Kroah-Hartman
2025-06-23 13:04 ` [PATCH 6.6 014/290] wifi: ath11k: fix rx completion meta data corruption Greg Kroah-Hartman
2025-06-23 13:04 ` [PATCH 6.6 015/290] wifi: ath11k: fix ring-buffer corruption Greg Kroah-Hartman
2025-06-23 13:04 ` [PATCH 6.6 016/290] nfsd: nfsd4_spo_must_allow() must check this is a v4 compound request Greg Kroah-Hartman
2025-06-23 13:04 ` [PATCH 6.6 017/290] nfsd: Initialize ssc before laundromat_work to prevent NULL dereference Greg Kroah-Hartman
2025-06-23 13:04 ` [PATCH 6.6 018/290] SUNRPC: Prevent hang on NFS mount with xprtsec=[m]tls Greg Kroah-Hartman
2025-06-23 13:04 ` [PATCH 6.6 019/290] fs/nfs/read: fix double-unlock bug in nfs_return_empty_folio() Greg Kroah-Hartman
2025-06-23 13:04 ` [PATCH 6.6 020/290] wifi: ath12k: fix ring-buffer corruption Greg Kroah-Hartman
2025-06-23 13:04 ` [PATCH 6.6 021/290] jbd2: fix data-race and null-ptr-deref in jbd2_journal_dirty_metadata() Greg Kroah-Hartman
2025-06-23 13:04 ` [PATCH 6.6 022/290] wifi: rtw88: usb: Reduce control message timeout to 500 ms Greg Kroah-Hartman
2025-06-23 13:04 ` [PATCH 6.6 023/290] wifi: rtlwifi: disable ASPM for RTL8723BE with subsystem ID 11ad:1723 Greg Kroah-Hartman
2025-06-23 13:04 ` [PATCH 6.6 024/290] media: ov8856: suppress probe deferral errors Greg Kroah-Hartman
2025-06-23 13:04 ` [PATCH 6.6 025/290] media: ov5675: " Greg Kroah-Hartman
2025-06-23 13:04 ` [PATCH 6.6 026/290] media: nxp: imx8-isi: better handle the m2m usage_count Greg Kroah-Hartman
2025-06-23 13:04 ` [PATCH 6.6 027/290] media: i2c: ds90ub913: Fix returned fmt from .set_fmt() Greg Kroah-Hartman
2025-06-23 13:04 ` [PATCH 6.6 028/290] media: ccs-pll: Start VT pre-PLL multiplier search from correct value Greg Kroah-Hartman
2025-06-23 13:04 ` [PATCH 6.6 029/290] media: ccs-pll: Start OP " Greg Kroah-Hartman
2025-06-23 13:04 ` [PATCH 6.6 030/290] media: ccs-pll: Correct the upper limit of maximum op_pre_pll_clk_div Greg Kroah-Hartman
2025-06-23 13:04 ` [PATCH 6.6 031/290] media: ccs-pll: Check for too high VT PLL multiplier in dual PLL case Greg Kroah-Hartman
2025-06-23 13:04 ` [PATCH 6.6 032/290] media: cxusb: no longer judge rbuf when the write fails Greg Kroah-Hartman
2025-06-23 13:04 ` [PATCH 6.6 033/290] media: davinci: vpif: Fix memory leak in probe error path Greg Kroah-Hartman
2025-06-23 13:04 ` [PATCH 6.6 034/290] media: gspca: Add error handling for stv06xx_read_sensor() Greg Kroah-Hartman
2025-06-23 13:04 ` [PATCH 6.6 035/290] media: mediatek: vcodec: Correct vsi_core framebuffer size Greg Kroah-Hartman
2025-06-23 13:04 ` [PATCH 6.6 036/290] media: omap3isp: use sgtable-based scatterlist wrappers Greg Kroah-Hartman
2025-06-23 13:04 ` [PATCH 6.6 037/290] media: v4l2-dev: fix error handling in __video_register_device() Greg Kroah-Hartman
2025-06-23 13:04 ` [PATCH 6.6 038/290] media: venus: Fix probe error handling Greg Kroah-Hartman
2025-06-23 13:05 ` [PATCH 6.6 039/290] media: videobuf2: use sgtable-based scatterlist wrappers Greg Kroah-Hartman
2025-06-23 13:05 ` [PATCH 6.6 040/290] media: vidtv: Terminating the subsequent process of initialization failure Greg Kroah-Hartman
2025-06-23 13:05 ` [PATCH 6.6 041/290] media: vivid: Change the siize of the composing Greg Kroah-Hartman
2025-06-23 13:05 ` [PATCH 6.6 042/290] media: imx-jpeg: Drop the first error frames Greg Kroah-Hartman
2025-06-23 13:05 ` [PATCH 6.6 043/290] media: imx-jpeg: Move mxc_jpeg_free_slot_data() ahead Greg Kroah-Hartman
2025-06-23 13:05 ` [PATCH 6.6 044/290] media: imx-jpeg: Reset slot data pointers when freed Greg Kroah-Hartman
2025-06-23 13:05 ` [PATCH 6.6 045/290] media: imx-jpeg: Cleanup after an allocation error Greg Kroah-Hartman
2025-06-23 13:05 ` [PATCH 6.6 046/290] media: uvcvideo: Return the number of processed controls Greg Kroah-Hartman
2025-06-23 13:05 ` [PATCH 6.6 047/290] media: uvcvideo: Send control events for partial succeeds Greg Kroah-Hartman
2025-06-23 13:05 ` [PATCH 6.6 048/290] media: uvcvideo: Fix deferred probing error Greg Kroah-Hartman
2025-06-23 13:05 ` [PATCH 6.6 049/290] arm64/mm: Close theoretical race where stale TLB entry remains valid Greg Kroah-Hartman
2025-06-23 13:05 ` [PATCH 6.6 050/290] ARM: 9447/1: arm/memremap: fix arch_memremap_can_ram_remap() Greg Kroah-Hartman
2025-06-23 13:05 ` [PATCH 6.6 051/290] ARM: omap: pmic-cpcap: do not mess around without CPCAP or OMAP4 Greg Kroah-Hartman
2025-06-23 13:05 ` [PATCH 6.6 052/290] bus: mhi: ep: Update read pointer only after buffer is written Greg Kroah-Hartman
2025-06-23 13:05 ` [PATCH 6.6 053/290] bus: mhi: host: Fix conflict between power_up and SYSERR Greg Kroah-Hartman
2025-06-23 13:05 ` [PATCH 6.6 054/290] can: tcan4x5x: fix power regulator retrieval during probe Greg Kroah-Hartman
2025-06-23 13:05 ` [PATCH 6.6 055/290] ceph: set superblock s_magic for IMA fsmagic matching Greg Kroah-Hartman
2025-06-23 13:05 ` [PATCH 6.6 056/290] cgroup,freezer: fix incomplete freezing when attaching tasks Greg Kroah-Hartman
2025-06-23 13:05 ` [PATCH 6.6 057/290] ata: pata_via: Force PIO for ATAPI devices on VT6415/VT6330 Greg Kroah-Hartman
2025-06-23 13:05 ` [PATCH 6.6 058/290] bus: fsl-mc: do not add a device-link for the UAPI used DPMCP device Greg Kroah-Hartman
2025-06-23 13:05 ` [PATCH 6.6 059/290] bus: fsl-mc: fix GET/SET_TAILDROP command ids Greg Kroah-Hartman
2025-06-23 13:05 ` [PATCH 6.6 060/290] ext4: inline: fix len overflow in ext4_prepare_inline_data Greg Kroah-Hartman
2025-06-23 13:05 ` [PATCH 6.6 061/290] ext4: fix calculation of credits for extent tree modification Greg Kroah-Hartman
2025-06-23 13:05 ` [PATCH 6.6 062/290] ext4: factor out ext4_get_maxbytes() Greg Kroah-Hartman
2025-06-23 13:05 ` [PATCH 6.6 063/290] ext4: ensure i_size is smaller than maxbytes Greg Kroah-Hartman
2025-06-23 13:05 ` [PATCH 6.6 064/290] ext4: only dirty folios when data journaling regular files Greg Kroah-Hartman
2025-06-23 13:05 ` [PATCH 6.6 065/290] Input: ims-pcu - check record size in ims_pcu_flash_firmware() Greg Kroah-Hartman
2025-06-23 13:05 ` [PATCH 6.6 066/290] Input: gpio-keys - fix possible concurrent access in gpio_keys_irq_timer() Greg Kroah-Hartman
2025-06-23 13:05 ` [PATCH 6.6 067/290] f2fs: fix to do sanity check on ino and xnid Greg Kroah-Hartman
2025-06-23 13:05 ` [PATCH 6.6 068/290] f2fs: prevent kernel warning due to negative i_nlink from corrupted image Greg Kroah-Hartman
2025-06-23 13:05 ` [PATCH 6.6 069/290] f2fs: fix to do sanity check on sit_bitmap_size Greg Kroah-Hartman
2025-06-23 13:05 ` [PATCH 6.6 070/290] hwmon: (ftsteutates) Fix TOCTOU race in fts_read() Greg Kroah-Hartman
2025-06-23 13:05 ` [PATCH 6.6 073/290] net: ftgmac100: select FIXED_PHY Greg Kroah-Hartman
2025-06-23 13:05 ` [PATCH 6.6 074/290] fbdev: Fix do_register_framebuffer to prevent null-ptr-deref in fb_videomode_to_var Greg Kroah-Hartman
2025-06-23 13:05 ` [PATCH 6.6 075/290] EDAC/altera: Use correct write width with the INTTEST register Greg Kroah-Hartman
2025-06-23 13:05 ` [PATCH 6.6 076/290] fbdev: Fix fb_set_var to prevent null-ptr-deref in fb_videomode_to_var Greg Kroah-Hartman
2025-06-23 13:05 ` [PATCH 6.6 077/290] parisc/unaligned: Fix hex output to show 8 hex chars Greg Kroah-Hartman
2025-06-23 13:05 ` [PATCH 6.6 078/290] vgacon: Add check for vc_origin address range in vgacon_scroll() Greg Kroah-Hartman
2025-06-23 13:05 ` [PATCH 6.6 080/290] clk: meson-g12a: add missing fclk_div2 to spicc Greg Kroah-Hartman
2025-06-23 13:05 ` [PATCH 6.6 081/290] ipc: fix to protect IPCS lookups using RCU Greg Kroah-Hartman
2025-06-23 13:05 ` [PATCH 6.6 082/290] watchdog: fix watchdog may detect false positive of softlockup Greg Kroah-Hartman
2025-06-23 13:05 ` [PATCH 6.6 083/290] RDMA/iwcm: Fix use-after-free of work objects after cm_id destruction Greg Kroah-Hartman
2025-06-23 13:05 ` [PATCH 6.6 084/290] mm: fix ratelimit_pages update error in dirty_ratio_handler() Greg Kroah-Hartman
2025-06-23 13:05 ` [PATCH 6.6 085/290] mtd: rawnand: sunxi: Add randomizer configuration in sunxi_nfc_hw_ecc_write_chunk Greg Kroah-Hartman
2025-06-23 13:05 ` [PATCH 6.6 086/290] mtd: nand: sunxi: Add randomizer configuration before randomizer enable Greg Kroah-Hartman
2025-06-23 13:05 ` [PATCH 6.6 087/290] KVM: SVM: Clear current_vmcb during vCPU free for all *possible* CPUs Greg Kroah-Hartman
2025-06-23 13:05 ` [PATCH 6.6 088/290] KVM: VMX: Flush shadow VMCS on emergency reboot Greg Kroah-Hartman
2025-06-23 13:05 ` [PATCH 6.6 089/290] dm-mirror: fix a tiny race condition Greg Kroah-Hartman
2025-06-23 13:05 ` [PATCH 6.6 090/290] dm-verity: fix a memory leak if some arguments are specified multiple times Greg Kroah-Hartman
2025-06-23 13:05 ` [PATCH 6.6 091/290] mtd: rawnand: qcom: Fix read len for onfi param page Greg Kroah-Hartman
2025-06-23 13:05 ` [PATCH 6.6 092/290] ftrace: Fix UAF when lookup kallsym after ftrace disabled Greg Kroah-Hartman
2025-06-23 13:05 ` [PATCH 6.6 093/290] phy: fsl-imx8mq-usb: fix phy_tx_vboost_level_from_property() Greg Kroah-Hartman
2025-06-23 13:05 ` [PATCH 6.6 094/290] net: ch9200: fix uninitialised access during mii_nway_restart Greg Kroah-Hartman
2025-06-23 13:05 ` [PATCH 6.6 095/290] KVM: s390: rename PROT_NONE to PROT_TYPE_DUMMY Greg Kroah-Hartman
2025-06-23 13:05 ` [PATCH 6.6 096/290] video: screen_info: Relocate framebuffers behind PCI bridges Greg Kroah-Hartman
2025-06-23 13:05 ` [PATCH 6.6 097/290] staging: iio: ad5933: Correct settling cycles encoding per datasheet Greg Kroah-Hartman
2025-06-23 13:05 ` [PATCH 6.6 098/290] mips: Add -std= flag specified in KBUILD_CFLAGS to vdso CFLAGS Greg Kroah-Hartman
2025-06-23 13:06 ` [PATCH 6.6 099/290] regulator: max14577: Add error check for max14577_read_reg() Greg Kroah-Hartman
2025-06-23 13:06 ` [PATCH 6.6 100/290] remoteproc: core: Cleanup acquired resources when rproc_handle_resources() fails in rproc_attach() Greg Kroah-Hartman
2025-06-23 13:06 ` [PATCH 6.6 101/290] remoteproc: core: Release rproc->clean_table after rproc_attach() fails Greg Kroah-Hartman
2025-06-23 13:06 ` [PATCH 6.6 102/290] cifs: reset connections for all channels when reconnect requested Greg Kroah-Hartman
2025-06-23 13:06 ` [PATCH 6.6 103/290] cifs: update dstaddr whenever channel iface is updated Greg Kroah-Hartman
2025-06-23 13:06 ` [PATCH 6.6 104/290] cifs: dns resolution is needed only for primary channel Greg Kroah-Hartman
2025-06-23 13:06 ` [PATCH 6.6 105/290] smb: client: add NULL check in automount_fullpath Greg Kroah-Hartman
2025-06-23 13:06 ` [PATCH 6.6 106/290] Drivers: hv: Allocate interrupt and monitor pages aligned to system page boundary Greg Kroah-Hartman
2025-06-23 13:06 ` [PATCH 6.6 107/290] uio_hv_generic: Use correct size for interrupt and monitor pages Greg Kroah-Hartman
2025-06-23 13:06 ` [PATCH 6.6 108/290] PCI: cadence-ep: Correct PBA offset in .set_msix() callback Greg Kroah-Hartman
2025-06-23 13:06 ` [PATCH 6.6 109/290] PCI: Add ACS quirk for Loongson PCIe Greg Kroah-Hartman
2025-06-23 13:06 ` [PATCH 6.6 110/290] PCI: Fix lock symmetry in pci_slot_unlock() Greg Kroah-Hartman
2025-06-23 13:06 ` [PATCH 6.6 111/290] PCI: dw-rockchip: Fix PHY function call sequence in rockchip_pcie_phy_deinit() Greg Kroah-Hartman
2025-06-23 13:06 ` [PATCH 6.6 112/290] iio: accel: fxls8962af: Fix temperature scan element sign Greg Kroah-Hartman
2025-06-23 13:06 ` [PATCH 6.6 113/290] mm/hugetlb: fix huge_pmd_unshare() vs GUP-fast race Greg Kroah-Hartman
2025-06-23 13:06 ` [PATCH 6.6 114/290] iio: imu: inv_icm42600: Fix temperature calculation Greg Kroah-Hartman
2025-06-23 13:06 ` [PATCH 6.6 115/290] iio: adc: ad7606_spi: fix reg write value mask Greg Kroah-Hartman
2025-06-23 13:06 ` [PATCH 6.6 116/290] ACPICA: fix acpi operand cache leak in dswstate.c Greg Kroah-Hartman
2025-06-23 13:06 ` [PATCH 6.6 117/290] ASoC: amd: yc: Add quirk for Lenovo Yoga Pro 7 14ASP9 Greg Kroah-Hartman
2025-06-23 13:06 ` [PATCH 6.6 118/290] clocksource: Fix the CPUs choice in the watchdog per CPU verification Greg Kroah-Hartman
2025-06-23 13:06 ` [PATCH 6.6 119/290] power: supply: collie: Fix wakeup source leaks on device unbind Greg Kroah-Hartman
2025-06-23 13:06 ` [PATCH 6.6 120/290] mmc: Add quirk to disable DDR50 tuning Greg Kroah-Hartman
2025-06-23 13:06 ` [PATCH 6.6 121/290] ACPICA: Avoid sequence overread in call to strncmp() Greg Kroah-Hartman
2025-06-23 13:06 ` [PATCH 6.6 122/290] mmc: sdhci-esdhc-imx: Save tuning value when card stays powered in suspend Greg Kroah-Hartman
2025-06-23 13:06 ` [PATCH 6.6 123/290] ASoC: tas2770: Power cycle amp on ISENSE/VSENSE change Greg Kroah-Hartman
2025-06-23 13:06 ` [PATCH 6.6 125/290] ACPI: Add missing prototype for non CONFIG_SUSPEND/CONFIG_X86 case Greg Kroah-Hartman
2025-06-23 13:06 ` [PATCH 6.6 126/290] ACPICA: fix acpi parse and parseext cache leaks Greg Kroah-Hartman
2025-06-23 13:06 ` [PATCH 6.6 127/290] power: supply: bq27xxx: Retrieve again when busy Greg Kroah-Hartman
2025-06-23 13:06 ` [PATCH 6.6 128/290] ACPICA: utilities: Fix overflow check in vsnprintf() Greg Kroah-Hartman
2025-06-23 13:06 ` [PATCH 6.6 129/290] ASoC: tegra210_ahub: Add check to of_device_get_match_data() Greg Kroah-Hartman
2025-06-23 13:06 ` [PATCH 6.6 130/290] gpiolib: of: Add polarity quirk for s5m8767 Greg Kroah-Hartman
2025-06-23 13:06 ` [PATCH 6.6 131/290] PM: runtime: fix denying of auto suspend in pm_suspend_timer_fn() Greg Kroah-Hartman
2025-06-23 13:06 ` [PATCH 6.6 132/290] ACPI: battery: negate current when discharging Greg Kroah-Hartman
2025-06-23 13:06 ` [PATCH 6.6 133/290] net: macb: Check return value of dma_set_mask_and_coherent() Greg Kroah-Hartman
2025-06-23 13:06 ` [PATCH 6.6 134/290] net: lan743x: Modify the EEPROM and OTP size for PCI1xxxx devices Greg Kroah-Hartman
2025-06-23 13:06 ` [PATCH 6.6 135/290] tipc: use kfree_sensitive() for aead cleanup Greg Kroah-Hartman
2025-06-23 13:06 ` [PATCH 6.6 136/290] f2fs: use vmalloc instead of kvmalloc in .init_{,de}compress_ctx Greg Kroah-Hartman
2025-06-23 13:06 ` [PATCH 6.6 137/290] bpf: Check rcu_read_lock_trace_held() in bpf_map_lookup_percpu_elem() Greg Kroah-Hartman
2025-06-23 13:06 ` [PATCH 6.6 138/290] i2c: designware: Invoke runtime suspend on quick slave re-registration Greg Kroah-Hartman
2025-06-23 13:06 ` [PATCH 6.6 139/290] wifi: mt76: mt7996: drop fragments with multicast or broadcast RA Greg Kroah-Hartman
2025-06-23 13:06 ` [PATCH 6.6 140/290] emulex/benet: correct command version selection in be_cmd_get_stats() Greg Kroah-Hartman
2025-06-23 13:06 ` [PATCH 6.6 141/290] wifi: mt76: mt76x2: Add support for LiteOn WN4516R,WN4519R Greg Kroah-Hartman
2025-06-23 13:06 ` [PATCH 6.6 142/290] wifi: mt76: mt7921: add 160 MHz AP for mt7922 device Greg Kroah-Hartman
2025-06-23 13:06 ` [PATCH 6.6 143/290] sctp: Do not wake readers in __sctp_write_space() Greg Kroah-Hartman
2025-06-23 13:06 ` [PATCH 6.6 144/290] cpufreq: scmi: Skip SCMI devices that arent used by the CPUs Greg Kroah-Hartman
2025-06-23 13:06 ` [PATCH 6.6 145/290] i2c: tegra: check msg length in SMBUS block read Greg Kroah-Hartman
2025-06-23 13:06 ` [PATCH 6.6 146/290] i2c: npcm: Add clock toggle recovery Greg Kroah-Hartman
2025-06-23 13:06 ` [PATCH 6.6 147/290] net: dlink: add synchronization for stats update Greg Kroah-Hartman
2025-06-23 13:06 ` [PATCH 6.6 148/290] wifi: ath12k: fix macro definition HAL_RX_MSDU_PKT_LENGTH_GET Greg Kroah-Hartman
2025-06-23 13:06 ` [PATCH 6.6 149/290] wifi: ath12k: fix a possible dead lock caused by ab->base_lock Greg Kroah-Hartman
2025-06-23 13:06 ` [PATCH 6.6 150/290] wifi: ath11k: Fix QMI memory reuse logic Greg Kroah-Hartman
2025-06-23 13:06 ` [PATCH 6.6 151/290] wifi: rtw89: leave idle mode when setting WEP encryption for AP mode Greg Kroah-Hartman
2025-06-23 13:06 ` [PATCH 6.6 152/290] tcp: always seek for minimal rtt in tcp_rcv_rtt_update() Greg Kroah-Hartman
2025-06-23 13:06 ` [PATCH 6.6 153/290] tcp: fix initial tp->rcvq_space.space value for passive TS enabled flows Greg Kroah-Hartman
2025-06-23 13:06 ` [PATCH 6.6 154/290] x86/sgx: Prevent attempts to reclaim poisoned pages Greg Kroah-Hartman
2025-06-23 13:06 ` [PATCH 6.6 155/290] ipv4/route: Use this_cpu_inc() for stats on PREEMPT_RT Greg Kroah-Hartman
2025-06-23 13:06 ` [PATCH 6.6 156/290] net: atlantic: generate software timestamp just before the doorbell Greg Kroah-Hartman
2025-06-23 13:06 ` [PATCH 6.6 157/290] pinctrl: armada-37xx: propagate error from armada_37xx_pmx_set_by_name() Greg Kroah-Hartman
2025-06-23 13:06 ` [PATCH 6.6 158/290] pinctrl: armada-37xx: propagate error from armada_37xx_gpio_get_direction() Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 6.6 159/290] pinctrl: armada-37xx: propagate error from armada_37xx_pmx_gpio_set_direction() Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 6.6 160/290] pinctrl: armada-37xx: propagate error from armada_37xx_gpio_get() Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 6.6 161/290] net: mlx4: add SOF_TIMESTAMPING_TX_SOFTWARE flag when getting ts info Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 6.6 162/290] net: vertexcom: mse102x: Return code for mse102x_rx_pkt_spi Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 6.6 163/290] wireless: purelifi: plfxlc: fix memory leak in plfxlc_usb_wreq_asyn() Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 6.6 164/290] wifi: mac80211: do not offer a mesh path if forwarding is disabled Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 6.6 166/290] clk: rockchip: rk3036: mark ddrphy as critical Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 6.6 167/290] libbpf: Add identical pointer detection to btf_dedup_is_equiv() Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 6.6 168/290] scsi: lpfc: Fix lpfc_check_sli_ndlp() handling for GEN_REQUEST64 commands Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 6.6 169/290] iommu/amd: Ensure GA log notifier callbacks finish running before module unload Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 6.6 170/290] wifi: iwlwifi: pcie: make sure to lock rxq->read Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 6.6 171/290] wifi: mac80211_hwsim: Prevent tsf from setting if beacon is disabled Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 6.6 172/290] wifi: mac80211: VLAN traffic in multicast path Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 6.6 173/290] wifi: iwlwifi: Add missing MODULE_FIRMWARE for Qu-c0-jf-b0 Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 6.6 174/290] net: bridge: mcast: update multicast contex when vlan state is changed Greg Kroah-Hartman
2025-06-23 13:07 ` Greg Kroah-Hartman [this message]
2025-06-23 13:07 ` [PATCH 6.6 176/290] vxlan: Do not treat dst cache initialization errors as fatal Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 6.6 177/290] net: ethernet: ti: am65-cpsw: handle -EPROBE_DEFER Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 6.6 178/290] software node: Correct a OOB check in software_node_get_reference_args() Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 6.6 179/290] pinctrl: mcp23s08: Reset all pins to input at probe Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 6.6 180/290] wifi: ath12k: fix failed to set mhi state error during reboot with hardware grouping Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 6.6 181/290] scsi: lpfc: Use memcpy() for BIOS version Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 6.6 182/290] sock: Correct error checking condition for (assign|release)_proto_idx() Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 6.6 183/290] i40e: fix MMIO write access to an invalid page in i40e_clear_hw Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 6.6 184/290] ice: fix check for existing switch rule Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 6.6 185/290] usbnet: asix AX88772: leave the carrier control to phylink Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 6.6 186/290] f2fs: fix to set atomic write status more clear Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 6.6 187/290] bpf, sockmap: Fix data lost during EAGAIN retries Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 6.6 188/290] net: ethernet: cortina: Use TOE/TSO on all TCP Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 6.6 189/290] octeontx2-pf: Add error log forcn10k_map_unmap_rq_policer() Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 6.6 190/290] wifi: ath11k: determine PM policy based on machine model Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 6.6 191/290] wifi: ath12k: fix link valid field initialization in the monitor Rx Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 6.6 192/290] wifi: ath12k: fix incorrect CE addresses Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 6.6 193/290] wifi: ath12k: Pass correct values of center freq1 and center freq2 for 160 MHz Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 6.6 194/290] fbcon: Make sure modelist not set on unregistered console Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 6.6 195/290] watchdog: da9052_wdt: respect TWDMIN Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 6.6 196/290] bus: fsl-mc: increase MC_CMD_COMPLETION_TIMEOUT_MS value Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 6.6 197/290] ARM: OMAP2+: Fix l4ls clk domain handling in STANDBY Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 6.6 198/290] tee: Prevent size calculation wraparound on 32-bit kernels Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 6.6 199/290] Revert "bus: ti-sysc: Probe for l4_wkup and l4_cfg interconnect devices first" Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 6.6 200/290] fs/xattr.c: fix simple_xattr_list() Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 6.6 201/290] platform/x86/amd: pmc: Clear metrics table at start of cycle Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 6.6 202/290] platform/x86: dell_rbu: Fix list usage Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 6.6 203/290] platform/x86: dell_rbu: Stop overwriting data buffer Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 6.6 204/290] powerpc/vdso: Fix build of VDSO32 with pcrel Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 6.6 205/290] powerpc/eeh: Fix missing PE bridge reconfiguration during VFIO EEH recovery Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 6.6 206/290] Revert "x86/bugs: Make spectre user default depend on MITIGATION_SPECTRE_V2" on v6.6 and older Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 6.6 207/290] io_uring: fix task leak issue in io_wq_create() Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 6.6 208/290] drivers/rapidio/rio_cm.c: prevent possible heap overwrite Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 6.6 209/290] platform/loongarch: laptop: Get brightness setting from EC on probe Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 6.6 210/290] platform/loongarch: laptop: Unregister generic_sub_drivers on exit Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 6.6 211/290] LoongArch: Avoid using $r0/$r1 as "mask" for csrxchg Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 6.6 212/290] LoongArch: Fix panic caused by NULL-PMD in huge_pte_offset() Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 6.6 213/290] jffs2: check that raw node were preallocated before writing summary Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 6.6 214/290] jffs2: check jffs2_prealloc_raw_node_refs() result in few other places Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 6.6 215/290] cifs: deal with the channel loading lag while picking channels Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 6.6 216/290] cifs: serialize other channels when query server interfaces is pending Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 6.6 217/290] cifs: do not disable interface polling on failure Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 6.6 218/290] smb: improve directory cache reuse for readdir operations Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 6.6 219/290] scsi: storvsc: Increase the timeouts to storvsc_timeout Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 6.6 220/290] scsi: s390: zfcp: Ensure synchronous unit_add Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 6.6 221/290] net_sched: sch_sfq: reject invalid perturb period Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 6.6 222/290] net: clear the dst when changing skb protocol Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 6.6 223/290] udmabuf: use sgtable-based scatterlist wrappers Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 6.6 224/290] selftests/x86: Add a test to detect infinite SIGTRAP handler loop Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 6.6 225/290] ksmbd: fix null pointer dereference in destroy_previous_session Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 6.6 226/290] selinux: fix selinux_xfrm_alloc_user() to set correct ctx_len Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 6.6 227/290] platform/x86/intel-uncore-freq: Fail module load when plat_info is NULL Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 6.6 228/290] atm: Revert atm_account_tx() if copy_from_iter_full() fails Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 6.6 229/290] Input: sparcspkr - avoid unannotated fall-through Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 6.6 230/290] wifi: cfg80211: init wiphy_work before allocating rfkill fails Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 6.6 231/290] wifi: rtw89: pci: use DBI function for 8852AE/8852BE/8851BE Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 6.6 232/290] arm64: Restrict pagetable teardown to avoid false warning Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 6.6 233/290] ALSA: usb-audio: Rename ALSA kcontrol PCM and PCM1 for the KTMicro sound card Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 6.6 234/290] ALSA: hda/intel: Add Thinkpad E15 to PM deny list Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 6.6 235/290] ALSA: hda/realtek: enable headset mic on Latitude 5420 Rugged Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 6.6 236/290] iio: accel: fxls8962af: Fix temperature calculation Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 6.6 237/290] mm/hugetlb: unshare page tables during VMA split, not before Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 6.6 238/290] mm/huge_memory: fix dereferencing invalid pmd migration entry Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 6.6 239/290] net: Fix checksum update for ILA adj-transport Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 6.6 240/290] bpf: Fix L4 csum update on IPv6 in CHECKSUM_COMPLETE Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 6.6 241/290] erofs: remove unused trace event erofs_destroy_inode Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 6.6 242/290] sunrpc: handle SVC_GARBAGE during svc auth processing as auth error Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 6.6 243/290] smb: fix secondary channel creation issue with kerberos by populating hostname when adding channels Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 6.6 244/290] drm/msm/disp: Correct porch timing for SDM845 Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 6.6 245/290] drm/msm/dsi/dsi_phy_10nm: Fix missing initial VCO rate Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 6.6 246/290] ionic: Prevent driver/fw getting out of sync on devcmd(s) Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 6.6 247/290] drm/nouveau/bl: increase buffer size to avoid truncate warning Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 6.6 248/290] drm/i915/pmu: Fix build error with GCOV and AutoFDO enabled Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 6.6 249/290] hwmon: (occ) Rework attribute registration for stack usage Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 6.6 250/290] hwmon: (occ) fix unaligned accesses Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 6.6 251/290] pldmfw: Select CRC32 when PLDMFW is selected Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 6.6 252/290] aoe: clean device rq_list in aoedev_downdev() Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 6.6 253/290] net: ice: Perform accurate aRFS flow match Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 6.6 254/290] e1000e: set fixed clock frequency indication for Nahum 11 and Nahum 13 Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 6.6 255/290] ptp: fix breakage after ptp_vclock_in_use() rework Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 6.6 256/290] ptp: allow reading of currently dialed frequency to succeed on free-running clocks Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 6.6 257/290] wifi: carl9170: do not ping device which has failed to load firmware Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 6.6 258/290] mpls: Use rcu_dereference_rtnl() in mpls_route_input_rcu() Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 6.6 259/290] atm: atmtcp: Free invalid length skb in atmtcp_c_send() Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 6.6 260/290] tcp: fix tcp_packet_delayed() for tcp_is_non_sack_preventing_reopen() behavior Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 6.6 261/290] tipc: fix null-ptr-deref when acquiring remote ip of ethernet bearer Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 6.6 262/290] tcp: fix passive TFO socket having invalid NAPI ID Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 6.6 263/290] net: microchip: lan743x: Reduce PTP timeout on HW failure Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 6.6 264/290] net: lan743x: fix potential out-of-bounds write in lan743x_ptp_io_event_clock_get() Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 6.6 265/290] ublk: santizize the arguments from userspace when adding a device Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 6.6 266/290] calipso: Fix null-ptr-deref in calipso_req_{set,del}attr() Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 6.6 267/290] net: atm: add lec_mutex Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 6.6 268/290] net: atm: fix /proc/net/atm/lec handling Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 6.6 269/290] EDAC/amd64: Correct number of UMCs for family 19h models 70h-7fh Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 6.6 270/290] dt-bindings: i2c: nvidia,tegra20-i2c: Specify the required properties Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 6.6 271/290] smb: Log an error when close_all_cached_dirs fails Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 6.6 272/290] net: make for_each_netdev_dump() a little more bug-proof Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 6.6 273/290] serial: sh-sci: Increment the runtime usage counter for the earlycon device Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 6.6 274/290] platform/x86: ideapad-laptop: add missing Ideapad Pro 5 fn keys Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 6.6 275/290] ARM: dts: am335x-bone-common: Increase MDIO reset deassert time Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 6.6 276/290] ARM: dts: am335x-bone-common: Increase MDIO reset deassert delay to 50ms Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 6.6 277/290] Revert "cpufreq: tegra186: Share policy per cluster" Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 6.6 278/290] smb: client: fix first command failure during re-negotiation Greg Kroah-Hartman
2025-06-23 13:09 ` [PATCH 6.6 279/290] platform/loongarch: laptop: Add backlight power control support Greg Kroah-Hartman
2025-06-23 13:09 ` [PATCH 6.6 280/290] s390/pci: Fix __pcilg_mio_inuser() inline assembly Greg Kroah-Hartman
2025-06-23 13:09 ` [PATCH 6.6 281/290] perf: Fix sample vs do_exit() Greg Kroah-Hartman
2025-06-23 13:09 ` [PATCH 6.6 282/290] perf: Fix cgroup state vs ERROR Greg Kroah-Hartman
2025-06-23 13:09 ` [PATCH 6.6 283/290] perf/core: Fix WARN in perf_cgroup_switch() Greg Kroah-Hartman
2025-06-23 13:09 ` [PATCH 6.6 284/290] arm64/ptrace: Fix stack-out-of-bounds read in regs_get_kernel_stack_nth() Greg Kroah-Hartman
2025-06-23 13:09 ` [PATCH 6.6 285/290] scsi: elx: efct: Fix memory leak in efct_hw_parse_filter() Greg Kroah-Hartman
2025-06-23 13:09 ` [PATCH 6.6 286/290] RISC-V: KVM: Fix the size parameter check in SBI SFENCE calls Greg Kroah-Hartman
2025-06-23 13:09 ` [PATCH 6.6 287/290] RISC-V: KVM: Dont treat SBI HFENCE calls as NOPs Greg Kroah-Hartman
2025-06-23 13:09 ` [PATCH 6.6 288/290] perf evsel: Missed close() when probing hybrid core PMUs Greg Kroah-Hartman
2025-06-23 13:09 ` [PATCH 6.6 289/290] gpio: mlxbf3: only get IRQ for device instance 0 Greg Kroah-Hartman
2025-06-23 13:09 ` [PATCH 6.6 290/290] cifs: Remove duplicate fattr->cf_dtype assignment from wsl_to_fattr() function Greg Kroah-Hartman
2025-06-23 15:59 ` [PATCH 6.6 000/290] 6.6.95-rc1 review Harshit Mogalapalli
2025-06-24 10:28   ` Greg Kroah-Hartman
2025-06-24 11:55     ` Harshit Mogalapalli
2025-06-24 12:00       ` Greg Kroah-Hartman
2025-06-23 18:36 ` Peter Schneider
2025-06-23 21:23 ` Naresh Kamboju
2025-06-23 22:21 ` Florian Fainelli
2025-06-24  8:21 ` Ron Economos
2025-06-24 11:58 ` Mark Brown

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=20250623130632.148950599@linuxfoundation.org \
    --to=gregkh@linuxfoundation.org \
    --cc=aroulin@nvidia.com \
    --cc=davem@davemloft.net \
    --cc=idosch@nvidia.com \
    --cc=patches@lists.linux.dev \
    --cc=petrm@nvidia.com \
    --cc=razor@blackwall.org \
    --cc=sashal@kernel.org \
    --cc=stable@vger.kernel.org \
    --cc=yongwang@nvidia.com \
    /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