Skip to content

Commit 36ac9e7

Browse files
xiaoleiwang123456kuba-moo
authored andcommitted
net: stmmac: move the EST lock to struct stmmac_priv
Reinitialize the whole EST structure would also reset the mutex lock which is embedded in the EST structure, and then trigger the following warning. To address this, move the lock to struct stmmac_priv. We also need to reacquire the mutex lock when doing this initialization. DEBUG_LOCKS_WARN_ON(lock->magic != lock) WARNING: CPU: 3 PID: 505 at kernel/locking/mutex.c:587 __mutex_lock+0xd84/0x1068 Modules linked in: CPU: 3 PID: 505 Comm: tc Not tainted 6.9.0-rc6-00053-g0106679839f7-dirty #29 Hardware name: NXP i.MX8MPlus EVK board (DT) pstate: 60000005 (nZCv daif -PAN -UAO -TCO -DIT -SSBS BTYPE=--) pc : __mutex_lock+0xd84/0x1068 lr : __mutex_lock+0xd84/0x1068 sp : ffffffc0864e3570 x29: ffffffc0864e3570 x28: ffffffc0817bdc78 x27: 0000000000000003 x26: ffffff80c54f1808 x25: ffffff80c9164080 x24: ffffffc080d723ac x23: 0000000000000000 x22: 0000000000000002 x21: 0000000000000000 x20: 0000000000000000 x19: ffffffc083bc3000 x18: ffffffffffffffff x17: ffffffc08117b080 x16: 0000000000000002 x15: ffffff80d2d40000 x14: 00000000000002da x13: ffffff80d2d404b8 x12: ffffffc082b5a5c8 x11: ffffffc082bca680 x10: ffffffc082bb2640 x9 : ffffffc082bb2698 x8 : 0000000000017fe8 x7 : c0000000ffffefff x6 : 0000000000000001 x5 : ffffff8178fe0d48 x4 : 0000000000000000 x3 : 0000000000000027 x2 : ffffff8178fe0d50 x1 : 0000000000000000 x0 : 0000000000000000 Call trace: __mutex_lock+0xd84/0x1068 mutex_lock_nested+0x28/0x34 tc_setup_taprio+0x118/0x68c stmmac_setup_tc+0x50/0xf0 taprio_change+0x868/0xc9c Fixes: b2aae65 ("net: stmmac: add mutex lock to protect est parameters") Signed-off-by: Xiaolei Wang <[email protected]> Reviewed-by: Simon Horman <[email protected]> Reviewed-by: Serge Semin <[email protected]> Reviewed-by: Andrew Halaney <[email protected]> Link: https://lore.kernel.org/r/[email protected] Signed-off-by: Jakub Kicinski <[email protected]>
1 parent 9512515 commit 36ac9e7

File tree

4 files changed

+16
-13
lines changed

4 files changed

+16
-13
lines changed

drivers/net/ethernet/stmicro/stmmac/stmmac.h

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -261,6 +261,8 @@ struct stmmac_priv {
261261
struct stmmac_extra_stats xstats ____cacheline_aligned_in_smp;
262262
struct stmmac_safety_stats sstats;
263263
struct plat_stmmacenet_data *plat;
264+
/* Protect est parameters */
265+
struct mutex est_lock;
264266
struct dma_features dma_cap;
265267
struct stmmac_counters mmc;
266268
int hw_cap_support;

drivers/net/ethernet/stmicro/stmmac/stmmac_ptp.c

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -70,11 +70,11 @@ static int stmmac_adjust_time(struct ptp_clock_info *ptp, s64 delta)
7070
/* If EST is enabled, disabled it before adjust ptp time. */
7171
if (priv->plat->est && priv->plat->est->enable) {
7272
est_rst = true;
73-
mutex_lock(&priv->plat->est->lock);
73+
mutex_lock(&priv->est_lock);
7474
priv->plat->est->enable = false;
7575
stmmac_est_configure(priv, priv, priv->plat->est,
7676
priv->plat->clk_ptp_rate);
77-
mutex_unlock(&priv->plat->est->lock);
77+
mutex_unlock(&priv->est_lock);
7878
}
7979

8080
write_lock_irqsave(&priv->ptp_lock, flags);
@@ -87,7 +87,7 @@ static int stmmac_adjust_time(struct ptp_clock_info *ptp, s64 delta)
8787
ktime_t current_time_ns, basetime;
8888
u64 cycle_time;
8989

90-
mutex_lock(&priv->plat->est->lock);
90+
mutex_lock(&priv->est_lock);
9191
priv->ptp_clock_ops.gettime64(&priv->ptp_clock_ops, &current_time);
9292
current_time_ns = timespec64_to_ktime(current_time);
9393
time.tv_nsec = priv->plat->est->btr_reserve[0];
@@ -104,7 +104,7 @@ static int stmmac_adjust_time(struct ptp_clock_info *ptp, s64 delta)
104104
priv->plat->est->enable = true;
105105
ret = stmmac_est_configure(priv, priv, priv->plat->est,
106106
priv->plat->clk_ptp_rate);
107-
mutex_unlock(&priv->plat->est->lock);
107+
mutex_unlock(&priv->est_lock);
108108
if (ret)
109109
netdev_err(priv->dev, "failed to configure EST\n");
110110
}

drivers/net/ethernet/stmicro/stmmac/stmmac_tc.c

Lines changed: 10 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1004,17 +1004,19 @@ static int tc_taprio_configure(struct stmmac_priv *priv,
10041004
if (!plat->est)
10051005
return -ENOMEM;
10061006

1007-
mutex_init(&priv->plat->est->lock);
1007+
mutex_init(&priv->est_lock);
10081008
} else {
1009+
mutex_lock(&priv->est_lock);
10091010
memset(plat->est, 0, sizeof(*plat->est));
1011+
mutex_unlock(&priv->est_lock);
10101012
}
10111013

10121014
size = qopt->num_entries;
10131015

1014-
mutex_lock(&priv->plat->est->lock);
1016+
mutex_lock(&priv->est_lock);
10151017
priv->plat->est->gcl_size = size;
10161018
priv->plat->est->enable = qopt->cmd == TAPRIO_CMD_REPLACE;
1017-
mutex_unlock(&priv->plat->est->lock);
1019+
mutex_unlock(&priv->est_lock);
10181020

10191021
for (i = 0; i < size; i++) {
10201022
s64 delta_ns = qopt->entries[i].interval;
@@ -1045,7 +1047,7 @@ static int tc_taprio_configure(struct stmmac_priv *priv,
10451047
priv->plat->est->gcl[i] = delta_ns | (gates << wid);
10461048
}
10471049

1048-
mutex_lock(&priv->plat->est->lock);
1050+
mutex_lock(&priv->est_lock);
10491051
/* Adjust for real system time */
10501052
priv->ptp_clock_ops.gettime64(&priv->ptp_clock_ops, &current_time);
10511053
current_time_ns = timespec64_to_ktime(current_time);
@@ -1068,7 +1070,7 @@ static int tc_taprio_configure(struct stmmac_priv *priv,
10681070
tc_taprio_map_maxsdu_txq(priv, qopt);
10691071

10701072
if (fpe && !priv->dma_cap.fpesel) {
1071-
mutex_unlock(&priv->plat->est->lock);
1073+
mutex_unlock(&priv->est_lock);
10721074
return -EOPNOTSUPP;
10731075
}
10741076

@@ -1079,7 +1081,7 @@ static int tc_taprio_configure(struct stmmac_priv *priv,
10791081

10801082
ret = stmmac_est_configure(priv, priv, priv->plat->est,
10811083
priv->plat->clk_ptp_rate);
1082-
mutex_unlock(&priv->plat->est->lock);
1084+
mutex_unlock(&priv->est_lock);
10831085
if (ret) {
10841086
netdev_err(priv->dev, "failed to configure EST\n");
10851087
goto disable;
@@ -1096,7 +1098,7 @@ static int tc_taprio_configure(struct stmmac_priv *priv,
10961098

10971099
disable:
10981100
if (priv->plat->est) {
1099-
mutex_lock(&priv->plat->est->lock);
1101+
mutex_lock(&priv->est_lock);
11001102
priv->plat->est->enable = false;
11011103
stmmac_est_configure(priv, priv, priv->plat->est,
11021104
priv->plat->clk_ptp_rate);
@@ -1105,7 +1107,7 @@ static int tc_taprio_configure(struct stmmac_priv *priv,
11051107
priv->xstats.max_sdu_txq_drop[i] = 0;
11061108
priv->xstats.mtl_est_txq_hlbf[i] = 0;
11071109
}
1108-
mutex_unlock(&priv->plat->est->lock);
1110+
mutex_unlock(&priv->est_lock);
11091111
}
11101112

11111113
priv->plat->fpe_cfg->enable = false;

include/linux/stmmac.h

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,6 @@ struct stmmac_axi {
117117

118118
#define EST_GCL 1024
119119
struct stmmac_est {
120-
struct mutex lock;
121120
int enable;
122121
u32 btr_reserve[2];
123122
u32 btr_offset[2];

0 commit comments

Comments
 (0)