summaryrefslogtreecommitdiffstats
path: root/drivers/net/ethernet/mellanox/mlx5/core/ipoib/ipoib.c
diff options
context:
space:
mode:
authorFeras Daoud <ferasda@mellanox.com>2017-06-01 14:43:43 +0300
committerSaeed Mahameed <saeedm@mellanox.com>2017-06-19 18:40:20 +0300
commit3844b07ee4c96d0cf8886611c21bb3a367b759e1 (patch)
tree85d677a28f9166caa2c8f64bd8cab227c42127f0 /drivers/net/ethernet/mellanox/mlx5/core/ipoib/ipoib.c
parent4ec5cf781b13ef9bcacfd96e108adb61629aa97a (diff)
downloadlinux-stable-3844b07ee4c96d0cf8886611c21bb3a367b759e1.tar.gz
linux-stable-3844b07ee4c96d0cf8886611c21bb3a367b759e1.tar.bz2
linux-stable-3844b07ee4c96d0cf8886611c21bb3a367b759e1.zip
net/mlx5e: IPoIB, Add PTP support to IPoIB device driver
Enable PTP for IPoIB rdma_netdev and add the ability to get the time stamping parameters using ethtool. Signed-off-by: Feras Daoud <ferasda@mellanox.com> Signed-off-by: Eitan Rabin <rabin@mellanox.com> Signed-off-by: Saeed Mahameed <saeedm@mellanox.com>
Diffstat (limited to 'drivers/net/ethernet/mellanox/mlx5/core/ipoib/ipoib.c')
-rw-r--r--drivers/net/ethernet/mellanox/mlx5/core/ipoib/ipoib.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/net/ethernet/mellanox/mlx5/core/ipoib/ipoib.c b/drivers/net/ethernet/mellanox/mlx5/core/ipoib/ipoib.c
index 52a58af571a2..58bf0665f50b 100644
--- a/drivers/net/ethernet/mellanox/mlx5/core/ipoib/ipoib.c
+++ b/drivers/net/ethernet/mellanox/mlx5/core/ipoib/ipoib.c
@@ -382,6 +382,7 @@ static int mlx5i_open(struct net_device *netdev)
mlx5e_refresh_tirs(priv, false);
mlx5e_activate_priv_channels(priv);
+ mlx5e_timestamp_init(priv);
mutex_unlock(&priv->state_lock);
return 0;
@@ -406,6 +407,7 @@ static int mlx5i_close(struct net_device *netdev)
clear_bit(MLX5E_STATE_OPENED, &priv->state);
+ mlx5e_timestamp_cleanup(priv);
netif_carrier_off(priv->netdev);
mlx5e_deactivate_priv_channels(priv);
mlx5e_close_channels(&priv->channels);