This is a note to let you know that I've just added the patch titled can: kvaser_pciefd: Clear listen-only bit if not explicitly requested 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: can-kvaser_pciefd-clear-listen-only-bit-if-not-explicitly-requested.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 bf7ac55e991ca177f1ac16be51152f1ef291a4df Mon Sep 17 00:00:00 2001 From: Jimmy Assarsson <extja@xxxxxxxxxx> Date: Tue, 16 May 2023 15:43:14 +0200 Subject: can: kvaser_pciefd: Clear listen-only bit if not explicitly requested From: Jimmy Assarsson <extja@xxxxxxxxxx> commit bf7ac55e991ca177f1ac16be51152f1ef291a4df upstream. The listen-only bit was never cleared, causing the controller to always use listen-only mode, if previously set. Fixes: 26ad340e582d ("can: kvaser_pciefd: Add driver for Kvaser PCIEcan devices") Cc: stable@xxxxxxxxxxxxxxx Signed-off-by: Jimmy Assarsson <extja@xxxxxxxxxx> Link: https://lore.kernel.org/r/20230516134318.104279-3-extja@xxxxxxxxxx Signed-off-by: Marc Kleine-Budde <mkl@xxxxxxxxxxxxxx> Signed-off-by: Greg Kroah-Hartman <gregkh@xxxxxxxxxxxxxxxxxxx> --- drivers/net/can/kvaser_pciefd.c | 2 ++ 1 file changed, 2 insertions(+) --- a/drivers/net/can/kvaser_pciefd.c +++ b/drivers/net/can/kvaser_pciefd.c @@ -561,6 +561,8 @@ static void kvaser_pciefd_setup_controll if (can->can.ctrlmode & CAN_CTRLMODE_LISTENONLY) mode |= KVASER_PCIEFD_KCAN_MODE_LOM; + else + mode &= ~KVASER_PCIEFD_KCAN_MODE_LOM; mode |= KVASER_PCIEFD_KCAN_MODE_EEN; mode |= KVASER_PCIEFD_KCAN_MODE_EPEN; Patches currently in stable-queue which might be from extja@xxxxxxxxxx are queue-5.15/can-kvaser_pciefd-call-request_irq-before-enabling-interrupts.patch queue-5.15/can-kvaser_pciefd-set-can_state_stopped-in-kvaser_pciefd_stop.patch queue-5.15/can-kvaser_pciefd-clear-listen-only-bit-if-not-explicitly-requested.patch queue-5.15/can-kvaser_pciefd-empty-srb-buffer-in-probe.patch queue-5.15/can-kvaser_pciefd-disable-interrupts-in-probe-error-path.patch queue-5.15/can-kvaser_pciefd-do-not-send-eflush-command-on-tfd-interrupt.patch