This is a note to let you know that I've just added the patch titled net: mana: Fix the extra HZ in mana_hwc_send_request to the 6.6-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: net-mana-fix-the-extra-hz-in-mana_hwc_send_request.patch and it can be found in the queue-6.6 subdirectory. If you, or anyone else, feels it should not be added to the stable tree, please let <stable@xxxxxxxxxxxxxxx> know about it. >From 9c91c7fadb1771dcc2815c5271d14566366d05c5 Mon Sep 17 00:00:00 2001 From: Souradeep Chakrabarti <schakrabarti@xxxxxxxxxxxxxxxxxxx> Date: Sun, 19 May 2024 23:05:04 -0700 Subject: net: mana: Fix the extra HZ in mana_hwc_send_request From: Souradeep Chakrabarti <schakrabarti@xxxxxxxxxxxxxxxxxxx> commit 9c91c7fadb1771dcc2815c5271d14566366d05c5 upstream. Commit 62c1bff593b7 added an extra HZ along with msecs_to_jiffies. This patch fixes that. Cc: stable@xxxxxxxxxxxxxxx Fixes: 62c1bff593b7 ("net: mana: Configure hwc timeout from hardware") Signed-off-by: Souradeep Chakrabarti <schakrabarti@xxxxxxxxxxxxxxxxxxx> Reviewed-by: Brett Creeley <brett.creeley@xxxxxxx> Reviewed-by: Dexuan Cui <decui@xxxxxxxxxxxxx> Link: https://lore.kernel.org/r/1716185104-31658-1-git-send-email-schakrabarti@xxxxxxxxxxxxxxxxxxx Signed-off-by: Paolo Abeni <pabeni@xxxxxxxxxx> Signed-off-by: Greg Kroah-Hartman <gregkh@xxxxxxxxxxxxxxxxxxx> --- drivers/net/ethernet/microsoft/mana/hw_channel.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- a/drivers/net/ethernet/microsoft/mana/hw_channel.c +++ b/drivers/net/ethernet/microsoft/mana/hw_channel.c @@ -847,7 +847,7 @@ int mana_hwc_send_request(struct hw_chan } if (!wait_for_completion_timeout(&ctx->comp_event, - (msecs_to_jiffies(hwc->hwc_timeout) * HZ))) { + (msecs_to_jiffies(hwc->hwc_timeout)))) { dev_err(hwc->dev, "HWC: Request timed out!\n"); err = -ETIMEDOUT; goto out; Patches currently in stable-queue which might be from schakrabarti@xxxxxxxxxxxxxxxxxxx are queue-6.6/net-mana-fix-the-extra-hz-in-mana_hwc_send_request.patch