[PATCH net-next 1/1] net: stmmac: xgmac: add ethtool per-queue irq statistic support
Peppe CAVALLARO
peppe.cavallaro at st.com
Mon May 8 08:14:04 PDT 2023
Hello
Idea behind the patch looks ok for me
Regards
peppe
ST Restricted
-----Original Message-----
From: Teoh Ji Sheng <ji.sheng.teoh at intel.com>
Sent: Monday, May 8, 2023 4:44 PM
To: David S . Miller <davem at davemloft.net>; Peppe CAVALLARO <peppe.cavallaro at st.com>; Alexandre TORGUE - foss <alexandre.torgue at foss.st.com>; Jose Abreu <joabreu at synopsys.com>; Eric Dumazet <edumazet at google.com>; Jakub Kicinski <kuba at kernel.org>; Paolo Abeni <pabeni at redhat.com>; Maxime Coquelin <mcoquelin.stm32 at gmail.com>
Cc: netdev at vger.kernel.org; linux-stm32 at st-md-mailman.stormreply.com; linux-arm-kernel at lists.infradead.org; linux-kernel at vger.kernel.org; Teoh Ji Sheng <ji.sheng.teoh at intel.com>
Subject: [PATCH net-next 1/1] net: stmmac: xgmac: add ethtool per-queue irq statistic support
Commit af9bf70154eb ("net: stmmac: add ethtool per-queue irq statistic
support") introduced ethtool per-queue statistics support to display number of interrupts generated by DMA tx and DMA rx for DWMAC4 core.
This patch extend the support to XGMAC core.
Signed-off-by: Teoh Ji Sheng <ji.sheng.teoh at intel.com>
---
drivers/net/ethernet/stmicro/stmmac/dwxgmac2_dma.c | 2 ++
1 file changed, 2 insertions(+)
diff --git a/drivers/net/ethernet/stmicro/stmmac/dwxgmac2_dma.c b/drivers/net/ethernet/stmicro/stmmac/dwxgmac2_dma.c
index dfd53264e036..070bd912580b 100644
--- a/drivers/net/ethernet/stmicro/stmmac/dwxgmac2_dma.c
+++ b/drivers/net/ethernet/stmicro/stmmac/dwxgmac2_dma.c
@@ -368,10 +368,12 @@ static int dwxgmac2_dma_interrupt(struct stmmac_priv *priv,
if (likely(intr_status & XGMAC_RI)) {
x->rx_normal_irq_n++;
+ x->rxq_stats[chan].rx_normal_irq_n++;
ret |= handle_rx;
}
if (likely(intr_status & (XGMAC_TI | XGMAC_TBU))) {
x->tx_normal_irq_n++;
+ x->txq_stats[chan].tx_normal_irq_n++;
ret |= handle_tx;
}
}
--
2.34.1
More information about the linux-arm-kernel
mailing list