This is a note to let you know that I've just added the patch titled ipmi:ssif: Add send_retries increment to the 5.15-stable tree which can be found at: http://www.kernel.org/git/?p=linux/kernel/git/stable/stable-queue.git;a=summary The filename of the patch is: ipmi-ssif-add-send_retries-increment.patch and it can be found in the queue-5.15 subdirectory. If you, or anyone else, feels it should not be added to the stable tree, please let <stable@xxxxxxxxxxxxxxx> know about it. >From 6ce7995a43febe693d4894033c6e29314970646a Mon Sep 17 00:00:00 2001 From: Corey Minyard <minyard@xxxxxxx> Date: Tue, 4 Apr 2023 12:09:14 +0000 Subject: ipmi:ssif: Add send_retries increment From: Corey Minyard <minyard@xxxxxxx> commit 6ce7995a43febe693d4894033c6e29314970646a upstream. A recent change removed an increment of send_retries, re-add it. Fixes: 95767ed78a18 ipmi:ssif: resend_msg() cannot fail Reported-by: Pavel Machek <pavel@xxxxxxx> Cc: stable@xxxxxxxxxxxxxxx Signed-off-by: Corey Minyard <minyard@xxxxxxx> Signed-off-by: Greg Kroah-Hartman <gregkh@xxxxxxxxxxxxxxxxxxx> --- drivers/char/ipmi/ipmi_ssif.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) --- a/drivers/char/ipmi/ipmi_ssif.c +++ b/drivers/char/ipmi/ipmi_ssif.c @@ -564,8 +564,10 @@ static void retry_timeout(struct timer_l if (waiting) start_get(ssif_info); - if (resend) + if (resend) { start_resend(ssif_info); + ssif_inc_stat(ssif_info, send_retries); + } } static void watch_timeout(struct timer_list *t) Patches currently in stable-queue which might be from minyard@xxxxxxx are queue-5.15/ipmi-ssif-add-send_retries-increment.patch queue-5.15/ipmi-fix-ssif-not-responding-under-certain-cond.patch