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, Justin Chen <justin.chen@broadcom.com>,
	Florian Fainelli <florian.fainelli@broadcom.com>,
	Jakub Kicinski <kuba@kernel.org>, Sasha Levin <sashal@kernel.org>
Subject: [PATCH 6.12 078/244] net: bcmasp: Add support for asp-v3.0
Date: Tue, 31 Mar 2026 18:20:28 +0200	[thread overview]
Message-ID: <20260331161744.564928384@linuxfoundation.org> (raw)
In-Reply-To: <20260331161741.651718120@linuxfoundation.org>

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

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

From: Justin Chen <justin.chen@broadcom.com>

[ Upstream commit e9f31435ee7d1dd350f5efaf9de7b0db3ad4bbfe ]

The asp-v3.0 is a major HW revision that reduced the number of
channels and filters. The goal was to save cost by reducing the
feature set.

Changes for asp-v3.0
- Number of network filters were reduced.
- Number of channels were reduced.
- EDPKT stats were removed.
- Fix a bug with csum offload.

Signed-off-by: Justin Chen <justin.chen@broadcom.com>
Reviewed-by: Florian Fainelli <florian.fainelli@broadcom.com>
Link: https://patch.msgid.link/20250422233645.1931036-8-justin.chen@broadcom.com
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
Stable-dep-of: 27dfe9030acb ("net: bcmasp: fix double disable of clk")
Signed-off-by: Sasha Levin <sashal@kernel.org>
---
 drivers/net/ethernet/broadcom/asp2/bcmasp.c   | 79 +++++++++++++------
 drivers/net/ethernet/broadcom/asp2/bcmasp.h   | 33 ++++++--
 .../ethernet/broadcom/asp2/bcmasp_ethtool.c   | 15 +---
 .../net/ethernet/broadcom/asp2/bcmasp_intf.c  | 13 ++-
 4 files changed, 92 insertions(+), 48 deletions(-)

diff --git a/drivers/net/ethernet/broadcom/asp2/bcmasp.c b/drivers/net/ethernet/broadcom/asp2/bcmasp.c
index 44f55eb72f174..9f2947d2d41f0 100644
--- a/drivers/net/ethernet/broadcom/asp2/bcmasp.c
+++ b/drivers/net/ethernet/broadcom/asp2/bcmasp.c
@@ -518,7 +518,7 @@ void bcmasp_netfilt_suspend(struct bcmasp_intf *intf)
 	int ret, i;
 
 	/* Write all filters to HW */
-	for (i = 0; i < NUM_NET_FILTERS; i++) {
+	for (i = 0; i < priv->num_net_filters; i++) {
 		/* If the filter does not match the port, skip programming. */
 		if (!priv->net_filters[i].claimed ||
 		    priv->net_filters[i].port != intf->port)
@@ -551,7 +551,7 @@ int bcmasp_netfilt_get_all_active(struct bcmasp_intf *intf, u32 *rule_locs,
 	struct bcmasp_priv *priv = intf->parent;
 	int j = 0, i;
 
-	for (i = 0; i < NUM_NET_FILTERS; i++) {
+	for (i = 0; i < priv->num_net_filters; i++) {
 		if (!priv->net_filters[i].claimed ||
 		    priv->net_filters[i].port != intf->port)
 			continue;
@@ -577,7 +577,7 @@ int bcmasp_netfilt_get_active(struct bcmasp_intf *intf)
 	struct bcmasp_priv *priv = intf->parent;
 	int cnt = 0, i;
 
-	for (i = 0; i < NUM_NET_FILTERS; i++) {
+	for (i = 0; i < priv->num_net_filters; i++) {
 		if (!priv->net_filters[i].claimed ||
 		    priv->net_filters[i].port != intf->port)
 			continue;
@@ -602,7 +602,7 @@ bool bcmasp_netfilt_check_dup(struct bcmasp_intf *intf,
 	size_t fs_size = 0;
 	int i;
 
-	for (i = 0; i < NUM_NET_FILTERS; i++) {
+	for (i = 0; i < priv->num_net_filters; i++) {
 		if (!priv->net_filters[i].claimed ||
 		    priv->net_filters[i].port != intf->port)
 			continue;
@@ -670,7 +670,7 @@ struct bcmasp_net_filter *bcmasp_netfilt_get_init(struct bcmasp_intf *intf,
 	int i, open_index = -1;
 
 	/* Check whether we exceed the filter table capacity */
-	if (loc != RX_CLS_LOC_ANY && loc >= NUM_NET_FILTERS)
+	if (loc != RX_CLS_LOC_ANY && loc >= priv->num_net_filters)
 		return ERR_PTR(-EINVAL);
 
 	/* If the filter location is busy (already claimed) and we are initializing
@@ -686,7 +686,7 @@ struct bcmasp_net_filter *bcmasp_netfilt_get_init(struct bcmasp_intf *intf,
 	/* Initialize the loop index based on the desired location or from 0 */
 	i = loc == RX_CLS_LOC_ANY ? 0 : loc;
 
-	for ( ; i < NUM_NET_FILTERS; i++) {
+	for ( ; i < priv->num_net_filters; i++) {
 		/* Found matching network filter */
 		if (!init &&
 		    priv->net_filters[i].claimed &&
@@ -779,7 +779,7 @@ static void bcmasp_en_mda_filter(struct bcmasp_intf *intf, bool en,
 	priv->mda_filters[i].en = en;
 	priv->mda_filters[i].port = intf->port;
 
-	rx_filter_core_wl(priv, ((intf->channel + 8) |
+	rx_filter_core_wl(priv, ((intf->channel + priv->tx_chan_offset) |
 			  (en << ASP_RX_FILTER_MDA_CFG_EN_SHIFT) |
 			  ASP_RX_FILTER_MDA_CFG_UMC_SEL(intf->port)),
 			  ASP_RX_FILTER_MDA_CFG(i));
@@ -865,7 +865,7 @@ void bcmasp_disable_all_filters(struct bcmasp_intf *intf)
 	res_count = bcmasp_total_res_mda_cnt(intf->parent);
 
 	/* Disable all filters held by this port */
-	for (i = res_count; i < NUM_MDA_FILTERS; i++) {
+	for (i = res_count; i < priv->num_mda_filters; i++) {
 		if (priv->mda_filters[i].en &&
 		    priv->mda_filters[i].port == intf->port)
 			bcmasp_en_mda_filter(intf, 0, i);
@@ -909,7 +909,7 @@ int bcmasp_set_en_mda_filter(struct bcmasp_intf *intf, unsigned char *addr,
 
 	res_count = bcmasp_total_res_mda_cnt(intf->parent);
 
-	for (i = res_count; i < NUM_MDA_FILTERS; i++) {
+	for (i = res_count; i < priv->num_mda_filters; i++) {
 		/* If filter not enabled or belongs to another port skip */
 		if (!priv->mda_filters[i].en ||
 		    priv->mda_filters[i].port != intf->port)
@@ -924,7 +924,7 @@ int bcmasp_set_en_mda_filter(struct bcmasp_intf *intf, unsigned char *addr,
 	}
 
 	/* Create new filter if possible */
-	for (i = res_count; i < NUM_MDA_FILTERS; i++) {
+	for (i = res_count; i < priv->num_mda_filters; i++) {
 		if (priv->mda_filters[i].en)
 			continue;
 
@@ -944,12 +944,12 @@ static void bcmasp_core_init_filters(struct bcmasp_priv *priv)
 	/* Disable all filters and reset software view since the HW
 	 * can lose context while in deep sleep suspend states
 	 */
-	for (i = 0; i < NUM_MDA_FILTERS; i++) {
+	for (i = 0; i < priv->num_mda_filters; i++) {
 		rx_filter_core_wl(priv, 0x0, ASP_RX_FILTER_MDA_CFG(i));
 		priv->mda_filters[i].en = 0;
 	}
 
-	for (i = 0; i < NUM_NET_FILTERS; i++)
+	for (i = 0; i < priv->num_net_filters; i++)
 		rx_filter_core_wl(priv, 0x0, ASP_RX_FILTER_NET_CFG(i));
 
 	/* Top level filter enable bit should be enabled at all times, set
@@ -966,18 +966,8 @@ static void bcmasp_core_init_filters(struct bcmasp_priv *priv)
 /* ASP core initialization */
 static void bcmasp_core_init(struct bcmasp_priv *priv)
 {
-	tx_analytics_core_wl(priv, 0x0, ASP_TX_ANALYTICS_CTRL);
-	rx_analytics_core_wl(priv, 0x4, ASP_RX_ANALYTICS_CTRL);
-
-	rx_edpkt_core_wl(priv, (ASP_EDPKT_HDR_SZ_128 << ASP_EDPKT_HDR_SZ_SHIFT),
-			 ASP_EDPKT_HDR_CFG);
-	rx_edpkt_core_wl(priv,
-			 (ASP_EDPKT_ENDI_BT_SWP_WD << ASP_EDPKT_ENDI_DESC_SHIFT),
-			 ASP_EDPKT_ENDI);
-
 	rx_edpkt_core_wl(priv, 0x1b, ASP_EDPKT_BURST_BUF_PSCAL_TOUT);
 	rx_edpkt_core_wl(priv, 0x3e8, ASP_EDPKT_BURST_BUF_WRITE_TOUT);
-	rx_edpkt_core_wl(priv, 0x3e8, ASP_EDPKT_BURST_BUF_READ_TOUT);
 
 	rx_edpkt_core_wl(priv, ASP_EDPKT_ENABLE_EN, ASP_EDPKT_ENABLE);
 
@@ -1020,6 +1010,18 @@ static void bcmasp_core_clock_select_one(struct bcmasp_priv *priv, bool slow)
 	ctrl_core_wl(priv, reg, ASP_CTRL_CORE_CLOCK_SELECT);
 }
 
+static void bcmasp_core_clock_select_one_ctrl2(struct bcmasp_priv *priv, bool slow)
+{
+	u32 reg;
+
+	reg = ctrl2_core_rl(priv, ASP_CTRL2_CORE_CLOCK_SELECT);
+	if (slow)
+		reg &= ~ASP_CTRL2_CORE_CLOCK_SELECT_MAIN;
+	else
+		reg |= ASP_CTRL2_CORE_CLOCK_SELECT_MAIN;
+	ctrl2_core_wl(priv, reg, ASP_CTRL2_CORE_CLOCK_SELECT);
+}
+
 static void bcmasp_core_clock_set_ll(struct bcmasp_priv *priv, u32 clr, u32 set)
 {
 	u32 reg;
@@ -1174,22 +1176,43 @@ static void bcmasp_eee_fixup(struct bcmasp_intf *intf, bool en)
 
 static const struct bcmasp_plat_data v21_plat_data = {
 	.core_clock_select = bcmasp_core_clock_select_one,
+	.num_mda_filters = 32,
+	.num_net_filters = 32,
+	.tx_chan_offset = 8,
+	.rx_ctrl_offset = 0x0,
 };
 
 static const struct bcmasp_plat_data v22_plat_data = {
 	.core_clock_select = bcmasp_core_clock_select_many,
 	.eee_fixup = bcmasp_eee_fixup,
+	.num_mda_filters = 32,
+	.num_net_filters = 32,
+	.tx_chan_offset = 8,
+	.rx_ctrl_offset = 0x0,
+};
+
+static const struct bcmasp_plat_data v30_plat_data = {
+	.core_clock_select = bcmasp_core_clock_select_one_ctrl2,
+	.num_mda_filters = 20,
+	.num_net_filters = 16,
+	.tx_chan_offset = 0,
+	.rx_ctrl_offset = 0x10000,
 };
 
 static void bcmasp_set_pdata(struct bcmasp_priv *priv, const struct bcmasp_plat_data *pdata)
 {
 	priv->core_clock_select = pdata->core_clock_select;
 	priv->eee_fixup = pdata->eee_fixup;
+	priv->num_mda_filters = pdata->num_mda_filters;
+	priv->num_net_filters = pdata->num_net_filters;
+	priv->tx_chan_offset = pdata->tx_chan_offset;
+	priv->rx_ctrl_offset = pdata->rx_ctrl_offset;
 }
 
 static const struct of_device_id bcmasp_of_match[] = {
 	{ .compatible = "brcm,asp-v2.1", .data = &v21_plat_data },
 	{ .compatible = "brcm,asp-v2.2", .data = &v22_plat_data },
+	{ .compatible = "brcm,asp-v3.0", .data = &v30_plat_data },
 	{ /* sentinel */ },
 };
 MODULE_DEVICE_TABLE(of, bcmasp_of_match);
@@ -1197,6 +1220,7 @@ MODULE_DEVICE_TABLE(of, bcmasp_of_match);
 static const struct of_device_id bcmasp_mdio_of_match[] = {
 	{ .compatible = "brcm,asp-v2.1-mdio", },
 	{ .compatible = "brcm,asp-v2.2-mdio", },
+	{ .compatible = "brcm,asp-v3.0-mdio", },
 	{ /* sentinel */ },
 };
 MODULE_DEVICE_TABLE(of, bcmasp_mdio_of_match);
@@ -1278,6 +1302,17 @@ static int bcmasp_probe(struct platform_device *pdev)
 	 * how many interfaces come up.
 	 */
 	bcmasp_core_init(priv);
+
+	priv->mda_filters = devm_kcalloc(dev, priv->num_mda_filters,
+					 sizeof(*priv->mda_filters), GFP_KERNEL);
+	if (!priv->mda_filters)
+		return -ENOMEM;
+
+	priv->net_filters = devm_kcalloc(dev, priv->num_net_filters,
+					 sizeof(*priv->net_filters), GFP_KERNEL);
+	if (!priv->net_filters)
+		return -ENOMEM;
+
 	bcmasp_core_init_filters(priv);
 
 	bcmasp_init_wol(priv);
diff --git a/drivers/net/ethernet/broadcom/asp2/bcmasp.h b/drivers/net/ethernet/broadcom/asp2/bcmasp.h
index 6f49ebad4e99c..74adfdb50e11d 100644
--- a/drivers/net/ethernet/broadcom/asp2/bcmasp.h
+++ b/drivers/net/ethernet/broadcom/asp2/bcmasp.h
@@ -363,6 +363,10 @@ struct bcmasp_mda_filter {
 struct bcmasp_plat_data {
 	void (*core_clock_select)(struct bcmasp_priv *priv, bool slow);
 	void (*eee_fixup)(struct bcmasp_intf *priv, bool en);
+	unsigned int num_mda_filters;
+	unsigned int num_net_filters;
+	unsigned int tx_chan_offset;
+	unsigned int rx_ctrl_offset;
 };
 
 struct bcmasp_priv {
@@ -379,12 +383,16 @@ struct bcmasp_priv {
 
 	void (*core_clock_select)(struct bcmasp_priv *priv, bool slow);
 	void (*eee_fixup)(struct bcmasp_intf *intf, bool en);
+	unsigned int			num_mda_filters;
+	unsigned int			num_net_filters;
+	unsigned int			tx_chan_offset;
+	unsigned int			rx_ctrl_offset;
 
 	void __iomem			*base;
 
 	struct list_head		intfs;
 
-	struct bcmasp_mda_filter	mda_filters[NUM_MDA_FILTERS];
+	struct bcmasp_mda_filter	*mda_filters;
 
 	/* MAC destination address filters lock */
 	spinlock_t			mda_lock;
@@ -392,7 +400,7 @@ struct bcmasp_priv {
 	/* Protects accesses to ASP_CTRL_CLOCK_CTRL */
 	spinlock_t			clk_lock;
 
-	struct bcmasp_net_filter	net_filters[NUM_NET_FILTERS];
+	struct bcmasp_net_filter	*net_filters;
 
 	/* Network filter lock */
 	struct mutex			net_lock;
@@ -482,8 +490,8 @@ BCMASP_FP_IO_MACRO_Q(rx_edpkt_cfg);
 #define  PKT_OFFLOAD_EPKT_IP(x)		((x) << 21)
 #define  PKT_OFFLOAD_EPKT_TP(x)		((x) << 19)
 #define  PKT_OFFLOAD_EPKT_LEN(x)	((x) << 16)
-#define  PKT_OFFLOAD_EPKT_CSUM_L3	BIT(15)
-#define  PKT_OFFLOAD_EPKT_CSUM_L2	BIT(14)
+#define  PKT_OFFLOAD_EPKT_CSUM_L4	BIT(15)
+#define  PKT_OFFLOAD_EPKT_CSUM_L3	BIT(14)
 #define  PKT_OFFLOAD_EPKT_ID(x)		((x) << 12)
 #define  PKT_OFFLOAD_EPKT_SEQ(x)	((x) << 10)
 #define  PKT_OFFLOAD_EPKT_TS(x)		((x) << 8)
@@ -515,12 +523,27 @@ BCMASP_CORE_IO_MACRO(intr2, ASP_INTR2_OFFSET);
 BCMASP_CORE_IO_MACRO(wakeup_intr2, ASP_WAKEUP_INTR2_OFFSET);
 BCMASP_CORE_IO_MACRO(tx_analytics, ASP_TX_ANALYTICS_OFFSET);
 BCMASP_CORE_IO_MACRO(rx_analytics, ASP_RX_ANALYTICS_OFFSET);
-BCMASP_CORE_IO_MACRO(rx_ctrl, ASP_RX_CTRL_OFFSET);
 BCMASP_CORE_IO_MACRO(rx_filter, ASP_RX_FILTER_OFFSET);
 BCMASP_CORE_IO_MACRO(rx_edpkt, ASP_EDPKT_OFFSET);
 BCMASP_CORE_IO_MACRO(ctrl, ASP_CTRL_OFFSET);
 BCMASP_CORE_IO_MACRO(ctrl2, ASP_CTRL2_OFFSET);
 
+#define BCMASP_CORE_IO_MACRO_OFFSET(name, offset)			\
+static inline u32 name##_core_rl(struct bcmasp_priv *priv,		\
+				 u32 off)				\
+{									\
+	u32 reg = readl_relaxed(priv->base + priv->name##_offset +	\
+				(offset) + off);			\
+	return reg;							\
+}									\
+static inline void name##_core_wl(struct bcmasp_priv *priv,		\
+				  u32 val, u32 off)			\
+{									\
+	writel_relaxed(val, priv->base + priv->name##_offset +		\
+		       (offset) + off);					\
+}
+BCMASP_CORE_IO_MACRO_OFFSET(rx_ctrl, ASP_RX_CTRL_OFFSET);
+
 struct bcmasp_intf *bcmasp_interface_create(struct bcmasp_priv *priv,
 					    struct device_node *ndev_dn, int i);
 
diff --git a/drivers/net/ethernet/broadcom/asp2/bcmasp_ethtool.c b/drivers/net/ethernet/broadcom/asp2/bcmasp_ethtool.c
index 6d537fe461cc9..b489406221e43 100644
--- a/drivers/net/ethernet/broadcom/asp2/bcmasp_ethtool.c
+++ b/drivers/net/ethernet/broadcom/asp2/bcmasp_ethtool.c
@@ -10,7 +10,6 @@
 #include "bcmasp_intf_defs.h"
 
 enum bcmasp_stat_type {
-	BCMASP_STAT_RX_EDPKT,
 	BCMASP_STAT_RX_CTRL,
 	BCMASP_STAT_RX_CTRL_PER_INTF,
 	BCMASP_STAT_SOFT,
@@ -33,8 +32,6 @@ struct bcmasp_stats {
 	.reg_offset = offset, \
 }
 
-#define STAT_BCMASP_RX_EDPKT(str, offset) \
-	STAT_BCMASP_OFFSET(str, BCMASP_STAT_RX_EDPKT, offset)
 #define STAT_BCMASP_RX_CTRL(str, offset) \
 	STAT_BCMASP_OFFSET(str, BCMASP_STAT_RX_CTRL, offset)
 #define STAT_BCMASP_RX_CTRL_PER_INTF(str, offset) \
@@ -42,11 +39,6 @@ struct bcmasp_stats {
 
 /* Must match the order of struct bcmasp_mib_counters */
 static const struct bcmasp_stats bcmasp_gstrings_stats[] = {
-	/* EDPKT counters */
-	STAT_BCMASP_RX_EDPKT("RX Time Stamp", ASP_EDPKT_RX_TS_COUNTER),
-	STAT_BCMASP_RX_EDPKT("RX PKT Count", ASP_EDPKT_RX_PKT_CNT),
-	STAT_BCMASP_RX_EDPKT("RX PKT Buffered", ASP_EDPKT_HDR_EXTR_CNT),
-	STAT_BCMASP_RX_EDPKT("RX PKT Pushed to DRAM", ASP_EDPKT_HDR_OUT_CNT),
 	/* ASP RX control */
 	STAT_BCMASP_RX_CTRL_PER_INTF("Frames From Unimac",
 				     ASP_RX_CTRL_UMAC_0_FRAME_COUNT),
@@ -113,9 +105,6 @@ static void bcmasp_update_mib_counters(struct bcmasp_intf *intf)
 		switch (s->type) {
 		case BCMASP_STAT_SOFT:
 			continue;
-		case BCMASP_STAT_RX_EDPKT:
-			val = rx_edpkt_core_rl(intf->parent, offset);
-			break;
 		case BCMASP_STAT_RX_CTRL:
 			val = rx_ctrl_core_rl(intf->parent, offset);
 			break;
@@ -272,7 +261,7 @@ static int bcmasp_flow_get(struct bcmasp_intf *intf, struct ethtool_rxnfc *cmd)
 
 	memcpy(&cmd->fs, &nfilter->fs, sizeof(nfilter->fs));
 
-	cmd->data = NUM_NET_FILTERS;
+	cmd->data = intf->parent->num_net_filters;
 
 	return 0;
 }
@@ -319,7 +308,7 @@ static int bcmasp_get_rxnfc(struct net_device *dev, struct ethtool_rxnfc *cmd,
 		break;
 	case ETHTOOL_GRXCLSRLALL:
 		err = bcmasp_netfilt_get_all_active(intf, rule_locs, &cmd->rule_cnt);
-		cmd->data = NUM_NET_FILTERS;
+		cmd->data = intf->parent->num_net_filters;
 		break;
 	default:
 		err = -EOPNOTSUPP;
diff --git a/drivers/net/ethernet/broadcom/asp2/bcmasp_intf.c b/drivers/net/ethernet/broadcom/asp2/bcmasp_intf.c
index 3836456fcb9cf..4998b9c0357ca 100644
--- a/drivers/net/ethernet/broadcom/asp2/bcmasp_intf.c
+++ b/drivers/net/ethernet/broadcom/asp2/bcmasp_intf.c
@@ -180,14 +180,14 @@ static struct sk_buff *bcmasp_csum_offload(struct net_device *dev,
 	case htons(ETH_P_IP):
 		header |= PKT_OFFLOAD_HDR_SIZE_2((ip_hdrlen(skb) >> 8) & 0xf);
 		header2 |= PKT_OFFLOAD_HDR2_SIZE_2(ip_hdrlen(skb) & 0xff);
-		epkt |= PKT_OFFLOAD_EPKT_IP(0) | PKT_OFFLOAD_EPKT_CSUM_L2;
+		epkt |= PKT_OFFLOAD_EPKT_IP(0);
 		ip_proto = ip_hdr(skb)->protocol;
 		header_cnt += 2;
 		break;
 	case htons(ETH_P_IPV6):
 		header |= PKT_OFFLOAD_HDR_SIZE_2((IP6_HLEN >> 8) & 0xf);
 		header2 |= PKT_OFFLOAD_HDR2_SIZE_2(IP6_HLEN & 0xff);
-		epkt |= PKT_OFFLOAD_EPKT_IP(1) | PKT_OFFLOAD_EPKT_CSUM_L2;
+		epkt |= PKT_OFFLOAD_EPKT_IP(1);
 		ip_proto = ipv6_hdr(skb)->nexthdr;
 		header_cnt += 2;
 		break;
@@ -198,12 +198,12 @@ static struct sk_buff *bcmasp_csum_offload(struct net_device *dev,
 	switch (ip_proto) {
 	case IPPROTO_TCP:
 		header2 |= PKT_OFFLOAD_HDR2_SIZE_3(tcp_hdrlen(skb));
-		epkt |= PKT_OFFLOAD_EPKT_TP(0) | PKT_OFFLOAD_EPKT_CSUM_L3;
+		epkt |= PKT_OFFLOAD_EPKT_TP(0) | PKT_OFFLOAD_EPKT_CSUM_L4;
 		header_cnt++;
 		break;
 	case IPPROTO_UDP:
 		header2 |= PKT_OFFLOAD_HDR2_SIZE_3(UDP_HLEN);
-		epkt |= PKT_OFFLOAD_EPKT_TP(1) | PKT_OFFLOAD_EPKT_CSUM_L3;
+		epkt |= PKT_OFFLOAD_EPKT_TP(1) | PKT_OFFLOAD_EPKT_CSUM_L4;
 		header_cnt++;
 		break;
 	default:
@@ -815,9 +815,7 @@ static void bcmasp_init_tx(struct bcmasp_intf *intf)
 	/* Tx SPB */
 	tx_spb_ctrl_wl(intf, ((intf->channel + 8) << TX_SPB_CTRL_XF_BID_SHIFT),
 		       TX_SPB_CTRL_XF_CTRL2);
-	tx_pause_ctrl_wl(intf, (1 << (intf->channel + 8)), TX_PAUSE_MAP_VECTOR);
 	tx_spb_top_wl(intf, 0x1e, TX_SPB_TOP_BLKOUT);
-	tx_spb_top_wl(intf, 0x0, TX_SPB_TOP_SPRE_BW_CTRL);
 
 	tx_spb_dma_wq(intf, intf->tx_spb_dma_addr, TX_SPB_DMA_READ);
 	tx_spb_dma_wq(intf, intf->tx_spb_dma_addr, TX_SPB_DMA_BASE);
@@ -1182,7 +1180,7 @@ static void bcmasp_map_res(struct bcmasp_priv *priv, struct bcmasp_intf *intf)
 {
 	/* Per port */
 	intf->res.umac = priv->base + UMC_OFFSET(intf);
-	intf->res.umac2fb = priv->base + (UMAC2FB_OFFSET +
+	intf->res.umac2fb = priv->base + (UMAC2FB_OFFSET + priv->rx_ctrl_offset +
 					  (intf->port * 0x4));
 	intf->res.rgmii = priv->base + RGMII_OFFSET(intf);
 
@@ -1197,7 +1195,6 @@ static void bcmasp_map_res(struct bcmasp_priv *priv, struct bcmasp_intf *intf)
 	intf->rx_edpkt_cfg = priv->base + RX_EDPKT_CFG_OFFSET(intf);
 }
 
-#define MAX_IRQ_STR_LEN		64
 struct bcmasp_intf *bcmasp_interface_create(struct bcmasp_priv *priv,
 					    struct device_node *ndev_dn, int i)
 {
-- 
2.51.0




  parent reply	other threads:[~2026-03-31 16:49 UTC|newest]

Thread overview: 263+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2026-03-31 16:19 [PATCH 6.12 000/244] 6.12.80-rc1 review Greg Kroah-Hartman
2026-03-31 16:19 ` [PATCH 6.12 001/244] cxl/port: Fix use after free of parent_port in cxl_detach_ep() Greg Kroah-Hartman
2026-03-31 16:19 ` [PATCH 6.12 002/244] bpf: Fix constant blinding for PROBE_MEM32 stores Greg Kroah-Hartman
2026-03-31 16:19 ` [PATCH 6.12 003/244] perf: Make sure to use pmu_ctx->pmu for groups Greg Kroah-Hartman
2026-03-31 16:19 ` [PATCH 6.12 004/244] cxl/hdm: Avoid incorrect DVSEC fallback when HDM decoders are enabled Greg Kroah-Hartman
2026-03-31 16:19 ` [PATCH 6.12 005/244] hwmon: axi-fan: dont use driver_override as IRQ name Greg Kroah-Hartman
2026-03-31 16:19 ` [PATCH 6.12 006/244] sh: platform_early: remove pdev->driver_override check Greg Kroah-Hartman
2026-03-31 16:19 ` [PATCH 6.12 007/244] driver core: generalize driver_override in struct device Greg Kroah-Hartman
2026-03-31 16:19 ` [PATCH 6.12 008/244] driver core: platform: use generic driver_override infrastructure Greg Kroah-Hartman
2026-03-31 16:19 ` [PATCH 6.12 009/244] bpf: Release module BTF IDR before module unload Greg Kroah-Hartman
2026-03-31 16:19 ` [PATCH 6.12 010/244] bpf: Fix undefined behavior in interpreter sdiv/smod for INT_MIN Greg Kroah-Hartman
2026-03-31 16:19 ` [PATCH 6.12 011/244] bpf: Fix unsound scalar forking in maybe_fork_scalars() for BPF_OR Greg Kroah-Hartman
2026-03-31 16:19 ` [PATCH 6.12 012/244] HID: asus: avoid memory leak in asus_report_fixup() Greg Kroah-Hartman
2026-03-31 16:19 ` [PATCH 6.12 013/244] platform/x86: intel-hid: Add Dell 14 Plus 2-in-1 to dmi_vgbs_allow_list Greg Kroah-Hartman
2026-03-31 16:19 ` [PATCH 6.12 014/244] nvme-pci: cap queue creation to used queues Greg Kroah-Hartman
2026-03-31 16:19 ` [PATCH 6.12 015/244] nvme-fabrics: use kfree_sensitive() for DHCHAP secrets Greg Kroah-Hartman
2026-03-31 16:19 ` [PATCH 6.12 016/244] platform/x86: intel-hid: Enable 5-button array on ThinkPad X1 Fold 16 Gen 1 Greg Kroah-Hartman
2026-03-31 16:19 ` [PATCH 6.12 017/244] platform/x86: touchscreen_dmi: Add quirk for y-inverted Goodix touchscreen on SUPI S10 Greg Kroah-Hartman
2026-03-31 16:19 ` [PATCH 6.12 018/244] nvme-pci: ensure were polling a polled queue Greg Kroah-Hartman
2026-03-31 16:19 ` [PATCH 6.12 019/244] HID: magicmouse: fix battery reporting for Apple Magic Trackpad 2 Greg Kroah-Hartman
2026-03-31 16:19 ` [PATCH 6.12 020/244] HID: magicmouse: avoid memory leak in magicmouse_report_fixup() Greg Kroah-Hartman
2026-03-31 16:19 ` [PATCH 6.12 021/244] HID: apple: Add EPOMAKER TH87 to the non-apple keyboards list Greg Kroah-Hartman
2026-03-31 16:19 ` [PATCH 6.12 022/244] net: usb: r8152: add TRENDnet TUC-ET2G Greg Kroah-Hartman
2026-03-31 16:19 ` [PATCH 6.12 023/244] kbuild: install-extmod-build: Package resolve_btfids if necessary Greg Kroah-Hartman
2026-03-31 16:19 ` [PATCH 6.12 024/244] HID: mcp2221: cancel last I2C command on read error Greg Kroah-Hartman
2026-03-31 16:19 ` [PATCH 6.12 025/244] HID: asus: add xg mobile 2023 external hardware support Greg Kroah-Hartman
2026-03-31 16:19 ` [PATCH 6.12 026/244] module: Fix kernel panic when a symbol st_shndx is out of bounds Greg Kroah-Hartman
2026-03-31 16:19 ` [PATCH 6.12 027/244] ASoC: fsl_easrc: Fix event generation in fsl_easrc_iec958_set_reg() Greg Kroah-Hartman
2026-03-31 16:19 ` [PATCH 6.12 028/244] scsi: mpi3mr: Clear reset history on ready and recheck state after timeout Greg Kroah-Hartman
2026-03-31 16:19 ` [PATCH 6.12 029/244] scsi: devinfo: Add BLIST_SKIP_IO_HINTS for Iomega ZIP Greg Kroah-Hartman
2026-03-31 16:19 ` [PATCH 6.12 030/244] ASoC: fsl_easrc: Fix event generation in fsl_easrc_iec958_put_bits() Greg Kroah-Hartman
2026-03-31 16:19 ` [PATCH 6.12 031/244] dma-buf: Include ioctl.h in UAPI header Greg Kroah-Hartman
2026-03-31 16:19 ` [PATCH 6.12 032/244] ALSA: hda/senary: Ensure EAPD is enabled during init Greg Kroah-Hartman
2026-03-31 16:19 ` [PATCH 6.12 033/244] drm/ttm/tests: Fix build failure on PREEMPT_RT Greg Kroah-Hartman
2026-03-31 16:19 ` [PATCH 6.12 034/244] bpf: Fix u32/s32 bounds when ranges cross min/max boundary Greg Kroah-Hartman
2026-04-01  6:22   ` Shung-Hsi Yu
2026-04-01 11:44     ` Greg Kroah-Hartman
2026-04-01 14:32       ` Alexei Starovoitov
2026-04-01 16:42         ` Paul Chaignon
2026-04-02 10:46           ` Greg Kroah-Hartman
2026-04-02 11:02             ` Paul Chaignon
2026-03-31 16:19 ` [PATCH 6.12 035/244] HID: apple: avoid memory leak in apple_report_fixup() Greg Kroah-Hartman
2026-03-31 16:19 ` [PATCH 6.12 036/244] sched_ext: Use WRITE_ONCE() for the write side of dsq->seq update Greg Kroah-Hartman
2026-03-31 16:19 ` [PATCH 6.12 037/244] btrfs: set BTRFS_ROOT_ORPHAN_CLEANUP during subvol create Greg Kroah-Hartman
2026-03-31 16:19 ` [PATCH 6.12 038/244] ALSA: hda/realtek: add HP Laptop 14s-dr5xxx mute LED quirk Greg Kroah-Hartman
2026-03-31 16:19 ` [PATCH 6.12 039/244] ALSA: hda/realtek: Add headset jack quirk for Thinkpad X390 Greg Kroah-Hartman
2026-03-31 16:19 ` [PATCH 6.12 040/244] objtool: Handle Clang RSP musical chairs Greg Kroah-Hartman
2026-03-31 16:19 ` [PATCH 6.12 041/244] nvmet: move async event work off nvmet-wq Greg Kroah-Hartman
2026-03-31 16:19 ` [PATCH 6.12 042/244] drm/amdgpu: fix gpu idle power consumption issue for gfx v12 Greg Kroah-Hartman
2026-03-31 16:19 ` [PATCH 6.12 043/244] usb: core: new quirk to handle devices with zero configurations Greg Kroah-Hartman
2026-03-31 16:19 ` [PATCH 6.12 044/244] spi: intel-pci: Add support for Nova Lake mobile SPI flash Greg Kroah-Hartman
2026-03-31 16:19 ` [PATCH 6.12 045/244] ALSA: hda/realtek: add quirk for ASUS UM6702RC Greg Kroah-Hartman
2026-03-31 16:19 ` [PATCH 6.12 046/244] i3c: master: dw-i3c: Fix missing of_node for virtual I2C adapter Greg Kroah-Hartman
2026-03-31 16:19 ` [PATCH 6.12 047/244] xfrm: add missing extack for XFRMA_SA_PCPU in add_acquire and allocspi Greg Kroah-Hartman
2026-03-31 16:19 ` [PATCH 6.12 048/244] xfrm: fix the condition on x->pcpu_num in xfrm_sa_len Greg Kroah-Hartman
2026-03-31 16:19 ` [PATCH 6.12 049/244] xfrm: call xdo_dev_state_delete during state update Greg Kroah-Hartman
2026-03-31 16:20 ` [PATCH 6.12 050/244] xfrm: Fix the usage of skb->sk Greg Kroah-Hartman
2026-03-31 16:20 ` [PATCH 6.12 051/244] esp: fix skb leak with espintcp and async crypto Greg Kroah-Hartman
2026-03-31 16:20 ` [PATCH 6.12 052/244] xfrm: Fix work re-schedule after cancel in xfrm_nat_keepalive_net_fini() Greg Kroah-Hartman
2026-03-31 16:20 ` [PATCH 6.12 053/244] xfrm: prevent policy_hthresh.work from racing with netns teardown Greg Kroah-Hartman
2026-03-31 16:20 ` [PATCH 6.12 054/244] af_key: validate families in pfkey_send_migrate() Greg Kroah-Hartman
2026-03-31 16:20 ` [PATCH 6.12 055/244] dma: swiotlb: add KMSAN annotations to swiotlb_bounce() Greg Kroah-Hartman
2026-03-31 16:20 ` [PATCH 6.12 056/244] erofs: set fileio bio failed in short read case Greg Kroah-Hartman
2026-03-31 16:20 ` [PATCH 6.12 057/244] can: statistics: add missing atomic access in hot path Greg Kroah-Hartman
2026-03-31 16:20 ` [PATCH 6.12 058/244] Bluetooth: L2CAP: Fix stack-out-of-bounds read in l2cap_ecred_conn_req Greg Kroah-Hartman
2026-03-31 16:20 ` [PATCH 6.12 059/244] Bluetooth: L2CAP: Validate PDU length before reading SDU length in l2cap_ecred_data_rcv() Greg Kroah-Hartman
2026-03-31 16:20 ` [PATCH 6.12 060/244] Bluetooth: SCO: Fix use-after-free in sco_recv_frame() due to missing sock_hold Greg Kroah-Hartman
2026-03-31 16:20 ` [PATCH 6.12 061/244] Bluetooth: MGMT: Fix dangling pointer on mgmt_add_adv_patterns_monitor_complete Greg Kroah-Hartman
2026-03-31 16:20 ` [PATCH 6.12 062/244] Bluetooth: hci_ll: Fix firmware leak on error path Greg Kroah-Hartman
2026-03-31 16:20 ` [PATCH 6.12 063/244] Bluetooth: L2CAP: Fix null-ptr-deref on l2cap_sock_ready_cb Greg Kroah-Hartman
2026-03-31 16:20 ` [PATCH 6.12 064/244] pinctrl: mediatek: common: Fix probe failure for devices without EINT Greg Kroah-Hartman
2026-03-31 16:20 ` [PATCH 6.12 065/244] ionic: fix persistent MAC address override on PF Greg Kroah-Hartman
2026-03-31 16:20 ` [PATCH 6.12 066/244] nfc: nci: fix circular locking dependency in nci_close_device Greg Kroah-Hartman
2026-03-31 16:20 ` [PATCH 6.12 067/244] net: openvswitch: Avoid releasing netdev before teardown completes Greg Kroah-Hartman
2026-03-31 16:20 ` [PATCH 6.12 068/244] openvswitch: defer tunnel netdev_put to RCU release Greg Kroah-Hartman
2026-03-31 16:20 ` [PATCH 6.12 069/244] openvswitch: validate MPLS set/set_masked payload length Greg Kroah-Hartman
2026-03-31 16:20 ` [PATCH 6.12 070/244] net/smc: fix double-free of smc_spd_priv when tee() duplicates splice pipe buffer Greg Kroah-Hartman
2026-03-31 16:20 ` [PATCH 6.12 071/244] rtnetlink: count IFLA_INFO_SLAVE_KIND in if_nlmsg_size Greg Kroah-Hartman
2026-03-31 16:20 ` [PATCH 6.12 072/244] net: bcm: asp2: fix LPI timer handling Greg Kroah-Hartman
2026-03-31 16:20 ` [PATCH 6.12 073/244] net: bcm: asp2: remove tx_lpi_enabled Greg Kroah-Hartman
2026-03-31 16:20 ` [PATCH 6.12 074/244] net: bcm: asp2: convert to phylib managed EEE Greg Kroah-Hartman
2026-03-31 16:20 ` [PATCH 6.12 075/244] net: bcmasp: Remove support for asp-v2.0 Greg Kroah-Hartman
2026-03-31 16:20 ` [PATCH 6.12 076/244] net: bcmasp: streamline early exit in probe Greg Kroah-Hartman
2026-03-31 16:20 ` [PATCH 6.12 077/244] net: bcmasp: fix double free of WoL irq Greg Kroah-Hartman
2026-03-31 16:20 ` Greg Kroah-Hartman [this message]
2026-03-31 16:20 ` [PATCH 6.12 079/244] net: bcmasp: fix double disable of clk Greg Kroah-Hartman
2026-03-31 16:20 ` [PATCH 6.12 080/244] platform/olpc: olpc-xo175-ec: Fix overflow error message to print inlen Greg Kroah-Hartman
2026-03-31 16:20 ` [PATCH 6.12 081/244] platform/x86: intel-hid: disable wakeup_mode during hibernation Greg Kroah-Hartman
2026-03-31 16:20 ` [PATCH 6.12 082/244] ice: fix inverted ready check for VF representors Greg Kroah-Hartman
2026-03-31 16:20 ` [PATCH 6.12 083/244] ice: use ice_update_eth_stats() for representor stats Greg Kroah-Hartman
2026-03-31 16:20 ` [PATCH 6.12 084/244] iavf: fix out-of-bounds writes in iavf_get_ethtool_stats() Greg Kroah-Hartman
2026-03-31 16:20 ` [PATCH 6.12 085/244] ipv6: Remove permanent routes from tb6_gc_hlist when all exceptions expire Greg Kroah-Hartman
2026-03-31 16:20 ` [PATCH 6.12 086/244] ipv6: Dont remove permanent routes with exceptions from tb6_gc_hlist Greg Kroah-Hartman
2026-03-31 16:20 ` [PATCH 6.12 087/244] net: fix fanout UAF in packet_release() via NETDEV_UP race Greg Kroah-Hartman
2026-03-31 16:20 ` [PATCH 6.12 088/244] tcp: optimize inet_use_bhash2_on_bind() Greg Kroah-Hartman
2026-03-31 16:20 ` [PATCH 6.12 089/244] udp: Fix wildcard bind conflict check when using hash2 Greg Kroah-Hartman
2026-03-31 16:20 ` [PATCH 6.12 090/244] net: enetc: fix the output issue of ethtool --show-ring Greg Kroah-Hartman
2026-03-31 16:20 ` [PATCH 6.12 091/244] team: fix header_ops type confusion with non-Ethernet ports Greg Kroah-Hartman
2026-03-31 16:20 ` [PATCH 6.12 092/244] net: lan743x: fix duplex configuration in mac_link_up Greg Kroah-Hartman
2026-03-31 16:20 ` [PATCH 6.12 093/244] dma-mapping: add missing `inline` for `dma_free_attrs` Greg Kroah-Hartman
2026-03-31 16:20 ` [PATCH 6.12 094/244] Bluetooth: L2CAP: Fix send LE flow credits in ACL link Greg Kroah-Hartman
2026-03-31 16:20 ` [PATCH 6.12 095/244] Bluetooth: btintel: serialize btintel_hw_error() with hci_req_sync_lock Greg Kroah-Hartman
2026-03-31 16:20 ` [PATCH 6.12 096/244] Bluetooth: L2CAP: Fix ERTM re-init and zero pdu_len infinite loop Greg Kroah-Hartman
2026-03-31 16:20 ` [PATCH 6.12 097/244] Bluetooth: btusb: clamp SCO altsetting table indices Greg Kroah-Hartman
2026-03-31 16:20 ` [PATCH 6.12 098/244] tls: Purge async_hold in tls_decrypt_async_wait() Greg Kroah-Hartman
2026-03-31 16:20 ` [PATCH 6.12 099/244] netfilter: nfnetlink_log: fix uninitialized padding leak in NFULA_PAYLOAD Greg Kroah-Hartman
2026-03-31 16:20 ` [PATCH 6.12 100/244] netfilter: ip6t_rt: reject oversized addrnr in rt_mt6_check() Greg Kroah-Hartman
2026-03-31 16:20 ` [PATCH 6.12 101/244] netfilter: nf_conntrack_expect: skip expectations in other netns via proc Greg Kroah-Hartman
2026-03-31 16:20 ` [PATCH 6.12 102/244] netfilter: nf_conntrack_sip: fix use of uninitialized rtp_addr in process_sdp Greg Kroah-Hartman
2026-03-31 16:20 ` [PATCH 6.12 103/244] netfilter: ctnetlink: use netlink policy range checks Greg Kroah-Hartman
2026-03-31 16:20 ` [PATCH 6.12 104/244] net: macb: use the current queue number for stats Greg Kroah-Hartman
2026-03-31 16:20 ` [PATCH 6.12 105/244] regmap: Synchronize cache for the page selector Greg Kroah-Hartman
2026-03-31 16:20 ` [PATCH 6.12 106/244] ALSA: hda/realtek: Sequence GPIO2 on Star Labs StarFighter Greg Kroah-Hartman
2026-03-31 16:20 ` [PATCH 6.12 107/244] RDMA/rw: Fall back to direct SGE on MR pool exhaustion Greg Kroah-Hartman
2026-03-31 16:20 ` [PATCH 6.12 108/244] RDMA/irdma: Initialize free_qp completion before using it Greg Kroah-Hartman
2026-03-31 16:20 ` [PATCH 6.12 109/244] RDMA/irdma: Update ibqp state to error if QP is already in error state Greg Kroah-Hartman
2026-03-31 16:21 ` [PATCH 6.12 110/244] RDMA/irdma: Remove a NOP wait_event() in irdma_modify_qp_roce() Greg Kroah-Hartman
2026-03-31 16:21 ` [PATCH 6.12 111/244] RDMA/irdma: Clean up unnecessary dereference of event->cm_node Greg Kroah-Hartman
2026-03-31 16:21 ` [PATCH 6.12 112/244] RDMA/irdma: Remove reset check from irdma_modify_qp_to_err() Greg Kroah-Hartman
2026-03-31 16:21 ` [PATCH 6.12 113/244] RDMA/irdma: Fix deadlock during netdev reset with active connections Greg Kroah-Hartman
2026-03-31 16:21 ` [PATCH 6.12 114/244] RDMA/irdma: Return EINVAL for invalid arp index error Greg Kroah-Hartman
2026-03-31 16:21 ` [PATCH 6.12 115/244] scsi: scsi_transport_sas: Fix the maximum channel scanning issue Greg Kroah-Hartman
2026-03-31 16:21 ` [PATCH 6.12 116/244] x86/efi: efi_unmap_boot_services: fix calculation of ranges_to_free size Greg Kroah-Hartman
2026-03-31 16:21 ` [PATCH 6.12 117/244] drm/i915/gmbus: fix spurious timeout on 512-byte burst reads Greg Kroah-Hartman
2026-03-31 16:21 ` [PATCH 6.12 118/244] PM: hibernate: Drain trailing zero pages on userspace restore Greg Kroah-Hartman
2026-03-31 16:21 ` [PATCH 6.12 119/244] spi: sn-f-ospi: Fix resource leak in f_ospi_probe() Greg Kroah-Hartman
2026-03-31 16:21 ` [PATCH 6.12 120/244] ASoC: Intel: catpt: Fix the device initialization Greg Kroah-Hartman
2026-03-31 16:21 ` [PATCH 6.12 121/244] spi: meson-spicc: Fix double-put in remove path Greg Kroah-Hartman
2026-03-31 16:21 ` [PATCH 6.12 122/244] drm/amd/display: Do not skip unrelated mode changes in DSC validation Greg Kroah-Hartman
2026-03-31 16:21 ` [PATCH 6.12 123/244] spi: Group CS related fields in struct spi_device Greg Kroah-Hartman
2026-03-31 16:21 ` [PATCH 6.12 124/244] spi: use generic driver_override infrastructure Greg Kroah-Hartman
2026-03-31 16:21 ` [PATCH 6.12 125/244] ACPI: EC: clean up handlers on probe failure in acpi_ec_setup() Greg Kroah-Hartman
2026-03-31 16:21 ` [PATCH 6.12 126/244] drm/amdgpu: Fix fence put before wait in amdgpu_amdkfd_submit_ib Greg Kroah-Hartman
2026-03-31 16:21 ` [PATCH 6.12 127/244] hwmon: (adm1177) fix sysfs ABI violation and current unit conversion Greg Kroah-Hartman
2026-03-31 16:21 ` [PATCH 6.12 128/244] hwmon: (pmbus/core) Fix various coding style issues Greg Kroah-Hartman
2026-03-31 16:21 ` [PATCH 6.12 129/244] hwmon: (pmbus) Mark lowest/average/highest/rated attributes as read-only Greg Kroah-Hartman
2026-03-31 16:21 ` [PATCH 6.12 130/244] hwmon: (pmbus) Introduce the concept of "write-only" attributes Greg Kroah-Hartman
2026-03-31 16:21 ` [PATCH 6.12 131/244] sysctl: fix uninitialized variable in proc_do_large_bitmap Greg Kroah-Hartman
2026-03-31 16:21 ` [PATCH 6.12 132/244] ASoC: adau1372: Fix unchecked clk_prepare_enable() return value Greg Kroah-Hartman
2026-03-31 16:21 ` [PATCH 6.12 133/244] ASoC: adau1372: Fix clock leak on PLL lock failure Greg Kroah-Hartman
2026-03-31 16:21 ` [PATCH 6.12 134/244] spi: spi-fsl-lpspi: fix teardown order issue (UAF) Greg Kroah-Hartman
2026-03-31 16:21 ` [PATCH 6.12 135/244] s390/syscalls: Add spectre boundary for syscall dispatch table Greg Kroah-Hartman
2026-03-31 16:21 ` [PATCH 6.12 136/244] s390/barrier: Make array_index_mask_nospec() __always_inline Greg Kroah-Hartman
2026-03-31 16:21 ` [PATCH 6.12 137/244] s390/entry: Scrub r12 register on kernel entry Greg Kroah-Hartman
2026-03-31 16:21 ` [PATCH 6.12 138/244] ksmbd: replace hardcoded hdr2_len with offsetof() in smb2_calc_max_out_buf_len() Greg Kroah-Hartman
2026-03-31 16:21 ` [PATCH 6.12 139/244] ksmbd: fix potencial OOB in get_file_all_info() for compound requests Greg Kroah-Hartman
2026-03-31 16:21 ` [PATCH 6.12 140/244] ksmbd: fix memory leaks and NULL deref in smb2_lock() Greg Kroah-Hartman
2026-03-31 16:21 ` [PATCH 6.12 141/244] ksmbd: do not expire session on binding failure Greg Kroah-Hartman
2026-03-31 16:21 ` [PATCH 6.12 142/244] ALSA: firewire-lib: fix uninitialized local variable Greg Kroah-Hartman
2026-03-31 16:21 ` [PATCH 6.12 143/244] ASoC: SOF: ipc4-topology: Allow bytes controls without initial payload Greg Kroah-Hartman
2026-03-31 16:21 ` [PATCH 6.12 144/244] can: gw: fix OOB heap access in cgw_csum_crc8_rel() Greg Kroah-Hartman
2026-03-31 16:21 ` [PATCH 6.12 145/244] can: isotp: fix tx.buf use-after-free in isotp_sendmsg() Greg Kroah-Hartman
2026-03-31 16:21 ` [PATCH 6.12 146/244] cpufreq: conservative: Reset requested_freq on limits change Greg Kroah-Hartman
2026-03-31 16:21 ` [PATCH 6.12 147/244] platform/x86: ISST: Correct locked bit width Greg Kroah-Hartman
2026-03-31 16:21 ` [PATCH 6.12 148/244] KVM: arm64: Discard PC update state on vcpu reset Greg Kroah-Hartman
2026-03-31 16:21 ` [PATCH 6.12 149/244] hwmon: (pmbus/isl68137) Add mutex protection for AVS enable sysfs attributes Greg Kroah-Hartman
2026-03-31 16:21 ` [PATCH 6.12 150/244] hwmon: (peci/cputemp) Fix crit_hyst returning delta instead of absolute temperature Greg Kroah-Hartman
2026-03-31 16:21 ` [PATCH 6.12 151/244] hwmon: (peci/cputemp) Fix off-by-one in cputemp_is_visible() Greg Kroah-Hartman
2026-03-31 16:21 ` [PATCH 6.12 152/244] media: mc, v4l2: serialize REINIT and REQBUFS with req_queue_mutex Greg Kroah-Hartman
2026-03-31 16:21 ` [PATCH 6.12 153/244] virtio_net: Fix UAF on dst_ops when IFF_XMIT_DST_RELEASE is cleared and napi_tx is false Greg Kroah-Hartman
2026-03-31 16:21 ` [PATCH 6.12 154/244] erofs: add GFP_NOIO in the bio completion if needed Greg Kroah-Hartman
2026-03-31 16:21 ` [PATCH 6.12 155/244] alarmtimer: Fix argument order in alarm_timer_forward() Greg Kroah-Hartman
2026-03-31 16:21 ` [PATCH 6.12 156/244] x86/cpu: Enable FSGSBASE early in cpu_init_exception_handling() Greg Kroah-Hartman
2026-03-31 16:21 ` [PATCH 6.12 157/244] x86/cpu: Remove X86_CR4_FRED from the CR4 pinned bits mask Greg Kroah-Hartman
2026-03-31 16:21 ` [PATCH 6.12 158/244] phy: qcom: qmp-ufs: Fix SM8650 PCS table for Gear 4 Greg Kroah-Hartman
2026-03-31 16:21 ` [PATCH 6.12 159/244] ovl: fix wrong detection of 32bit inode numbers Greg Kroah-Hartman
2026-03-31 16:21 ` [PATCH 6.12 160/244] scsi: ibmvfc: Fix OOB access in ibmvfc_discover_targets_done() Greg Kroah-Hartman
2026-03-31 16:21 ` [PATCH 6.12 161/244] scsi: ses: Handle positive SCSI error from ses_recv_diag() Greg Kroah-Hartman
2026-03-31 16:21 ` [PATCH 6.12 162/244] net: macb: Move devm_{free,request}_irq() out of spin lock area Greg Kroah-Hartman
2026-03-31 16:21 ` [PATCH 6.12 163/244] net: macb: Protect access to net_device::ip_ptr with RCU lock Greg Kroah-Hartman
2026-03-31 16:21 ` [PATCH 6.12 164/244] net: macb: Use dev_consume_skb_any() to free TX SKBs Greg Kroah-Hartman
2026-03-31 16:21 ` [PATCH 6.12 165/244] KVM: x86/mmu: Drop/zap existing present SPTE even when creating an MMIO SPTE Greg Kroah-Hartman
2026-03-31 16:21 ` [PATCH 6.12 166/244] jbd2: gracefully abort on checkpointing state corruptions Greg Kroah-Hartman
2026-03-31 16:21 ` [PATCH 6.12 167/244] irqchip/qcom-mpm: Add missing mailbox TX done acknowledgment Greg Kroah-Hartman
2026-03-31 16:21 ` [PATCH 6.12 168/244] futex: Clear stale exiting pointer in futex_lock_pi() retry path Greg Kroah-Hartman
2026-03-31 16:21 ` [PATCH 6.12 169/244] dmaengine: fsl-edma: fix channel parameter config for fixed channel requests Greg Kroah-Hartman
2026-03-31 16:22 ` [PATCH 6.12 170/244] dmaengine: sh: rz-dmac: Protect the driver specific lists Greg Kroah-Hartman
2026-03-31 16:22 ` [PATCH 6.12 171/244] dmaengine: sh: rz-dmac: Move CHCTRL updates under spinlock Greg Kroah-Hartman
2026-03-31 16:22 ` [PATCH 6.12 172/244] drm/amdgpu: prevent immediate PASID reuse case Greg Kroah-Hartman
2026-03-31 16:22 ` [PATCH 6.12 173/244] drm/i915/dp_tunnel: Fix error handling when clearing stream BW in atomic state Greg Kroah-Hartman
2026-03-31 16:22 ` [PATCH 6.12 174/244] LoongArch: Fix missing NULL checks for kstrdup() Greg Kroah-Hartman
2026-03-31 16:22 ` [PATCH 6.12 175/244] LoongArch: Workaround LS2K/LS7A GPU DMA hang bug Greg Kroah-Hartman
2026-03-31 16:22 ` [PATCH 6.12 176/244] LoongArch: KVM: Make kvm_get_vcpu_by_cpuid() more robust Greg Kroah-Hartman
2026-03-31 16:22 ` [PATCH 6.12 177/244] xfs: stop reclaim before pushing AIL during unmount Greg Kroah-Hartman
2026-03-31 16:22 ` [PATCH 6.12 178/244] xfs: save ailp before dropping the AIL lock in push callbacks Greg Kroah-Hartman
2026-03-31 16:22 ` [PATCH 6.12 179/244] xfs: scrub: unlock dquot before early return in quota scrub Greg Kroah-Hartman
2026-03-31 16:22 ` [PATCH 6.12 180/244] xfs: fix ri_total validation in xlog_recover_attri_commit_pass2 Greg Kroah-Hartman
2026-03-31 16:22 ` [PATCH 6.12 181/244] xfs: dont irele after failing to iget in xfs_attri_recover_work Greg Kroah-Hartman
2026-03-31 16:22 ` [PATCH 6.12 182/244] xfs: remove file_path tracepoint data Greg Kroah-Hartman
2026-03-31 16:22 ` [PATCH 6.12 183/244] ext4: fix journal credit check when setting fscrypt context Greg Kroah-Hartman
2026-03-31 16:22 ` [PATCH 6.12 184/244] ext4: convert inline data to extents when truncate exceeds inline size Greg Kroah-Hartman
2026-03-31 16:22 ` [PATCH 6.12 185/244] ext4: fix stale xarray tags after writeback Greg Kroah-Hartman
2026-03-31 16:22 ` [PATCH 6.12 186/244] ext4: fix fsync(2) for nojournal mode Greg Kroah-Hartman
2026-03-31 16:22 ` [PATCH 6.12 187/244] ext4: make recently_deleted() properly work with lazy itable initialization Greg Kroah-Hartman
2026-03-31 16:22 ` [PATCH 6.12 188/244] ext4: replace BUG_ON with proper error handling in ext4_read_inline_folio Greg Kroah-Hartman
2026-03-31 16:22 ` [PATCH 6.12 189/244] ext4: validate p_idx bounds in ext4_ext_correct_indexes Greg Kroah-Hartman
2026-03-31 16:22 ` [PATCH 6.12 190/244] ext4: avoid infinite loops caused by residual data Greg Kroah-Hartman
2026-03-31 16:22 ` [PATCH 6.12 191/244] ext4: avoid allocate block from corrupted group in ext4_mb_find_by_goal() Greg Kroah-Hartman
2026-03-31 16:22 ` [PATCH 6.12 192/244] ext4: reject mount if bigalloc with s_first_data_block != 0 Greg Kroah-Hartman
2026-03-31 16:22 ` [PATCH 6.12 193/244] ext4: fix use-after-free in update_super_work when racing with umount Greg Kroah-Hartman
2026-03-31 16:22 ` [PATCH 6.12 194/244] ext4: fix the might_sleep() warnings in kvfree() Greg Kroah-Hartman
2026-03-31 16:22 ` [PATCH 6.12 195/244] ext4: handle wraparound when searching for blocks for indirect mapped blocks Greg Kroah-Hartman
2026-03-31 16:22 ` [PATCH 6.12 196/244] ext4: fix iloc.bh leak in ext4_fc_replay_inode() error paths Greg Kroah-Hartman
2026-03-31 16:22 ` [PATCH 6.12 197/244] ext4: always drain queued discard work in ext4_mb_release() Greg Kroah-Hartman
2026-03-31 16:22 ` [PATCH 6.12 198/244] arm64: dts: imx8mn-tqma8mqnl: fix LDO5 power off Greg Kroah-Hartman
2026-03-31 16:22 ` [PATCH 6.12 199/244] powerpc64/bpf: do not increment tailcall count when prog is NULL Greg Kroah-Hartman
2026-03-31 16:22 ` [PATCH 6.12 200/244] ksmbd: fix use-after-free and NULL deref in smb_grant_oplock() Greg Kroah-Hartman
2026-03-31 16:22 ` [PATCH 6.12 201/244] tracing: Switch trace_osnoise.c code over to use guard() and __free() Greg Kroah-Hartman
2026-03-31 16:22 ` [PATCH 6.12 202/244] tracing: Fix potential deadlock in cpu hotplug with osnoise Greg Kroah-Hartman
2026-03-31 16:22 ` [PATCH 6.12 203/244] drm/xe: always keep track of remap prev/next Greg Kroah-Hartman
2026-03-31 16:22 ` [PATCH 6.12 204/244] LoongArch: vDSO: Emit GNU_EH_FRAME correctly Greg Kroah-Hartman
2026-03-31 16:22 ` [PATCH 6.12 205/244] spi: tegra210-quad: Protect curr_xfer check in IRQ handler Greg Kroah-Hartman
2026-03-31 16:22 ` [PATCH 6.12 206/244] media: nxp: imx8-isi: Fix streaming cleanup on release Greg Kroah-Hartman
2026-03-31 16:22 ` [PATCH 6.12 207/244] mm/damon/sysfs: check contexts->nr before accessing contexts_arr[0] Greg Kroah-Hartman
2026-03-31 16:22 ` [PATCH 6.12 208/244] rust: pin-init: add references to previously initialized fields Greg Kroah-Hartman
2026-03-31 16:22 ` [PATCH 6.12 209/244] rust: pin-init: internal: init: document load-bearing fact of field accessors Greg Kroah-Hartman
2026-03-31 16:22 ` [PATCH 6.12 210/244] ovl: Use str_on_off() helper in ovl_show_options() Greg Kroah-Hartman
2026-03-31 16:22 ` [PATCH 6.12 211/244] ovl: make fsync after metadata copy-up opt-in mount option Greg Kroah-Hartman
2026-03-31 16:22 ` [PATCH 6.12 212/244] xfs: avoid dereferencing log items after push callbacks Greg Kroah-Hartman
2026-03-31 16:22 ` [PATCH 6.12 213/244] virt: tdx-guest: Fix handling of host controlled quote buffer length Greg Kroah-Hartman
2026-03-31 16:22 ` [PATCH 6.12 214/244] net: add proper RCU protection to /proc/net/ptype Greg Kroah-Hartman
2026-03-31 16:22 ` [PATCH 6.12 215/244] landlock: Optimize file path walks and prepare for audit support Greg Kroah-Hartman
2026-03-31 16:22 ` [PATCH 6.12 216/244] landlock: Fix handling of disconnected directories Greg Kroah-Hartman
2026-03-31 16:22 ` [PATCH 6.12 217/244] ice: fix using untrusted value of pkt_len in ice_vc_fdir_parse_raw() Greg Kroah-Hartman
2026-03-31 16:22 ` [PATCH 6.12 218/244] ice: Fix PTP NULL pointer dereference during VSI rebuild Greg Kroah-Hartman
2026-03-31 16:22 ` [PATCH 6.12 219/244] idpf: check error for register_netdev() on init Greg Kroah-Hartman
2026-03-31 16:22 ` [PATCH 6.12 220/244] idpf: detach and close netdevs while handling a reset Greg Kroah-Hartman
2026-03-31 16:22 ` [PATCH 6.12 221/244] idpf: Fix RSS LUT NULL pointer crash on early ethtool operations Greg Kroah-Hartman
2026-03-31 16:22 ` [PATCH 6.12 222/244] idpf: Fix RSS LUT NULL ptr issue after soft reset Greg Kroah-Hartman
2026-03-31 16:22 ` [PATCH 6.12 223/244] ASoC: ak4458: Convert to RUNTIME_PM_OPS() & co Greg Kroah-Hartman
2026-03-31 16:22 ` [PATCH 6.12 224/244] dmaengine: idxd: Fix not releasing workqueue on .release() Greg Kroah-Hartman
2026-03-31 16:22 ` [PATCH 6.12 225/244] dmaengine: idxd: Fix memory leak when a wq is reset Greg Kroah-Hartman
2026-03-31 16:22 ` [PATCH 6.12 226/244] dmaengine: idxd: Fix freeing the allocated ida too late Greg Kroah-Hartman
2026-03-31 16:22 ` [PATCH 6.12 227/244] phy: ti: j721e-wiz: Fix device node reference leak in wiz_get_lane_phy_types() Greg Kroah-Hartman
2026-03-31 16:22 ` [PATCH 6.12 228/244] dmaengine: dw-edma: Fix multiple times setting of the CYCLE_STATE and CYCLE_BIT bits for HDMA Greg Kroah-Hartman
2026-03-31 16:22 ` [PATCH 6.12 229/244] dmaengine: xilinx: xdma: Fix regmap init error handling Greg Kroah-Hartman
2026-03-31 16:23 ` [PATCH 6.12 230/244] netfs: Fix kernel BUG in netfs_limit_iter() for ITER_KVEC iterators Greg Kroah-Hartman
2026-03-31 16:23 ` [PATCH 6.12 231/244] dmaengine: idxd: fix possible wrong descriptor completion in llist_abort_desc() Greg Kroah-Hartman
2026-03-31 16:23 ` [PATCH 6.12 232/244] dmaengine: xilinx: xilinx_dma: Fix dma_device directions Greg Kroah-Hartman
2026-03-31 16:23 ` [PATCH 6.12 233/244] dmaengine: xilinx: xilinx_dma: Fix residue calculation for cyclic DMA Greg Kroah-Hartman
2026-03-31 16:23 ` [PATCH 6.12 234/244] dmaengine: xilinx: xilinx_dma: Fix unmasked residue subtraction Greg Kroah-Hartman
2026-03-31 16:23 ` [PATCH 6.12 235/244] dmaengine: xilinx_dma: Fix reset related timeout with two-channel AXIDMA Greg Kroah-Hartman
2026-03-31 16:23 ` [PATCH 6.12 236/244] btrfs: fix super block offset in error message in btrfs_validate_super() Greg Kroah-Hartman
2026-03-31 16:23 ` [PATCH 6.12 237/244] btrfs: fix leak of kobject name for sub-group space_info Greg Kroah-Hartman
2026-03-31 16:23 ` [PATCH 6.12 238/244] btrfs: fix lost error when running device stats on multiple devices fs Greg Kroah-Hartman
2026-03-31 16:23 ` [PATCH 6.12 239/244] xen/privcmd: unregister xenstore notifier on module exit Greg Kroah-Hartman
2026-03-31 16:23 ` [PATCH 6.12 240/244] futex: Require sys_futex_requeue() to have identical flags Greg Kroah-Hartman
2026-03-31 16:23 ` [PATCH 6.12 241/244] dmaengine: idxd: Fix leaking event log memory Greg Kroah-Hartman
2026-03-31 16:23 ` [PATCH 6.12 242/244] net: bcmasp: Restore programming of TX map vector register Greg Kroah-Hartman
2026-03-31 16:23 ` [PATCH 6.12 243/244] net: bcmasp: Fix network filter wake for asp-3.0 Greg Kroah-Hartman
2026-03-31 16:23 ` [PATCH 6.12 244/244] idpf: nullify pointers after they are freed Greg Kroah-Hartman
2026-04-01  1:56 ` [PATCH 6.12 000/244] 6.12.80-rc1 review Barry K. Nathan
2026-04-01  3:31 ` Peter Schneider
2026-04-01  7:28 ` Brett A C Sheffield
2026-04-01  9:19 ` Jon Hunter
2026-04-01  9:29 ` Ron Economos
2026-04-01 11:40 ` Francesco Dolcini
2026-04-01 16:20 ` Shuah Khan
2026-04-01 17:39 ` Mark Brown
2026-04-02 10:49 ` Harshit Mogalapalli
2026-04-02 13:25 ` Miguel Ojeda
2026-04-02 13:38   ` Greg KH
2026-04-02 22:51 ` Florian Fainelli

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=20260331161744.564928384@linuxfoundation.org \
    --to=gregkh@linuxfoundation.org \
    --cc=florian.fainelli@broadcom.com \
    --cc=justin.chen@broadcom.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