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, Serge Semin <fancer.lancer@gmail.com>,
	Jianheng Zhang <Jianheng.Zhang@synopsys.com>,
	Jakub Kicinski <kuba@kernel.org>, Sasha Levin <sashal@kernel.org>
Subject: [PATCH 6.1 034/194] net: stmmac: fix FPE events losing
Date: Mon, 11 Dec 2023 19:20:24 +0100	[thread overview]
Message-ID: <20231211182038.087688775@linuxfoundation.org> (raw)
In-Reply-To: <20231211182036.606660304@linuxfoundation.org>

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

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

From: Jianheng Zhang <Jianheng.Zhang@synopsys.com>

[ Upstream commit 37e4b8df27bc68340f3fc80dbb27e3549c7f881c ]

The status bits of register MAC_FPE_CTRL_STS are clear on read. Using
32-bit read for MAC_FPE_CTRL_STS in dwmac5_fpe_configure() and
dwmac5_fpe_send_mpacket() clear the status bits. Then the stmmac interrupt
handler missing FPE event status and leads to FPE handshaking failure and
retries.
To avoid clear status bits of MAC_FPE_CTRL_STS in dwmac5_fpe_configure()
and dwmac5_fpe_send_mpacket(), add fpe_csr to stmmac_fpe_cfg structure to
cache the control bits of MAC_FPE_CTRL_STS and to avoid reading
MAC_FPE_CTRL_STS in those methods.

Fixes: 5a5586112b92 ("net: stmmac: support FPE link partner hand-shaking procedure")
Reviewed-by: Serge Semin <fancer.lancer@gmail.com>
Signed-off-by: Jianheng Zhang <Jianheng.Zhang@synopsys.com>
Link: https://lore.kernel.org/r/CY5PR12MB637225A7CF529D5BE0FBE59CBF81A@CY5PR12MB6372.namprd12.prod.outlook.com
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
Signed-off-by: Sasha Levin <sashal@kernel.org>
---
 drivers/net/ethernet/stmicro/stmmac/dwmac5.c  | 45 ++++++++-----------
 drivers/net/ethernet/stmicro/stmmac/dwmac5.h  |  4 +-
 .../ethernet/stmicro/stmmac/dwxgmac2_core.c   |  3 +-
 drivers/net/ethernet/stmicro/stmmac/hwif.h    |  4 +-
 .../net/ethernet/stmicro/stmmac/stmmac_main.c |  8 +++-
 .../net/ethernet/stmicro/stmmac/stmmac_tc.c   |  1 +
 include/linux/stmmac.h                        |  1 +
 7 files changed, 36 insertions(+), 30 deletions(-)

diff --git a/drivers/net/ethernet/stmicro/stmmac/dwmac5.c b/drivers/net/ethernet/stmicro/stmmac/dwmac5.c
index e95d35f1e5a0c..8fd167501fa0e 100644
--- a/drivers/net/ethernet/stmicro/stmmac/dwmac5.c
+++ b/drivers/net/ethernet/stmicro/stmmac/dwmac5.c
@@ -710,28 +710,22 @@ void dwmac5_est_irq_status(void __iomem *ioaddr, struct net_device *dev,
 	}
 }
 
-void dwmac5_fpe_configure(void __iomem *ioaddr, u32 num_txq, u32 num_rxq,
+void dwmac5_fpe_configure(void __iomem *ioaddr, struct stmmac_fpe_cfg *cfg,
+			  u32 num_txq, u32 num_rxq,
 			  bool enable)
 {
 	u32 value;
 
-	if (!enable) {
-		value = readl(ioaddr + MAC_FPE_CTRL_STS);
-
-		value &= ~EFPE;
-
-		writel(value, ioaddr + MAC_FPE_CTRL_STS);
-		return;
+	if (enable) {
+		cfg->fpe_csr = EFPE;
+		value = readl(ioaddr + GMAC_RXQ_CTRL1);
+		value &= ~GMAC_RXQCTRL_FPRQ;
+		value |= (num_rxq - 1) << GMAC_RXQCTRL_FPRQ_SHIFT;
+		writel(value, ioaddr + GMAC_RXQ_CTRL1);
+	} else {
+		cfg->fpe_csr = 0;
 	}
-
-	value = readl(ioaddr + GMAC_RXQ_CTRL1);
-	value &= ~GMAC_RXQCTRL_FPRQ;
-	value |= (num_rxq - 1) << GMAC_RXQCTRL_FPRQ_SHIFT;
-	writel(value, ioaddr + GMAC_RXQ_CTRL1);
-
-	value = readl(ioaddr + MAC_FPE_CTRL_STS);
-	value |= EFPE;
-	writel(value, ioaddr + MAC_FPE_CTRL_STS);
+	writel(cfg->fpe_csr, ioaddr + MAC_FPE_CTRL_STS);
 }
 
 int dwmac5_fpe_irq_status(void __iomem *ioaddr, struct net_device *dev)
@@ -741,6 +735,9 @@ int dwmac5_fpe_irq_status(void __iomem *ioaddr, struct net_device *dev)
 
 	status = FPE_EVENT_UNKNOWN;
 
+	/* Reads from the MAC_FPE_CTRL_STS register should only be performed
+	 * here, since the status flags of MAC_FPE_CTRL_STS are "clear on read"
+	 */
 	value = readl(ioaddr + MAC_FPE_CTRL_STS);
 
 	if (value & TRSP) {
@@ -766,19 +763,15 @@ int dwmac5_fpe_irq_status(void __iomem *ioaddr, struct net_device *dev)
 	return status;
 }
 
-void dwmac5_fpe_send_mpacket(void __iomem *ioaddr, enum stmmac_mpacket_type type)
+void dwmac5_fpe_send_mpacket(void __iomem *ioaddr, struct stmmac_fpe_cfg *cfg,
+			     enum stmmac_mpacket_type type)
 {
-	u32 value;
+	u32 value = cfg->fpe_csr;
 
-	value = readl(ioaddr + MAC_FPE_CTRL_STS);
-
-	if (type == MPACKET_VERIFY) {
-		value &= ~SRSP;
+	if (type == MPACKET_VERIFY)
 		value |= SVER;
-	} else {
-		value &= ~SVER;
+	else if (type == MPACKET_RESPONSE)
 		value |= SRSP;
-	}
 
 	writel(value, ioaddr + MAC_FPE_CTRL_STS);
 }
diff --git a/drivers/net/ethernet/stmicro/stmmac/dwmac5.h b/drivers/net/ethernet/stmicro/stmmac/dwmac5.h
index 53c138d0ff480..34e620790eb37 100644
--- a/drivers/net/ethernet/stmicro/stmmac/dwmac5.h
+++ b/drivers/net/ethernet/stmicro/stmmac/dwmac5.h
@@ -153,9 +153,11 @@ int dwmac5_est_configure(void __iomem *ioaddr, struct stmmac_est *cfg,
 			 unsigned int ptp_rate);
 void dwmac5_est_irq_status(void __iomem *ioaddr, struct net_device *dev,
 			   struct stmmac_extra_stats *x, u32 txqcnt);
-void dwmac5_fpe_configure(void __iomem *ioaddr, u32 num_txq, u32 num_rxq,
+void dwmac5_fpe_configure(void __iomem *ioaddr, struct stmmac_fpe_cfg *cfg,
+			  u32 num_txq, u32 num_rxq,
 			  bool enable);
 void dwmac5_fpe_send_mpacket(void __iomem *ioaddr,
+			     struct stmmac_fpe_cfg *cfg,
 			     enum stmmac_mpacket_type type);
 int dwmac5_fpe_irq_status(void __iomem *ioaddr, struct net_device *dev);
 
diff --git a/drivers/net/ethernet/stmicro/stmmac/dwxgmac2_core.c b/drivers/net/ethernet/stmicro/stmmac/dwxgmac2_core.c
index f30e08a106cbe..c2181c277291b 100644
--- a/drivers/net/ethernet/stmicro/stmmac/dwxgmac2_core.c
+++ b/drivers/net/ethernet/stmicro/stmmac/dwxgmac2_core.c
@@ -1441,7 +1441,8 @@ static int dwxgmac3_est_configure(void __iomem *ioaddr, struct stmmac_est *cfg,
 	return 0;
 }
 
-static void dwxgmac3_fpe_configure(void __iomem *ioaddr, u32 num_txq,
+static void dwxgmac3_fpe_configure(void __iomem *ioaddr, struct stmmac_fpe_cfg *cfg,
+				   u32 num_txq,
 				   u32 num_rxq, bool enable)
 {
 	u32 value;
diff --git a/drivers/net/ethernet/stmicro/stmmac/hwif.h b/drivers/net/ethernet/stmicro/stmmac/hwif.h
index 592b4067f9b8f..b2b9cf04bc726 100644
--- a/drivers/net/ethernet/stmicro/stmmac/hwif.h
+++ b/drivers/net/ethernet/stmicro/stmmac/hwif.h
@@ -392,9 +392,11 @@ struct stmmac_ops {
 			     unsigned int ptp_rate);
 	void (*est_irq_status)(void __iomem *ioaddr, struct net_device *dev,
 			       struct stmmac_extra_stats *x, u32 txqcnt);
-	void (*fpe_configure)(void __iomem *ioaddr, u32 num_txq, u32 num_rxq,
+	void (*fpe_configure)(void __iomem *ioaddr, struct stmmac_fpe_cfg *cfg,
+			      u32 num_txq, u32 num_rxq,
 			      bool enable);
 	void (*fpe_send_mpacket)(void __iomem *ioaddr,
+				 struct stmmac_fpe_cfg *cfg,
 				 enum stmmac_mpacket_type type);
 	int (*fpe_irq_status)(void __iomem *ioaddr, struct net_device *dev);
 };
diff --git a/drivers/net/ethernet/stmicro/stmmac/stmmac_main.c b/drivers/net/ethernet/stmicro/stmmac/stmmac_main.c
index 9f76c2f7d513b..69aac8ed84f67 100644
--- a/drivers/net/ethernet/stmicro/stmmac/stmmac_main.c
+++ b/drivers/net/ethernet/stmicro/stmmac/stmmac_main.c
@@ -957,7 +957,8 @@ static void stmmac_fpe_link_state_handle(struct stmmac_priv *priv, bool is_up)
 	bool *hs_enable = &fpe_cfg->hs_enable;
 
 	if (is_up && *hs_enable) {
-		stmmac_fpe_send_mpacket(priv, priv->ioaddr, MPACKET_VERIFY);
+		stmmac_fpe_send_mpacket(priv, priv->ioaddr, fpe_cfg,
+					MPACKET_VERIFY);
 	} else {
 		*lo_state = FPE_STATE_OFF;
 		*lp_state = FPE_STATE_OFF;
@@ -5704,6 +5705,7 @@ static void stmmac_fpe_event_status(struct stmmac_priv *priv, int status)
 		/* If user has requested FPE enable, quickly response */
 		if (*hs_enable)
 			stmmac_fpe_send_mpacket(priv, priv->ioaddr,
+						fpe_cfg,
 						MPACKET_RESPONSE);
 	}
 
@@ -7028,6 +7030,7 @@ static void stmmac_fpe_lp_task(struct work_struct *work)
 		if (*lo_state == FPE_STATE_ENTERING_ON &&
 		    *lp_state == FPE_STATE_ENTERING_ON) {
 			stmmac_fpe_configure(priv, priv->ioaddr,
+					     fpe_cfg,
 					     priv->plat->tx_queues_to_use,
 					     priv->plat->rx_queues_to_use,
 					     *enable);
@@ -7046,6 +7049,7 @@ static void stmmac_fpe_lp_task(struct work_struct *work)
 			netdev_info(priv->dev, SEND_VERIFY_MPAKCET_FMT,
 				    *lo_state, *lp_state);
 			stmmac_fpe_send_mpacket(priv, priv->ioaddr,
+						fpe_cfg,
 						MPACKET_VERIFY);
 		}
 		/* Sleep then retry */
@@ -7060,6 +7064,7 @@ void stmmac_fpe_handshake(struct stmmac_priv *priv, bool enable)
 	if (priv->plat->fpe_cfg->hs_enable != enable) {
 		if (enable) {
 			stmmac_fpe_send_mpacket(priv, priv->ioaddr,
+						priv->plat->fpe_cfg,
 						MPACKET_VERIFY);
 		} else {
 			priv->plat->fpe_cfg->lo_fpe_state = FPE_STATE_OFF;
@@ -7472,6 +7477,7 @@ int stmmac_suspend(struct device *dev)
 	if (priv->dma_cap.fpesel) {
 		/* Disable FPE */
 		stmmac_fpe_configure(priv, priv->ioaddr,
+				     priv->plat->fpe_cfg,
 				     priv->plat->tx_queues_to_use,
 				     priv->plat->rx_queues_to_use, false);
 
diff --git a/drivers/net/ethernet/stmicro/stmmac/stmmac_tc.c b/drivers/net/ethernet/stmicro/stmmac/stmmac_tc.c
index 773e415cc2de6..390c900832cd2 100644
--- a/drivers/net/ethernet/stmicro/stmmac/stmmac_tc.c
+++ b/drivers/net/ethernet/stmicro/stmmac/stmmac_tc.c
@@ -1073,6 +1073,7 @@ static int tc_setup_taprio(struct stmmac_priv *priv,
 
 	priv->plat->fpe_cfg->enable = false;
 	stmmac_fpe_configure(priv, priv->ioaddr,
+			     priv->plat->fpe_cfg,
 			     priv->plat->tx_queues_to_use,
 			     priv->plat->rx_queues_to_use,
 			     false);
diff --git a/include/linux/stmmac.h b/include/linux/stmmac.h
index d82ff9fa1a6e8..9f4a4f70270df 100644
--- a/include/linux/stmmac.h
+++ b/include/linux/stmmac.h
@@ -172,6 +172,7 @@ struct stmmac_fpe_cfg {
 	bool hs_enable;				/* FPE handshake enable */
 	enum stmmac_fpe_state lp_fpe_state;	/* Link Partner FPE state */
 	enum stmmac_fpe_state lo_fpe_state;	/* Local station FPE state */
+	u32 fpe_csr;				/* MAC_FPE_CTRL_STS reg cache */
 };
 
 struct stmmac_safety_feature_cfg {
-- 
2.42.0




  parent reply	other threads:[~2023-12-11 18:46 UTC|newest]

Thread overview: 212+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-12-11 18:19 [PATCH 6.1 000/194] 6.1.68-rc1 review Greg Kroah-Hartman
2023-12-11 18:19 ` [PATCH 6.1 001/194] vdpa/mlx5: preserve CVQ vringh index Greg Kroah-Hartman
2023-12-11 18:19 ` [PATCH 6.1 002/194] hrtimers: Push pending hrtimers away from outgoing CPU earlier Greg Kroah-Hartman
2023-12-11 18:19 ` [PATCH 6.1 003/194] i2c: designware: Fix corrupted memory seen in the ISR Greg Kroah-Hartman
2023-12-11 18:19 ` [PATCH 6.1 004/194] netfilter: ipset: fix race condition between swap/destroy and kernel side add/del/test Greg Kroah-Hartman
2023-12-11 18:19 ` [PATCH 6.1 005/194] zstd: Fix array-index-out-of-bounds UBSAN warning Greg Kroah-Hartman
2023-12-11 18:19 ` [PATCH 6.1 006/194] tg3: Move the [rt]x_dropped counters to tg3_napi Greg Kroah-Hartman
2023-12-11 18:19 ` [PATCH 6.1 007/194] tg3: Increment tx_dropped in tg3_tso_bug() Greg Kroah-Hartman
2023-12-11 18:19 ` [PATCH 6.1 008/194] kconfig: fix memory leak from range properties Greg Kroah-Hartman
2023-12-11 18:19 ` [PATCH 6.1 009/194] drm/amdgpu: correct chunk_ptr to a pointer to chunk Greg Kroah-Hartman
2023-12-11 18:20 ` [PATCH 6.1 010/194] x86: Introduce ia32_enabled() Greg Kroah-Hartman
2023-12-11 18:20 ` [PATCH 6.1 011/194] x86/coco: Disable 32-bit emulation by default on TDX and SEV Greg Kroah-Hartman
2023-12-11 18:20 ` [PATCH 6.1 012/194] x86/entry: Convert INT 0x80 emulation to IDTENTRY Greg Kroah-Hartman
2023-12-11 18:20 ` [PATCH 6.1 013/194] x86/entry: Do not allow external 0x80 interrupts Greg Kroah-Hartman
2023-12-11 18:20 ` [PATCH 6.1 014/194] x86/tdx: Allow 32-bit emulation by default Greg Kroah-Hartman
2023-12-11 18:20 ` [PATCH 6.1 015/194] dt: dt-extract-compatibles: Handle cfile arguments in generator function Greg Kroah-Hartman
2023-12-11 18:20 ` [PATCH 6.1 016/194] dt: dt-extract-compatibles: Dont follow symlinks when walking tree Greg Kroah-Hartman
2023-12-11 18:20 ` [PATCH 6.1 017/194] platform/x86: asus-wmi: Move i8042 filter install to shared asus-wmi code Greg Kroah-Hartman
2023-12-11 18:20 ` [PATCH 6.1 018/194] of: dynamic: Fix of_reconfig_get_state_change() return value documentation Greg Kroah-Hartman
2023-12-11 18:20 ` [PATCH 6.1 019/194] platform/x86: wmi: Skip blocks with zero instances Greg Kroah-Hartman
2023-12-11 18:20 ` [PATCH 6.1 020/194] ipv6: fix potential NULL deref in fib6_add() Greg Kroah-Hartman
2023-12-11 18:20 ` [PATCH 6.1 021/194] octeontx2-pf: Add missing mutex lock in otx2_get_pauseparam Greg Kroah-Hartman
2023-12-11 18:20 ` [PATCH 6.1 022/194] octeontx2-af: Check return value of nix_get_nixlf before using nixlf Greg Kroah-Hartman
2023-12-11 18:20 ` [PATCH 6.1 023/194] hv_netvsc: rndis_filter needs to select NLS Greg Kroah-Hartman
2023-12-11 18:20 ` [PATCH 6.1 024/194] r8152: Rename RTL8152_UNPLUG to RTL8152_INACCESSIBLE Greg Kroah-Hartman
2023-12-11 18:20 ` [PATCH 6.1 025/194] r8152: Add RTL8152_INACCESSIBLE checks to more loops Greg Kroah-Hartman
2023-12-11 18:20 ` [PATCH 6.1 026/194] r8152: Add RTL8152_INACCESSIBLE to r8156b_wait_loading_flash() Greg Kroah-Hartman
2023-12-11 18:20 ` [PATCH 6.1 027/194] r8152: Add RTL8152_INACCESSIBLE to r8153_pre_firmware_1() Greg Kroah-Hartman
2023-12-11 18:20 ` [PATCH 6.1 028/194] r8152: Add RTL8152_INACCESSIBLE to r8153_aldps_en() Greg Kroah-Hartman
2023-12-11 18:20 ` [PATCH 6.1 029/194] mlxbf-bootctl: correctly identify secure boot with development keys Greg Kroah-Hartman
2023-12-11 18:20 ` [PATCH 6.1 030/194] platform/mellanox: Add null pointer checks for devm_kasprintf() Greg Kroah-Hartman
2023-12-11 18:20 ` [PATCH 6.1 031/194] platform/mellanox: Check devm_hwmon_device_register_with_groups() return value Greg Kroah-Hartman
2023-12-11 18:20 ` [PATCH 6.1 032/194] arcnet: restoring support for multiple Sohard Arcnet cards Greg Kroah-Hartman
2023-12-11 18:20 ` [PATCH 6.1 033/194] octeontx2-pf: consider both Rx and Tx packet stats for adaptive interrupt coalescing Greg Kroah-Hartman
2023-12-11 18:20 ` Greg Kroah-Hartman [this message]
2023-12-11 18:20 ` [PATCH 6.1 035/194] xsk: Skip polling event check for unbound socket Greg Kroah-Hartman
2023-12-11 18:20 ` [PATCH 6.1 036/194] octeontx2-af: fix a use-after-free in rvu_npa_register_reporters Greg Kroah-Hartman
2023-12-11 18:20 ` [PATCH 6.1 037/194] i40e: Fix unexpected MFS warning message Greg Kroah-Hartman
2023-12-11 18:20 ` [PATCH 6.1 038/194] iavf: validate tx_coalesce_usecs even if rx_coalesce_usecs is zero Greg Kroah-Hartman
2023-12-11 18:20 ` [PATCH 6.1 039/194] net: bnxt: fix a potential use-after-free in bnxt_init_tc Greg Kroah-Hartman
2023-12-11 18:20 ` [PATCH 6.1 040/194] tcp: fix mid stream window clamp Greg Kroah-Hartman
2023-12-11 18:20 ` [PATCH 6.1 041/194] ionic: fix snprintf format length warning Greg Kroah-Hartman
2023-12-11 18:20 ` [PATCH 6.1 042/194] ionic: Fix dim work handling in split interrupt mode Greg Kroah-Hartman
2023-12-11 18:20 ` [PATCH 6.1 043/194] ipv4: ip_gre: Avoid skb_pull() failure in ipgre_xmit() Greg Kroah-Hartman
2023-12-11 18:20 ` [PATCH 6.1 044/194] net: atlantic: Fix NULL dereference of skb pointer in Greg Kroah-Hartman
2023-12-11 18:20 ` [PATCH 6.1 045/194] net: hns: fix wrong head when modify the tx feature when sending packets Greg Kroah-Hartman
2023-12-11 18:20 ` [PATCH 6.1 046/194] net: hns: fix fake link up on xge port Greg Kroah-Hartman
2023-12-11 18:20 ` [PATCH 6.1 047/194] octeontx2-af: Adjust Tx credits when MCS external bypass is disabled Greg Kroah-Hartman
2023-12-11 18:20 ` [PATCH 6.1 048/194] octeontx2-af: Fix mcs sa cam entries size Greg Kroah-Hartman
2023-12-11 18:20 ` [PATCH 6.1 049/194] octeontx2-af: Fix mcs stats register address Greg Kroah-Hartman
2023-12-11 18:20 ` [PATCH 6.1 050/194] octeontx2-af: Add missing mcs flr handler call Greg Kroah-Hartman
2023-12-11 18:20 ` [PATCH 6.1 051/194] octeontx2-af: Update Tx link register range Greg Kroah-Hartman
2023-12-11 18:20 ` [PATCH 6.1 052/194] dt-bindings: interrupt-controller: Allow #power-domain-cells Greg Kroah-Hartman
2023-12-11 18:20 ` [PATCH 6.1 053/194] netfilter: nft_exthdr: add boolean DCCP option matching Greg Kroah-Hartman
2023-12-11 18:20 ` [PATCH 6.1 054/194] netfilter: nf_tables: fix exist matching on bigendian arches Greg Kroah-Hartman
2023-12-11 18:20 ` [PATCH 6.1 055/194] netfilter: nf_tables: bail out on mismatching dynset and set expressions Greg Kroah-Hartman
2023-12-11 18:20 ` [PATCH 6.1 056/194] netfilter: nf_tables: validate family when identifying table via handle Greg Kroah-Hartman
2023-12-11 18:20 ` [PATCH 6.1 057/194] netfilter: xt_owner: Fix for unsafe access of sk->sk_socket Greg Kroah-Hartman
2023-12-11 18:20 ` [PATCH 6.1 058/194] tcp: do not accept ACK of bytes we never sent Greg Kroah-Hartman
2023-12-11 18:20 ` [PATCH 6.1 059/194] bpf: sockmap, updating the sg structure should also update curr Greg Kroah-Hartman
2023-12-11 18:20 ` [PATCH 6.1 060/194] psample: Require CAP_NET_ADMIN when joining "packets" group Greg Kroah-Hartman
2023-12-11 18:20 ` [PATCH 6.1 061/194] drop_monitor: Require CAP_SYS_ADMIN when joining "events" group Greg Kroah-Hartman
2023-12-11 18:20 ` [PATCH 6.1 062/194] mm/damon/sysfs: eliminate potential uninitialized variable warning Greg Kroah-Hartman
2023-12-11 18:20 ` [PATCH 6.1 063/194] tee: optee: Fix supplicant based device enumeration Greg Kroah-Hartman
2023-12-11 18:20 ` [PATCH 6.1 064/194] RDMA/hns: Fix unnecessary err return when using invalid congest control algorithm Greg Kroah-Hartman
2023-12-11 18:20 ` [PATCH 6.1 065/194] RDMA/irdma: Do not modify to SQD on error Greg Kroah-Hartman
2023-12-11 18:20 ` [PATCH 6.1 066/194] RDMA/irdma: Add wait for suspend on SQD Greg Kroah-Hartman
2023-12-11 18:20 ` [PATCH 6.1 067/194] arm64: dts: rockchip: Expand reg size of vdec node for RK3328 Greg Kroah-Hartman
2023-12-11 18:20 ` [PATCH 6.1 068/194] arm64: dts: rockchip: Expand reg size of vdec node for RK3399 Greg Kroah-Hartman
2023-12-11 18:20 ` [PATCH 6.1 069/194] ASoC: fsl_sai: Fix no frame sync clock issue on i.MX8MP Greg Kroah-Hartman
2023-12-11 18:21 ` [PATCH 6.1 070/194] RDMA/rtrs-srv: Do not unconditionally enable irq Greg Kroah-Hartman
2023-12-11 18:21 ` [PATCH 6.1 071/194] RDMA/rtrs-clt: Start hb after path_up Greg Kroah-Hartman
2023-12-11 18:21 ` [PATCH 6.1 072/194] RDMA/rtrs-srv: Check return values while processing info request Greg Kroah-Hartman
2023-12-11 18:21 ` [PATCH 6.1 073/194] RDMA/rtrs-srv: Free srv_mr iu only when always_invalidate is true Greg Kroah-Hartman
2023-12-11 18:21 ` [PATCH 6.1 074/194] RDMA/rtrs-srv: Destroy path files after making sure no IOs in-flight Greg Kroah-Hartman
2023-12-11 18:21 ` [PATCH 6.1 075/194] RDMA/rtrs-clt: Fix the max_send_wr setting Greg Kroah-Hartman
2023-12-11 18:21 ` [PATCH 6.1 076/194] RDMA/rtrs-clt: Remove the warnings for req in_use check Greg Kroah-Hartman
2023-12-11 18:21 ` [PATCH 6.1 077/194] RDMA/bnxt_re: Correct module description string Greg Kroah-Hartman
2023-12-11 18:21 ` [PATCH 6.1 078/194] RDMA/irdma: Refactor error handling in create CQP Greg Kroah-Hartman
2023-12-11 18:21 ` [PATCH 6.1 079/194] RDMA/irdma: Fix UAF in irdma_sc_ccq_get_cqe_info() Greg Kroah-Hartman
2023-12-11 18:21 ` [PATCH 6.1 080/194] hwmon: (acpi_power_meter) Fix 4.29 MW bug Greg Kroah-Hartman
2023-12-11 18:21 ` [PATCH 6.1 081/194] ASoC: codecs: lpass-tx-macro: set active_decimator correct default value Greg Kroah-Hartman
2023-12-11 18:21 ` [PATCH 6.1 082/194] hwmon: (nzxt-kraken2) Fix error handling path in kraken2_probe() Greg Kroah-Hartman
2023-12-11 18:21 ` [PATCH 6.1 083/194] ASoC: wm_adsp: fix memleak in wm_adsp_buffer_populate Greg Kroah-Hartman
2023-12-11 18:21 ` [PATCH 6.1 084/194] RDMA/core: Fix umem iterator when PAGE_SIZE is greater then HCA pgsz Greg Kroah-Hartman
2023-12-11 18:21 ` [PATCH 6.1 085/194] RDMA/irdma: Avoid free the non-cqp_request scratch Greg Kroah-Hartman
2023-12-11 18:21 ` [PATCH 6.1 086/194] drm/bridge: tc358768: select CONFIG_VIDEOMODE_HELPERS Greg Kroah-Hartman
2023-12-11 18:21 ` [PATCH 6.1 087/194] arm64: dts: imx8mq: drop usb3-resume-missing-cas from usb Greg Kroah-Hartman
2023-12-11 18:21 ` [PATCH 6.1 088/194] arm64: dts: imx8mp: imx8mq: Add parkmode-disable-ss-quirk on DWC3 Greg Kroah-Hartman
2023-12-11 18:21 ` [PATCH 6.1 089/194] ARM: dts: imx6ul-pico: Describe the Ethernet PHY clock Greg Kroah-Hartman
2023-12-11 18:21 ` [PATCH 6.1 090/194] tracing: Fix a warning when allocating buffered events fails Greg Kroah-Hartman
2023-12-11 18:21 ` [PATCH 6.1 091/194] scsi: be2iscsi: Fix a memleak in beiscsi_init_wrb_handle() Greg Kroah-Hartman
2023-12-11 18:21 ` [PATCH 6.1 092/194] ARM: imx: Check return value of devm_kasprintf in imx_mmdc_perf_init Greg Kroah-Hartman
2023-12-11 18:21 ` [PATCH 6.1 093/194] ARM: dts: imx7: Declare timers compatible with fsl,imx6dl-gpt Greg Kroah-Hartman
2023-12-11 18:21 ` [PATCH 6.1 094/194] ARM: dts: imx28-xea: Pass the model property Greg Kroah-Hartman
2023-12-11 18:21 ` [PATCH 6.1 095/194] riscv: fix misaligned access handling of C.SWSP and C.SDSP Greg Kroah-Hartman
2023-12-11 18:21 ` [PATCH 6.1 096/194] md: introduce md_ro_state Greg Kroah-Hartman
2023-12-11 18:21 ` [PATCH 6.1 097/194] md: dont leave MD_RECOVERY_FROZEN in error path of md_set_readonly() Greg Kroah-Hartman
2023-12-11 18:21 ` [PATCH 6.1 098/194] iommu: Avoid more races around device probe Greg Kroah-Hartman
2023-12-11 18:21 ` [PATCH 6.1 099/194] rethook: Use __rcu pointer for rethook::handler Greg Kroah-Hartman
2023-12-11 18:21 ` [PATCH 6.1 100/194] kprobes: consistent rcu api usage for kretprobe holder Greg Kroah-Hartman
2023-12-11 18:21 ` [PATCH 6.1 101/194] ASoC: amd: yc: Fix non-functional mic on ASUS E1504FA Greg Kroah-Hartman
2023-12-11 18:21 ` [PATCH 6.1 102/194] io_uring/af_unix: disable sending io_uring over sockets Greg Kroah-Hartman
2023-12-11 18:21 ` [PATCH 6.1 103/194] nvme-pci: Add sleep quirk for Kingston drives Greg Kroah-Hartman
2023-12-11 18:21 ` [PATCH 6.1 104/194] io_uring: fix mutex_unlock with unreferenced ctx Greg Kroah-Hartman
2023-12-11 18:21 ` [PATCH 6.1 105/194] ALSA: usb-audio: Add Pioneer DJM-450 mixer controls Greg Kroah-Hartman
2023-12-11 18:21 ` [PATCH 6.1 106/194] ALSA: pcm: fix out-of-bounds in snd_pcm_state_names Greg Kroah-Hartman
2023-12-11 18:21 ` [PATCH 6.1 107/194] ALSA: hda/realtek: Enable headset on Lenovo M90 Gen5 Greg Kroah-Hartman
2023-12-11 18:21 ` [PATCH 6.1 108/194] ALSA: hda/realtek: add new Framework laptop to quirks Greg Kroah-Hartman
2023-12-11 18:21 ` [PATCH 6.1 109/194] ALSA: hda/realtek: Add Framework laptop 16 " Greg Kroah-Hartman
2023-12-11 18:21 ` [PATCH 6.1 110/194] ring-buffer: Test last update in 32bit version of __rb_time_read() Greg Kroah-Hartman
2023-12-11 18:21 ` [PATCH 6.1 111/194] nilfs2: fix missing error check for sb_set_blocksize call Greg Kroah-Hartman
2023-12-11 18:21 ` [PATCH 6.1 112/194] nilfs2: prevent WARNING in nilfs_sufile_set_segment_usage() Greg Kroah-Hartman
2023-12-11 18:21 ` [PATCH 6.1 113/194] cgroup_freezer: cgroup_freezing: Check if not frozen Greg Kroah-Hartman
2023-12-11 18:21 ` [PATCH 6.1 114/194] checkstack: fix printed address Greg Kroah-Hartman
2023-12-11 18:21 ` [PATCH 6.1 115/194] tracing: Always update snapshot buffer size Greg Kroah-Hartman
2023-12-11 18:21 ` [PATCH 6.1 116/194] tracing: Disable snapshot buffer when stopping instance tracers Greg Kroah-Hartman
2023-12-11 18:21 ` [PATCH 6.1 117/194] tracing: Fix incomplete locking when disabling buffered events Greg Kroah-Hartman
2023-12-11 18:21 ` [PATCH 6.1 118/194] tracing: Fix a possible race " Greg Kroah-Hartman
2023-12-11 18:21 ` [PATCH 6.1 119/194] packet: Move reference count in packet_sock to atomic_long_t Greg Kroah-Hartman
2023-12-11 18:21 ` [PATCH 6.1 120/194] r8169: fix rtl8125b PAUSE frames blasting when suspended Greg Kroah-Hartman
2023-12-11 18:21 ` [PATCH 6.1 121/194] regmap: fix bogus error on regcache_sync success Greg Kroah-Hartman
2023-12-11 18:21 ` [PATCH 6.1 122/194] platform/surface: aggregator: fix recv_buf() return value Greg Kroah-Hartman
2023-12-11 18:21 ` [PATCH 6.1 123/194] hugetlb: fix null-ptr-deref in hugetlb_vma_lock_write Greg Kroah-Hartman
2023-12-11 18:21 ` [PATCH 6.1 124/194] mm: fix oops when filemap_map_pmd() without prealloc_pte Greg Kroah-Hartman
2023-12-11 18:21 ` [PATCH 6.1 125/194] powercap: DTPM: Fix missing cpufreq_cpu_put() calls Greg Kroah-Hartman
2023-12-11 18:21 ` [PATCH 6.1 126/194] md/raid6: use valid sector values to determine if an I/O should wait on the reshape Greg Kroah-Hartman
2023-12-11 18:21 ` [PATCH 6.1 127/194] arm64: dts: mediatek: mt7622: fix memory node warning check Greg Kroah-Hartman
2023-12-11 18:21 ` [PATCH 6.1 128/194] arm64: dts: mediatek: mt8183-kukui-jacuzzi: fix dsi unnecessary cells properties Greg Kroah-Hartman
2023-12-11 18:21 ` [PATCH 6.1 129/194] arm64: dts: mediatek: cherry: Fix interrupt cells for MT6360 on I2C7 Greg Kroah-Hartman
2023-12-11 18:22 ` [PATCH 6.1 130/194] arm64: dts: mediatek: mt8173-evb: Fix regulator-fixed node names Greg Kroah-Hartman
2023-12-11 18:22 ` [PATCH 6.1 131/194] arm64: dts: mediatek: mt8195: Fix PM suspend/resume with venc clocks Greg Kroah-Hartman
2023-12-11 18:22 ` [PATCH 6.1 132/194] arm64: dts: mediatek: mt8183: Fix unit address for scp reserved memory Greg Kroah-Hartman
2023-12-11 18:22 ` [PATCH 6.1 133/194] arm64: dts: mediatek: mt8183: Move thermal-zones to the root node Greg Kroah-Hartman
2023-12-11 18:22 ` [PATCH 6.1 134/194] arm64: dts: mediatek: mt8183-evb: Fix unit_address_vs_reg warning on ntc Greg Kroah-Hartman
2023-12-11 18:22 ` [PATCH 6.1 135/194] binder: fix memory leaks of spam and pending work Greg Kroah-Hartman
2023-12-11 18:22 ` [PATCH 6.1 136/194] coresight: etm4x: Make etm4_remove_dev() return void Greg Kroah-Hartman
2023-12-11 18:22 ` [PATCH 6.1 137/194] coresight: etm4x: Remove bogous __exit annotation for some functions Greg Kroah-Hartman
2023-12-11 18:22 ` [PATCH 6.1 138/194] hwtracing: hisi_ptt: Add dummy callback pmu::read() Greg Kroah-Hartman
2023-12-11 18:22 ` [PATCH 6.1 139/194] misc: mei: client.c: return negative error code in mei_cl_write Greg Kroah-Hartman
2023-12-11 18:22 ` [PATCH 6.1 140/194] misc: mei: client.c: fix problem of return -EOVERFLOW " Greg Kroah-Hartman
2023-12-11 18:22 ` [PATCH 6.1 141/194] LoongArch: BPF: Dont sign extend memory load operand Greg Kroah-Hartman
2023-12-11 18:22 ` [PATCH 6.1 142/194] LoongArch: BPF: Dont sign extend function return value Greg Kroah-Hartman
2023-12-11 18:22 ` [PATCH 6.1 143/194] ring-buffer: Force absolute timestamp on discard of event Greg Kroah-Hartman
2023-12-11 18:22 ` [PATCH 6.1 144/194] tracing: Set actual size after ring buffer resize Greg Kroah-Hartman
2023-12-11 18:22 ` [PATCH 6.1 145/194] tracing: Stop current tracer when resizing buffer Greg Kroah-Hartman
2023-12-11 18:22 ` [PATCH 6.1 146/194] parisc: Reduce size of the bug_table on 64-bit kernel by half Greg Kroah-Hartman
2023-12-11 18:22 ` [PATCH 6.1 147/194] parisc: Fix asm operand number out of range build error in bug table Greg Kroah-Hartman
2023-12-11 18:22 ` [PATCH 6.1 148/194] arm64: dts: mediatek: add missing space before { Greg Kroah-Hartman
2023-12-11 18:22 ` [PATCH 6.1 149/194] arm64: dts: mt8183: kukui: Fix underscores in node names Greg Kroah-Hartman
2023-12-11 18:22 ` [PATCH 6.1 150/194] perf: Fix perf_event_validate_size() Greg Kroah-Hartman
2023-12-11 18:22 ` [PATCH 6.1 151/194] x86/sev: Fix kernel crash due to late update to read-only ghcb_version Greg Kroah-Hartman
2023-12-11 18:22 ` [PATCH 6.1 152/194] gpiolib: sysfs: Fix error handling on failed export Greg Kroah-Hartman
2023-12-11 18:22 ` [PATCH 6.1 153/194] drm/amdgpu: fix memory overflow in the IB test Greg Kroah-Hartman
2023-12-11 18:22 ` [PATCH 6.1 154/194] drm/amd/amdgpu: Fix warnings in amdgpu/amdgpu_display.c Greg Kroah-Hartman
2023-12-11 18:22 ` [PATCH 6.1 155/194] drm/amdgpu: correct the amdgpu runtime dereference usage count Greg Kroah-Hartman
2023-12-11 18:22 ` [PATCH 6.1 156/194] drm/amdgpu: Update ras eeprom support for smu v13_0_0 and v13_0_10 Greg Kroah-Hartman
2023-12-11 18:22 ` [PATCH 6.1 157/194] drm/amdgpu: Add EEPROM I2C address support for ip discovery Greg Kroah-Hartman
2023-12-11 18:22 ` [PATCH 6.1 158/194] drm/amdgpu: Remove redundant I2C EEPROM address Greg Kroah-Hartman
2023-12-11 18:22 ` [PATCH 6.1 159/194] drm/amdgpu: Decouple RAS EEPROM addresses from chips Greg Kroah-Hartman
2023-12-11 18:22 ` [PATCH 6.1 160/194] drm/amdgpu: Add support for RAS table at 0x40000 Greg Kroah-Hartman
2023-12-11 18:22 ` [PATCH 6.1 161/194] drm/amdgpu: Remove second moot switch to set EEPROM I2C address Greg Kroah-Hartman
2023-12-11 18:22 ` [PATCH 6.1 162/194] drm/amdgpu: Return from switch early for " Greg Kroah-Hartman
2023-12-11 18:22 ` [PATCH 6.1 163/194] drm/amdgpu: simplify amdgpu_ras_eeprom.c Greg Kroah-Hartman
2023-12-11 18:22 ` [PATCH 6.1 164/194] drm/amdgpu: Add I2C EEPROM support on smu v13_0_6 Greg Kroah-Hartman
2023-12-11 18:22 ` [PATCH 6.1 165/194] drm/amdgpu: Update EEPROM I2C address for smu v13_0_0 Greg Kroah-Hartman
2023-12-11 18:22 ` [PATCH 6.1 166/194] usb: gadget: f_hid: fix report descriptor allocation Greg Kroah-Hartman
2023-12-11 18:22 ` [PATCH 6.1 167/194] serial: 8250_dw: Add ACPI ID for Granite Rapids-D UART Greg Kroah-Hartman
2023-12-11 18:22 ` [PATCH 6.1 168/194] parport: Add support for Brainboxes IX/UC/PX parallel cards Greg Kroah-Hartman
2023-12-11 18:22 ` [PATCH 6.1 169/194] cifs: Fix non-availability of dedup breaking generic/304 Greg Kroah-Hartman
2023-12-11 18:22 ` [PATCH 6.1 170/194] Revert "xhci: Loosen RPM as default policy to cover for AMD xHC 1.1" Greg Kroah-Hartman
2023-12-11 18:22 ` [PATCH 6.1 171/194] smb: client: fix potential NULL deref in parse_dfs_referrals() Greg Kroah-Hartman
2023-12-11 18:22 ` [PATCH 6.1 172/194] usb: typec: class: fix typec_altmode_put_partner to put plugs Greg Kroah-Hartman
2023-12-11 18:22 ` [PATCH 6.1 173/194] ARM: PL011: Fix DMA support Greg Kroah-Hartman
2023-12-11 18:22 ` [PATCH 6.1 174/194] serial: sc16is7xx: address RX timeout interrupt errata Greg Kroah-Hartman
2023-12-11 18:22 ` [PATCH 6.1 175/194] serial: 8250: 8250_omap: Clear UART_HAS_RHR_IT_DIS bit Greg Kroah-Hartman
2023-12-11 18:22 ` [PATCH 6.1 176/194] serial: 8250: 8250_omap: Do not start RX DMA on THRI interrupt Greg Kroah-Hartman
2023-12-11 18:22 ` [PATCH 6.1 177/194] serial: 8250_omap: Add earlycon support for the AM654 UART controller Greg Kroah-Hartman
2023-12-11 18:22 ` [PATCH 6.1 178/194] devcoredump: Send uevent once devcd is ready Greg Kroah-Hartman
2023-12-11 18:22 ` [PATCH 6.1 179/194] x86/CPU/AMD: Check vendor in the AMD microcode callback Greg Kroah-Hartman
2023-12-11 18:22 ` [PATCH 6.1 180/194] USB: gadget: core: adjust uevent timing on gadget unbind Greg Kroah-Hartman
2023-12-11 18:22 ` [PATCH 6.1 181/194] cifs: Fix flushing, invalidation and file size with copy_file_range() Greg Kroah-Hartman
2023-12-11 18:22 ` [PATCH 6.1 182/194] cifs: Fix flushing, invalidation and file size with FICLONE Greg Kroah-Hartman
2023-12-11 18:22 ` [PATCH 6.1 183/194] MIPS: kernel: Clear FPU states when setting up kernel threads Greg Kroah-Hartman
2023-12-11 18:22 ` [PATCH 6.1 184/194] KVM: s390/mm: Properly reset no-dat Greg Kroah-Hartman
2023-12-11 18:22 ` [PATCH 6.1 185/194] KVM: SVM: Update EFER software model on CR0 trap for SEV-ES Greg Kroah-Hartman
2023-12-11 18:22 ` [PATCH 6.1 186/194] MIPS: Loongson64: Reserve vgabios memory on boot Greg Kroah-Hartman
2023-12-11 18:22 ` [PATCH 6.1 187/194] MIPS: Loongson64: Handle more memory types passed from firmware Greg Kroah-Hartman
2023-12-11 18:22 ` [PATCH 6.1 188/194] MIPS: Loongson64: Enable DMA noncoherent support Greg Kroah-Hartman
2023-12-11 18:22 ` [PATCH 6.1 189/194] netfilter: nft_set_pipapo: skip inactive elements during set walk Greg Kroah-Hartman
2023-12-11 18:23 ` [PATCH 6.1 190/194] riscv: Kconfig: Add select ARM_AMBA to SOC_STARFIVE Greg Kroah-Hartman
2023-12-11 18:23 ` [PATCH 6.1 191/194] drm/i915/display: Drop check for doublescan mode in modevalid Greg Kroah-Hartman
2023-12-11 18:23 ` [PATCH 6.1 192/194] drm/i915/lvds: Use REG_BIT() & co Greg Kroah-Hartman
2023-12-11 18:23 ` [PATCH 6.1 193/194] drm/i915/sdvo: stop caching has_hdmi_monitor in struct intel_sdvo Greg Kroah-Hartman
2023-12-11 18:23 ` [PATCH 6.1 194/194] drm/i915: Skip some timing checks on BXT/GLK DSI transcoders Greg Kroah-Hartman
2023-12-11 21:15 ` [PATCH 6.1 000/194] 6.1.68-rc1 review Florian Fainelli
2023-12-12  0:26 ` Kelsey Steele
2023-12-12 13:21 ` Naresh Kamboju
2023-12-12 14:02 ` Conor Dooley
2023-12-12 16:12 ` Shuah Khan
2023-12-12 17:34 ` Guenter Roeck
2023-12-12 19:08 ` Pavel Machek
2023-12-12 20:08 ` RTL8152_INACCESSIBLE was " Pavel Machek
2023-12-12 20:48   ` Guenter Roeck
2023-12-13  7:52     ` Pavel Machek
2023-12-13  8:50       ` Greg Kroah-Hartman
2023-12-13 15:16         ` Doug Anderson
2023-12-13 17:37           ` Greg Kroah-Hartman
2023-12-13 18:17             ` Doug Anderson
2023-12-12 21:57 ` Ron Economos
2023-12-12 22:21 ` Jon Hunter
2023-12-12 22:23 ` SeongJae Park

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=20231211182038.087688775@linuxfoundation.org \
    --to=gregkh@linuxfoundation.org \
    --cc=Jianheng.Zhang@synopsys.com \
    --cc=fancer.lancer@gmail.com \
    --cc=kuba@kernel.org \
    --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