Commit 5ac7b2fc authored by Corey Minyard's avatar Corey Minyard

ipmi: Periodically check for events, not messages

Commit d9b7e4f7 ("ipmi: Periodically check to see if irqs and
messages are set right") to verify the contents of global events.
However, the wrong function was being called in some cases, checking
for messages, not events.
Signed-off-by: default avatarCorey Minyard <cminyard@mvista.com>
Tested-by: default avatarJason DiPietro <J.DiPietro@F5.com>
parent 9c953d63
......@@ -789,7 +789,7 @@ static void handle_transaction_done(struct smi_info *smi_info)
smi_info->si_state = SI_NORMAL;
break;
}
start_getting_msg_queue(smi_info);
start_getting_events(smi_info);
} else {
smi_info->si_state = SI_NORMAL;
}
......@@ -812,7 +812,7 @@ static void handle_transaction_done(struct smi_info *smi_info)
smi_info->si_state = SI_NORMAL;
break;
}
start_getting_msg_queue(smi_info);
start_getting_events(smi_info);
} else {
smi_info->si_state = SI_NORMAL;
}
......
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