mirror of
https://github.com/torvalds/linux.git
synced 2026-05-26 08:02:27 +02:00
Merge branch 'convert-mlx5e-and-ipoib-to-ndo_hwtstamp_get-set'
Tariq Toukan says: ==================== Convert mlx5e and IPoIB to ndo_hwtstamp_get/set This series by Carolina migrates mlx5e and IPoIB to the ndo_hwtstamp_get/set interface and removes legacy hardware timestamp ioctl handling. While doing so, it also cleans up naming and removes redundant code. No functional change in timestamp behavior. Cleanup patches: - net/mlx5e: Remove redundant tstamp pointer from channel structures - net/mlx5e: Remove unnecessary tstamp local variable in mlx5i_complete_rx_cqe - net/mlx5e: Rename hwstamp functions to hwtstamp - net/mlx5e: Rename timestamp fields to hwtstamp_config Add suppport in ipoib: - IB/IPoIB: Add support for hwtstamp get/set ndos Convert mlx5: - net/mlx5e: Convert to new hwtstamp_get/set interface ==================== Link: https://patch.msgid.link/1761819910-1011051-1-git-send-email-tariqt@nvidia.com Signed-off-by: Jakub Kicinski <kuba@kernel.org>
This commit is contained in:
commit
ab5b76806e
|
|
@ -1825,6 +1825,31 @@ static int ipoib_ioctl(struct net_device *dev, struct ifreq *ifr,
|
|||
return priv->rn_ops->ndo_eth_ioctl(dev, ifr, cmd);
|
||||
}
|
||||
|
||||
static int ipoib_hwtstamp_get(struct net_device *dev,
|
||||
struct kernel_hwtstamp_config *config)
|
||||
{
|
||||
struct ipoib_dev_priv *priv = ipoib_priv(dev);
|
||||
|
||||
if (!priv->rn_ops->ndo_hwtstamp_get)
|
||||
/* legacy */
|
||||
return dev_eth_ioctl(dev, config->ifr, SIOCGHWTSTAMP);
|
||||
|
||||
return priv->rn_ops->ndo_hwtstamp_get(dev, config);
|
||||
}
|
||||
|
||||
static int ipoib_hwtstamp_set(struct net_device *dev,
|
||||
struct kernel_hwtstamp_config *config,
|
||||
struct netlink_ext_ack *extack)
|
||||
{
|
||||
struct ipoib_dev_priv *priv = ipoib_priv(dev);
|
||||
|
||||
if (!priv->rn_ops->ndo_hwtstamp_set)
|
||||
/* legacy */
|
||||
return dev_eth_ioctl(dev, config->ifr, SIOCSHWTSTAMP);
|
||||
|
||||
return priv->rn_ops->ndo_hwtstamp_set(dev, config, extack);
|
||||
}
|
||||
|
||||
static int ipoib_dev_init(struct net_device *dev)
|
||||
{
|
||||
struct ipoib_dev_priv *priv = ipoib_priv(dev);
|
||||
|
|
@ -2149,6 +2174,8 @@ static const struct net_device_ops ipoib_netdev_ops_pf = {
|
|||
.ndo_set_mac_address = ipoib_set_mac,
|
||||
.ndo_get_stats64 = ipoib_get_stats,
|
||||
.ndo_eth_ioctl = ipoib_ioctl,
|
||||
.ndo_hwtstamp_get = ipoib_hwtstamp_get,
|
||||
.ndo_hwtstamp_set = ipoib_hwtstamp_set,
|
||||
};
|
||||
|
||||
static const struct net_device_ops ipoib_netdev_ops_vf = {
|
||||
|
|
@ -2164,6 +2191,8 @@ static const struct net_device_ops ipoib_netdev_ops_vf = {
|
|||
.ndo_get_iflink = ipoib_get_iflink,
|
||||
.ndo_get_stats64 = ipoib_get_stats,
|
||||
.ndo_eth_ioctl = ipoib_ioctl,
|
||||
.ndo_hwtstamp_get = ipoib_hwtstamp_get,
|
||||
.ndo_hwtstamp_set = ipoib_hwtstamp_set,
|
||||
};
|
||||
|
||||
static const struct net_device_ops ipoib_netdev_default_pf = {
|
||||
|
|
|
|||
|
|
@ -696,7 +696,7 @@ struct mlx5e_rq {
|
|||
struct mlx5e_rq_stats *stats;
|
||||
struct mlx5e_cq cq;
|
||||
struct mlx5e_cq_decomp cqd;
|
||||
struct hwtstamp_config *tstamp;
|
||||
struct kernel_hwtstamp_config *hwtstamp_config;
|
||||
struct mlx5_clock *clock;
|
||||
struct mlx5e_icosq *icosq;
|
||||
struct mlx5e_priv *priv;
|
||||
|
|
@ -784,7 +784,6 @@ struct mlx5e_channel {
|
|||
/* control */
|
||||
struct mlx5e_priv *priv;
|
||||
struct mlx5_core_dev *mdev;
|
||||
struct hwtstamp_config *tstamp;
|
||||
DECLARE_BITMAP(state, MLX5E_CHANNEL_NUM_STATES);
|
||||
int ix;
|
||||
int vec_ix;
|
||||
|
|
@ -918,7 +917,7 @@ struct mlx5e_priv {
|
|||
u8 max_opened_tc;
|
||||
bool tx_ptp_opened;
|
||||
bool rx_ptp_opened;
|
||||
struct hwtstamp_config tstamp;
|
||||
struct kernel_hwtstamp_config hwtstamp_config;
|
||||
u16 q_counter[MLX5_SD_MAX_GROUP_SZ];
|
||||
u16 drop_rq_q_counter;
|
||||
struct notifier_block events_nb;
|
||||
|
|
@ -1027,8 +1026,11 @@ void mlx5e_self_test(struct net_device *ndev, struct ethtool_test *etest,
|
|||
u64 *buf);
|
||||
void mlx5e_set_rx_mode_work(struct work_struct *work);
|
||||
|
||||
int mlx5e_hwstamp_set(struct mlx5e_priv *priv, struct ifreq *ifr);
|
||||
int mlx5e_hwstamp_get(struct mlx5e_priv *priv, struct ifreq *ifr);
|
||||
int mlx5e_hwtstamp_set(struct mlx5e_priv *priv,
|
||||
struct kernel_hwtstamp_config *config,
|
||||
struct netlink_ext_ack *extack);
|
||||
int mlx5e_hwtstamp_get(struct mlx5e_priv *priv,
|
||||
struct kernel_hwtstamp_config *config);
|
||||
int mlx5e_modify_rx_cqe_compression_locked(struct mlx5e_priv *priv, bool val, bool rx_filter);
|
||||
|
||||
int mlx5e_vlan_rx_add_vid(struct net_device *dev, __always_unused __be16 proto,
|
||||
|
|
|
|||
|
|
@ -713,7 +713,7 @@ static int mlx5e_init_ptp_rq(struct mlx5e_ptp *c, struct mlx5e_params *params,
|
|||
rq->netdev = priv->netdev;
|
||||
rq->priv = priv;
|
||||
rq->clock = mdev->clock;
|
||||
rq->tstamp = &priv->tstamp;
|
||||
rq->hwtstamp_config = &priv->hwtstamp_config;
|
||||
rq->mdev = mdev;
|
||||
rq->hw_mtu = MLX5E_SW2HW_MTU(params, params->sw_mtu);
|
||||
rq->stats = &c->priv->ptp_stats.rq;
|
||||
|
|
@ -896,7 +896,6 @@ int mlx5e_ptp_open(struct mlx5e_priv *priv, struct mlx5e_params *params,
|
|||
|
||||
c->priv = priv;
|
||||
c->mdev = priv->mdev;
|
||||
c->tstamp = &priv->tstamp;
|
||||
c->pdev = mlx5_core_dma_dev(priv->mdev);
|
||||
c->netdev = priv->netdev;
|
||||
c->mkey_be = cpu_to_be32(priv->mdev->mlx5e_res.hw_objs.mkey);
|
||||
|
|
|
|||
|
|
@ -64,7 +64,6 @@ struct mlx5e_ptp {
|
|||
/* control */
|
||||
struct mlx5e_priv *priv;
|
||||
struct mlx5_core_dev *mdev;
|
||||
struct hwtstamp_config *tstamp;
|
||||
DECLARE_BITMAP(state, MLX5E_PTP_STATE_NUM_STATES);
|
||||
struct mlx5_sq_bfreg *bfreg;
|
||||
};
|
||||
|
|
|
|||
|
|
@ -318,7 +318,8 @@ mlx5e_rx_reporter_diagnose_common_ptp_config(struct mlx5e_priv *priv, struct mlx
|
|||
struct devlink_fmsg *fmsg)
|
||||
{
|
||||
mlx5e_health_fmsg_named_obj_nest_start(fmsg, "PTP");
|
||||
devlink_fmsg_u32_pair_put(fmsg, "filter_type", priv->tstamp.rx_filter);
|
||||
devlink_fmsg_u32_pair_put(fmsg, "filter_type",
|
||||
priv->hwtstamp_config.rx_filter);
|
||||
mlx5e_rx_reporter_diagnose_generic_rq(&ptp_ch->rq, fmsg);
|
||||
mlx5e_health_fmsg_named_obj_nest_end(fmsg);
|
||||
}
|
||||
|
|
|
|||
|
|
@ -47,7 +47,7 @@ static void mlx5e_init_trap_rq(struct mlx5e_trap *t, struct mlx5e_params *params
|
|||
rq->netdev = priv->netdev;
|
||||
rq->priv = priv;
|
||||
rq->clock = mdev->clock;
|
||||
rq->tstamp = &priv->tstamp;
|
||||
rq->hwtstamp_config = &priv->hwtstamp_config;
|
||||
rq->mdev = mdev;
|
||||
rq->hw_mtu = MLX5E_SW2HW_MTU(params, params->sw_mtu);
|
||||
rq->stats = &priv->trap_stats.rq;
|
||||
|
|
@ -144,7 +144,6 @@ static struct mlx5e_trap *mlx5e_open_trap(struct mlx5e_priv *priv)
|
|||
|
||||
t->priv = priv;
|
||||
t->mdev = priv->mdev;
|
||||
t->tstamp = &priv->tstamp;
|
||||
t->pdev = mlx5_core_dma_dev(priv->mdev);
|
||||
t->netdev = priv->netdev;
|
||||
t->mkey_be = cpu_to_be32(priv->mdev->mlx5e_res.hw_objs.mkey);
|
||||
|
|
|
|||
|
|
@ -22,7 +22,6 @@ struct mlx5e_trap {
|
|||
/* control */
|
||||
struct mlx5e_priv *priv;
|
||||
struct mlx5_core_dev *mdev;
|
||||
struct hwtstamp_config *tstamp;
|
||||
DECLARE_BITMAP(state, MLX5E_CHANNEL_NUM_STATES);
|
||||
|
||||
struct mlx5e_params params;
|
||||
|
|
|
|||
|
|
@ -92,7 +92,7 @@ int mlx5e_poll_rx_cq(struct mlx5e_cq *cq, int budget);
|
|||
void mlx5e_free_rx_descs(struct mlx5e_rq *rq);
|
||||
void mlx5e_free_rx_missing_descs(struct mlx5e_rq *rq);
|
||||
|
||||
static inline bool mlx5e_rx_hw_stamp(struct hwtstamp_config *config)
|
||||
static inline bool mlx5e_rx_hw_stamp(struct kernel_hwtstamp_config *config)
|
||||
{
|
||||
return config->rx_filter == HWTSTAMP_FILTER_ALL;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -179,7 +179,7 @@ static int mlx5e_xdp_rx_timestamp(const struct xdp_md *ctx, u64 *timestamp)
|
|||
{
|
||||
const struct mlx5e_xdp_buff *_ctx = (void *)ctx;
|
||||
|
||||
if (unlikely(!mlx5e_rx_hw_stamp(_ctx->rq->tstamp)))
|
||||
if (unlikely(!mlx5e_rx_hw_stamp(_ctx->rq->hwtstamp_config)))
|
||||
return -ENODATA;
|
||||
|
||||
*timestamp = mlx5e_cqe_ts_to_ns(_ctx->rq->ptp_cyc2time,
|
||||
|
|
|
|||
|
|
@ -71,7 +71,7 @@ static int mlx5e_init_xsk_rq(struct mlx5e_channel *c,
|
|||
rq->pdev = c->pdev;
|
||||
rq->netdev = c->netdev;
|
||||
rq->priv = c->priv;
|
||||
rq->tstamp = c->tstamp;
|
||||
rq->hwtstamp_config = &c->priv->hwtstamp_config;
|
||||
rq->clock = mdev->clock;
|
||||
rq->icosq = &c->icosq;
|
||||
rq->ix = c->ix;
|
||||
|
|
|
|||
|
|
@ -2273,7 +2273,7 @@ static int set_pflag_rx_cqe_compress(struct net_device *netdev,
|
|||
if (!MLX5_CAP_GEN(mdev, cqe_compression))
|
||||
return -EOPNOTSUPP;
|
||||
|
||||
rx_filter = priv->tstamp.rx_filter != HWTSTAMP_FILTER_NONE;
|
||||
rx_filter = priv->hwtstamp_config.rx_filter != HWTSTAMP_FILTER_NONE;
|
||||
err = mlx5e_modify_rx_cqe_compression_locked(priv, enable, rx_filter);
|
||||
if (err)
|
||||
return err;
|
||||
|
|
|
|||
|
|
@ -735,7 +735,7 @@ static int mlx5e_init_rxq_rq(struct mlx5e_channel *c, struct mlx5e_params *param
|
|||
rq->pdev = c->pdev;
|
||||
rq->netdev = c->netdev;
|
||||
rq->priv = c->priv;
|
||||
rq->tstamp = c->tstamp;
|
||||
rq->hwtstamp_config = &c->priv->hwtstamp_config;
|
||||
rq->clock = mdev->clock;
|
||||
rq->icosq = &c->icosq;
|
||||
rq->ix = c->ix;
|
||||
|
|
@ -2803,7 +2803,6 @@ static int mlx5e_open_channel(struct mlx5e_priv *priv, int ix,
|
|||
|
||||
c->priv = priv;
|
||||
c->mdev = mdev;
|
||||
c->tstamp = &priv->tstamp;
|
||||
c->ix = ix;
|
||||
c->vec_ix = vec_ix;
|
||||
c->sd_ix = mlx5_sd_ch_ix_get_dev_ix(mdev, ix);
|
||||
|
|
@ -3445,8 +3444,8 @@ int mlx5e_safe_reopen_channels(struct mlx5e_priv *priv)
|
|||
|
||||
void mlx5e_timestamp_init(struct mlx5e_priv *priv)
|
||||
{
|
||||
priv->tstamp.tx_type = HWTSTAMP_TX_OFF;
|
||||
priv->tstamp.rx_filter = HWTSTAMP_FILTER_NONE;
|
||||
priv->hwtstamp_config.tx_type = HWTSTAMP_TX_OFF;
|
||||
priv->hwtstamp_config.rx_filter = HWTSTAMP_FILTER_NONE;
|
||||
}
|
||||
|
||||
static void mlx5e_modify_admin_state(struct mlx5_core_dev *mdev,
|
||||
|
|
@ -4741,22 +4740,23 @@ static int mlx5e_hwstamp_config_ptp_rx(struct mlx5e_priv *priv, bool ptp_rx)
|
|||
&new_params.ptp_rx, true);
|
||||
}
|
||||
|
||||
int mlx5e_hwstamp_set(struct mlx5e_priv *priv, struct ifreq *ifr)
|
||||
int mlx5e_hwtstamp_set(struct mlx5e_priv *priv,
|
||||
struct kernel_hwtstamp_config *config,
|
||||
struct netlink_ext_ack *extack)
|
||||
{
|
||||
struct hwtstamp_config config;
|
||||
bool rx_cqe_compress_def;
|
||||
bool ptp_rx;
|
||||
int err;
|
||||
|
||||
if (!MLX5_CAP_GEN(priv->mdev, device_frequency_khz) ||
|
||||
(mlx5_clock_get_ptp_index(priv->mdev) == -1))
|
||||
(mlx5_clock_get_ptp_index(priv->mdev) == -1)) {
|
||||
NL_SET_ERR_MSG_MOD(extack,
|
||||
"Timestamps are not supported on this device");
|
||||
return -EOPNOTSUPP;
|
||||
|
||||
if (copy_from_user(&config, ifr->ifr_data, sizeof(config)))
|
||||
return -EFAULT;
|
||||
}
|
||||
|
||||
/* TX HW timestamp */
|
||||
switch (config.tx_type) {
|
||||
switch (config->tx_type) {
|
||||
case HWTSTAMP_TX_OFF:
|
||||
case HWTSTAMP_TX_ON:
|
||||
break;
|
||||
|
|
@ -4768,7 +4768,7 @@ int mlx5e_hwstamp_set(struct mlx5e_priv *priv, struct ifreq *ifr)
|
|||
rx_cqe_compress_def = priv->channels.params.rx_cqe_compress_def;
|
||||
|
||||
/* RX HW timestamp */
|
||||
switch (config.rx_filter) {
|
||||
switch (config->rx_filter) {
|
||||
case HWTSTAMP_FILTER_NONE:
|
||||
ptp_rx = false;
|
||||
break;
|
||||
|
|
@ -4787,7 +4787,7 @@ int mlx5e_hwstamp_set(struct mlx5e_priv *priv, struct ifreq *ifr)
|
|||
case HWTSTAMP_FILTER_PTP_V2_SYNC:
|
||||
case HWTSTAMP_FILTER_PTP_V2_DELAY_REQ:
|
||||
case HWTSTAMP_FILTER_NTP_ALL:
|
||||
config.rx_filter = HWTSTAMP_FILTER_ALL;
|
||||
config->rx_filter = HWTSTAMP_FILTER_ALL;
|
||||
/* ptp_rx is set if both HW TS is set and CQE
|
||||
* compression is set
|
||||
*/
|
||||
|
|
@ -4800,47 +4800,50 @@ int mlx5e_hwstamp_set(struct mlx5e_priv *priv, struct ifreq *ifr)
|
|||
|
||||
if (!mlx5e_profile_feature_cap(priv->profile, PTP_RX))
|
||||
err = mlx5e_hwstamp_config_no_ptp_rx(priv,
|
||||
config.rx_filter != HWTSTAMP_FILTER_NONE);
|
||||
config->rx_filter != HWTSTAMP_FILTER_NONE);
|
||||
else
|
||||
err = mlx5e_hwstamp_config_ptp_rx(priv, ptp_rx);
|
||||
if (err)
|
||||
goto err_unlock;
|
||||
|
||||
memcpy(&priv->tstamp, &config, sizeof(config));
|
||||
priv->hwtstamp_config = *config;
|
||||
mutex_unlock(&priv->state_lock);
|
||||
|
||||
/* might need to fix some features */
|
||||
netdev_update_features(priv->netdev);
|
||||
|
||||
return copy_to_user(ifr->ifr_data, &config,
|
||||
sizeof(config)) ? -EFAULT : 0;
|
||||
return 0;
|
||||
err_unlock:
|
||||
mutex_unlock(&priv->state_lock);
|
||||
return err;
|
||||
}
|
||||
|
||||
int mlx5e_hwstamp_get(struct mlx5e_priv *priv, struct ifreq *ifr)
|
||||
static int mlx5e_hwtstamp_set_ndo(struct net_device *netdev,
|
||||
struct kernel_hwtstamp_config *config,
|
||||
struct netlink_ext_ack *extack)
|
||||
{
|
||||
struct hwtstamp_config *cfg = &priv->tstamp;
|
||||
struct mlx5e_priv *priv = netdev_priv(netdev);
|
||||
|
||||
return mlx5e_hwtstamp_set(priv, config, extack);
|
||||
}
|
||||
|
||||
int mlx5e_hwtstamp_get(struct mlx5e_priv *priv,
|
||||
struct kernel_hwtstamp_config *config)
|
||||
{
|
||||
if (!MLX5_CAP_GEN(priv->mdev, device_frequency_khz))
|
||||
return -EOPNOTSUPP;
|
||||
|
||||
return copy_to_user(ifr->ifr_data, cfg, sizeof(*cfg)) ? -EFAULT : 0;
|
||||
*config = priv->hwtstamp_config;
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
static int mlx5e_ioctl(struct net_device *dev, struct ifreq *ifr, int cmd)
|
||||
static int mlx5e_hwtstamp_get_ndo(struct net_device *dev,
|
||||
struct kernel_hwtstamp_config *config)
|
||||
{
|
||||
struct mlx5e_priv *priv = netdev_priv(dev);
|
||||
|
||||
switch (cmd) {
|
||||
case SIOCSHWTSTAMP:
|
||||
return mlx5e_hwstamp_set(priv, ifr);
|
||||
case SIOCGHWTSTAMP:
|
||||
return mlx5e_hwstamp_get(priv, ifr);
|
||||
default:
|
||||
return -EOPNOTSUPP;
|
||||
}
|
||||
return mlx5e_hwtstamp_get(priv, config);
|
||||
}
|
||||
|
||||
#ifdef CONFIG_MLX5_ESWITCH
|
||||
|
|
@ -5281,13 +5284,14 @@ const struct net_device_ops mlx5e_netdev_ops = {
|
|||
.ndo_set_features = mlx5e_set_features,
|
||||
.ndo_fix_features = mlx5e_fix_features,
|
||||
.ndo_change_mtu = mlx5e_change_nic_mtu,
|
||||
.ndo_eth_ioctl = mlx5e_ioctl,
|
||||
.ndo_set_tx_maxrate = mlx5e_set_tx_maxrate,
|
||||
.ndo_features_check = mlx5e_features_check,
|
||||
.ndo_tx_timeout = mlx5e_tx_timeout,
|
||||
.ndo_bpf = mlx5e_xdp,
|
||||
.ndo_xdp_xmit = mlx5e_xdp_xmit,
|
||||
.ndo_xsk_wakeup = mlx5e_xsk_wakeup,
|
||||
.ndo_hwtstamp_get = mlx5e_hwtstamp_get_ndo,
|
||||
.ndo_hwtstamp_set = mlx5e_hwtstamp_set_ndo,
|
||||
#ifdef CONFIG_MLX5_EN_ARFS
|
||||
.ndo_rx_flow_steer = mlx5e_rx_flow_steer,
|
||||
#endif
|
||||
|
|
|
|||
|
|
@ -1602,7 +1602,7 @@ static inline bool mlx5e_build_rx_skb(struct mlx5_cqe64 *cqe,
|
|||
stats->lro_bytes += cqe_bcnt;
|
||||
}
|
||||
|
||||
if (unlikely(mlx5e_rx_hw_stamp(rq->tstamp)))
|
||||
if (unlikely(mlx5e_rx_hw_stamp(rq->hwtstamp_config)))
|
||||
skb_hwtstamps(skb)->hwtstamp = mlx5e_cqe_ts_to_ns(rq->ptp_cyc2time,
|
||||
rq->clock, get_cqe_ts(cqe));
|
||||
skb_record_rx_queue(skb, rq->ix);
|
||||
|
|
@ -2650,7 +2650,6 @@ static inline void mlx5i_complete_rx_cqe(struct mlx5e_rq *rq,
|
|||
u32 cqe_bcnt,
|
||||
struct sk_buff *skb)
|
||||
{
|
||||
struct hwtstamp_config *tstamp;
|
||||
struct mlx5e_rq_stats *stats;
|
||||
struct net_device *netdev;
|
||||
struct mlx5e_priv *priv;
|
||||
|
|
@ -2674,7 +2673,6 @@ static inline void mlx5i_complete_rx_cqe(struct mlx5e_rq *rq,
|
|||
}
|
||||
|
||||
priv = mlx5i_epriv(netdev);
|
||||
tstamp = &priv->tstamp;
|
||||
stats = &priv->channel_stats[rq->ix]->rq;
|
||||
|
||||
flags_rqpn = be32_to_cpu(cqe->flags_rqpn);
|
||||
|
|
@ -2710,7 +2708,7 @@ static inline void mlx5i_complete_rx_cqe(struct mlx5e_rq *rq,
|
|||
stats->csum_none++;
|
||||
}
|
||||
|
||||
if (unlikely(mlx5e_rx_hw_stamp(tstamp)))
|
||||
if (unlikely(mlx5e_rx_hw_stamp(&priv->hwtstamp_config)))
|
||||
skb_hwtstamps(skb)->hwtstamp = mlx5e_cqe_ts_to_ns(rq->ptp_cyc2time,
|
||||
rq->clock, get_cqe_ts(cqe));
|
||||
skb_record_rx_queue(skb, rq->ix);
|
||||
|
|
|
|||
|
|
@ -45,6 +45,23 @@ static int mlx5i_open(struct net_device *netdev);
|
|||
static int mlx5i_close(struct net_device *netdev);
|
||||
static int mlx5i_change_mtu(struct net_device *netdev, int new_mtu);
|
||||
|
||||
int mlx5i_hwtstamp_set(struct net_device *dev,
|
||||
struct kernel_hwtstamp_config *config,
|
||||
struct netlink_ext_ack *extack)
|
||||
{
|
||||
struct mlx5e_priv *epriv = mlx5i_epriv(dev);
|
||||
|
||||
return mlx5e_hwtstamp_set(epriv, config, extack);
|
||||
}
|
||||
|
||||
int mlx5i_hwtstamp_get(struct net_device *dev,
|
||||
struct kernel_hwtstamp_config *config)
|
||||
{
|
||||
struct mlx5e_priv *epriv = mlx5i_epriv(dev);
|
||||
|
||||
return mlx5e_hwtstamp_get(epriv, config);
|
||||
}
|
||||
|
||||
static const struct net_device_ops mlx5i_netdev_ops = {
|
||||
.ndo_open = mlx5i_open,
|
||||
.ndo_stop = mlx5i_close,
|
||||
|
|
@ -52,7 +69,8 @@ static const struct net_device_ops mlx5i_netdev_ops = {
|
|||
.ndo_init = mlx5i_dev_init,
|
||||
.ndo_uninit = mlx5i_dev_cleanup,
|
||||
.ndo_change_mtu = mlx5i_change_mtu,
|
||||
.ndo_eth_ioctl = mlx5i_ioctl,
|
||||
.ndo_hwtstamp_get = mlx5i_hwtstamp_get,
|
||||
.ndo_hwtstamp_set = mlx5i_hwtstamp_set,
|
||||
};
|
||||
|
||||
/* IPoIB mlx5 netdev profile */
|
||||
|
|
@ -557,20 +575,6 @@ int mlx5i_dev_init(struct net_device *dev)
|
|||
return 0;
|
||||
}
|
||||
|
||||
int mlx5i_ioctl(struct net_device *dev, struct ifreq *ifr, int cmd)
|
||||
{
|
||||
struct mlx5e_priv *priv = mlx5i_epriv(dev);
|
||||
|
||||
switch (cmd) {
|
||||
case SIOCSHWTSTAMP:
|
||||
return mlx5e_hwstamp_set(priv, ifr);
|
||||
case SIOCGHWTSTAMP:
|
||||
return mlx5e_hwstamp_get(priv, ifr);
|
||||
default:
|
||||
return -EOPNOTSUPP;
|
||||
}
|
||||
}
|
||||
|
||||
void mlx5i_dev_cleanup(struct net_device *dev)
|
||||
{
|
||||
struct mlx5e_priv *priv = mlx5i_epriv(dev);
|
||||
|
|
|
|||
|
|
@ -88,7 +88,11 @@ struct net_device *mlx5i_pkey_get_netdev(struct net_device *netdev, u32 qpn);
|
|||
/* Shared ndo functions */
|
||||
int mlx5i_dev_init(struct net_device *dev);
|
||||
void mlx5i_dev_cleanup(struct net_device *dev);
|
||||
int mlx5i_ioctl(struct net_device *dev, struct ifreq *ifr, int cmd);
|
||||
int mlx5i_hwtstamp_set(struct net_device *dev,
|
||||
struct kernel_hwtstamp_config *config,
|
||||
struct netlink_ext_ack *extack);
|
||||
int mlx5i_hwtstamp_get(struct net_device *dev,
|
||||
struct kernel_hwtstamp_config *config);
|
||||
|
||||
/* Parent profile functions */
|
||||
int mlx5i_init(struct mlx5_core_dev *mdev, struct net_device *netdev);
|
||||
|
|
|
|||
|
|
@ -140,7 +140,6 @@ static int mlx5i_pkey_close(struct net_device *netdev);
|
|||
static int mlx5i_pkey_dev_init(struct net_device *dev);
|
||||
static void mlx5i_pkey_dev_cleanup(struct net_device *netdev);
|
||||
static int mlx5i_pkey_change_mtu(struct net_device *netdev, int new_mtu);
|
||||
static int mlx5i_pkey_ioctl(struct net_device *dev, struct ifreq *ifr, int cmd);
|
||||
|
||||
static const struct net_device_ops mlx5i_pkey_netdev_ops = {
|
||||
.ndo_open = mlx5i_pkey_open,
|
||||
|
|
@ -149,7 +148,8 @@ static const struct net_device_ops mlx5i_pkey_netdev_ops = {
|
|||
.ndo_get_stats64 = mlx5i_get_stats,
|
||||
.ndo_uninit = mlx5i_pkey_dev_cleanup,
|
||||
.ndo_change_mtu = mlx5i_pkey_change_mtu,
|
||||
.ndo_eth_ioctl = mlx5i_pkey_ioctl,
|
||||
.ndo_hwtstamp_get = mlx5i_hwtstamp_get,
|
||||
.ndo_hwtstamp_set = mlx5i_hwtstamp_set,
|
||||
};
|
||||
|
||||
/* Child NDOs */
|
||||
|
|
@ -184,11 +184,6 @@ static int mlx5i_pkey_dev_init(struct net_device *dev)
|
|||
return mlx5i_dev_init(dev);
|
||||
}
|
||||
|
||||
static int mlx5i_pkey_ioctl(struct net_device *dev, struct ifreq *ifr, int cmd)
|
||||
{
|
||||
return mlx5i_ioctl(dev, ifr, cmd);
|
||||
}
|
||||
|
||||
static void mlx5i_pkey_dev_cleanup(struct net_device *netdev)
|
||||
{
|
||||
mlx5i_parent_put(netdev);
|
||||
|
|
|
|||
|
|
@ -54,7 +54,6 @@ struct mlx5_timer {
|
|||
|
||||
struct mlx5_clock {
|
||||
seqlock_t lock;
|
||||
struct hwtstamp_config hwtstamp_config;
|
||||
struct ptp_clock *ptp;
|
||||
struct ptp_clock_info ptp_info;
|
||||
struct mlx5_pps pps_info;
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user