Author: hselasky
Date: Wed May  8 10:30:18 2019
New Revision: 347252
URL: https://svnweb.freebsd.org/changeset/base/347252

Log:
  Disable all MSIX interrupts before shutdown in mlx5.
  
  Make sure the interrupt handlers don't race with the fast unload one
  code in the shutdown handler.
  
  MFC after:    3 days
  Sponsored by: Mellanox Technologies

Modified:
  head/sys/dev/mlx5/driver.h
  head/sys/dev/mlx5/mlx5_core/mlx5_cmd.c
  head/sys/dev/mlx5/mlx5_core/mlx5_eq.c
  head/sys/dev/mlx5/mlx5_core/mlx5_main.c

Modified: head/sys/dev/mlx5/driver.h
==============================================================================
--- head/sys/dev/mlx5/driver.h  Wed May  8 10:29:45 2019        (r347251)
+++ head/sys/dev/mlx5/driver.h  Wed May  8 10:30:18 2019        (r347252)
@@ -606,6 +606,7 @@ struct mlx5_priv {
        struct mlx5_irq_info    *irq_info;
        struct mlx5_uuar_info   uuari;
        MLX5_DECLARE_DOORBELL_LOCK(cq_uar_lock);
+       int                     disable_irqs;
 
        struct io_mapping       *bf_mapping;
 

Modified: head/sys/dev/mlx5/mlx5_core/mlx5_cmd.c
==============================================================================
--- head/sys/dev/mlx5/mlx5_core/mlx5_cmd.c      Wed May  8 10:29:45 2019        
(r347251)
+++ head/sys/dev/mlx5/mlx5_core/mlx5_cmd.c      Wed May  8 10:30:18 2019        
(r347252)
@@ -1143,6 +1143,9 @@ static void mlx5_cmd_change_mod(struct mlx5_core_dev *
        struct mlx5_cmd *cmd = &dev->cmd;
        int i;
 
+       if (cmd->mode == mode)
+               return;
+
        for (i = 0; i < cmd->max_reg_cmds; i++)
                down(&cmd->sem);
 

Modified: head/sys/dev/mlx5/mlx5_core/mlx5_eq.c
==============================================================================
--- head/sys/dev/mlx5/mlx5_core/mlx5_eq.c       Wed May  8 10:29:45 2019        
(r347251)
+++ head/sys/dev/mlx5/mlx5_core/mlx5_eq.c       Wed May  8 10:30:18 2019        
(r347252)
@@ -395,7 +395,9 @@ static irqreturn_t mlx5_msix_handler(int irq, void *eq
        struct mlx5_eq *eq = eq_ptr;
        struct mlx5_core_dev *dev = eq->dev;
 
-       mlx5_eq_int(dev, eq);
+       /* check if IRQs are not disabled */
+       if (likely(dev->priv.disable_irqs == 0))
+               mlx5_eq_int(dev, eq);
 
        /* MSI-X vectors always belong to us */
        return IRQ_HANDLED;

Modified: head/sys/dev/mlx5/mlx5_core/mlx5_main.c
==============================================================================
--- head/sys/dev/mlx5/mlx5_core/mlx5_main.c     Wed May  8 10:29:45 2019        
(r347251)
+++ head/sys/dev/mlx5/mlx5_core/mlx5_main.c     Wed May  8 10:30:18 2019        
(r347252)
@@ -35,6 +35,7 @@
 #include <linux/slab.h>
 #include <linux/io-mapping.h>
 #include <linux/interrupt.h>
+#include <linux/hardirq.h>
 #include <dev/mlx5/driver.h>
 #include <dev/mlx5/cq.h>
 #include <dev/mlx5/qp.h>
@@ -1443,11 +1444,29 @@ static int mlx5_try_fast_unload(struct mlx5_core_dev *
        return 0;
 }
 
+static void mlx5_disable_interrupts(struct mlx5_core_dev *mdev)
+{
+       int nvec = mdev->priv.eq_table.num_comp_vectors + MLX5_EQ_VEC_COMP_BASE;
+       int x;
+
+       mdev->priv.disable_irqs = 1;
+
+       /* wait for all IRQ handlers to finish processing */
+       for (x = 0; x != nvec; x++)
+               synchronize_irq(mdev->priv.msix_arr[x].vector);
+}
+
 static void shutdown_one(struct pci_dev *pdev)
 {
        struct mlx5_core_dev *dev  = pci_get_drvdata(pdev);
        struct mlx5_priv *priv = &dev->priv;
        int err;
+
+       /* enter polling mode */
+       mlx5_cmd_use_polling(dev);
+
+       /* disable all interrupts */
+       mlx5_disable_interrupts(dev);
 
        err = mlx5_try_fast_unload(dev);
        if (err)
_______________________________________________
svn-src-head@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/svn-src-head
To unsubscribe, send any mail to "svn-src-head-unsubscr...@freebsd.org"

Reply via email to