aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRadu Bulie <radu-andrei.bulie@nxp.com>2022-02-14 19:45:34 +0200
committerDavid S. Miller <davem@davemloft.net>2022-02-15 14:33:30 +0000
commit07dd44852be89386ab12210df90a2d78779f3bff (patch)
treed8f0794deeed5bbacb7a6bba5fc71aee04674b09
parentdpaa2-switch: fix default return of dpaa2_switch_flower_parse_mirror_key (diff)
downloadlinux-dev-07dd44852be89386ab12210df90a2d78779f3bff.tar.xz
linux-dev-07dd44852be89386ab12210df90a2d78779f3bff.zip
dpaa2-eth: Initialize mutex used in one step timestamping path
1588 Single Step Timestamping code path uses a mutex to enforce atomicity for two events: - update of ptp single step register - transmit ptp event packet Before this patch the mutex was not initialized. This caused unexpected crashes in the Tx function. Fixes: c55211892f463 ("dpaa2-eth: support PTP Sync packet one-step timestamping") Signed-off-by: Radu Bulie <radu-andrei.bulie@nxp.com> Reviewed-by: Ioana Ciornei <ioana.ciornei@nxp.com> Signed-off-by: David S. Miller <davem@davemloft.net>
-rw-r--r--drivers/net/ethernet/freescale/dpaa2/dpaa2-eth.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/ethernet/freescale/dpaa2/dpaa2-eth.c b/drivers/net/ethernet/freescale/dpaa2/dpaa2-eth.c
index dd9385d15f6b..0f90d2d5bb60 100644
--- a/drivers/net/ethernet/freescale/dpaa2/dpaa2-eth.c
+++ b/drivers/net/ethernet/freescale/dpaa2/dpaa2-eth.c
@@ -4338,7 +4338,7 @@ static int dpaa2_eth_probe(struct fsl_mc_device *dpni_dev)
}
INIT_WORK(&priv->tx_onestep_tstamp, dpaa2_eth_tx_onestep_tstamp);
-
+ mutex_init(&priv->onestep_tstamp_lock);
skb_queue_head_init(&priv->tx_skbs);
priv->rx_copybreak = DPAA2_ETH_DEFAULT_COPYBREAK;