]> www.infradead.org Git - users/jedix/linux-maple.git/commitdiff
i40e: only register client on iWarp-capable devices
authorMitch Williams <mitch.a.williams@intel.com>
Tue, 4 Apr 2017 19:40:16 +0000 (12:40 -0700)
committerJack Vogel <jack.vogel@oracle.com>
Tue, 10 Oct 2017 21:15:22 +0000 (14:15 -0700)
The client interface is only intended for use on devices that support
iWarp. Only register with the client if this is the case.

This fixes a panic when loading i40iw on X710 devices.

Signed-off-by: Mitch Williams <mitch.a.williams@intel.com>
Reported-by: Stefan Assmann <sassmann@kpanic.de>
Tested-by: Andrew Bowers <andrewx.bowers@intel.com>
Signed-off-by: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
Orabug: 26785018
(cherry picked from commit 004eb614c4d2fcc12a98714fd887a860582f203a)
Signed-off-by: Jack Vogel <jack.vogel@oracle.com>
Reviewed-by: Kyle Fortin <kyle.fortin@oracle.com>
drivers/net/ethernet/intel/i40e/i40e_main.c

index 4b0d82f521f3e8bce15739163c912ff408dd135b..fe9ef8578251d6f69829faf2c794dbc72974270c 100644 (file)
@@ -11410,10 +11410,12 @@ static int i40e_probe(struct pci_dev *pdev, const struct pci_device_id *ent)
                  round_jiffies(jiffies + pf->service_timer_period));
 
        /* add this PF to client device list and launch a client service task */
-       err = i40e_lan_add_device(pf);
-       if (err)
-               dev_info(&pdev->dev, "Failed to add PF to client API service list: %d\n",
-                        err);
+       if (pf->flags & I40E_FLAG_IWARP_ENABLED) {
+               err = i40e_lan_add_device(pf);
+               if (err)
+                       dev_info(&pdev->dev, "Failed to add PF to client API service list: %d\n",
+                                err);
+       }
 
 #ifdef I40E_FCOE
        /* create FCoE interface */
@@ -11597,10 +11599,11 @@ static void i40e_remove(struct pci_dev *pdev)
                i40e_vsi_release(pf->vsi[pf->lan_vsi]);
 
        /* remove attached clients */
-       ret_code = i40e_lan_del_device(pf);
-       if (ret_code) {
-               dev_warn(&pdev->dev, "Failed to delete client device: %d\n",
-                        ret_code);
+       if (pf->flags & I40E_FLAG_IWARP_ENABLED) {
+               ret_code = i40e_lan_del_device(pf);
+               if (ret_code)
+                       dev_warn(&pdev->dev, "Failed to delete client device: %d\n",
+                                ret_code);
        }
 
        /* shutdown and destroy the HMC */