sfc: move reset workqueue code
authorAlex Maftei (amaftei) <amaftei@solarflare.com>
Wed, 8 Jan 2020 16:10:59 +0000 (16:10 +0000)
committerDavid S. Miller <davem@davemloft.net>
Wed, 8 Jan 2020 21:28:02 +0000 (13:28 -0800)
Small functions doing work that will be common, related to reset
workqueue management.

Signed-off-by: Alexandru-Mihai Maftei <amaftei@solarflare.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/ethernet/sfc/Makefile
drivers/net/ethernet/sfc/efx.c
drivers/net/ethernet/sfc/efx_common.c [new file with mode: 0644]

index c5c297e78d068f41968fefc80e049b9ba1b70c62..7022cffa31f8ba209b6a8cfddf5a8c372ffae311 100644 (file)
@@ -1,7 +1,10 @@
 # SPDX-License-Identifier: GPL-2.0
-sfc-y                  += efx.o nic.o farch.o siena.o ef10.o tx.o rx.o \
+sfc-y                  += efx.o efx_common.o nic.o \
+                          farch.o siena.o ef10.o \
+                          tx.o rx.o \
                           selftest.o ethtool.o ptp.o tx_tso.o \
-                          mcdi.o mcdi_port.o mcdi_mon.o
+                          mcdi.o mcdi_port.o \
+                          mcdi_mon.o
 sfc-$(CONFIG_SFC_MTD)  += mtd.o
 sfc-$(CONFIG_SFC_SRIOV)        += sriov.o siena_sriov.o ef10_sriov.o
 
index ce8c0db2ba4bf9139b343f38daec55427e1329f1..c881e35b047721396e42eb68fa8f8193d016e9df 100644 (file)
@@ -108,12 +108,6 @@ void efx_get_udp_tunnel_type_name(u16 type, char *buf, size_t buflen)
                snprintf(buf, buflen, "type %d", type);
 }
 
-/* Reset workqueue. If any NIC has a hardware failure then a reset will be
- * queued onto this work queue. This is not a per-nic work queue, because
- * efx_reset_work() acquires the rtnl lock, so resets are naturally serialised.
- */
-static struct workqueue_struct *reset_workqueue;
-
 /* How often and how many times to poll for a reset while waiting for a
  * BIST that another function started to complete.
  */
@@ -3106,7 +3100,7 @@ void efx_schedule_reset(struct efx_nic *efx, enum reset_type type)
         * reset is scheduled. So switch back to poll'd MCDI completions. */
        efx_mcdi_mode_poll(efx);
 
-       queue_work(reset_workqueue, &efx->reset_work);
+       efx_queue_reset_work(efx);
 }
 
 /**************************************************************************
@@ -3492,7 +3486,7 @@ static void efx_pci_remove_main(struct efx_nic *efx)
         * are not READY.
         */
        BUG_ON(efx->state == STATE_READY);
-       cancel_work_sync(&efx->reset_work);
+       efx_flush_reset_workqueue(efx);
 
        efx_disable_interrupts(efx);
        efx_clear_interrupt_affinity(efx);
@@ -3878,7 +3872,7 @@ static int efx_pm_thaw(struct device *dev)
        rtnl_unlock();
 
        /* Reschedule any quenched resets scheduled during efx_pm_freeze() */
-       queue_work(reset_workqueue, &efx->reset_work);
+       efx_queue_reset_work(efx);
 
        return 0;
 
@@ -4077,11 +4071,9 @@ static int __init efx_init_module(void)
                goto err_sriov;
 #endif
 
-       reset_workqueue = create_singlethread_workqueue("sfc_reset");
-       if (!reset_workqueue) {
-               rc = -ENOMEM;
+       rc = efx_create_reset_workqueue();
+       if (rc)
                goto err_reset;
-       }
 
        rc = pci_register_driver(&efx_pci_driver);
        if (rc < 0)
@@ -4090,7 +4082,7 @@ static int __init efx_init_module(void)
        return 0;
 
  err_pci:
-       destroy_workqueue(reset_workqueue);
+       efx_destroy_reset_workqueue();
  err_reset:
 #ifdef CONFIG_SFC_SRIOV
        efx_fini_sriov();
@@ -4106,7 +4098,7 @@ static void __exit efx_exit_module(void)
        printk(KERN_INFO "Solarflare NET driver unloading\n");
 
        pci_unregister_driver(&efx_pci_driver);
-       destroy_workqueue(reset_workqueue);
+       efx_destroy_reset_workqueue();
 #ifdef CONFIG_SFC_SRIOV
        efx_fini_sriov();
 #endif
diff --git a/drivers/net/ethernet/sfc/efx_common.c b/drivers/net/ethernet/sfc/efx_common.c
new file mode 100644 (file)
index 0000000..5cadfba
--- /dev/null
@@ -0,0 +1,58 @@
+// SPDX-License-Identifier: GPL-2.0-only
+/****************************************************************************
+ * Driver for Solarflare network controllers and boards
+ * Copyright 2018 Solarflare Communications Inc.
+ *
+ * This program is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU General Public License version 2 as published
+ * by the Free Software Foundation, incorporated herein by reference.
+ */
+
+#include "net_driver.h"
+#include <linux/module.h>
+#include <linux/netdevice.h>
+#include "efx_common.h"
+#include "efx_channels.h"
+#include "efx.h"
+#include "mcdi.h"
+#include "selftest.h"
+#include "rx_common.h"
+#include "tx_common.h"
+#include "nic.h"
+#include "io.h"
+#include "mcdi_pcol.h"
+
+/* Reset workqueue. If any NIC has a hardware failure then a reset will be
+ * queued onto this work queue. This is not a per-nic work queue, because
+ * efx_reset_work() acquires the rtnl lock, so resets are naturally serialised.
+ */
+static struct workqueue_struct *reset_workqueue;
+
+int efx_create_reset_workqueue(void)
+{
+       reset_workqueue = create_singlethread_workqueue("sfc_reset");
+       if (!reset_workqueue) {
+               printk(KERN_ERR "Failed to create reset workqueue\n");
+               return -ENOMEM;
+       }
+
+       return 0;
+}
+
+void efx_queue_reset_work(struct efx_nic *efx)
+{
+       queue_work(reset_workqueue, &efx->reset_work);
+}
+
+void efx_flush_reset_workqueue(struct efx_nic *efx)
+{
+       cancel_work_sync(&efx->reset_work);
+}
+
+void efx_destroy_reset_workqueue(void)
+{
+       if (reset_workqueue) {
+               destroy_workqueue(reset_workqueue);
+               reset_workqueue = NULL;
+       }
+}