linux-can.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
 messages from 2023-09-01 08:41:23 to 2023-10-05 16:13:25 UTC [more...]

[PATCH v2 0/5] can: dev: fix can_restart() and replace BUG_ON() by error handling
 2023-10-05  7:48 UTC  (5+ messages)
` [PATCH v2 1/5] can: dev: can_restart(): don't crash kernel if carrier is OK
` [PATCH v2 2/5] can: dev: can_restart(): fix race condition between controller restart and netif_carrier_on()
` [PATCH v2 3/5] can: dev: can_restart(): reverse logic to remove need for goto
` [PATCH v2 4/5] can: dev: can_restart(): update debug and error messages

[PATCH net 0/7] pull-request: can 2023-10-05
 2023-10-05  9:46 UTC  (7+ messages)
` [PATCH net 1/7] can: j1939: Fix UAF in j1939_sk_match_filter during setsockopt(SO_J1939_FILTER)
` [PATCH net 2/7] can: isotp: isotp_sendmsg(): fix TX state detection and wait behavior
` [PATCH net 3/7] can: sun4i_can: Only show Kconfig if ARCH_SUNXI is set
` [PATCH net 5/7] can: tcan4x5x: Fix id2_register for tcan4553
` [PATCH net 6/7] arm64: dts: imx93: add the Flex-CAN stop mode by GPR
` [PATCH net 7/7] can: flexcan: remove the auto stop mode for IMX93

[PATCH v2 00/27] can: at91: add can_state_get_by_berr_counter() helper, cleanup and convert to rx_offload
 2023-10-05  7:49 UTC  (17+ messages)
` [PATCH v2 01/27] can: dev: add can_state_get_by_berr_counter() to return the CAN state based on the current error counters
` [PATCH v2 04/27] can: at91_can: BR register: convert to FIELD_PREP()
` [PATCH v2 05/27] can: at91_can: ECR register: convert to FIELD_GET()
` [PATCH v2 06/27] can: at91_can: MMR registers: convert to FIELD_PREP()
` [PATCH v2 08/27] can: at91_can: MSR Register: "
` [PATCH v2 09/27] can: at91_can: MCR "
` [PATCH v2 11/27] can: at91_can: at91_setup_mailboxes(): update comments
` [PATCH v2 13/27] can: at91_can: at91_set_bittiming(): demote register output to debug level
` [PATCH v2 17/27] can: at91_can: at91_poll_err(): fold in at91_poll_err_frame()
` [PATCH v2 18/27] can: at91_can: at91_poll_err(): increase stats even if no quota left or OOM
` [PATCH v2 20/27] can: at91_can: at91_irq_err_frame(): move next to at91_irq_err()
` [PATCH v2 21/27] can: at91_can: at91_irq_err(): rename to at91_irq_err_line()
` [PATCH v2 23/27] can: at91_can: at91_irq_err_line(): take reg_sr into account for bus off
` [PATCH v2 24/27] can: at91_can: at91_irq_err_line(): make use of can_change_state() and can_bus_off()
` [PATCH v2 25/27] can: at91_can: at91_irq_err_line(): send error counters with state change
` [PATCH v2 26/27] can: at91_can: at91_alloc_can_err_skb() introduce new function

[PATCH] can: peak_pci: replace deprecated strncpy with strscpy
 2023-10-05  8:10 UTC  (3+ messages)

[PATCH 00/27] can: at91: add can_state_get_by_berr_counter() helper, cleanup and convert to rx_offload
 2023-10-04 14:16 UTC  (34+ messages)
` [PATCH 01/27] can: dev: add can_state_get_by_berr_counter() to return the CAN state based on the current error counters
` [PATCH 02/27] can: at91_can: use a consistent indention
` [PATCH 03/27] can: at91_can: at91_irq_tx(): remove one level of indention
` [PATCH 04/27] can: at91_can: BR register: convert to FIELD_PREP()
` [PATCH 05/27] can: at91_can: ECR register: convert to FIELD_GET()
` [PATCH 06/27] can: at91_can: MMR registers: convert to FIELD_PREP()
` [PATCH 07/27] can: at91_can: MID registers: convert access to FIELD_PREP(), FIELD_GET()
` [PATCH 08/27] can: at91_can: MSR Register: convert to FIELD_PREP()
` [PATCH 09/27] can: at91_can: MCR "
` [PATCH 10/27] can: at91_can: add more register definitions
` [PATCH 11/27] can: at91_can: at91_setup_mailboxes(): update comments
` [PATCH 12/27] can: at91_can: rename struct at91_priv::{tx_next,tx_echo} to {tx_head,tx_tail}
` [PATCH 13/27] can: at91_can: at91_set_bittiming(): demote register output to debug level
` [PATCH 14/27] can: at91_can: at91_chip_start(): don't disable IRQs twice
` [PATCH 15/27] can: at91_can: at91_open(): forward request_irq()'s return value in case or an error
` [PATCH 16/27] can: at91_can: add CAN transceiver support
` [PATCH 17/27] can: at91_can: at91_poll_err(): fold in at91_poll_err_frame()
` [PATCH 18/27] can: at91_can: at91_poll_err(): increase stats even if no quota left or OOM
` [PATCH 19/27] can: at91_can: at91_irq_err_frame(): call directly from IRQ handler
` [PATCH 20/27] can: at91_can: at91_irq_err_frame(): move next to at91_irq_err()
` [PATCH 21/27] can: at91_can: at91_irq_err(): rename to at91_irq_err_line()
` [PATCH 22/27] can: at91_can: at91_irq_err_line(): make use of can_state_get_by_berr_counter()
` [PATCH 23/27] can: at91_can: at91_irq_err_line(): take reg_sr into account for bus off
` [PATCH 24/27] can: at91_can: at91_irq_err_line(): make use of can_change_state() and can_bus_off()
` [PATCH 25/27] can: at91_can: at91_irq_err_line(): send error counters with state change
` [PATCH 26/27] can: at91_can: at91_alloc_can_err_skb() introduce new function
` [PATCH 27/27] can: at91_can: switch to rx-offload implementation

[PATCH 0/5] can: dev: fix can_restart() and replace BUG_ON() by error handling
 2023-10-04 13:13 UTC  (11+ messages)
` [PATCH 1/5] can: dev: can_restart(): don't crash kernel if carrier is OK
` [PATCH 2/5] can: dev: can_restart(): fix race condition between controller restart and netif_carrier_on()
` [PATCH 3/5] can: dev: can_restart(): reverse logic to remove need for goto
` [PATCH 4/5] can: dev: can_restart(): update debug and error messages
` [PATCH 5/5] can: dev: can_put_echo_skb(): don't crash kernel if can_priv::echo_skb is accessed out of bounds

[PATCH] can: raw: Remove NULL check before dev_{put, hold}
 2023-10-04 10:25 UTC  (2+ messages)

[PATCH] can: sun4i_can: Only show Kconfig if ARCH_SUNXI is set
 2023-10-04 10:23 UTC  (4+ messages)

[PATCH] can: tcan4x5x: Fix id2_register for tcan4553
 2023-10-04 10:22 UTC  (3+ messages)

[PATCH v1 0/2] can: etas_es58x: clean-up of new GCC W=1 and old checkpath warnings
 2023-10-04 10:19 UTC  (10+ messages)
` [PATCH v1 1/2] can: etas_es58x: silence -Wformat-truncation
` [PATCH v1 2/2] can: etas_es58x: add missing a blank line after declaration
` [PATCH v2 0/2] can: etas_es58x: clean-up of new GCC W=1 and old checkpath warnings
  ` [PATCH v2 1/2] can: etas_es58x: rework the version check logic to silence -Wformat-truncation
  ` [PATCH v2 2/2] can: etas_es58x: add missing a blank line after declaration
` [PATCH v3 0/2] can: etas_es58x: clean-up of new GCC W=1 and old checkpath warnings
  ` [PATCH v3 1/2] can: etas_es58x: rework the version check logic to silence -Wformat-truncation
  ` [PATCH v3 2/2] can: etas_es58x: add missing a blank line after declaration

[PATCH v1] can: j1939: Fix UAF in j1939_sk_match_filter during setsockopt(SO_J1939_FILTER)
 2023-10-04 10:17 UTC  (3+ messages)

[PATCH net-next] can: sja1000: Fix comment
 2023-10-04 10:14 UTC  (4+ messages)

[PATCH] can: isotp: isotp_sendmsg(): fix TX state detection and wait behavior
 2023-10-04 10:13 UTC  (5+ messages)
` [PATCH v2] "

[PATCH v3] can: sja1000: Always restart the Tx queue after an overrun
 2023-10-04  9:55 UTC  (3+ messages)

[net-next PATCH v2 1/4] netdev: replace simple napi_schedule_prep/__napi_schedule to napi_schedule
 2023-10-03 14:51 UTC  (4+ messages)
` [net-next PATCH v2 2/4] netdev: make napi_schedule return bool on NAPI successful schedule
` [net-next PATCH v2 3/4] netdev: replace napi_reschedule with napi_schedule
` [net-next PATCH v2 4/4] netdev: use napi_schedule bool instead of napi_schedule_prep/__napi_schedule

[PATCH] libsocketcan: Add new functions to get/set CAN FD bittimings
 2023-10-03 13:12 UTC  (3+ messages)

[net-next PATCH 1/4] netdev: replace simple napi_schedule_prep/__napi_schedule to napi_schedule
 2023-10-03 11:26 UTC  (13+ messages)
` [net-next PATCH 2/4] netdev: make napi_schedule return bool on NAPI successful schedule
` [net-next PATCH 3/4] netdev: replace napi_reschedule with napi_schedule
` [net-next PATCH 4/4] netdev: use napi_schedule bool instead of napi_schedule_prep/__napi_schedule

[PATCH v2] can: sja1000: Always restart the Tx queue after an overrun
 2023-10-02 14:26 UTC  (3+ messages)

[syzbot] Monthly can report (Sep 2023)
 2023-10-02  9:45 UTC 

Outstanding latency increase in kernel CAN gateway caught by CANlatester daily builds at 2023-10-02
 2023-10-02  8:40 UTC 

[PATCH v6 00/14] can: m_can: Optimizations for m_can/tcan part 2
 2023-10-01 12:24 UTC  (21+ messages)
` [PATCH v6 01/14] can: m_can: Start/Cancel polling timer together with interrupts
` [PATCH v6 02/14] can: m_can: Move hrtimer init to m_can_class_register
` [PATCH v6 03/14] can: m_can: Write transmit header and data in one transaction
` [PATCH v6 04/14] can: m_can: Implement receive coalescing
` [PATCH v6 05/14] can: m_can: Implement transmit coalescing
` [PATCH v6 06/14] can: m_can: Add rx coalescing ethtool support
` [PATCH v6 07/14] can: m_can: Add tx "
` [PATCH v6 08/14] can: m_can: Use u32 for putidx
` [PATCH v6 09/14] can: m_can: Cache tx putidx
` [PATCH v6 10/14] can: m_can: Use the workqueue as queue
` [PATCH v6 11/14] can: m_can: Introduce a tx_fifo_in_flight counter
` [PATCH v6 12/14] can: m_can: Use tx_fifo_in_flight for netif_queue control
` [PATCH v6 13/14] can: m_can: Implement BQL
` [PATCH v6 14/14] can: m_can: Implement transmit submission coalescing

[PATCH v2 1/2] can: m_can: allow keeping the transceiver running in suspend
 2023-09-29 14:27 UTC  (4+ messages)
` [PATCH v2 2/2] can: tcan4x5x: support resuming from rx interrupt signal

Work Related
 2023-09-26 23:44 UTC 

Prezentacja
 2023-09-28  7:40 UTC 

[PATCH net] can: sja1000: Always restart the Tx queue after an overrun
 2023-09-27 16:32 UTC  (4+ messages)

Słowa kluczowe do wypozycjonowania
 2023-09-27  8:11 UTC 

IXXAT CAN-IB2XX drivers
 2023-09-27  6:53 UTC  (2+ messages)

Prezentacja
 2023-09-25  7:55 UTC 

Poptávka
 2023-09-20  7:36 UTC 

[PATCH] can: m_can: don't enable transceiver when probing
 2023-09-19 13:08 UTC 

Proszę o kontakt
 2023-09-19  8:00 UTC 

[PATCH v3 0/6] can: tcan4x5x: Introduce tcan4552/4553
 2023-09-19  7:51 UTC  (4+ messages)
` [PATCH v3 5/6] can: tcan4x5x: Add support for tcan4552/4553

Proszę o kontakt
 2023-09-15  8:00 UTC 

etas_es58x warnings with gcc-13
 2023-09-14  8:53 UTC  (2+ messages)

[PATCH 1/2] can: m_can: allow keeping the transceiver running in suspend
 2023-09-13 14:23 UTC  (4+ messages)
` [PATCH 2/2] can: tcan4x5x: support resuming from rx interrupt signal

Efektivní sledování a optimalizace výroby pro vaši společnost
 2023-09-13  8:00 UTC 

[PATCH v4 0/3] can: xilinx_can: Add ECC feature support
 2023-09-12  6:37 UTC  (8+ messages)
` [PATCH v4 1/3] dt-bindings: can: xilinx_can: Add ECC property 'xlnx,has-ecc'
` [PATCH v4 2/3] can: xilinx_can: Add ECC support
` [PATCH v4 3/3] can: xilinx_can: Add ethtool stats interface for ECC errors

Proszę o kontakt
 2023-09-11  8:15 UTC 

[PATCH AUTOSEL 6.1 09/26] can: sun4i_can: Add acceptance register quirk
 2023-09-11  9:47 UTC  (3+ messages)
` [PATCH AUTOSEL 6.1 10/26] can: sun4i_can: Add support for the Allwinner D1

[PATCH AUTOSEL 6.4 11/41] can: sun4i_can: Add acceptance register quirk
 2023-09-08 18:15 UTC  (2+ messages)
` [PATCH AUTOSEL 6.4 12/41] can: sun4i_can: Add support for the Allwinner D1

[PATCH AUTOSEL 6.5 13/45] can: sun4i_can: Add acceptance register quirk
 2023-09-08 18:12 UTC  (2+ messages)
` [PATCH AUTOSEL 6.5 14/45] can: sun4i_can: Add support for the Allwinner D1

[PATCH] of: overlay: Fix of_overlay_fdt_apply prototype when !CONFIG_OF_OVERLAY
 2023-09-05 18:02 UTC  (3+ messages)

Prezentacja
 2023-09-04  7:40 UTC 

[PATCH v5 00/12] can: m_can: Optimizations for m_can/tcan part 2
 2023-09-04  9:34 UTC  (3+ messages)

[PATCH v2 0/4] Add support for Allwinner D1 CAN controllers
 2023-09-01 16:25 UTC  (2+ messages)

[PATCH] can: etas_es58x: Add check for alloc_can_err_skb
 2023-09-01 11:12 UTC  (3+ messages)


This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).