Re: [PATCH 2/2] ipmi: Add limits to event and receive message requests
From: Matt Fleming
Date: Sat Apr 25 2026 - 05:36:28 EST
On Tue, Apr 21, 2026 at 07:42:44AM -0500, Corey Minyard wrote:
> The driver would just fetch events and receive messages until the
> BMC said it was done. To avoid issues with BMCs that never say they are
> done, add a limit of 10 fetches at a time.
>
> This is a more general fix than the previous fix for the specific bad
> BMC, but should fix the more general issue of a BMC that won't stop
> saying it has data.
>
> This has been there from the beginning of the driver.
>
> Reported-by: Matt Fleming <mfleming@xxxxxxxxxxxxxx>
> Closes: https://lore.kernel.org/lkml/20260415115930.3428942-1-matt@xxxxxxxxxxxxxxxx/
> Fixes: <1da177e4c3f4> ("Linux-2.6.12-rc2")
> Cc: stable@xxxxxxxxxxxxxxx
> Signed-off-by: Corey Minyard <corey@xxxxxxxxxxx>
> ---
> drivers/char/ipmi/ipmi_si_intf.c | 15 +++++++++++++++
> drivers/char/ipmi/ipmi_ssif.c | 15 +++++++++++++++
> 2 files changed, 30 insertions(+)
[...]
> @@ -410,6 +413,7 @@ static void start_getting_msg_queue(struct smi_info *smi_info)
>
> start_new_msg(smi_info, smi_info->curr_msg->data,
> smi_info->curr_msg->data_size);
> + smi_info->num_requests_in_a_row = 0;
> smi_info->si_state = SI_GETTING_MESSAGES;
> }
>
> @@ -421,6 +425,7 @@ static void start_getting_events(struct smi_info *smi_info)
>
> start_new_msg(smi_info, smi_info->curr_msg->data,
> smi_info->curr_msg->data_size);
> + smi_info->num_requests_in_a_row = 0;
> smi_info->si_state = SI_GETTING_EVENTS;
> }
>
Would it be better to move this zeroing to handle_transaction_done()?
Otherwise we reset the counter in handle_flags() ->
start_getting_events() and the threshold is never reached.
Thanks,
Matt