From: Adrien Mazarguil Date: Tue, 5 Sep 2017 12:56:38 +0000 (+0200) Subject: net/mlx4: fix rescheduled link status check X-Git-Tag: spdx-start~1981 X-Git-Url: http://git.droids-corp.org/?a=commitdiff_plain;h=258937a3fde73f390aeb7a598718b2432b158bfd;p=dpdk.git net/mlx4: fix rescheduled link status check Link status is sometimes inconsistent during a LSC event. When it occurs, the PMD refrains from immediately notifying the application; instead, an alarm is scheduled to check link status later and notify the application once it has settled. The problem is that subsequent link status checks are only performed if additional LSC events occur in the meantime, which is not always the case. Worse, since support for removal events was added, rescheduled link status checks may consume them as well without notifying the application. With the right timing, a link loss occurring just before a device removal event may hide it from the application. Fixes: 6dd7b7056d7f ("net/mlx4: support device removal event") Fixes: 2d449f7c52de ("net/mlx4: fix assertion failure on link update") Cc: stable@dpdk.org Reported-by: Matan Azrad Signed-off-by: Adrien Mazarguil --- diff --git a/drivers/net/mlx4/mlx4_intr.c b/drivers/net/mlx4/mlx4_intr.c index d7f10989d2..e1e6c05f0c 100644 --- a/drivers/net/mlx4/mlx4_intr.c +++ b/drivers/net/mlx4/mlx4_intr.c @@ -59,7 +59,7 @@ #include "mlx4_rxtx.h" #include "mlx4_utils.h" -static void mlx4_link_status_alarm(struct priv *priv); +static int mlx4_link_status_check(struct priv *priv); /** * Clean up Rx interrupts handler. @@ -149,8 +149,6 @@ static int mlx4_collect_interrupt_events(struct priv *priv, uint32_t *events) { struct ibv_async_event event; - int port_change = 0; - struct rte_eth_link *link = &priv->dev->data->dev_link; const struct rte_intr_conf *const intr_conf = &priv->dev->data->dev_conf.intr_conf; int ret = 0; @@ -163,9 +161,9 @@ mlx4_collect_interrupt_events(struct priv *priv, uint32_t *events) switch (event.event_type) { case IBV_EVENT_PORT_ACTIVE: case IBV_EVENT_PORT_ERR: - if (!intr_conf->lsc) + if (!intr_conf->lsc || mlx4_link_status_check(priv)) break; - port_change = 1; + *events |= (1 << RTE_ETH_EVENT_INTR_LSC); ret++; break; case IBV_EVENT_DEVICE_FATAL: @@ -180,46 +178,69 @@ mlx4_collect_interrupt_events(struct priv *priv, uint32_t *events) } ibv_ack_async_event(&event); } - if (!port_change) - return ret; - mlx4_link_update(priv->dev, 0); - if (((link->link_speed == 0) && link->link_status) || - ((link->link_speed != 0) && !link->link_status)) { - if (!priv->intr_alarm) { - /* Inconsistent status, check again later. */ - priv->intr_alarm = 1; - rte_eal_alarm_set(MLX4_INTR_ALARM_TIMEOUT, - (void (*)(void *)) - mlx4_link_status_alarm, - priv); - } - } else { - *events |= (1 << RTE_ETH_EVENT_INTR_LSC); - } return ret; } /** * Process scheduled link status check. * + * If LSC interrupts are requested, process related callback. + * * @param priv * Pointer to private structure. */ static void mlx4_link_status_alarm(struct priv *priv) { - uint32_t events; - int ret; + const struct rte_intr_conf *const intr_conf = + &priv->dev->data->dev_conf.intr_conf; assert(priv->intr_alarm == 1); priv->intr_alarm = 0; - ret = mlx4_collect_interrupt_events(priv, &events); - if (ret > 0 && events & (1 << RTE_ETH_EVENT_INTR_LSC)) + if (intr_conf->lsc && !mlx4_link_status_check(priv)) _rte_eth_dev_callback_process(priv->dev, RTE_ETH_EVENT_INTR_LSC, NULL, NULL); } +/** + * Check link status. + * + * In case of inconsistency, another check is scheduled. + * + * @param priv + * Pointer to private structure. + * + * @return + * 0 on success (link status is consistent), negative errno value + * otherwise and rte_errno is set. + */ +static int +mlx4_link_status_check(struct priv *priv) +{ + struct rte_eth_link *link = &priv->dev->data->dev_link; + int ret = mlx4_link_update(priv->dev, 0); + + if (ret) + return ret; + if ((!link->link_speed && link->link_status) || + (link->link_speed && !link->link_status)) { + if (!priv->intr_alarm) { + /* Inconsistent status, check again later. */ + ret = rte_eal_alarm_set(MLX4_INTR_ALARM_TIMEOUT, + (void (*)(void *)) + mlx4_link_status_alarm, + priv); + if (ret) + return ret; + priv->intr_alarm = 1; + } + rte_errno = EINPROGRESS; + return -rte_errno; + } + return 0; +} + /** * Handle interrupts from the NIC. *