diff options
author | Shannon Nelson <shannon.nelson@amd.com> | 2023-12-11 19:57:58 +0100 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2023-12-13 13:35:55 +0100 |
commit | 45b84188a0a4b91c9763105381486916cc4b861f (patch) | |
tree | 884eff4fa52d426b7b11e9d193ddb95f747b6a36 /drivers/net/ethernet/pensando | |
parent | ionic: pass opcode to devcmd_wait (diff) | |
download | linux-45b84188a0a4b91c9763105381486916cc4b861f.tar.xz linux-45b84188a0a4b91c9763105381486916cc4b861f.zip |
ionic: keep filters across FLR
Make sure we keep and replay the filters and RSS config across
an FLR by using our FW_RESET flag. This gets checked on the
way down and on the way back up to help determine how much LIF
state to keep and restore across a reset action.
Signed-off-by: Shannon Nelson <shannon.nelson@amd.com>
Reviewed-by: Brett Creeley <brett.creeley@amd.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/ethernet/pensando')
-rw-r--r-- | drivers/net/ethernet/pensando/ionic/ionic_bus_pci.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/net/ethernet/pensando/ionic/ionic_bus_pci.c b/drivers/net/ethernet/pensando/ionic/ionic_bus_pci.c index d6ce113a4210..43e7967ad1c5 100644 --- a/drivers/net/ethernet/pensando/ionic/ionic_bus_pci.c +++ b/drivers/net/ethernet/pensando/ionic/ionic_bus_pci.c @@ -416,6 +416,8 @@ static void ionic_reset_prepare(struct pci_dev *pdev) dev_dbg(ionic->dev, "%s: device stopping\n", __func__); + set_bit(IONIC_LIF_F_FW_RESET, lif->state); + del_timer_sync(&ionic->watchdog_timer); cancel_work_sync(&lif->deferred.work); |