From: Marc Kleine-Budde <mkl@pengutronix.de>
To: netdev@vger.kernel.org
Cc: davem@davemloft.net, kuba@kernel.org, linux-can@vger.kernel.org,
kernel@pengutronix.de
Subject: [PATCH net 0/14] pull-request: can 2026-08-26
Date: Wed, 26 Aug 2026 14:02:10 +0200 [thread overview]
Message-ID: <20260826121036.2706424-1-mkl@pengutronix.de> (raw)
Hello netdev-team,
this is a pull request of 14 patches for net-next/main.
The first patch is by Vincent Mailhol to drop CAN-XL frames on non
CAN-XL devices.
Oliver Hartkopp's patch updates the CAN networking core to use a more
robust check to ensure working in CAN devices.
Sureshkumar S cotributes 2 patches to fix corner cases of the the CAN
bittiming calculation.
The next 3 patches are by Cunhao Lu and fix the TX path of the
rockchip_canfd driver.
Another 3 patches by Cunhao Lu make echo skb freeing safe in any IRQ
context in several CAN helper functions.
Fan Wu's for the kvaser_pciefd driver fixes a potential
use-after-free.
Cen Zhang fixes a slab-out-of-bounds read access in the kvaser_usb
driver.
Ji-Ze Hong fixes a struct size mismatch in the f81604 CAN driver.
The last patch is by Runyu Xiao and fixes a potential deadlock in the
error of the hi311x CAN driver.
regards,
Marc
---
The following changes since commit dc4b95b8fee95113587e93ca116356032d271371:
net/sched: sch_teql: restore skb->dev on the slave failure path (2026-08-25 15:24:35 +0200)
are available in the Git repository at:
git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can.git tags/linux-can-fixes-for-7.3-20260826
for you to fetch changes up to 475cb4ea138f4b0e7f43ff79220f4013a6a840b8:
can: hi311x: drop hi3110_lock before free_irq() on open failure (2026-08-26 13:40:17 +0200)
----------------------------------------------------------------
linux-can-fixes-for-7.3-20260826
----------------------------------------------------------------
Cen Zhang (Microsoft) (1):
can: kvaser_usb: validate command format before parsing in hydra receive path
Cunhao Lu (6):
can: rockchip_canfd: prevent TX stall on echo skb failure
can: rockchip_canfd: retry the outstanding TX buffer
can: rockchip_canfd: serialize TX state and command writes
can: skb: make echo skb freeing safe in any IRQ context
can: skb: make CAN skb allocation failure paths IRQ-safe
can: dev: can_put_echo_skb(): free skb on invalid echo index
Fan Wu (1):
can: kvaser_pciefd: fix use-after-free in bec poll timer
Ji-Ze Hong (Peter Hong) (1):
can: usb: f81604: fix struct f81604_int_data size mismatch
Marc Kleine-Budde (3):
Merge patch series "can: bittiming: fix two defects in the userspace bitrate conversion"
Merge patch series "can: rockchip_canfd: prevent TX stall on echo skb failure"
Merge patch series "can: skb: make echo skb freeing safe in any IRQ context"
Oliver Hartkopp (1):
can: convert unreliable ARPHRD_CAN type checks to robust can_get_ml_priv()
Runyu Xiao (1):
can: hi311x: drop hi3110_lock before free_irq() on open failure
Sureshkumar S (2):
can: bittiming: fix divide-by-zero in can_calc_bittiming()
can: bittiming: fix bitrate error calculation on unsigned operands
Vincent Mailhol (1):
can: dev: can_dropped_invalid_skb: drop CAN XL frames on non-CAN XL devices
drivers/net/can/dev/calc_bittiming.c | 10 ++--
drivers/net/can/dev/skb.c | 14 ++---
drivers/net/can/kvaser_pciefd/kvaser_pciefd_core.c | 3 +-
drivers/net/can/rockchip/rockchip_canfd-core.c | 1 +
drivers/net/can/rockchip/rockchip_canfd-rx.c | 31 ++++++++---
drivers/net/can/rockchip/rockchip_canfd-tx.c | 47 ++++++++++++----
drivers/net/can/rockchip/rockchip_canfd.h | 4 +-
drivers/net/can/spi/hi311x.c | 3 ++
drivers/net/can/usb/f81604.c | 2 +-
drivers/net/can/usb/kvaser_usb/kvaser_usb_hydra.c | 62 +++++++++++++++++++---
include/linux/can/skb.h | 4 +-
net/can/af_can.c | 12 ++---
net/can/bcm.c | 7 +--
net/can/gw.c | 7 +--
net/can/isotp.c | 5 +-
net/can/raw.c | 4 +-
16 files changed, 160 insertions(+), 56 deletions(-)
next reply other threads:[~2026-08-26 12:10 UTC|newest]
Thread overview: 19+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-08-26 12:02 Marc Kleine-Budde [this message]
2026-08-26 12:02 ` [PATCH net 01/14] can: dev: can_dropped_invalid_skb: drop CAN XL frames on non-CAN XL devices Marc Kleine-Budde
2026-08-26 12:02 ` [PATCH net 02/14] can: convert unreliable ARPHRD_CAN type checks to robust can_get_ml_priv() Marc Kleine-Budde
2026-08-26 12:02 ` [PATCH net 03/14] can: bittiming: fix divide-by-zero in can_calc_bittiming() Marc Kleine-Budde
2026-08-27 19:44 ` Jakub Kicinski
2026-08-26 12:02 ` [PATCH net 04/14] can: bittiming: fix bitrate error calculation on unsigned operands Marc Kleine-Budde
2026-08-26 12:02 ` [PATCH net 05/14] can: rockchip_canfd: prevent TX stall on echo skb failure Marc Kleine-Budde
2026-08-26 12:02 ` [PATCH net 06/14] can: rockchip_canfd: retry the outstanding TX buffer Marc Kleine-Budde
2026-08-27 19:44 ` Jakub Kicinski
2026-08-26 12:02 ` [PATCH net 07/14] can: rockchip_canfd: serialize TX state and command writes Marc Kleine-Budde
2026-08-27 19:44 ` Jakub Kicinski
2026-08-26 12:02 ` [PATCH net 08/14] can: skb: make echo skb freeing safe in any IRQ context Marc Kleine-Budde
2026-08-26 12:02 ` [PATCH net 09/14] can: skb: make CAN skb allocation failure paths IRQ-safe Marc Kleine-Budde
2026-08-26 12:02 ` [PATCH net 10/14] can: dev: can_put_echo_skb(): free skb on invalid echo index Marc Kleine-Budde
2026-08-26 12:02 ` [PATCH net 11/14] can: kvaser_pciefd: fix use-after-free in bec poll timer Marc Kleine-Budde
2026-08-26 12:02 ` [PATCH net 12/14] can: kvaser_usb: validate command format before parsing in hydra receive path Marc Kleine-Budde
2026-08-27 19:44 ` Jakub Kicinski
2026-08-26 12:02 ` [PATCH net 13/14] can: usb: f81604: fix struct f81604_int_data size mismatch Marc Kleine-Budde
2026-08-26 12:02 ` [PATCH net 14/14] can: hi311x: drop hi3110_lock before free_irq() on open failure Marc Kleine-Budde
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20260826121036.2706424-1-mkl@pengutronix.de \
--to=mkl@pengutronix.de \
--cc=davem@davemloft.net \
--cc=kernel@pengutronix.de \
--cc=kuba@kernel.org \
--cc=linux-can@vger.kernel.org \
--cc=netdev@vger.kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox