* [PATCH net-next v4 0/4] stmmac: Several PCI-related improvements
@ 2025-02-26 8:52 Philipp Stanner
2025-02-26 8:52 ` [PATCH net-next v4 1/4] stmmac: loongson: Pass correct arg to PCI function Philipp Stanner
` (4 more replies)
0 siblings, 5 replies; 9+ messages in thread
From: Philipp Stanner @ 2025-02-26 8:52 UTC (permalink / raw)
To: Andrew Lunn, David S. Miller, Eric Dumazet, Jakub Kicinski,
Paolo Abeni, Maxime Coquelin, Alexandre Torgue, Huacai Chen,
Yanteng Si, Yinggang Gu, Feiyang Chen, Philipp Stanner,
Jiaxun Yang, Qing Zhang
Cc: netdev, linux-stm32, linux-arm-kernel, linux-kernel,
Philipp Stanner
Changes in v4:
- Add missing full stop. (Yanteng)
- Move forgotten unused-variable-removes to the appropriate places.
- Add applicable RB / TB tags
Changes in v3:
- Several formatting nits (Paolo)
- Split up patch into a patch series (Yanteng)
Philipp Stanner (4):
stmmac: loongson: Pass correct arg to PCI function
stmmac: loongson: Remove surplus loop
stmmac: Remove pcim_* functions for driver detach
stmmac: Replace deprecated PCI functions
.../ethernet/stmicro/stmmac/dwmac-loongson.c | 31 ++++++-------------
.../net/ethernet/stmicro/stmmac/stmmac_pci.c | 26 +++++-----------
2 files changed, 16 insertions(+), 41 deletions(-)
--
2.48.1
^ permalink raw reply [flat|nested] 9+ messages in thread
* [PATCH net-next v4 1/4] stmmac: loongson: Pass correct arg to PCI function
2025-02-26 8:52 [PATCH net-next v4 0/4] stmmac: Several PCI-related improvements Philipp Stanner
@ 2025-02-26 8:52 ` Philipp Stanner
2025-02-28 2:35 ` Jakub Kicinski
2025-02-26 8:52 ` [PATCH net-next v4 2/4] stmmac: loongson: Remove surplus loop Philipp Stanner
` (3 subsequent siblings)
4 siblings, 1 reply; 9+ messages in thread
From: Philipp Stanner @ 2025-02-26 8:52 UTC (permalink / raw)
To: Andrew Lunn, David S. Miller, Eric Dumazet, Jakub Kicinski,
Paolo Abeni, Maxime Coquelin, Alexandre Torgue, Huacai Chen,
Yanteng Si, Yinggang Gu, Feiyang Chen, Philipp Stanner,
Jiaxun Yang, Qing Zhang
Cc: netdev, linux-stm32, linux-arm-kernel, linux-kernel,
Philipp Stanner, stable, Andrew Lunn, Henry Chen
pcim_iomap_regions() should receive the driver's name as its third
parameter, not the PCI device's name.
Define the driver name with a macro and use it at the appropriate
places, including pcim_iomap_regions().
Cc: stable@vger.kernel.org # v5.14+
Fixes: 30bba69d7db4 ("stmmac: pci: Add dwmac support for Loongson")
Signed-off-by: Philipp Stanner <phasta@kernel.org>
Reviewed-by: Andrew Lunn <andrew@lunn.ch>
Reviewed-by: Yanteng Si <si.yanteng@linux.dev>
Tested-by: Henry Chen <chenx97@aosc.io>
---
drivers/net/ethernet/stmicro/stmmac/dwmac-loongson.c | 6 ++++--
1 file changed, 4 insertions(+), 2 deletions(-)
diff --git a/drivers/net/ethernet/stmicro/stmmac/dwmac-loongson.c b/drivers/net/ethernet/stmicro/stmmac/dwmac-loongson.c
index bfe6e2d631bd..73a6715a93e6 100644
--- a/drivers/net/ethernet/stmicro/stmmac/dwmac-loongson.c
+++ b/drivers/net/ethernet/stmicro/stmmac/dwmac-loongson.c
@@ -11,6 +11,8 @@
#include "dwmac_dma.h"
#include "dwmac1000.h"
+#define DRIVER_NAME "dwmac-loongson-pci"
+
/* Normal Loongson Tx Summary */
#define DMA_INTR_ENA_NIE_TX_LOONGSON 0x00040000
/* Normal Loongson Rx Summary */
@@ -555,7 +557,7 @@ static int loongson_dwmac_probe(struct pci_dev *pdev, const struct pci_device_id
for (i = 0; i < PCI_STD_NUM_BARS; i++) {
if (pci_resource_len(pdev, i) == 0)
continue;
- ret = pcim_iomap_regions(pdev, BIT(0), pci_name(pdev));
+ ret = pcim_iomap_regions(pdev, BIT(0), DRIVER_NAME);
if (ret)
goto err_disable_device;
break;
@@ -673,7 +675,7 @@ static const struct pci_device_id loongson_dwmac_id_table[] = {
MODULE_DEVICE_TABLE(pci, loongson_dwmac_id_table);
static struct pci_driver loongson_dwmac_driver = {
- .name = "dwmac-loongson-pci",
+ .name = DRIVER_NAME,
.id_table = loongson_dwmac_id_table,
.probe = loongson_dwmac_probe,
.remove = loongson_dwmac_remove,
--
2.48.1
^ permalink raw reply related [flat|nested] 9+ messages in thread
* [PATCH net-next v4 2/4] stmmac: loongson: Remove surplus loop
2025-02-26 8:52 [PATCH net-next v4 0/4] stmmac: Several PCI-related improvements Philipp Stanner
2025-02-26 8:52 ` [PATCH net-next v4 1/4] stmmac: loongson: Pass correct arg to PCI function Philipp Stanner
@ 2025-02-26 8:52 ` Philipp Stanner
2025-02-26 8:52 ` [PATCH net-next v4 3/4] stmmac: Remove pcim_* functions for driver detach Philipp Stanner
` (2 subsequent siblings)
4 siblings, 0 replies; 9+ messages in thread
From: Philipp Stanner @ 2025-02-26 8:52 UTC (permalink / raw)
To: Andrew Lunn, David S. Miller, Eric Dumazet, Jakub Kicinski,
Paolo Abeni, Maxime Coquelin, Alexandre Torgue, Huacai Chen,
Yanteng Si, Yinggang Gu, Feiyang Chen, Philipp Stanner,
Jiaxun Yang, Qing Zhang
Cc: netdev, linux-stm32, linux-arm-kernel, linux-kernel,
Philipp Stanner, Andrew Lunn, Huacai Chen, Henry Chen
loongson_dwmac_probe() contains a loop which doesn't have an effect,
because it tries to call pcim_iomap_regions() with the same parameters
several times. The break statement at the loop's end furthermore ensures
that the loop only runs once anyways.
Remove the surplus loop.
Signed-off-by: Philipp Stanner <phasta@kernel.org>
Reviewed-by: Andrew Lunn <andrew@lunn.ch>
Reviewed-by: Yanteng Si <si.yanteng@linux.dev>
Reviewed-by: Huacai Chen <chenhuacai@loongson.cn>
Tested-by: Henry Chen <chenx97@aosc.io>
---
.../net/ethernet/stmicro/stmmac/dwmac-loongson.c | 13 ++++---------
1 file changed, 4 insertions(+), 9 deletions(-)
diff --git a/drivers/net/ethernet/stmicro/stmmac/dwmac-loongson.c b/drivers/net/ethernet/stmicro/stmmac/dwmac-loongson.c
index 73a6715a93e6..e2959ac5c1ca 100644
--- a/drivers/net/ethernet/stmicro/stmmac/dwmac-loongson.c
+++ b/drivers/net/ethernet/stmicro/stmmac/dwmac-loongson.c
@@ -524,7 +524,7 @@ static int loongson_dwmac_probe(struct pci_dev *pdev, const struct pci_device_id
struct stmmac_pci_info *info;
struct stmmac_resources res;
struct loongson_data *ld;
- int ret, i;
+ int ret;
plat = devm_kzalloc(&pdev->dev, sizeof(*plat), GFP_KERNEL);
if (!plat)
@@ -554,14 +554,9 @@ static int loongson_dwmac_probe(struct pci_dev *pdev, const struct pci_device_id
pci_set_master(pdev);
/* Get the base address of device */
- for (i = 0; i < PCI_STD_NUM_BARS; i++) {
- if (pci_resource_len(pdev, i) == 0)
- continue;
- ret = pcim_iomap_regions(pdev, BIT(0), DRIVER_NAME);
- if (ret)
- goto err_disable_device;
- break;
- }
+ ret = pcim_iomap_regions(pdev, BIT(0), DRIVER_NAME);
+ if (ret)
+ goto err_disable_device;
memset(&res, 0, sizeof(res));
res.addr = pcim_iomap_table(pdev)[0];
--
2.48.1
^ permalink raw reply related [flat|nested] 9+ messages in thread
* [PATCH net-next v4 3/4] stmmac: Remove pcim_* functions for driver detach
2025-02-26 8:52 [PATCH net-next v4 0/4] stmmac: Several PCI-related improvements Philipp Stanner
2025-02-26 8:52 ` [PATCH net-next v4 1/4] stmmac: loongson: Pass correct arg to PCI function Philipp Stanner
2025-02-26 8:52 ` [PATCH net-next v4 2/4] stmmac: loongson: Remove surplus loop Philipp Stanner
@ 2025-02-26 8:52 ` Philipp Stanner
2025-02-26 8:52 ` [PATCH net-next v4 4/4] stmmac: Replace deprecated PCI functions Philipp Stanner
2025-02-28 2:40 ` [PATCH net-next v4 0/4] stmmac: Several PCI-related improvements patchwork-bot+netdevbpf
4 siblings, 0 replies; 9+ messages in thread
From: Philipp Stanner @ 2025-02-26 8:52 UTC (permalink / raw)
To: Andrew Lunn, David S. Miller, Eric Dumazet, Jakub Kicinski,
Paolo Abeni, Maxime Coquelin, Alexandre Torgue, Huacai Chen,
Yanteng Si, Yinggang Gu, Feiyang Chen, Philipp Stanner,
Jiaxun Yang, Qing Zhang
Cc: netdev, linux-stm32, linux-arm-kernel, linux-kernel,
Philipp Stanner, Andrew Lunn, Henry Chen
Functions prefixed with "pcim_" are managed devres functions which
perform automatic cleanup once the driver unloads. It is, thus, not
necessary to call any cleanup functions in remove() callbacks.
Remove the pcim_ cleanup function calls in the remove() callbacks.
Signed-off-by: Philipp Stanner <phasta@kernel.org>
Reviewed-by: Andrew Lunn <andrew@lunn.ch>
Reviewed-by: Yanteng Si <si.yanteng@linux.dev>
Tested-by: Henry Chen <chenx97@aosc.io>
---
drivers/net/ethernet/stmicro/stmmac/dwmac-loongson.c | 8 --------
drivers/net/ethernet/stmicro/stmmac/stmmac_pci.c | 12 +-----------
2 files changed, 1 insertion(+), 19 deletions(-)
diff --git a/drivers/net/ethernet/stmicro/stmmac/dwmac-loongson.c b/drivers/net/ethernet/stmicro/stmmac/dwmac-loongson.c
index e2959ac5c1ca..5d7746d787ac 100644
--- a/drivers/net/ethernet/stmicro/stmmac/dwmac-loongson.c
+++ b/drivers/net/ethernet/stmicro/stmmac/dwmac-loongson.c
@@ -603,7 +603,6 @@ static void loongson_dwmac_remove(struct pci_dev *pdev)
struct net_device *ndev = dev_get_drvdata(&pdev->dev);
struct stmmac_priv *priv = netdev_priv(ndev);
struct loongson_data *ld;
- int i;
ld = priv->plat->bsp_priv;
stmmac_dvr_remove(&pdev->dev);
@@ -614,13 +613,6 @@ static void loongson_dwmac_remove(struct pci_dev *pdev)
if (ld->loongson_id == DWMAC_CORE_LS_MULTICHAN)
loongson_dwmac_msi_clear(pdev);
- for (i = 0; i < PCI_STD_NUM_BARS; i++) {
- if (pci_resource_len(pdev, i) == 0)
- continue;
- pcim_iounmap_regions(pdev, BIT(i));
- break;
- }
-
pci_disable_device(pdev);
}
diff --git a/drivers/net/ethernet/stmicro/stmmac/stmmac_pci.c b/drivers/net/ethernet/stmicro/stmmac/stmmac_pci.c
index 352b01678c22..1637c8139b9d 100644
--- a/drivers/net/ethernet/stmicro/stmmac/stmmac_pci.c
+++ b/drivers/net/ethernet/stmicro/stmmac/stmmac_pci.c
@@ -226,21 +226,11 @@ static int stmmac_pci_probe(struct pci_dev *pdev,
* stmmac_pci_remove
*
* @pdev: platform device pointer
- * Description: this function calls the main to free the net resources
- * and releases the PCI resources.
+ * Description: this function calls the main to free the net resources.
*/
static void stmmac_pci_remove(struct pci_dev *pdev)
{
- int i;
-
stmmac_dvr_remove(&pdev->dev);
-
- for (i = 0; i < PCI_STD_NUM_BARS; i++) {
- if (pci_resource_len(pdev, i) == 0)
- continue;
- pcim_iounmap_regions(pdev, BIT(i));
- break;
- }
}
static int __maybe_unused stmmac_pci_suspend(struct device *dev)
--
2.48.1
^ permalink raw reply related [flat|nested] 9+ messages in thread
* [PATCH net-next v4 4/4] stmmac: Replace deprecated PCI functions
2025-02-26 8:52 [PATCH net-next v4 0/4] stmmac: Several PCI-related improvements Philipp Stanner
` (2 preceding siblings ...)
2025-02-26 8:52 ` [PATCH net-next v4 3/4] stmmac: Remove pcim_* functions for driver detach Philipp Stanner
@ 2025-02-26 8:52 ` Philipp Stanner
2025-02-28 2:40 ` [PATCH net-next v4 0/4] stmmac: Several PCI-related improvements patchwork-bot+netdevbpf
4 siblings, 0 replies; 9+ messages in thread
From: Philipp Stanner @ 2025-02-26 8:52 UTC (permalink / raw)
To: Andrew Lunn, David S. Miller, Eric Dumazet, Jakub Kicinski,
Paolo Abeni, Maxime Coquelin, Alexandre Torgue, Huacai Chen,
Yanteng Si, Yinggang Gu, Feiyang Chen, Philipp Stanner,
Jiaxun Yang, Qing Zhang
Cc: netdev, linux-stm32, linux-arm-kernel, linux-kernel, Andrew Lunn,
Huacai Chen, Henry Chen
From: Philipp Stanner <pstanner@redhat.com>
The PCI functions
- pcim_iomap_regions() and
- pcim_iomap_table()
have been deprecated.
Replace them with their successor function, pcim_iomap_region().
Make variable declaration order at closeby places comply with reverse
christmas tree order.
Signed-off-by: Philipp Stanner <pstanner@redhat.com>
Reviewed-by: Andrew Lunn <andrew@lunn.ch>
Reviewed-by: Huacai Chen <chenhuacai@loongson.cn>
Tested-by: Henry Chen <chenx97@aosc.io>
---
.../net/ethernet/stmicro/stmmac/dwmac-loongson.c | 8 +++-----
drivers/net/ethernet/stmicro/stmmac/stmmac_pci.c | 14 ++++++--------
2 files changed, 9 insertions(+), 13 deletions(-)
diff --git a/drivers/net/ethernet/stmicro/stmmac/dwmac-loongson.c b/drivers/net/ethernet/stmicro/stmmac/dwmac-loongson.c
index 5d7746d787ac..25ef7b9c5dce 100644
--- a/drivers/net/ethernet/stmicro/stmmac/dwmac-loongson.c
+++ b/drivers/net/ethernet/stmicro/stmmac/dwmac-loongson.c
@@ -521,8 +521,8 @@ static int loongson_dwmac_acpi_config(struct pci_dev *pdev,
static int loongson_dwmac_probe(struct pci_dev *pdev, const struct pci_device_id *id)
{
struct plat_stmmacenet_data *plat;
+ struct stmmac_resources res = {};
struct stmmac_pci_info *info;
- struct stmmac_resources res;
struct loongson_data *ld;
int ret;
@@ -554,13 +554,11 @@ static int loongson_dwmac_probe(struct pci_dev *pdev, const struct pci_device_id
pci_set_master(pdev);
/* Get the base address of device */
- ret = pcim_iomap_regions(pdev, BIT(0), DRIVER_NAME);
+ res.addr = pcim_iomap_region(pdev, 0, DRIVER_NAME);
+ ret = PTR_ERR_OR_ZERO(res.addr);
if (ret)
goto err_disable_device;
- memset(&res, 0, sizeof(res));
- res.addr = pcim_iomap_table(pdev)[0];
-
plat->bsp_priv = ld;
plat->setup = loongson_dwmac_setup;
ld->dev = &pdev->dev;
diff --git a/drivers/net/ethernet/stmicro/stmmac/stmmac_pci.c b/drivers/net/ethernet/stmicro/stmmac/stmmac_pci.c
index 1637c8139b9d..b7adda35b7b7 100644
--- a/drivers/net/ethernet/stmicro/stmmac/stmmac_pci.c
+++ b/drivers/net/ethernet/stmicro/stmmac/stmmac_pci.c
@@ -155,9 +155,9 @@ static int stmmac_pci_probe(struct pci_dev *pdev,
{
struct stmmac_pci_info *info = (struct stmmac_pci_info *)id->driver_data;
struct plat_stmmacenet_data *plat;
- struct stmmac_resources res;
- int i;
+ struct stmmac_resources res = {};
int ret;
+ int i;
plat = devm_kzalloc(&pdev->dev, sizeof(*plat), GFP_KERNEL);
if (!plat)
@@ -188,13 +188,13 @@ static int stmmac_pci_probe(struct pci_dev *pdev,
return ret;
}
- /* Get the base address of device */
+ /* The first BAR > 0 is the base IO addr of our device. */
for (i = 0; i < PCI_STD_NUM_BARS; i++) {
if (pci_resource_len(pdev, i) == 0)
continue;
- ret = pcim_iomap_regions(pdev, BIT(i), pci_name(pdev));
- if (ret)
- return ret;
+ res.addr = pcim_iomap_region(pdev, i, STMMAC_RESOURCE_NAME);
+ if (IS_ERR(res.addr))
+ return PTR_ERR(res.addr);
break;
}
@@ -204,8 +204,6 @@ static int stmmac_pci_probe(struct pci_dev *pdev,
if (ret)
return ret;
- memset(&res, 0, sizeof(res));
- res.addr = pcim_iomap_table(pdev)[i];
res.wol_irq = pdev->irq;
res.irq = pdev->irq;
--
2.48.1
^ permalink raw reply related [flat|nested] 9+ messages in thread
* Re: [PATCH net-next v4 1/4] stmmac: loongson: Pass correct arg to PCI function
2025-02-26 8:52 ` [PATCH net-next v4 1/4] stmmac: loongson: Pass correct arg to PCI function Philipp Stanner
@ 2025-02-28 2:35 ` Jakub Kicinski
2025-02-28 9:26 ` Philipp Stanner
0 siblings, 1 reply; 9+ messages in thread
From: Jakub Kicinski @ 2025-02-28 2:35 UTC (permalink / raw)
To: Philipp Stanner
Cc: Andrew Lunn, David S. Miller, Eric Dumazet, Paolo Abeni,
Maxime Coquelin, Alexandre Torgue, Huacai Chen, Yanteng Si,
Yinggang Gu, Feiyang Chen, Philipp Stanner, Jiaxun Yang,
Qing Zhang, netdev, linux-stm32, linux-arm-kernel, linux-kernel,
stable, Andrew Lunn, Henry Chen
On Wed, 26 Feb 2025 09:52:05 +0100 Philipp Stanner wrote:
> pcim_iomap_regions() should receive the driver's name as its third
> parameter, not the PCI device's name.
>
> Define the driver name with a macro and use it at the appropriate
> places, including pcim_iomap_regions().
>
> Cc: stable@vger.kernel.org # v5.14+
> Fixes: 30bba69d7db4 ("stmmac: pci: Add dwmac support for Loongson")
Since you sent this as a fix (which.. yea.. I guess.. why not..)
I'll apply it to the fixes tree. But then the other patches have
to wait and be reposted next Thu. The fixes are merged with net-next
every Thu, but since this series was tagged as net-next I missed
it in today's cross merge :(
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [PATCH net-next v4 0/4] stmmac: Several PCI-related improvements
2025-02-26 8:52 [PATCH net-next v4 0/4] stmmac: Several PCI-related improvements Philipp Stanner
` (3 preceding siblings ...)
2025-02-26 8:52 ` [PATCH net-next v4 4/4] stmmac: Replace deprecated PCI functions Philipp Stanner
@ 2025-02-28 2:40 ` patchwork-bot+netdevbpf
4 siblings, 0 replies; 9+ messages in thread
From: patchwork-bot+netdevbpf @ 2025-02-28 2:40 UTC (permalink / raw)
To: Philipp Stanner
Cc: andrew+netdev, davem, edumazet, kuba, pabeni, mcoquelin.stm32,
alexandre.torgue, chenhuacai, si.yanteng, guyinggang, chenfeiyang,
pstanner, jiaxun.yang, zhangqing, netdev, linux-stm32,
linux-arm-kernel, linux-kernel
Hello:
This series was applied to netdev/net.git (main)
by Jakub Kicinski <kuba@kernel.org>:
On Wed, 26 Feb 2025 09:52:04 +0100 you wrote:
> Changes in v4:
> - Add missing full stop. (Yanteng)
> - Move forgotten unused-variable-removes to the appropriate places.
> - Add applicable RB / TB tags
>
> Changes in v3:
> - Several formatting nits (Paolo)
> - Split up patch into a patch series (Yanteng)
>
> [...]
Here is the summary with links:
- [net-next,v4,1/4] stmmac: loongson: Pass correct arg to PCI function
https://git.kernel.org/netdev/net/c/00371a3f4877
- [net-next,v4,2/4] stmmac: loongson: Remove surplus loop
(no matching commit)
- [net-next,v4,3/4] stmmac: Remove pcim_* functions for driver detach
(no matching commit)
- [net-next,v4,4/4] stmmac: Replace deprecated PCI functions
(no matching commit)
You are awesome, thank you!
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [PATCH net-next v4 1/4] stmmac: loongson: Pass correct arg to PCI function
2025-02-28 2:35 ` Jakub Kicinski
@ 2025-02-28 9:26 ` Philipp Stanner
2025-02-28 22:03 ` Jakub Kicinski
0 siblings, 1 reply; 9+ messages in thread
From: Philipp Stanner @ 2025-02-28 9:26 UTC (permalink / raw)
To: Jakub Kicinski, Philipp Stanner
Cc: Andrew Lunn, David S. Miller, Eric Dumazet, Paolo Abeni,
Maxime Coquelin, Alexandre Torgue, Huacai Chen, Yanteng Si,
Yinggang Gu, Feiyang Chen, Jiaxun Yang, Qing Zhang, netdev,
linux-stm32, linux-arm-kernel, linux-kernel, stable, Andrew Lunn,
Henry Chen
On Thu, 2025-02-27 at 18:35 -0800, Jakub Kicinski wrote:
> On Wed, 26 Feb 2025 09:52:05 +0100 Philipp Stanner wrote:
> > pcim_iomap_regions() should receive the driver's name as its third
> > parameter, not the PCI device's name.
> >
> > Define the driver name with a macro and use it at the appropriate
> > places, including pcim_iomap_regions().
> >
> > Cc: stable@vger.kernel.org # v5.14+
> > Fixes: 30bba69d7db4 ("stmmac: pci: Add dwmac support for Loongson")
>
> Since you sent this as a fix (which.. yea.. I guess.. why not..)
> I'll apply it to the fixes tree. But then the other patches have
> to wait and be reposted next Thu. The fixes are merged with net-next
> every Thu, but since this series was tagged as net-next I missed
> it in today's cross merge :(
>
Oh OK, I see – I'm not very familiar with the net subsystem process. So
far I always had it like this: fire everything into Linus's master and
Greg & Sasha then pick those with Fixes tags into the stable trees
automatically :)
Anyways, I interpret your message so that this series is done and I
don't have to do anything about it anymore. Correct me if I'm wrong.
Thanks
P.
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [PATCH net-next v4 1/4] stmmac: loongson: Pass correct arg to PCI function
2025-02-28 9:26 ` Philipp Stanner
@ 2025-02-28 22:03 ` Jakub Kicinski
0 siblings, 0 replies; 9+ messages in thread
From: Jakub Kicinski @ 2025-02-28 22:03 UTC (permalink / raw)
To: Philipp Stanner
Cc: Philipp Stanner, Andrew Lunn, David S. Miller, Eric Dumazet,
Paolo Abeni, Maxime Coquelin, Alexandre Torgue, Huacai Chen,
Yanteng Si, Yinggang Gu, Feiyang Chen, Jiaxun Yang, Qing Zhang,
netdev, linux-stm32, linux-arm-kernel, linux-kernel, stable,
Andrew Lunn, Henry Chen
On Fri, 28 Feb 2025 10:26:24 +0100 Philipp Stanner wrote:
> > Since you sent this as a fix (which.. yea.. I guess.. why not..)
> > I'll apply it to the fixes tree. But then the other patches have
> > to wait and be reposted next Thu. The fixes are merged with net-next
> > every Thu, but since this series was tagged as net-next I missed
> > it in today's cross merge :(
>
> Oh OK, I see – I'm not very familiar with the net subsystem process. So
> far I always had it like this: fire everything into Linus's master and
> Greg & Sasha then pick those with Fixes tags into the stable trees
> automatically :)
Admittedly the fixes vs linux-next material routing is a little tricky.
> Anyways, I interpret your message so that this series is done and I
> don't have to do anything about it anymore. Correct me if I'm wrong.
You need to repost patches 2,3,4 once the first patch appears in:
https://git.kernel.org/pub/scm/linux/kernel/git/netdev/net-next.git/
^ permalink raw reply [flat|nested] 9+ messages in thread
end of thread, other threads:[~2025-02-28 22:03 UTC | newest]
Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-02-26 8:52 [PATCH net-next v4 0/4] stmmac: Several PCI-related improvements Philipp Stanner
2025-02-26 8:52 ` [PATCH net-next v4 1/4] stmmac: loongson: Pass correct arg to PCI function Philipp Stanner
2025-02-28 2:35 ` Jakub Kicinski
2025-02-28 9:26 ` Philipp Stanner
2025-02-28 22:03 ` Jakub Kicinski
2025-02-26 8:52 ` [PATCH net-next v4 2/4] stmmac: loongson: Remove surplus loop Philipp Stanner
2025-02-26 8:52 ` [PATCH net-next v4 3/4] stmmac: Remove pcim_* functions for driver detach Philipp Stanner
2025-02-26 8:52 ` [PATCH net-next v4 4/4] stmmac: Replace deprecated PCI functions Philipp Stanner
2025-02-28 2:40 ` [PATCH net-next v4 0/4] stmmac: Several PCI-related improvements patchwork-bot+netdevbpf
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).