Commit 688a5efe authored by Shannon Nelson's avatar Shannon Nelson Committed by David S. Miller

ionic: no transition while stopping

Make sure we don't try to transition the fw_status_ready
while we're still in the FW_STOPPING state, else we can
get stuck in limbo waiting on a transition that already
happened.

While we're here we can remove a superfluous check on
the lif pointer.
Signed-off-by: default avatarShannon Nelson <snelson@pensando.io>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent b3483bc7
...@@ -202,21 +202,25 @@ int ionic_heartbeat_check(struct ionic *ionic) ...@@ -202,21 +202,25 @@ int ionic_heartbeat_check(struct ionic *ionic)
} }
} }
dev_dbg(ionic->dev, "fw_status 0x%02x ready %d idev->ready %d last_hb 0x%x state 0x%02lx\n",
fw_status, fw_status_ready, idev->fw_status_ready,
idev->last_fw_hb, lif->state[0]);
/* is this a transition? */ /* is this a transition? */
if (fw_status_ready != idev->fw_status_ready) { if (fw_status_ready != idev->fw_status_ready &&
!test_bit(IONIC_LIF_F_FW_STOPPING, lif->state)) {
bool trigger = false; bool trigger = false;
idev->fw_status_ready = fw_status_ready; idev->fw_status_ready = fw_status_ready;
if (!fw_status_ready && lif && if (!fw_status_ready &&
!test_bit(IONIC_LIF_F_FW_RESET, lif->state) && !test_bit(IONIC_LIF_F_FW_RESET, lif->state) &&
!test_and_set_bit(IONIC_LIF_F_FW_STOPPING, lif->state)) { !test_and_set_bit(IONIC_LIF_F_FW_STOPPING, lif->state)) {
dev_info(ionic->dev, "FW stopped 0x%02x\n", fw_status); dev_info(ionic->dev, "FW stopped 0x%02x\n", fw_status);
trigger = true; trigger = true;
} else if (fw_status_ready && lif && } else if (fw_status_ready &&
test_bit(IONIC_LIF_F_FW_RESET, lif->state) && test_bit(IONIC_LIF_F_FW_RESET, lif->state)) {
!test_bit(IONIC_LIF_F_FW_STOPPING, lif->state)) {
dev_info(ionic->dev, "FW running 0x%02x\n", fw_status); dev_info(ionic->dev, "FW running 0x%02x\n", fw_status);
trigger = true; trigger = true;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment