From: Carolyn Wyborny Date: Mon, 28 Sep 2015 18:16:55 +0000 (-0400) Subject: i40e: Fix for Tools loopback test failing after driver load X-Git-Tag: v4.1.12-92~189^2~255 X-Git-Url: https://www.infradead.org/git/?a=commitdiff_plain;h=ff4a203198207f40860ff215d502b8fd87df3677;p=users%2Fjedix%2Flinux-maple.git i40e: Fix for Tools loopback test failing after driver load Orabug: 22342532 This patch fixes a problem where our Tools MAC Loopback test, after driver unbind would fail. This was because the hw was configured for multiqueue and unbind operation did not clear this configuration. The problem is fixed by resetting this configuration in i40e_remove. Change-ID: I130c05138319182ed1476d3a0b5222d6a6320af9 Signed-off-by: Carolyn Wyborny Tested-by: Andrew Bowers Signed-off-by: Jeff Kirsher (cherry picked from commit bcab2db97d2423b97b248ba35eb2277168e71fcc) Signed-off-by: Brian Maly --- diff --git a/drivers/net/ethernet/intel/i40e/i40e_main.c b/drivers/net/ethernet/intel/i40e/i40e_main.c index ad9a39524bb72..857b89478759d 100644 --- a/drivers/net/ethernet/intel/i40e/i40e_main.c +++ b/drivers/net/ethernet/intel/i40e/i40e_main.c @@ -10598,6 +10598,7 @@ err_dma: static void i40e_remove(struct pci_dev *pdev) { struct i40e_pf *pf = pci_get_drvdata(pdev); + struct i40e_hw *hw = &pf->hw; i40e_status ret_code; int i; @@ -10605,6 +10606,10 @@ static void i40e_remove(struct pci_dev *pdev) i40e_ptp_stop(pf); + /* Disable RSS in hw */ + wr32(hw, I40E_PFQF_HENA(0), 0); + wr32(hw, I40E_PFQF_HENA(1), 0); + /* no more scheduling of any task */ set_bit(__I40E_DOWN, &pf->state); del_timer_sync(&pf->service_timer);