public inbox for stable@vger.kernel.org
 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, "Marek Behún" <kabel@kernel.org>,
	"Andrew Lunn" <andrew@lunn.ch>,
	"Jakub Kicinski" <kuba@kernel.org>,
	"Sasha Levin" <sashal@kernel.org>
Subject: [PATCH 6.18 094/333] net: dsa: realtek: Fix LED group port bit for non-zero LED group
Date: Tue, 17 Mar 2026 17:32:03 +0100	[thread overview]
Message-ID: <20260317163002.856548766@linuxfoundation.org> (raw)
In-Reply-To: <20260317162959.345812316@linuxfoundation.org>

6.18-stable review patch.  If anyone has any objections, please let me know.

------------------

From: Marek Behún <kabel@kernel.org>

[ Upstream commit e8f0dc024ce55451ebd54bad975134ba802e4fcc ]

The rtl8366rb_led_group_port_mask() function always returns LED port
bit in LED group 0; the switch statement returns the same thing in all
non-default cases.

This means that the driver does not currently support configuring LEDs
in non-zero LED groups.

Fix this.

Fixes: 32d617005475a71e ("net: dsa: realtek: add LED drivers for rtl8366rb")
Signed-off-by: Marek Behún <kabel@kernel.org>
Reviewed-by: Andrew Lunn <andrew@lunn.ch>
Link: https://patch.msgid.link/20260311111237.29002-1-kabel@kernel.org
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
Signed-off-by: Sasha Levin <sashal@kernel.org>
---
 drivers/net/dsa/realtek/rtl8366rb-leds.c | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/drivers/net/dsa/realtek/rtl8366rb-leds.c b/drivers/net/dsa/realtek/rtl8366rb-leds.c
index 99c890681ae60..509ffd3f8db5c 100644
--- a/drivers/net/dsa/realtek/rtl8366rb-leds.c
+++ b/drivers/net/dsa/realtek/rtl8366rb-leds.c
@@ -12,11 +12,11 @@ static inline u32 rtl8366rb_led_group_port_mask(u8 led_group, u8 port)
 	case 0:
 		return FIELD_PREP(RTL8366RB_LED_0_X_CTRL_MASK, BIT(port));
 	case 1:
-		return FIELD_PREP(RTL8366RB_LED_0_X_CTRL_MASK, BIT(port));
+		return FIELD_PREP(RTL8366RB_LED_X_1_CTRL_MASK, BIT(port));
 	case 2:
-		return FIELD_PREP(RTL8366RB_LED_0_X_CTRL_MASK, BIT(port));
+		return FIELD_PREP(RTL8366RB_LED_2_X_CTRL_MASK, BIT(port));
 	case 3:
-		return FIELD_PREP(RTL8366RB_LED_0_X_CTRL_MASK, BIT(port));
+		return FIELD_PREP(RTL8366RB_LED_X_3_CTRL_MASK, BIT(port));
 	default:
 		return 0;
 	}
-- 
2.51.0




  parent reply	other threads:[~2026-03-17 17:11 UTC|newest]

Thread overview: 346+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2026-03-17 16:30 [PATCH 6.18 000/333] 6.18.19-rc1 review Greg Kroah-Hartman
2026-03-17 16:30 ` [PATCH 6.18 001/333] scsi: storvsc: Fix scheduling while atomic on PREEMPT_RT Greg Kroah-Hartman
2026-03-17 16:30 ` [PATCH 6.18 002/333] ACPI: PM: Save NVS memory on Lenovo G70-35 Greg Kroah-Hartman
2026-03-17 16:30 ` [PATCH 6.18 003/333] scsi: ufs: core: Reset urgent_bkops_lvl to allow runtime PM power mode Greg Kroah-Hartman
2026-03-17 16:30 ` [PATCH 6.18 004/333] fs: init flags_valid before calling vfs_fileattr_get Greg Kroah-Hartman
2026-03-17 16:30 ` [PATCH 6.18 005/333] scsi: mpi3mr: Add NULL checks when resetting request and reply queues Greg Kroah-Hartman
2026-03-17 16:30 ` [PATCH 6.18 006/333] ALSA: hda/realtek: Fix speaker pop on Star Labs StarFighter Greg Kroah-Hartman
2026-03-17 16:30 ` [PATCH 6.18 007/333] unshare: fix unshare_fs() handling Greg Kroah-Hartman
2026-03-17 16:30 ` [PATCH 6.18 008/333] wifi: mac80211: set default WMM parameters on all links Greg Kroah-Hartman
2026-03-17 16:30 ` [PATCH 6.18 009/333] ACPI: OSI: Add DMI quirk for Acer Aspire One D255 Greg Kroah-Hartman
2026-03-17 16:30 ` [PATCH 6.18 010/333] scsi: ses: Fix devices attaching to different hosts Greg Kroah-Hartman
2026-03-17 16:30 ` [PATCH 6.18 011/333] ASoC: amd: yc: Add ASUS EXPERTBOOK BM1503CDA to quirk table Greg Kroah-Hartman
2026-03-17 16:30 ` [PATCH 6.18 012/333] ASoC: cs42l43: Report insert for exotic peripherals Greg Kroah-Hartman
2026-03-17 16:30 ` [PATCH 6.18 013/333] scsi: ufs: core: Fix possible NULL pointer dereference in ufshcd_add_command_trace() Greg Kroah-Hartman
2026-03-17 16:30 ` [PATCH 6.18 014/333] scsi: ufs: core: Fix shift out of bounds when MAXQ=32 Greg Kroah-Hartman
2026-03-17 16:30 ` [PATCH 6.18 015/333] ALSA: usb-audio: Avoid implicit feedback mode on DIYINHK USB Audio 2.0 Greg Kroah-Hartman
2026-03-17 16:30 ` [PATCH 6.18 016/333] drm/amdgpu/vcn5: Add SMU dpm interface type Greg Kroah-Hartman
2026-03-17 16:30 ` [PATCH 6.18 017/333] ALSA: usb-audio: Check max frame size for implicit feedback mode, too Greg Kroah-Hartman
2026-03-17 16:30 ` [PATCH 6.18 018/333] powerpc/uaccess: Fix inline assembly for clang build on PPC32 Greg Kroah-Hartman
2026-03-17 16:30 ` [PATCH 6.18 019/333] kexec: Include kernel-end even without crashkernel Greg Kroah-Hartman
2026-03-17 16:30 ` [PATCH 6.18 020/333] powerpc/kexec/core: use big-endian types for crash variables Greg Kroah-Hartman
2026-03-17 16:30 ` [PATCH 6.18 021/333] powerpc/crash: adjust the elfcorehdr size Greg Kroah-Hartman
2026-03-17 16:30 ` [PATCH 6.18 022/333] remoteproc: sysmon: Correct subsys_name_len type in QMI request Greg Kroah-Hartman
2026-03-17 16:30 ` [PATCH 6.18 023/333] remoteproc: mediatek: Unprepare SCP clock during system suspend Greg Kroah-Hartman
2026-03-17 16:30 ` [PATCH 6.18 024/333] powerpc: 83xx: km83xx: Fix keymile vendor prefix Greg Kroah-Hartman
2026-03-17 16:30 ` [PATCH 6.18 025/333] smb/server: Fix another refcount leak in smb2_open() Greg Kroah-Hartman
2026-03-17 16:30 ` [PATCH 6.18 026/333] nfs: return EISDIR on nfs3_proc_create if d_alias is a dir Greg Kroah-Hartman
2026-03-17 16:30 ` [PATCH 6.18 027/333] drm/msm/dsi: fix hdisplay calculation when programming dsi registers Greg Kroah-Hartman
2026-03-17 16:30 ` [PATCH 6.18 028/333] xprtrdma: Decrement re_receiving on the early exit paths Greg Kroah-Hartman
2026-03-17 16:30 ` [PATCH 6.18 029/333] btrfs: hold space_info->lock when clearing periodic reclaim ready Greg Kroah-Hartman
2026-03-17 16:30 ` [PATCH 6.18 030/333] workqueue: Use POOL_BH instead of WQ_BH when checking pool flags Greg Kroah-Hartman
2026-03-17 16:31 ` [PATCH 6.18 031/333] perf disasm: Fix off-by-one bug in outside check Greg Kroah-Hartman
2026-03-17 16:31 ` [PATCH 6.18 032/333] dt-bindings: display/msm: qcom,sm8750-mdss: Fix model typo Greg Kroah-Hartman
2026-03-17 16:31 ` [PATCH 6.18 033/333] net: dsa: realtek: rtl8365mb: remove ifOutDiscards from rx_packets Greg Kroah-Hartman
2026-03-17 16:31 ` [PATCH 6.18 034/333] drm/msm/dsi: fix pclk rate calculation for bonded dsi Greg Kroah-Hartman
2026-03-17 16:31 ` [PATCH 6.18 035/333] drm/amd/pm: add missing od setting PP_OD_FEATURE_ZERO_FAN_BIT for smu v13 Greg Kroah-Hartman
2026-03-17 16:31 ` [PATCH 6.18 036/333] drm/amd/pm: add missing od setting PP_OD_FEATURE_ZERO_FAN_BIT for smu v14 Greg Kroah-Hartman
2026-03-17 16:31 ` [PATCH 6.18 037/333] bonding: do not set usable_slaves for broadcast mode Greg Kroah-Hartman
2026-03-17 16:31 ` [PATCH 6.18 038/333] bonding: handle BOND_LINK_FAIL, BOND_LINK_BACK as valid link states Greg Kroah-Hartman
2026-03-17 16:31 ` [PATCH 6.18 039/333] net/mlx5: Fix deadlock between devlink lock and esw->wq Greg Kroah-Hartman
2026-03-17 16:31 ` [PATCH 6.18 040/333] net/mlx5: Fix crash when moving to switchdev mode Greg Kroah-Hartman
2026-03-17 16:31 ` [PATCH 6.18 041/333] net/mlx5: Fix peer miss rules host disabled checks Greg Kroah-Hartman
2026-03-17 16:31 ` [PATCH 6.18 042/333] net/mlx5e: Fix DMA FIFO desync on error CQE SQ recovery Greg Kroah-Hartman
2026-03-17 16:31 ` [PATCH 6.18 043/333] net/mlx5e: RX, Fix XDP multi-buf frag counting for striding RQ Greg Kroah-Hartman
2026-03-17 16:31 ` [PATCH 6.18 044/333] net/mlx5e: RX, Fix XDP multi-buf frag counting for legacy RQ Greg Kroah-Hartman
2026-03-17 16:31 ` [PATCH 6.18 045/333] net/sched: teql: fix NULL pointer dereference in iptunnel_xmit on TEQL slave xmit Greg Kroah-Hartman
2026-03-17 16:31 ` [PATCH 6.18 046/333] rxrpc, afs: Fix missing error pointer check after rxrpc_kernel_lookup_peer() Greg Kroah-Hartman
2026-03-17 16:31 ` [PATCH 6.18 047/333] net: spacemit: Fix error handling in emac_alloc_rx_desc_buffers() Greg Kroah-Hartman
2026-03-17 16:31 ` [PATCH 6.18 048/333] net: spacemit: Fix error handling in emac_tx_mem_map() Greg Kroah-Hartman
2026-03-17 16:31 ` [PATCH 6.18 049/333] drm/sitronix/st7586: fix bad pixel data due to byte swap Greg Kroah-Hartman
2026-03-17 16:31 ` [PATCH 6.18 050/333] spi: amlogic: spifc-a4: Fix DMA mapping error handling Greg Kroah-Hartman
2026-03-17 16:31 ` [PATCH 6.18 051/333] spi: rockchip-sfc: Fix double-free in remove() callback Greg Kroah-Hartman
2026-03-17 16:31 ` [PATCH 6.18 052/333] ASoC: soc-core: drop delayed_work_pending() check before flush Greg Kroah-Hartman
2026-03-17 16:31 ` [PATCH 6.18 053/333] ASoC: soc-core: flush delayed work before removing DAIs and widgets Greg Kroah-Hartman
2026-03-17 16:31 ` [PATCH 6.18 054/333] ASoC: simple-card-utils: fix graph_util_is_ports0() for DT overlays Greg Kroah-Hartman
2026-03-17 16:31 ` [PATCH 6.18 055/333] net: sfp: improve Huawei MA5671a fixup Greg Kroah-Hartman
2026-03-17 16:31 ` [PATCH 6.18 056/333] serial: caif: hold tty->link reference in ldisc_open and ser_release Greg Kroah-Hartman
2026-03-17 16:31 ` [PATCH 6.18 057/333] bnxt_en: Fix RSS table size check when changing ethtool channels Greg Kroah-Hartman
2026-03-17 16:31 ` [PATCH 6.18 058/333] mctp: i2c: fix skb memory leak in receive path Greg Kroah-Hartman
2026-03-17 16:31 ` [PATCH 6.18 059/333] can: hi311x: hi3110_open(): add check for hi3110_power_enable() return value Greg Kroah-Hartman
2026-03-17 16:31 ` [PATCH 6.18 060/333] bonding: use common function to compute the features Greg Kroah-Hartman
2026-03-17 16:31 ` [PATCH 6.18 061/333] bonding: fix type confusion in bond_setup_by_slave() Greg Kroah-Hartman
2026-03-17 16:31 ` [PATCH 6.18 062/333] mctp: route: hold key->lock in mctp_flow_prepare_output() Greg Kroah-Hartman
2026-03-17 16:31 ` [PATCH 6.18 063/333] amd-xgbe: fix link status handling in xgbe_rx_adaptation Greg Kroah-Hartman
2026-03-17 16:31 ` [PATCH 6.18 064/333] amd-xgbe: prevent CRC errors during RX adaptation with AN disabled Greg Kroah-Hartman
2026-03-17 16:31 ` [PATCH 6.18 065/333] net: add xmit recursion limit to tunnel xmit functions Greg Kroah-Hartman
2026-03-17 16:31 ` [PATCH 6.18 066/333] netfilter: nf_tables: Fix for duplicate device in netdev hooks Greg Kroah-Hartman
2026-03-17 16:31 ` [PATCH 6.18 067/333] netfilter: nf_tables: always walk all pending catchall elements Greg Kroah-Hartman
2026-03-17 16:31 ` [PATCH 6.18 068/333] netfilter: nft_set_pipapo: fix stack out-of-bounds read in pipapo_drop() Greg Kroah-Hartman
2026-03-17 16:31 ` [PATCH 6.18 069/333] netfilter: x_tables: guard option walkers against 1-byte tail reads Greg Kroah-Hartman
2026-03-17 16:31 ` [PATCH 6.18 070/333] netfilter: nfnetlink_queue: fix entry leak in bridge verdict error path Greg Kroah-Hartman
2026-03-17 16:31 ` [PATCH 6.18 071/333] netfilter: nfnetlink_cthelper: fix OOB read in nfnl_cthelper_dump_table() Greg Kroah-Hartman
2026-03-17 16:31 ` [PATCH 6.18 072/333] netfilter: xt_IDLETIMER: reject rev0 reuse of ALARM timer labels Greg Kroah-Hartman
2026-03-17 16:31 ` [PATCH 6.18 073/333] perf annotate: Fix hashmap__new() error checking Greg Kroah-Hartman
2026-03-17 16:31 ` [PATCH 6.18 074/333] regulator: pca9450: Correct interrupt type Greg Kroah-Hartman
2026-03-17 16:31 ` [PATCH 6.18 075/333] regulator: pca9450: Add support for setting debounce settings Greg Kroah-Hartman
2026-03-17 16:31 ` [PATCH 6.18 076/333] regulator: pca9450: Correct probed name for PCA9452 Greg Kroah-Hartman
2026-03-17 16:31 ` [PATCH 6.18 077/333] perf ftrace: Fix hashmap__new() error checking Greg Kroah-Hartman
2026-03-17 16:31 ` [PATCH 6.18 078/333] sched: idle: Make skipping governor callbacks more consistent Greg Kroah-Hartman
2026-03-17 16:31 ` [PATCH 6.18 079/333] nvme-pci: Fix slab-out-of-bounds in nvme_dbbuf_set Greg Kroah-Hartman
2026-03-17 16:31 ` [PATCH 6.18 080/333] nvme-pci: Fix race bug in nvme_poll_irqdisable() Greg Kroah-Hartman
2026-03-17 16:31 ` [PATCH 6.18 081/333] drivers: net: ice: fix devlink parameters get without irdma Greg Kroah-Hartman
2026-03-17 16:31 ` [PATCH 6.18 082/333] iavf: fix PTP use-after-free during reset Greg Kroah-Hartman
2026-03-17 16:31 ` [PATCH 6.18 083/333] iavf: fix incorrect reset handling in callbacks Greg Kroah-Hartman
2026-03-17 16:31 ` [PATCH 6.18 084/333] i40e: fix src IP mask checks and memcpy argument names in cloud filter Greg Kroah-Hartman
2026-03-17 16:31 ` [PATCH 6.18 085/333] e1000/e1000e: Fix leak in DMA error cleanup Greg Kroah-Hartman
2026-03-17 16:31 ` [PATCH 6.18 086/333] page_pool: store detach_time as ktime_t to avoid false-negatives Greg Kroah-Hartman
2026-03-17 16:31 ` [PATCH 6.18 087/333] net: bcmgenet: fix broken EEE by converting to phylib-managed state Greg Kroah-Hartman
2026-03-17 16:31 ` [PATCH 6.18 088/333] ACPI: OSL: fix __iomem type on return from acpi_os_map_generic_address() Greg Kroah-Hartman
2026-03-17 16:31 ` [PATCH 6.18 089/333] ASoC: amd: acp3x-rt5682-max9836: Add missing error check for clock acquisition Greg Kroah-Hartman
2026-03-17 16:31 ` [PATCH 6.18 090/333] ASoC: detect empty DMI strings Greg Kroah-Hartman
2026-03-17 16:32 ` [PATCH 6.18 091/333] drm/amdkfd: Unreserve bo if queue update failed Greg Kroah-Hartman
2026-03-17 16:32 ` [PATCH 6.18 092/333] perf synthetic-events: Fix stale build ID in module MMAP2 records Greg Kroah-Hartman
2026-03-17 16:32 ` [PATCH 6.18 093/333] net: bonding: Fix nd_tbl NULL dereference when IPv6 is disabled Greg Kroah-Hartman
2026-03-17 16:32 ` Greg Kroah-Hartman [this message]
2026-03-17 16:32 ` [PATCH 6.18 095/333] neighbour: restore protocol != 0 check in pneigh update Greg Kroah-Hartman
2026-03-17 16:32 ` [PATCH 6.18 096/333] net/mana: Null service_wq on setup error to prevent double destroy Greg Kroah-Hartman
2026-03-17 16:32 ` [PATCH 6.18 097/333] net: ti: am65-cpsw: move hw timestamping to ndo callback Greg Kroah-Hartman
2026-03-17 16:32 ` [PATCH 6.18 098/333] net: ethernet: ti: am65-cpsw-nuss: Fix rx_filter value for PTP support Greg Kroah-Hartman
2026-03-17 16:32 ` [PATCH 6.18 099/333] octeontx2-af: devlink: fix NIX RAS reporter recovery condition Greg Kroah-Hartman
2026-03-17 16:32 ` [PATCH 6.18 100/333] octeontx2-af: devlink: fix NIX RAS reporter to use RAS interrupt status Greg Kroah-Hartman
2026-03-17 16:32 ` [PATCH 6.18 101/333] net: prevent NULL deref in ip[6]tunnel_xmit() Greg Kroah-Hartman
2026-03-17 16:32 ` [PATCH 6.18 102/333] iio: imu: inv-mpu9150: fix irq ack preventing irq storms Greg Kroah-Hartman
2026-03-17 16:32 ` [PATCH 6.18 103/333] usb: gadget: f_mass_storage: Fix potential integer overflow in check_command_size_in_blocks() Greg Kroah-Hartman
2026-03-17 16:32 ` [PATCH 6.18 104/333] drm/amdgpu: ensure no_hw_access is visible before MMIO Greg Kroah-Hartman
2026-03-17 16:32 ` [PATCH 6.18 105/333] cgroup: fix race between task migration and iteration Greg Kroah-Hartman
2026-03-17 16:32 ` [PATCH 6.18 106/333] sched_ext: Remove redundant css_put() in scx_cgroup_init() Greg Kroah-Hartman
2026-03-17 16:32 ` [PATCH 6.18 107/333] ALSA: pcm: fix use-after-free on linked stream runtime in snd_pcm_drain() Greg Kroah-Hartman
2026-03-17 16:32 ` [PATCH 6.18 108/333] ALSA: usb-audio: Check endpoint numbers at parsing Scarlett2 mixer interfaces Greg Kroah-Hartman
2026-03-17 16:32 ` [PATCH 6.18 109/333] can: gs_usb: gs_can_open(): always configure bitrates before starting device Greg Kroah-Hartman
2026-03-17 16:32 ` [PATCH 6.18 110/333] net: usb: lan78xx: fix silent drop of packets with checksum errors Greg Kroah-Hartman
2026-03-17 16:32 ` [PATCH 6.18 111/333] net: usb: lan78xx: fix TX byte statistics for small packets Greg Kroah-Hartman
2026-03-17 16:32 ` [PATCH 6.18 112/333] net: usb: lan78xx: fix WARN in __netif_napi_del_locked on disconnect Greg Kroah-Hartman
2026-03-17 16:32 ` [PATCH 6.18 113/333] net: usb: lan78xx: skip LTM configuration for LAN7850 Greg Kroah-Hartman
2026-03-17 16:32 ` [PATCH 6.18 114/333] rust_binder: fix oneway spam detection Greg Kroah-Hartman
2026-03-17 16:32 ` [PATCH 6.18 115/333] rust_binder: check ownership before using vma Greg Kroah-Hartman
2026-03-17 16:32 ` [PATCH 6.18 116/333] rust_binder: avoid reading the written value in offsets array Greg Kroah-Hartman
2026-03-17 16:32 ` [PATCH 6.18 117/333] rust_binder: call set_notification_done() without proc lock Greg Kroah-Hartman
2026-03-17 16:32 ` [PATCH 6.18 118/333] rust: kbuild: allow `unused_features` Greg Kroah-Hartman
2026-03-17 16:32 ` [PATCH 6.18 119/333] rust: str: make NullTerminatedFormatter public Greg Kroah-Hartman
2026-03-17 16:32 ` [PATCH 6.18 120/333] ata: libata-core: Add BRIDGE_OK quirk for QEMU drives Greg Kroah-Hartman
2026-03-17 16:32 ` [PATCH 6.18 121/333] ASoC: amd: yc: Add DMI quirk for ASUS EXPERTBOOK PM1503CDA Greg Kroah-Hartman
2026-03-17 16:32 ` [PATCH 6.18 122/333] KVM: arm64: Fix protected mode handling of pages larger than 4kB Greg Kroah-Hartman
2026-03-17 16:32 ` [PATCH 6.18 123/333] KVM: x86: Introduce KVM_X86_QUIRK_VMCS12_ALLOW_FREEZE_IN_SMM Greg Kroah-Hartman
2026-03-17 16:32 ` [PATCH 6.18 124/333] KVM: SVM: Initialize AVIC VMCB fields if AVIC is enabled with in-kernel APIC Greg Kroah-Hartman
2026-03-17 16:32 ` [PATCH 6.18 125/333] KVM: arm64: pkvm: Fallback to level-3 mapping on host stage-2 fault Greg Kroah-Hartman
2026-03-17 16:32 ` [PATCH 6.18 126/333] USB: add QUIRK_NO_BOS for video capture several devices Greg Kroah-Hartman
2026-03-17 16:32 ` [PATCH 6.18 127/333] usb/core/quirks: Add Huawei ME906S-device to wakeup quirk Greg Kroah-Hartman
2026-03-17 16:32 ` [PATCH 6.18 128/333] USB: ezcap401 needs USB_QUIRK_NO_BOS to function on 10gbs usb speed Greg Kroah-Hartman
2026-03-17 16:32 ` [PATCH 6.18 129/333] usb: xhci: Fix memory leak in xhci_disable_slot() Greg Kroah-Hartman
2026-03-17 16:32 ` [PATCH 6.18 130/333] usb: xhci: Prevent interrupt storm on host controller error (HCE) Greg Kroah-Hartman
2026-03-17 16:32 ` [PATCH 6.18 131/333] usb: yurex: fix race in probe Greg Kroah-Hartman
2026-03-17 16:32 ` [PATCH 6.18 132/333] usb: dwc3: pci: add support for the Intel Nova Lake -H Greg Kroah-Hartman
2026-03-17 16:32 ` [PATCH 6.18 133/333] usb: misc: uss720: properly clean up reference in uss720_probe() Greg Kroah-Hartman
2026-03-17 16:32 ` [PATCH 6.18 134/333] usb: core: dont power off roothub PHYs if phy_set_mode() fails Greg Kroah-Hartman
2026-03-17 16:32 ` [PATCH 6.18 135/333] usb: cdc-acm: Restore CAP_BRK functionnality to CH343 Greg Kroah-Hartman
2026-03-17 16:32 ` [PATCH 6.18 136/333] usb: roles: get usb role switch from parent only for usb-b-connector Greg Kroah-Hartman
2026-03-17 16:32 ` [PATCH 6.18 137/333] usb: typec: altmode/displayport: set displayport signaling rate in configure message Greg Kroah-Hartman
2026-03-17 16:32 ` [PATCH 6.18 138/333] USB: usbcore: Introduce usb_bulk_msg_killable() Greg Kroah-Hartman
2026-03-17 16:32 ` [PATCH 6.18 139/333] USB: usbtmc: Use usb_bulk_msg_killable() with user-specified timeouts Greg Kroah-Hartman
2026-03-17 16:32 ` [PATCH 6.18 140/333] USB: core: Limit the length of unkillable synchronous timeouts Greg Kroah-Hartman
2026-03-17 16:32 ` [PATCH 6.18 141/333] usb: class: cdc-wdm: fix reordering issue in read code path Greg Kroah-Hartman
2026-03-17 16:32 ` [PATCH 6.18 142/333] usb: renesas_usbhs: fix use-after-free in ISR during device removal Greg Kroah-Hartman
2026-03-17 16:32 ` [PATCH 6.18 143/333] usb: gadget: f_hid: fix SuperSpeed descriptors Greg Kroah-Hartman
2026-03-17 16:32 ` [PATCH 6.18 144/333] usb: mdc800: handle signal and read racing Greg Kroah-Hartman
2026-03-17 16:32 ` [PATCH 6.18 145/333] usb: gadget: uvc: fix interval_duration calculation Greg Kroah-Hartman
2026-03-17 16:32 ` [PATCH 6.18 146/333] usb: image: mdc800: kill download URB on timeout Greg Kroah-Hartman
2026-03-17 16:32 ` [PATCH 6.18 147/333] usb: gadget: f_tcm: Fix NULL pointer dereferences in nexus handling Greg Kroah-Hartman
2026-03-17 16:32 ` [PATCH 6.18 148/333] usb: gadget: f_ncm: Fix atomic context locking issue Greg Kroah-Hartman
2026-03-17 16:32 ` [PATCH 6.18 149/333] usb: legacy: ncm: Fix NPE in gncm_bind Greg Kroah-Hartman
2026-03-17 16:32 ` [PATCH 6.18 150/333] Revert "usb: gadget: f_ncm: Fix atomic context locking issue" Greg Kroah-Hartman
2026-03-17 16:33 ` [PATCH 6.18 151/333] Revert "usb: legacy: ncm: Fix NPE in gncm_bind" Greg Kroah-Hartman
2026-03-17 16:33 ` [PATCH 6.18 152/333] Revert "usb: gadget: u_ether: Add auto-cleanup helper for freeing net_device" Greg Kroah-Hartman
2026-03-17 16:33 ` [PATCH 6.18 153/333] Revert "usb: gadget: f_ncm: align net_device lifecycle with bind/unbind" Greg Kroah-Hartman
2026-03-17 16:33 ` [PATCH 6.18 154/333] Revert "usb: gadget: u_ether: add gether_opts for config caching" Greg Kroah-Hartman
2026-03-17 16:33 ` [PATCH 6.18 155/333] usb: gadget: f_ncm: Fix net_device lifecycle with device_move Greg Kroah-Hartman
2026-03-17 16:33 ` [PATCH 6.18 156/333] mm/tracing: rss_stat: ensure curr is false from kthread context Greg Kroah-Hartman
2026-03-17 16:33 ` [PATCH 6.18 157/333] mm/kfence: fix KASAN hardware tag faults during late enablement Greg Kroah-Hartman
2026-03-17 16:33 ` [PATCH 6.18 158/333] mmc: mmci: Fix device_node reference leak in of_get_dml_pipe_index() Greg Kroah-Hartman
2026-03-17 16:33 ` [PATCH 6.18 159/333] mm/kfence: disable KFENCE upon KASAN HW tags enablement Greg Kroah-Hartman
2026-03-17 16:33 ` [PATCH 6.18 160/333] mmc: core: Avoid bitfield RMW for claim/retune flags Greg Kroah-Hartman
2026-03-17 16:33 ` [PATCH 6.18 161/333] ASoC: qcom: qdsp6: Fix q6apm remove ordering during ADSP stop and start Greg Kroah-Hartman
2026-03-17 16:33 ` [PATCH 6.18 162/333] tipc: fix divide-by-zero in tipc_sk_filter_connect() Greg Kroah-Hartman
2026-03-17 16:33 ` [PATCH 6.18 163/333] kprobes: avoid crash when rmmod/insmod after ftrace killed Greg Kroah-Hartman
2026-03-17 16:33 ` [PATCH 6.18 164/333] ceph: add a bunch of missing ceph_path_info initializers Greg Kroah-Hartman
2026-03-17 16:33 ` [PATCH 6.18 165/333] libceph: Fix potential out-of-bounds access in ceph_handle_auth_reply() Greg Kroah-Hartman
2026-03-17 16:33 ` [PATCH 6.18 166/333] libceph: reject preamble if control segment is empty Greg Kroah-Hartman
2026-03-17 16:33 ` [PATCH 6.18 167/333] libceph: prevent potential out-of-bounds reads in process_message_header() Greg Kroah-Hartman
2026-03-17 16:33 ` [PATCH 6.18 168/333] libceph: Use u32 for non-negative values in ceph_monmap_decode() Greg Kroah-Hartman
2026-03-17 16:33 ` [PATCH 6.18 169/333] libceph: admit message frames only in CEPH_CON_S_OPEN state Greg Kroah-Hartman
2026-03-17 16:33 ` [PATCH 6.18 170/333] ceph: fix i_nlink underrun during async unlink Greg Kroah-Hartman
2026-03-17 16:33 ` [PATCH 6.18 171/333] ceph: do not skip the first folio of the next object in writeback Greg Kroah-Hartman
2026-03-17 16:33 ` [PATCH 6.18 172/333] ceph: fix memory leaks in ceph_mdsc_build_path() Greg Kroah-Hartman
2026-03-17 16:33 ` [PATCH 6.18 173/333] ALSA: usb-audio: Improve Focusrite sample rate filtering Greg Kroah-Hartman
2026-03-17 16:33 ` [PATCH 6.18 174/333] time/jiffies: Mark jiffies_64_to_clock_t() notrace Greg Kroah-Hartman
2026-03-17 16:33 ` [PATCH 6.18 175/333] i3c: dw-i3c-master: Set SIR_REJECT in DAT on device attach and reattach Greg Kroah-Hartman
2026-03-17 16:33 ` [PATCH 6.18 176/333] powerpc, perf: Check that current->mm is alive before getting user callchain Greg Kroah-Hartman
2026-03-17 16:33 ` [PATCH 6.18 177/333] scsi: ufs: core: Fix SError in ufshcd_rtc_work() during UFS suspend Greg Kroah-Hartman
2026-03-17 16:33 ` [PATCH 6.18 178/333] scsi: hisi_sas: Fix NULL pointer exception during user_scan() Greg Kroah-Hartman
2026-03-17 16:33 ` [PATCH 6.18 179/333] Revert "tcpm: allow looking for role_sw device in the main node" Greg Kroah-Hartman
2026-03-17 16:33 ` [PATCH 6.18 180/333] Revert "ptdesc: remove references to folios from __pagetable_ctor() and pagetable_dtor()" Greg Kroah-Hartman
2026-03-17 16:33 ` [PATCH 6.18 181/333] kthread: consolidate kthread exit paths to prevent use-after-free Greg Kroah-Hartman
2026-03-17 17:58   ` Wentao Guan
2026-03-18 11:53     ` Greg KH
2026-03-17 16:33 ` [PATCH 6.18 182/333] cpufreq: intel_pstate: Fix NULL pointer dereference in update_cpu_qos_request() Greg Kroah-Hartman
2026-03-17 16:33 ` [PATCH 6.18 183/333] drm/amdgpu: add upper bound check on user inputs in signal ioctl Greg Kroah-Hartman
2026-03-17 16:33 ` [PATCH 6.18 184/333] drm/amdgpu/userq: Fix reference leak in amdgpu_userq_wait_ioctl Greg Kroah-Hartman
2026-03-17 16:33 ` [PATCH 6.18 185/333] drm/amdgpu: add upper bound check on user inputs in wait ioctl Greg Kroah-Hartman
2026-03-17 16:33 ` [PATCH 6.18 186/333] drm/amd: Disable MES LR compute W/A Greg Kroah-Hartman
2026-03-17 16:33 ` [PATCH 6.18 187/333] ipmi:si: Dont block module unload if the BMC is messed up Greg Kroah-Hartman
2026-03-17 16:33 ` [PATCH 6.18 188/333] ipmi:si: Use a long timeout when the BMC is misbehaving Greg Kroah-Hartman
2026-03-17 16:33 ` [PATCH 6.18 189/333] drm/bridge: samsung-dsim: Fix memory leak in error path Greg Kroah-Hartman
2026-03-17 16:33 ` [PATCH 6.18 190/333] drm/bridge: ti-sn65dsi86: Enable HPD polling if IRQ is not used Greg Kroah-Hartman
2026-03-18  7:37   ` Francesco Dolcini
2026-03-18 11:52     ` Greg Kroah-Hartman
2026-03-17 16:33 ` [PATCH 6.18 191/333] ipmi:si: Handle waiting messages when BMC failure detected Greg Kroah-Hartman
2026-03-17 16:33 ` [PATCH 6.18 192/333] nouveau/gsp: drop WARN_ON in ACPI probes Greg Kroah-Hartman
2026-03-17 16:33 ` [PATCH 6.18 193/333] drm/i915/alpm: ALPM disable fixes Greg Kroah-Hartman
2026-03-17 16:33 ` [PATCH 6.18 194/333] gpiolib: normalize the return value of gc->get() on behalf of buggy drivers Greg Kroah-Hartman
2026-03-17 16:33 ` [PATCH 6.18 195/333] ipmi:si: Fix check for a misbehaving BMC Greg Kroah-Hartman
2026-03-17 16:33 ` [PATCH 6.18 196/333] drm/xe/sync: Cleanup partially initialized sync on parse failure Greg Kroah-Hartman
2026-03-17 16:33 ` [PATCH 6.18 197/333] s390/pfault: Fix virtual vs physical address confusion Greg Kroah-Hartman
2026-03-17 16:33 ` [PATCH 6.18 198/333] bpf: Fix kprobe_multi cookies access in show_fdinfo callback Greg Kroah-Hartman
2026-03-17 16:33 ` [PATCH 6.18 199/333] arm64: gcs: Honour mprotect(PROT_NONE) on shadow stack mappings Greg Kroah-Hartman
2026-03-17 16:33 ` [PATCH 6.18 200/333] nfsd: Fix cred ref leak in nfsd_nl_listener_set_doit() Greg Kroah-Hartman
2026-03-17 16:33 ` [PATCH 6.18 201/333] device property: Allow secondary lookup in fwnode_get_next_child_node() Greg Kroah-Hartman
2026-03-17 16:33 ` [PATCH 6.18 202/333] irqchip/gic-v3-its: Limit number of per-device MSIs to the range the ITS supports Greg Kroah-Hartman
2026-03-17 16:33 ` [PATCH 6.18 203/333] btrfs: fix chunk map leak in btrfs_map_block() after btrfs_chunk_map_num_copies() Greg Kroah-Hartman
2026-03-17 16:33 ` [PATCH 6.18 204/333] iomap: reject delalloc mappings during writeback Greg Kroah-Hartman
2026-03-17 16:33 ` [PATCH 6.18 205/333] ice: reintroduce retry mechanism for indirect AQ Greg Kroah-Hartman
2026-03-17 16:33 ` [PATCH 6.18 206/333] kunit: irq: Ensure timer doesnt fire too frequently Greg Kroah-Hartman
2026-03-17 16:33 ` [PATCH 6.18 207/333] ixgbevf: fix link setup issue Greg Kroah-Hartman
2026-03-17 16:33 ` [PATCH 6.18 208/333] mm/damon/core: clear walk_control on inactive context in damos_walk() Greg Kroah-Hartman
2026-03-17 16:33 ` [PATCH 6.18 209/333] mm/slab: fix an incorrect check in obj_exts_alloc_size() Greg Kroah-Hartman
2026-03-17 16:33 ` [PATCH 6.18 210/333] staging: sm750fb: add missing pci_release_region on error and removal Greg Kroah-Hartman
2026-03-17 16:34 ` [PATCH 6.18 211/333] staging: rtl8723bs: properly validate the data in rtw_get_ie_ex() Greg Kroah-Hartman
2026-03-17 16:34 ` [PATCH 6.18 212/333] staging: rtl8723bs: fix potential out-of-bounds read in rtw_restruct_wmm_ie Greg Kroah-Hartman
2026-03-17 16:34 ` [PATCH 6.18 213/333] pinctrl: cy8c95x0: Dont miss reading the last bank registers Greg Kroah-Hartman
2026-03-17 16:34 ` [PATCH 6.18 214/333] selftests: fix mntns iteration selftests Greg Kroah-Hartman
2026-03-17 16:34 ` [PATCH 6.18 215/333] media: dvb-net: fix OOB access in ULE extension header tables Greg Kroah-Hartman
2026-03-17 16:34 ` [PATCH 6.18 216/333] net: mana: Ring doorbell at 4 CQ wraparounds Greg Kroah-Hartman
2026-03-17 16:34 ` [PATCH 6.18 217/333] ice: fix retry for AQ command 0x06EE Greg Kroah-Hartman
2026-03-17 16:34 ` [PATCH 6.18 218/333] tracing: Fix syscall events activation by ensuring refcount hits zero Greg Kroah-Hartman
2026-03-17 16:34 ` [PATCH 6.18 219/333] net/tcp-ao: Fix MAC comparison to be constant-time Greg Kroah-Hartman
2026-03-17 16:34 ` [PATCH 6.18 220/333] batman-adv: Avoid double-rtnl_lock ELP metric worker Greg Kroah-Hartman
2026-03-17 16:34 ` [PATCH 6.18 221/333] drm/xe/xe2_hpg: Correct implementation of Wa_16025250150 Greg Kroah-Hartman
2026-03-17 16:34 ` [PATCH 6.18 222/333] pmdomain: rockchip: Fix PD_VCODEC for RK3588 Greg Kroah-Hartman
2026-03-17 16:34 ` [PATCH 6.18 223/333] parisc: Increase initial mapping to 64 MB with KALLSYMS Greg Kroah-Hartman
2026-03-17 16:34 ` [PATCH 6.18 224/333] nouveau/dpcd: return EBUSY for aux xfer if the device is asleep Greg Kroah-Hartman
2026-03-17 16:34 ` [PATCH 6.18 225/333] arm64: mm: Add PTE_DIRTY back to PAGE_KERNEL* to fix kexec/hibernation Greg Kroah-Hartman
2026-03-17 16:34 ` [PATCH 6.18 226/333] hwmon: (pmbus/q54sj108a2) fix stack overflow in debugfs read Greg Kroah-Hartman
2026-03-17 16:34 ` [PATCH 6.18 227/333] io_uring/zcrx: use READ_ONCE with user shared RQEs Greg Kroah-Hartman
2026-03-17 16:34 ` [PATCH 6.18 228/333] parisc: Fix initial page table creation for boot Greg Kroah-Hartman
2026-03-17 16:34 ` [PATCH 6.18 229/333] arm64: contpte: fix set_access_flags() no-op check for SMMU/ATS faults Greg Kroah-Hartman
2026-03-17 16:34 ` [PATCH 6.18 230/333] parisc: Check kernel mapping earlier at bootup Greg Kroah-Hartman
2026-03-17 16:34 ` [PATCH 6.18 231/333] io_uring/net: reject SEND_VECTORIZED when unsupported Greg Kroah-Hartman
2026-03-17 16:34 ` [PATCH 6.18 232/333] regulator: pf9453: Respect IRQ trigger settings from firmware Greg Kroah-Hartman
2026-03-17 16:34 ` [PATCH 6.18 233/333] pmdomain: bcm: bcm2835-power: Fix broken reset status read Greg Kroah-Hartman
2026-03-17 16:34 ` [PATCH 6.18 234/333] crypto: ccp - allow callers to use HV-Fixed page API when SEV is disabled Greg Kroah-Hartman
2026-03-17 16:34 ` [PATCH 6.18 235/333] s390/stackleak: Fix __stackleak_poison() inline assembly constraint Greg Kroah-Hartman
2026-03-17 16:34 ` [PATCH 6.18 236/333] ata: libata-core: Disable LPM on ST1000DM010-2EP102 Greg Kroah-Hartman
2026-03-17 16:34 ` [PATCH 6.18 237/333] s390/xor: Fix xor_xc_2() inline assembly constraints Greg Kroah-Hartman
2026-03-17 16:34 ` [PATCH 6.18 238/333] drm/amd/display: Fallback to boot snapshot for dispclk Greg Kroah-Hartman
2026-03-17 16:34 ` [PATCH 6.18 239/333] s390/xor: Fix xor_xc_5() inline assembly Greg Kroah-Hartman
2026-03-17 16:34 ` [PATCH 6.18 240/333] slab: distinguish lock and trylock for sheaf_flush_main() Greg Kroah-Hartman
2026-03-17 16:34 ` [PATCH 6.18 241/333] memcg: fix slab accounting in refill_obj_stock() trylock path Greg Kroah-Hartman
2026-03-17 16:34 ` [PATCH 6.18 242/333] ksmbd: fix use-after-free in smb_lazy_parent_lease_break_close() Greg Kroah-Hartman
2026-03-17 16:34 ` [PATCH 6.18 243/333] smb: server: fix use-after-free in smb2_open() Greg Kroah-Hartman
2026-03-17 16:34 ` [PATCH 6.18 244/333] ksmbd: fix use-after-free by using call_rcu() for oplock_info Greg Kroah-Hartman
2026-03-17 16:34 ` [PATCH 6.18 245/333] net: mctp: fix device leak on probe failure Greg Kroah-Hartman
2026-03-17 16:34 ` [PATCH 6.18 246/333] net: nexthop: fix percpu use-after-free in remove_nh_grp_entry Greg Kroah-Hartman
2026-03-17 16:34 ` [PATCH 6.18 247/333] net: ncsi: fix skb leak in error paths Greg Kroah-Hartman
2026-03-17 16:34 ` [PATCH 6.18 248/333] net: ethernet: arc: emac: quiesce interrupts before requesting IRQ Greg Kroah-Hartman
2026-03-17 16:34 ` [PATCH 6.18 249/333] net: dsa: microchip: Fix error path in PTP IRQ setup Greg Kroah-Hartman
2026-03-17 16:34 ` [PATCH 6.18 250/333] drm/amd/pm: remove invalid gpu_metrics.energy_accumulator on smu v13.0.x Greg Kroah-Hartman
2026-03-17 16:34 ` [PATCH 6.18 251/333] drm/amdgpu: Fix use-after-free race in VM acquire Greg Kroah-Hartman
2026-03-17 16:34 ` [PATCH 6.18 252/333] drm/amd: Set num IP blocks to 0 if discovery fails Greg Kroah-Hartman
2026-03-17 16:34 ` [PATCH 6.18 253/333] drm/amd: Fix NULL pointer dereference in device cleanup Greg Kroah-Hartman
2026-03-17 16:34 ` [PATCH 6.18 254/333] drm/bridge: ti-sn65dsi83: fix CHA_DSI_CLK_RANGE rounding Greg Kroah-Hartman
2026-03-17 16:34 ` [PATCH 6.18 255/333] drm/bridge: ti-sn65dsi83: halve horizontal syncs for dual LVDS output Greg Kroah-Hartman
2026-03-17 16:34 ` [PATCH 6.18 256/333] drm/i915: Fix potential overflow of shmem scatterlist length Greg Kroah-Hartman
2026-03-17 16:34 ` [PATCH 6.18 257/333] drm/i915/psr: Repeat Selective Update area alignment Greg Kroah-Hartman
2026-03-17 16:34 ` [PATCH 6.18 258/333] drm/msm: Fix dma_free_attrs() buffer size Greg Kroah-Hartman
2026-03-17 16:34 ` [PATCH 6.18 259/333] drm/amd: Fix a few more NULL pointer dereference in device cleanup Greg Kroah-Hartman
2026-03-17 16:34 ` [PATCH 6.18 260/333] drm/msm/dpu: Correct the SA8775P intr_underrun/intr_underrun index Greg Kroah-Hartman
2026-03-17 16:34 ` [PATCH 6.18 261/333] tracing: Fix enabling multiple events on the kernel command line and bootconfig Greg Kroah-Hartman
2026-03-17 16:34 ` [PATCH 6.18 262/333] tracing: Fix trace_buf_size= cmdline parameter with sizes >= 2G Greg Kroah-Hartman
2026-03-17 16:34 ` [PATCH 6.18 263/333] net-shapers: dont free reply skb after genlmsg_reply() Greg Kroah-Hartman
2026-03-17 16:34 ` [PATCH 6.18 264/333] qmi_wwan: allow max_mtu above hard_mtu to control rx_urb_size Greg Kroah-Hartman
2026-03-17 16:34 ` [PATCH 6.18 265/333] io_uring/kbuf: check if target buffer list is still legacy on recycle Greg Kroah-Hartman
2026-03-17 16:34 ` [PATCH 6.18 266/333] cifs: make default value of retrans as zero Greg Kroah-Hartman
2026-03-17 16:34 ` [PATCH 6.18 267/333] xfs: fix integer overflow in bmap intent sort comparator Greg Kroah-Hartman
2026-03-17 16:34 ` [PATCH 6.18 268/333] xfs: fix returned valued from xfs_defer_can_append Greg Kroah-Hartman
2026-03-17 16:34 ` [PATCH 6.18 269/333] xfs: fix undersized l_iclog_roundoff values Greg Kroah-Hartman
2026-03-17 16:34 ` [PATCH 6.18 270/333] xfs: ensure dquot item is deleted from AIL only after log shutdown Greg Kroah-Hartman
2026-03-17 16:35 ` [PATCH 6.18 271/333] sched_ext: Fix enqueue_task_scx() truncation of upper enqueue flags Greg Kroah-Hartman
2026-03-17 16:35 ` [PATCH 6.18 272/333] s390/zcrypt: Enable AUTOSEL_DOM for CCA serialnr sysfs attribute Greg Kroah-Hartman
2026-03-17 16:35 ` [PATCH 6.18 273/333] s390/dasd: Move quiesce state with pprc swap Greg Kroah-Hartman
2026-03-17 16:35 ` [PATCH 6.18 274/333] s390/dasd: Copy detected format information to secondary device Greg Kroah-Hartman
2026-03-17 16:35 ` [PATCH 6.18 275/333] powerpc/pseries: Correct MSI allocation tracking Greg Kroah-Hartman
2026-03-17 16:35 ` [PATCH 6.18 276/333] powerpc64/bpf: fix kfunc call support Greg Kroah-Hartman
2026-03-17 16:35 ` [PATCH 6.18 277/333] powerpc64/bpf: fix the address returned by bpf_get_func_ip Greg Kroah-Hartman
2026-03-17 16:35 ` [PATCH 6.18 278/333] lib/bootconfig: fix off-by-one in xbc_verify_tree() unclosed brace error Greg Kroah-Hartman
2026-03-17 16:35 ` [PATCH 6.18 279/333] scsi: core: Fix error handling for scsi_alloc_sdev() Greg Kroah-Hartman
2026-03-17 16:35 ` [PATCH 6.18 280/333] x86/apic: Disable x2apic on resume if the kernel expects so Greg Kroah-Hartman
2026-03-17 16:35 ` [PATCH 6.18 281/333] kprobes: Remove unneeded warnings from __arm_kprobe_ftrace() Greg Kroah-Hartman
2026-03-17 16:35 ` [PATCH 6.18 282/333] lib/bootconfig: fix snprintf truncation check in xbc_node_compose_key_after() Greg Kroah-Hartman
2026-03-17 16:35 ` [PATCH 6.18 283/333] lib/bootconfig: check bounds before writing in __xbc_open_brace() Greg Kroah-Hartman
2026-03-17 16:35 ` [PATCH 6.18 284/333] smb: client: fix atomic open with O_DIRECT & O_SYNC Greg Kroah-Hartman
2026-03-17 16:35 ` [PATCH 6.18 285/333] smb: client: fix in-place encryption corruption in SMB2_write() Greg Kroah-Hartman
2026-03-17 16:35 ` [PATCH 6.18 286/333] smb: client: fix iface port assignment in parse_server_interfaces Greg Kroah-Hartman
2026-03-17 16:35 ` [PATCH 6.18 287/333] btrfs: fix transaction abort when snapshotting received subvolumes Greg Kroah-Hartman
2026-03-17 16:35 ` [PATCH 6.18 288/333] btrfs: fix transaction abort on file creation due to name hash collision Greg Kroah-Hartman
2026-03-17 16:35 ` [PATCH 6.18 289/333] btrfs: fix transaction abort on set received ioctl due to item overflow Greg Kroah-Hartman
2026-03-17 16:35 ` [PATCH 6.18 290/333] btrfs: add missing RCU unlock in error path in try_release_subpage_extent_buffer() Greg Kroah-Hartman
2026-03-17 16:35 ` [PATCH 6.18 291/333] btrfs: abort transaction on failure to update root in the received subvol ioctl Greg Kroah-Hartman
2026-03-17 16:35 ` [PATCH 6.18 292/333] iio: dac: ds4424: reject -128 RAW value Greg Kroah-Hartman
2026-03-17 16:35 ` [PATCH 6.18 293/333] iio: frequency: adf4377: Fix duplicated soft reset mask Greg Kroah-Hartman
2026-03-17 16:35 ` [PATCH 6.18 294/333] iio: chemical: sps30_serial: fix buffer size in sps30_serial_read_meas() Greg Kroah-Hartman
2026-03-17 16:35 ` [PATCH 6.18 295/333] iio: chemical: sps30_i2c: fix buffer size in sps30_i2c_read_meas() Greg Kroah-Hartman
2026-03-17 16:35 ` [PATCH 6.18 296/333] iio: magnetometer: tlv493d: remove erroneous shift in X-axis data Greg Kroah-Hartman
2026-03-17 16:35 ` [PATCH 6.18 297/333] iio: potentiometer: mcp4131: fix double application of wiper shift Greg Kroah-Hartman
2026-03-17 16:35 ` [PATCH 6.18 298/333] iio: chemical: bme680: Fix measurement wait duration calculation Greg Kroah-Hartman
2026-03-17 16:35 ` [PATCH 6.18 299/333] iio: buffer: Fix wait_queue not being removed Greg Kroah-Hartman
2026-03-17 16:35 ` [PATCH 6.18 300/333] iio: gyro: mpu3050-core: fix pm_runtime error handling Greg Kroah-Hartman
2026-03-17 16:35 ` [PATCH 6.18 301/333] iio: imu: adis: Fix NULL pointer dereference in adis_init Greg Kroah-Hartman
2026-03-17 16:35 ` [PATCH 6.18 302/333] iio: gyro: mpu3050-i2c: fix pm_runtime error handling Greg Kroah-Hartman
2026-03-17 16:35 ` [PATCH 6.18 303/333] iio: light: bh1780: fix PM runtime leak on error path Greg Kroah-Hartman
2026-03-17 16:35 ` [PATCH 6.18 304/333] iio: imu: inv_icm42600: fix odr switch to the same value Greg Kroah-Hartman
2026-03-17 16:35 ` [PATCH 6.18 305/333] iio: imu: inv_icm42600: fix odr switch when turning buffer off Greg Kroah-Hartman
2026-03-17 16:35 ` [PATCH 6.18 306/333] iio: proximity: hx9023s: fix assignment order for __counted_by Greg Kroah-Hartman
2026-03-17 16:35 ` [PATCH 6.18 307/333] iio: proximity: hx9023s: Protect against division by zero in set_samp_freq Greg Kroah-Hartman
2026-03-17 16:35 ` [PATCH 6.18 308/333] i3c: mipi-i3c-hci: Use ETIMEDOUT instead of ETIME for timeout errors Greg Kroah-Hartman
2026-03-17 16:35 ` [PATCH 6.18 309/333] i3c: mipi-i3c-hci: Factor out DMA mapping from queuing path Greg Kroah-Hartman
2026-03-17 16:35 ` [PATCH 6.18 310/333] i3c: mipi-i3c-hci: Consolidate spinlocks Greg Kroah-Hartman
2026-03-17 16:35 ` [PATCH 6.18 311/333] i3c: mipi-i3c-hci: Restart DMA ring correctly after dequeue abort Greg Kroah-Hartman
2026-03-17 16:35 ` [PATCH 6.18 312/333] i3c: mipi-i3c-hci: Add missing TID field to no-op command descriptor Greg Kroah-Hartman
2026-03-17 16:35 ` [PATCH 6.18 313/333] i3c: mipi-i3c-hci: Fix race in DMA ring dequeue Greg Kroah-Hartman
2026-03-17 16:35 ` [PATCH 6.18 314/333] i3c: mipi-i3c-hci: Correct RING_CTRL_ABORT handling in DMA dequeue Greg Kroah-Hartman
2026-03-17 16:35 ` [PATCH 6.18 315/333] cxl/acpi: Fix CXL_ACPI and CXL_PMEM Kconfig tristate mismatch Greg Kroah-Hartman
2026-03-17 16:35 ` [PATCH 6.18 316/333] mm: Fix a hmm_range_fault() livelock / starvation problem Greg Kroah-Hartman
2026-03-17 16:35 ` [PATCH 6.18 317/333] drm/gud: rearrange gud_probe() to prepare for function splitting Greg Kroah-Hartman
2026-03-17 16:35 ` [PATCH 6.18 318/333] drm/gud: fix NULL crtc dereference on display disable Greg Kroah-Hartman
2026-03-17 16:35 ` [PATCH 6.18 319/333] mmc: dw_mmc-rockchip: Add memory clock auto-gating support Greg Kroah-Hartman
2026-03-17 16:35 ` [PATCH 6.18 320/333] mmc: dw_mmc-rockchip: Fix runtime PM support for internal phase support Greg Kroah-Hartman
2026-03-17 16:35 ` [PATCH 6.18 321/333] KVM: arm64: gic: Set vgic_model before initing private IRQs Greg Kroah-Hartman
2026-03-17 16:35 ` [PATCH 6.18 322/333] KVM: arm64: Eagerly init vgic dist/redist on vgic creation Greg Kroah-Hartman
2026-03-17 16:35 ` [PATCH 6.18 323/333] KVM: SVM: Limit AVIC physical max index based on configured max_vcpu_ids Greg Kroah-Hartman
2026-03-17 16:35 ` [PATCH 6.18 324/333] KVM: SVM: Add a helper to look up the max physical ID for AVIC Greg Kroah-Hartman
2026-03-17 16:35 ` [PATCH 6.18 325/333] KVM: SVM: Set/clear CR8 write interception when AVIC is (de)activated Greg Kroah-Hartman
2026-03-17 16:35 ` [PATCH 6.18 326/333] kbuild: Leave objtool binary around with make clean Greg Kroah-Hartman
2026-03-17 16:35 ` [PATCH 6.18 327/333] smb: client: Compare MACs in constant time Greg Kroah-Hartman
2026-03-17 16:35 ` [PATCH 6.18 328/333] ksmbd: " Greg Kroah-Hartman
2026-03-17 16:35 ` [PATCH 6.18 329/333] lib/crypto: tests: Depend on library options rather than selecting them Greg Kroah-Hartman
2026-03-17 16:35 ` [PATCH 6.18 330/333] net/tcp-md5: Fix MAC comparison to be constant-time Greg Kroah-Hartman
2026-03-17 16:36 ` [PATCH 6.18 331/333] io_uring: ensure ctx->rings is stable for task work flags manipulation Greg Kroah-Hartman
2026-03-17 16:36 ` [PATCH 6.18 332/333] io_uring/eventfd: use ctx->rings_rcu for flags checking Greg Kroah-Hartman
2026-03-17 16:36 ` [PATCH 6.18 333/333] mm/damon/core: disallow non-power of two min_region_sz Greg Kroah-Hartman
2026-03-17 20:17 ` [PATCH 6.18 000/333] 6.18.19-rc1 review Brett A C Sheffield
2026-03-17 21:03 ` Peter Schneider
2026-03-18 11:53   ` Greg Kroah-Hartman
2026-03-18  0:45 ` Miguel Ojeda
2026-03-18  6:49 ` Jeffrin Thalakkottoor
2026-03-18  7:16 ` Shung-Hsi Yu
2026-03-18  8:17 ` Jon Hunter
2026-03-18  9:03 ` Ron Economos

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=20260317163002.856548766@linuxfoundation.org \
    --to=gregkh@linuxfoundation.org \
    --cc=andrew@lunn.ch \
    --cc=kabel@kernel.org \
    --cc=kuba@kernel.org \
    --cc=patches@lists.linux.dev \
    --cc=sashal@kernel.org \
    --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