stable.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
To: stable@vger.kernel.org
Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>,
	patches@lists.linux.dev,
	Devid Antonio Filoni <devid.filoni@egluetechnologies.com>,
	Oleksij Rempel <o.rempel@pengutronix.de>,
	Marc Kleine-Budde <mkl@pengutronix.de>
Subject: [PATCH 5.10 105/139] can: j1939: do not wait 250 ms if the same addr was already claimed
Date: Mon, 13 Feb 2023 15:50:50 +0100	[thread overview]
Message-ID: <20230213144751.409601581@linuxfoundation.org> (raw)
In-Reply-To: <20230213144745.696901179@linuxfoundation.org>

From: Devid Antonio Filoni <devid.filoni@egluetechnologies.com>

commit 4ae5e1e97c44f4654516c1d41591a462ed62fa7b upstream.

The ISO 11783-5 standard, in "4.5.2 - Address claim requirements", states:
  d) No CF shall begin, or resume, transmission on the network until 250
     ms after it has successfully claimed an address except when
     responding to a request for address-claimed.

But "Figure 6" and "Figure 7" in "4.5.4.2 - Address-claim
prioritization" show that the CF begins the transmission after 250 ms
from the first AC (address-claimed) message even if it sends another AC
message during that time window to resolve the address contention with
another CF.

As stated in "4.4.2.3 - Address-claimed message":
  In order to successfully claim an address, the CF sending an address
  claimed message shall not receive a contending claim from another CF
  for at least 250 ms.

As stated in "4.4.3.2 - NAME management (NM) message":
  1) A commanding CF can
     d) request that a CF with a specified NAME transmit the address-
        claimed message with its current NAME.
  2) A target CF shall
     d) send an address-claimed message in response to a request for a
        matching NAME

Taking the above arguments into account, the 250 ms wait is requested
only during network initialization.

Do not restart the timer on AC message if both the NAME and the address
match and so if the address has already been claimed (timer has expired)
or the AC message has been sent to resolve the contention with another
CF (timer is still running).

Signed-off-by: Devid Antonio Filoni <devid.filoni@egluetechnologies.com>
Acked-by: Oleksij Rempel <o.rempel@pengutronix.de>
Link: https://lore.kernel.org/all/20221125170418.34575-1-devid.filoni@egluetechnologies.com
Fixes: 9d71dd0c7009 ("can: add support of SAE J1939 protocol")
Cc: stable@vger.kernel.org
Signed-off-by: Marc Kleine-Budde <mkl@pengutronix.de>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
---
 net/can/j1939/address-claim.c |   40 ++++++++++++++++++++++++++++++++++++++++
 1 file changed, 40 insertions(+)

--- a/net/can/j1939/address-claim.c
+++ b/net/can/j1939/address-claim.c
@@ -165,6 +165,46 @@ static void j1939_ac_process(struct j193
 	 * leaving this function.
 	 */
 	ecu = j1939_ecu_get_by_name_locked(priv, name);
+
+	if (ecu && ecu->addr == skcb->addr.sa) {
+		/* The ISO 11783-5 standard, in "4.5.2 - Address claim
+		 * requirements", states:
+		 *   d) No CF shall begin, or resume, transmission on the
+		 *      network until 250 ms after it has successfully claimed
+		 *      an address except when responding to a request for
+		 *      address-claimed.
+		 *
+		 * But "Figure 6" and "Figure 7" in "4.5.4.2 - Address-claim
+		 * prioritization" show that the CF begins the transmission
+		 * after 250 ms from the first AC (address-claimed) message
+		 * even if it sends another AC message during that time window
+		 * to resolve the address contention with another CF.
+		 *
+		 * As stated in "4.4.2.3 - Address-claimed message":
+		 *   In order to successfully claim an address, the CF sending
+		 *   an address claimed message shall not receive a contending
+		 *   claim from another CF for at least 250 ms.
+		 *
+		 * As stated in "4.4.3.2 - NAME management (NM) message":
+		 *   1) A commanding CF can
+		 *      d) request that a CF with a specified NAME transmit
+		 *         the address-claimed message with its current NAME.
+		 *   2) A target CF shall
+		 *      d) send an address-claimed message in response to a
+		 *         request for a matching NAME
+		 *
+		 * Taking the above arguments into account, the 250 ms wait is
+		 * requested only during network initialization.
+		 *
+		 * Do not restart the timer on AC message if both the NAME and
+		 * the address match and so if the address has already been
+		 * claimed (timer has expired) or the AC message has been sent
+		 * to resolve the contention with another CF (timer is still
+		 * running).
+		 */
+		goto out_ecu_put;
+	}
+
 	if (!ecu && j1939_address_is_unicast(skcb->addr.sa))
 		ecu = j1939_ecu_create_locked(priv, name);
 



  parent reply	other threads:[~2023-02-13 15:06 UTC|newest]

Thread overview: 165+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-02-13 14:49 [PATCH 5.10 000/139] 5.10.168-rc1 review Greg Kroah-Hartman
2023-02-13 14:49 ` [PATCH 5.10 001/139] firewire: fix memory leak for payload of request subaction to IEC 61883-1 FCP region Greg Kroah-Hartman
2023-02-13 14:49 ` [PATCH 5.10 002/139] bus: sunxi-rsb: Fix error handling in sunxi_rsb_init() Greg Kroah-Hartman
2023-02-13 14:49 ` [PATCH 5.10 003/139] bpf: Fix incorrect state pruning for <8B spill/fill Greg Kroah-Hartman
2023-02-13 14:49 ` [PATCH 5.10 004/139] powerpc/imc-pmu: Revert nest_init_lock to being a mutex Greg Kroah-Hartman
2023-02-13 14:49 ` [PATCH 5.10 005/139] bpf: Fix a possible task gone issue with bpf_send_signal[_thread]() helpers Greg Kroah-Hartman
2023-02-13 14:49 ` [PATCH 5.10 006/139] ALSA: hda/via: Avoid potential array out-of-bound in add_secret_dac_path() Greg Kroah-Hartman
2023-02-13 14:49 ` [PATCH 5.10 007/139] powerpc/bpf: Change register numbering for bpf_set/is_seen_register() Greg Kroah-Hartman
2023-02-13 14:49 ` [PATCH 5.10 008/139] powerpc/bpf: Move common helpers into bpf_jit.h Greg Kroah-Hartman
2023-02-13 14:49 ` [PATCH 5.10 009/139] bpf: Support <8-byte scalar spill and refill Greg Kroah-Hartman
2023-02-13 14:49 ` [PATCH 5.10 010/139] bpf: Fix to preserve reg parent/live fields when copying range info Greg Kroah-Hartman
2023-02-13 14:49 ` [PATCH 5.10 011/139] bpf, sockmap: Check for any of tcp_bpf_prots when cloning a listener Greg Kroah-Hartman
2023-02-13 14:49 ` [PATCH 5.10 012/139] arm64: dts: imx8mm: Fix pad control for UART1_DTE_RX Greg Kroah-Hartman
2023-02-13 14:49 ` [PATCH 5.10 013/139] drm/vc4: hdmi: make CEC adapter name unique Greg Kroah-Hartman
2023-02-13 14:49 ` [PATCH 5.10 014/139] scsi: Revert "scsi: core: map PQ=1, PDT=other values to SCSI_SCAN_TARGET_PRESENT" Greg Kroah-Hartman
2023-02-13 14:49 ` [PATCH 5.10 015/139] vhost/net: Clear the pending messages when the backend is removed Greg Kroah-Hartman
2023-02-13 14:49 ` [PATCH 5.10 016/139] WRITE is "data source", not destination Greg Kroah-Hartman
2023-02-13 14:49 ` [PATCH 5.10 017/139] READ is "data destination", not source Greg Kroah-Hartman
2023-02-13 14:49 ` [PATCH 5.10 018/139] fix iov_iter_bvec() "direction" argument Greg Kroah-Hartman
2023-02-13 14:49 ` [PATCH 5.10 019/139] fix "direction" argument of iov_iter_kvec() Greg Kroah-Hartman
2023-02-13 14:49 ` [PATCH 5.10 020/139] virtio-net: execute xdp_do_flush() before napi_complete_done() Greg Kroah-Hartman
2023-02-13 14:49 ` [PATCH 5.10 021/139] sfc: correctly advertise tunneled IPv6 segmentation Greg Kroah-Hartman
2023-02-13 14:49 ` [PATCH 5.10 022/139] net: phy: dp83822: Fix null pointer access on DP83825/DP83826 devices Greg Kroah-Hartman
2023-02-13 14:49 ` [PATCH 5.10 023/139] netrom: Fix use-after-free caused by accept on already connected socket Greg Kroah-Hartman
2023-02-13 14:49 ` [PATCH 5.10 024/139] netfilter: br_netfilter: disable sabotage_in hook after first suppression Greg Kroah-Hartman
2023-02-13 14:49 ` [PATCH 5.10 025/139] squashfs: harden sanity check in squashfs_read_xattr_id_table Greg Kroah-Hartman
2023-02-13 14:49 ` [PATCH 5.10 026/139] net: phy: meson-gxl: Add generic dummy stubs for MMD register access Greg Kroah-Hartman
2023-02-13 14:49 ` [PATCH 5.10 027/139] igc: return an error if the mac type is unknown in igc_ptp_systim_to_hwtstamp() Greg Kroah-Hartman
2023-02-13 14:49 ` [PATCH 5.10 028/139] can: j1939: fix errant WARN_ON_ONCE in j1939_session_deactivate Greg Kroah-Hartman
2023-02-13 14:49 ` [PATCH 5.10 029/139] ata: libata: Fix sata_down_spd_limit() when no link speed is reported Greg Kroah-Hartman
2023-02-13 14:49 ` [PATCH 5.10 030/139] selftests: net: udpgso_bench_rx: Fix used uninitialized compiler warning Greg Kroah-Hartman
2023-02-13 14:49 ` [PATCH 5.10 031/139] selftests: net: udpgso_bench_rx/tx: Stop when wrong CLI args are provided Greg Kroah-Hartman
2023-02-13 14:49 ` [PATCH 5.10 032/139] selftests: net: udpgso_bench: Fix racing bug between the rx/tx programs Greg Kroah-Hartman
2023-02-13 14:49 ` [PATCH 5.10 033/139] selftests: net: udpgso_bench_tx: Cater for pending datagrams zerocopy benchmarking Greg Kroah-Hartman
2023-02-13 14:49 ` [PATCH 5.10 034/139] virtio-net: Keep stop() to follow mirror sequence of open() Greg Kroah-Hartman
2023-02-13 14:49 ` [PATCH 5.10 035/139] net: openvswitch: fix flow memory leak in ovs_flow_cmd_new Greg Kroah-Hartman
2023-02-13 14:49 ` [PATCH 5.10 036/139] efi: fix potential NULL deref in efi_mem_reserve_persistent Greg Kroah-Hartman
2023-02-13 14:49 ` [PATCH 5.10 037/139] qede: add netpoll support for qede driver Greg Kroah-Hartman
2023-02-13 14:49 ` [PATCH 5.10 038/139] qede: execute xdp_do_flush() before napi_complete_done() Greg Kroah-Hartman
2023-02-13 14:49 ` [PATCH 5.10 039/139] i2c: mxs: suppress probe-deferral error message Greg Kroah-Hartman
2023-02-13 14:49 ` [PATCH 5.10 040/139] scsi: target: core: Fix warning on RT kernels Greg Kroah-Hartman
2023-02-13 14:49 ` [PATCH 5.10 041/139] scsi: iscsi_tcp: Fix UAF during login when accessing the shost ipaddress Greg Kroah-Hartman
2023-02-13 14:49 ` [PATCH 5.10 042/139] i2c: rk3x: fix a bunch of kernel-doc warnings Greg Kroah-Hartman
2023-02-13 14:49 ` [PATCH 5.10 043/139] platform/x86: dell-wmi: Add a keymap for KEY_MUTE in type 0x0010 table Greg Kroah-Hartman
2023-02-13 14:49 ` [PATCH 5.10 044/139] net/x25: Fix to not accept on connected socket Greg Kroah-Hartman
2023-02-13 14:49 ` [PATCH 5.10 045/139] iio: adc: stm32-dfsdm: fill module aliases Greg Kroah-Hartman
2023-02-13 14:49 ` [PATCH 5.10 046/139] usb: dwc3: dwc3-qcom: Fix typo in the dwc3 vbus override API Greg Kroah-Hartman
2023-02-13 14:49 ` [PATCH 5.10 047/139] usb: dwc3: qcom: enable vbus override when in OTG dr-mode Greg Kroah-Hartman
2023-02-13 14:49 ` [PATCH 5.10 048/139] usb: gadget: f_fs: Fix unbalanced spinlock in __ffs_ep0_queue_wait Greg Kroah-Hartman
2023-02-13 14:49 ` [PATCH 5.10 049/139] vc_screen: move load of struct vc_data pointer in vcs_read() to avoid UAF Greg Kroah-Hartman
2023-02-13 14:49 ` [PATCH 5.10 050/139] Input: i8042 - move __initconst to fix code styling warning Greg Kroah-Hartman
2023-02-13 14:49 ` [PATCH 5.10 051/139] Input: i8042 - merge quirk tables Greg Kroah-Hartman
2023-02-13 14:49 ` [PATCH 5.10 052/139] Input: i8042 - add TUXEDO devices to i8042 " Greg Kroah-Hartman
2023-02-13 14:49 ` [PATCH 5.10 053/139] Input: i8042 - add Clevo PCX0DX to i8042 quirk table Greg Kroah-Hartman
2023-02-13 14:49 ` [PATCH 5.10 054/139] fbcon: Check font dimension limits Greg Kroah-Hartman
2023-02-13 14:50 ` [PATCH 5.10 055/139] net: qrtr: free memory on error path in radix_tree_insert() Greg Kroah-Hartman
2023-02-13 14:50 ` [PATCH 5.10 056/139] watchdog: diag288_wdt: do not use stack buffers for hardware data Greg Kroah-Hartman
2023-02-13 14:50 ` [PATCH 5.10 057/139] watchdog: diag288_wdt: fix __diag288() inline assembly Greg Kroah-Hartman
2023-02-13 14:50 ` [PATCH 5.10 058/139] ALSA: hda/realtek: Add Acer Predator PH315-54 Greg Kroah-Hartman
2023-02-13 14:50 ` [PATCH 5.10 059/139] efi: Accept version 2 of memory attributes table Greg Kroah-Hartman
2023-02-13 14:50 ` [PATCH 5.10 060/139] iio: hid: fix the retval in accel_3d_capture_sample Greg Kroah-Hartman
2023-02-13 14:50 ` [PATCH 5.10 061/139] iio: adc: berlin2-adc: Add missing of_node_put() in error path Greg Kroah-Hartman
2023-02-13 14:50 ` [PATCH 5.10 062/139] iio:adc:twl6030: Enable measurements of VUSB, VBAT and others Greg Kroah-Hartman
2023-02-13 14:50 ` [PATCH 5.10 063/139] iio: imu: fxos8700: fix ACCEL measurement range selection Greg Kroah-Hartman
2023-02-13 14:50 ` [PATCH 5.10 064/139] iio: imu: fxos8700: fix incomplete ACCEL and MAGN channels readback Greg Kroah-Hartman
2023-02-13 14:50 ` [PATCH 5.10 065/139] iio: imu: fxos8700: fix IMU data bits returned to user space Greg Kroah-Hartman
2023-02-13 14:50 ` [PATCH 5.10 066/139] iio: imu: fxos8700: fix map label of channel type to MAGN sensor Greg Kroah-Hartman
2023-02-13 14:50 ` [PATCH 5.10 067/139] iio: imu: fxos8700: fix swapped ACCEL and MAGN channels readback Greg Kroah-Hartman
2023-02-13 14:50 ` [PATCH 5.10 068/139] iio: imu: fxos8700: fix incorrect ODR mode readback Greg Kroah-Hartman
2023-02-13 14:50 ` [PATCH 5.10 069/139] iio: imu: fxos8700: fix failed initialization ODR mode assignment Greg Kroah-Hartman
2023-02-13 14:50 ` [PATCH 5.10 070/139] iio: imu: fxos8700: remove definition FXOS8700_CTRL_ODR_MIN Greg Kroah-Hartman
2023-02-13 14:50 ` [PATCH 5.10 071/139] iio: imu: fxos8700: fix MAGN sensor scale and unit Greg Kroah-Hartman
2023-02-13 14:50 ` [PATCH 5.10 072/139] nvmem: qcom-spmi-sdam: fix module autoloading Greg Kroah-Hartman
2023-02-13 14:50 ` [PATCH 5.10 073/139] parisc: Fix return code of pdc_iodc_print() Greg Kroah-Hartman
2023-02-13 14:50 ` [PATCH 5.10 074/139] parisc: Wire up PTRACE_GETREGS/PTRACE_SETREGS for compat case Greg Kroah-Hartman
2023-02-13 14:50 ` [PATCH 5.10 075/139] riscv: disable generation of unwind tables Greg Kroah-Hartman
2023-02-13 14:50 ` [PATCH 5.10 076/139] mm: hugetlb: proc: check for hugetlb shared PMD in /proc/PID/smaps Greg Kroah-Hartman
2023-02-13 14:50 ` [PATCH 5.10 077/139] x86/debug: Fix stack recursion caused by wrongly ordered DR7 accesses Greg Kroah-Hartman
2023-02-13 14:50 ` [PATCH 5.10 078/139] fpga: stratix10-soc: Fix return value check in s10_ops_write_init() Greg Kroah-Hartman
2023-02-13 14:50 ` [PATCH 5.10 079/139] mm/swapfile: add cond_resched() in get_swap_pages() Greg Kroah-Hartman
2023-02-13 14:50 ` [PATCH 5.10 080/139] Squashfs: fix handling and sanity checking of xattr_ids count Greg Kroah-Hartman
2023-02-13 14:50 ` [PATCH 5.10 081/139] drm/i915: Fix potential bit_17 double-free Greg Kroah-Hartman
2023-02-13 14:50 ` [PATCH 5.10 082/139] nvmem: core: initialise nvmem->id early Greg Kroah-Hartman
2023-02-13 14:50 ` [PATCH 5.10 083/139] nvmem: core: fix cell removal on error Greg Kroah-Hartman
2023-02-13 14:50 ` [PATCH 5.10 084/139] serial: 8250_dma: Fix DMA Rx completion race Greg Kroah-Hartman
2023-02-13 14:50 ` [PATCH 5.10 085/139] serial: 8250_dma: Fix DMA Rx rearm race Greg Kroah-Hartman
2023-02-13 14:50 ` [PATCH 5.10 086/139] fbdev: smscufx: fix error handling code in ufx_usb_probe Greg Kroah-Hartman
2023-02-13 14:50 ` [PATCH 5.10 087/139] f2fs: fix to do sanity check on i_extra_isize in is_alive() Greg Kroah-Hartman
2023-02-13 14:50 ` [PATCH 5.10 088/139] wifi: brcmfmac: Check the count value of channel spec to prevent out-of-bounds reads Greg Kroah-Hartman
2023-02-13 14:50 ` [PATCH 5.10 089/139] nvmem: core: Fix a conflict between MTD and NVMEM on wp-gpios property Greg Kroah-Hartman
2023-02-13 14:50 ` [PATCH 5.10 090/139] nvmem: core: add error handling for dev_set_name Greg Kroah-Hartman
2023-02-13 14:50 ` [PATCH 5.10 091/139] nvmem: core: remove nvmem_config wp_gpio Greg Kroah-Hartman
2023-02-13 14:50 ` [PATCH 5.10 092/139] nvmem: core: fix cleanup after dev_set_name() Greg Kroah-Hartman
2023-02-13 14:50 ` [PATCH 5.10 093/139] nvmem: core: fix registration vs use race Greg Kroah-Hartman
2023-02-13 14:50 ` [PATCH 5.10 094/139] bpf: Do not reject when the stack read size is different from the tracked scalar size Greg Kroah-Hartman
2023-02-13 14:50 ` [PATCH 5.10 095/139] iio:adc:twl6030: Enable measurement of VAC Greg Kroah-Hartman
2023-02-13 14:50 ` [PATCH 5.10 096/139] mm/migration: return errno when isolate_huge_page failed Greg Kroah-Hartman
2023-02-13 14:50 ` [PATCH 5.10 097/139] migrate: hugetlb: check for hugetlb shared PMD in node migration Greg Kroah-Hartman
2023-02-13 14:50 ` [PATCH 5.10 098/139] btrfs: limit device extents to the device size Greg Kroah-Hartman
2023-02-13 14:50 ` [PATCH 5.10 099/139] btrfs: zlib: zero-initialize zlib workspace Greg Kroah-Hartman
2023-02-13 14:50 ` [PATCH 5.10 100/139] ALSA: hda/realtek: Add Positivo N14KP6-TG Greg Kroah-Hartman
2023-02-13 14:50 ` [PATCH 5.10 101/139] ALSA: emux: Avoid potential array out-of-bound in snd_emux_xg_control() Greg Kroah-Hartman
2023-02-13 14:50 ` [PATCH 5.10 102/139] ALSA: hda/realtek: Fix the speaker output on Samsung Galaxy Book2 Pro 360 Greg Kroah-Hartman
2023-02-13 14:50 ` [PATCH 5.10 103/139] tracing: Fix poll() and select() do not work on per_cpu trace_pipe and trace_pipe_raw Greg Kroah-Hartman
2023-02-13 14:50 ` [PATCH 5.10 104/139] of/address: Return an error when no valid dma-ranges are found Greg Kroah-Hartman
2023-02-13 14:50 ` Greg Kroah-Hartman [this message]
2023-02-13 14:50 ` [PATCH 5.10 106/139] xfrm: compat: change expression for switch in xfrm_xlate64 Greg Kroah-Hartman
2023-02-13 14:50 ` [PATCH 5.10 107/139] IB/hfi1: Restore allocated resources on failed copyout Greg Kroah-Hartman
2023-02-13 14:50 ` [PATCH 5.10 108/139] xfrm/compat: prevent potential spectre v1 gadget in xfrm_xlate32_attr() Greg Kroah-Hartman
2023-02-13 14:50 ` [PATCH 5.10 109/139] IB/IPoIB: Fix legacy IPoIB due to wrong number of queues Greg Kroah-Hartman
2023-02-13 14:50 ` [PATCH 5.10 110/139] RDMA/usnic: use iommu_map_atomic() under spin_lock() Greg Kroah-Hartman
2023-02-13 14:50 ` [PATCH 5.10 111/139] xfrm: fix bug with DSCP copy to v6 from v4 tunnel Greg Kroah-Hartman
2023-02-13 14:50 ` [PATCH 5.10 112/139] bonding: fix error checking in bond_debug_reregister() Greg Kroah-Hartman
2023-02-13 14:50 ` [PATCH 5.10 113/139] net: phy: meson-gxl: use MMD access dummy stubs for GXL, internal PHY Greg Kroah-Hartman
2023-02-13 14:50 ` [PATCH 5.10 114/139] ionic: clean interrupt before enabling queue to avoid credit race Greg Kroah-Hartman
2023-02-13 14:51 ` [PATCH 5.10 115/139] uapi: add missing ip/ipv6 header dependencies for linux/stddef.h Greg Kroah-Hartman
2023-02-13 14:51 ` [PATCH 5.10 116/139] ice: Do not use WQ_MEM_RECLAIM flag for workqueue Greg Kroah-Hartman
2023-02-13 14:51 ` [PATCH 5.10 117/139] net: mscc: ocelot: fix VCAP filters not matching on MAC with "protocol 802.1Q" Greg Kroah-Hartman
2023-02-13 14:51 ` [PATCH 5.10 118/139] net/mlx5e: IPoIB, Show unknown speed instead of error Greg Kroah-Hartman
2023-02-13 14:51 ` [PATCH 5.10 119/139] net/mlx5: fw_tracer, Clear load bit when freeing string DBs buffers Greg Kroah-Hartman
2023-02-13 14:51 ` [PATCH 5.10 120/139] net/mlx5: fw_tracer, Zero consumer index when reloading the tracer Greg Kroah-Hartman
2023-02-13 14:51 ` [PATCH 5.10 121/139] rds: rds_rm_zerocopy_callback() use list_first_entry() Greg Kroah-Hartman
2023-02-13 14:51 ` [PATCH 5.10 122/139] selftests: forwarding: lib: quote the sysctl values Greg Kroah-Hartman
2023-02-13 14:51 ` [PATCH 5.10 123/139] ALSA: pci: lx6464es: fix a debug loop Greg Kroah-Hartman
2023-02-13 14:51 ` [PATCH 5.10 124/139] pinctrl: aspeed: Fix confusing types in return value Greg Kroah-Hartman
2023-02-13 14:51 ` [PATCH 5.10 125/139] pinctrl: single: fix potential NULL dereference Greg Kroah-Hartman
2023-02-13 14:51 ` [PATCH 5.10 126/139] spi: dw: Fix wrong FIFO level setting for long xfers Greg Kroah-Hartman
2023-02-13 14:51 ` [PATCH 5.10 127/139] pinctrl: intel: Restore the pins that used to be in Direct IRQ mode Greg Kroah-Hartman
2023-02-13 14:51 ` [PATCH 5.10 128/139] cifs: Fix use-after-free in rdata->read_into_pages() Greg Kroah-Hartman
2023-02-13 14:51 ` [PATCH 5.10 129/139] net: USB: Fix wrong-direction WARNING in plusb.c Greg Kroah-Hartman
2023-02-13 14:51 ` [PATCH 5.10 130/139] btrfs: free device in btrfs_close_devices for a single device filesystem Greg Kroah-Hartman
2023-02-13 14:51 ` [PATCH 5.10 131/139] usb: core: add quirk for Alcor Link AK9563 smartcard reader Greg Kroah-Hartman
2023-02-13 14:51 ` [PATCH 5.10 132/139] usb: typec: altmodes/displayport: Fix probe pin assign check Greg Kroah-Hartman
2023-02-13 14:51 ` [PATCH 5.10 133/139] ceph: flush cap releases when the session is flushed Greg Kroah-Hartman
2023-02-13 14:51 ` [PATCH 5.10 134/139] riscv: Fixup race condition on PG_dcache_clean in flush_icache_pte Greg Kroah-Hartman
2023-02-13 14:51 ` [PATCH 5.10 135/139] arm64: dts: meson-gx: Make mmc host controller interrupts level-sensitive Greg Kroah-Hartman
2023-02-13 14:51 ` [PATCH 5.10 136/139] arm64: dts: meson-g12-common: " Greg Kroah-Hartman
2023-02-13 14:51 ` [PATCH 5.10 137/139] arm64: dts: meson-axg: " Greg Kroah-Hartman
2023-02-13 14:51 ` [PATCH 5.10 138/139] Fix page corruption caused by racy check in __free_pages Greg Kroah-Hartman
2023-02-13 14:51 ` [PATCH 5.10 139/139] nvmem: core: fix return value Greg Kroah-Hartman
2023-02-13 17:26 ` [PATCH 5.10 000/139] 5.10.168-rc1 review Pavel Machek
2023-02-13 19:50 ` Florian Fainelli
2023-02-14  6:20   ` Greg Kroah-Hartman
2023-02-14 13:20     ` Russell King (Oracle)
2023-02-14 14:53     ` Russell King (Oracle)
2023-02-14 15:09       ` Sasha Levin
2023-02-14 15:25         ` Russell King (Oracle)
2023-02-14 15:33           ` Sasha Levin
2023-02-14 15:39             ` Russell King (Oracle)
2023-02-14  9:16   ` Naresh Kamboju
2023-02-14 13:21     ` Naresh Kamboju
2023-02-13 23:33 ` Shuah Khan
2023-02-14  6:51 ` Guenter Roeck
2023-02-14 11:05 ` Sudip Mukherjee (Codethink)
2023-02-14 17:04 ` Guenter Roeck
2023-02-14 17:59   ` Guenter Roeck
2023-02-14 17:15 ` Guenter Roeck
2023-02-14 17:51   ` Guenter Roeck
2023-02-14 17:54     ` Linus Torvalds
2023-02-14 18:09       ` Guenter Roeck
2023-02-14 18:05     ` Greg Kroah-Hartman
2023-02-14 19:45 ` Salvatore Bonaccorso
2023-02-14 19:57   ` Guenter Roeck
2023-02-14 20:30     ` Salvatore Bonaccorso
2023-02-15  7:30 ` zhouzhixiu

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=20230213144751.409601581@linuxfoundation.org \
    --to=gregkh@linuxfoundation.org \
    --cc=devid.filoni@egluetechnologies.com \
    --cc=mkl@pengutronix.de \
    --cc=o.rempel@pengutronix.de \
    --cc=patches@lists.linux.dev \
    --cc=stable@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;
as well as URLs for NNTP newsgroup(s).