[PATCH net-next v8 5/8] net: stmmac: Get the TC number of net_device by netdev_get_num_tc()
Furong Xu
0x1207 at gmail.com
Fri Nov 1 06:31:32 PDT 2024
netdev_get_num_tc() is the right method, we should not access
net_device.num_tc directly.
Signed-off-by: Furong Xu <0x1207 at gmail.com>
---
drivers/net/ethernet/stmicro/stmmac/stmmac_fpe.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/net/ethernet/stmicro/stmmac/stmmac_fpe.c b/drivers/net/ethernet/stmicro/stmmac/stmmac_fpe.c
index affb68604b96..ab717c9bba41 100644
--- a/drivers/net/ethernet/stmicro/stmmac/stmmac_fpe.c
+++ b/drivers/net/ethernet/stmicro/stmmac/stmmac_fpe.c
@@ -304,7 +304,7 @@ int dwmac5_fpe_map_preemption_class(struct net_device *ndev,
{
u32 val, offset, count, queue_weight, preemptible_txqs = 0;
struct stmmac_priv *priv = netdev_priv(ndev);
- u32 num_tc = ndev->num_tc;
+ int num_tc = netdev_get_num_tc(ndev);
if (!pclass)
goto update_mapping;
--
2.34.1
More information about the linux-arm-kernel
mailing list