From: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
To: stable@vger.kernel.org
Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>,
patches@lists.linux.dev, Akari Tsuyukusa <akkun11.open@gmail.com>,
Brian Masney <bmasney@redhat.com>,
Sasha Levin <sashal@kernel.org>
Subject: [PATCH 6.18 0618/1518] clk: mediatek: mt8135: Fix inverted gate control for devapc_ck
Date: Sat, 12 Sep 2026 08:46:27 +0200 [thread overview]
Message-ID: <20260912065637.409982539@linuxfoundation.org> (raw)
In-Reply-To: <20260912065623.398859879@linuxfoundation.org>
6.18-stable review patch. If anyone has any objections, please let me know.
------------------
From: Akari Tsuyukusa <akkun11.open@gmail.com>
[ Upstream commit fd0e3e4edea6a3e4da91be608ca2fb9b348f9e32 ]
The devapc_ck (CLK_INFRA_DEVAPC) on MT8135 is currently using
"mtk_clk_gate_ops_setclr". However, checking the downstream kernel reveals
that this clock is configured with set:enable and clr:disable making
"mtk_clk_gate_ops_setclr_inv" the appropriate choice.
But, it is strange that some downstream kernels are not like that.
Amazon: INV
ChromiumOS (early): not INV
ChromiumOS 3.16 to 3.18-revew-v2: INV
ChromiumOS 3.18-review-v3 and later (sent to kernel.org): not INV
Link: https://github.com/amazon-oss/android_kernel_amazon_mt8135/blob/e2b2163a8ec4a7c8d961c89003a15b4ba0f0e371/arch/arm/mach-mt8135/mt_clkmgr.c#L1022-L1028
Link: https://github.com/mtk09422/chromiumos-third_party-kernel-mediatek/blob/4b624ee66e65d5dcd43fca36b313086efae8922a/arch/arm/boot/dts/mt8135-clocks.dtsi#L944-L948
Link: https://github.com/mtk09422/chromiumos-third_party-kernel-mediatek/blob/decd80c01d0dbe9f3afa8ff72273b5618b418180/drivers/clk/mediatek/clk-mt8135.c#L881-L882
Link: https://github.com/mtk09422/chromiumos-third_party-kernel-mediatek/blob/9b6f06cb7637100aa1a42e1fc351b36b384a1c54/drivers/clk/mediatek/clk-mt8135.c#L450
Fixes: a8aede794843 ("clk: mediatek: Add basic clocks for Mediatek MT8135.")
Signed-off-by: Akari Tsuyukusa <akkun11.open@gmail.com>
Signed-off-by: Brian Masney <bmasney@redhat.com>
Signed-off-by: Sasha Levin <sashal@kernel.org>
---
drivers/clk/mediatek/clk-mt8135.c | 5 ++++-
1 file changed, 4 insertions(+), 1 deletion(-)
diff --git a/drivers/clk/mediatek/clk-mt8135.c b/drivers/clk/mediatek/clk-mt8135.c
index 084e48a554c26..1d20e15608f77 100644
--- a/drivers/clk/mediatek/clk-mt8135.c
+++ b/drivers/clk/mediatek/clk-mt8135.c
@@ -409,6 +409,9 @@ static const struct mtk_gate_regs infra_cg_regs = {
GATE_MTK_FLAGS(_id, _name, _parent, &infra_cg_regs, _shift, \
&mtk_clk_gate_ops_setclr, CLK_IS_CRITICAL)
+#define GATE_ICG_INV(_id, _name, _parent, _shift) \
+ GATE_MTK(_id, _name, _parent, &infra_cg_regs, _shift, &mtk_clk_gate_ops_setclr_inv)
+
static const struct mtk_gate infra_clks[] = {
GATE_DUMMY(CLK_DUMMY, "infra_dummy"),
GATE_ICG(CLK_INFRA_PMIC_WRAP, "pmic_wrap_ck", "axi_sel", 23),
@@ -419,7 +422,7 @@ static const struct mtk_gate infra_clks[] = {
GATE_ICG(CLK_INFRA_CPUM, "cpum_ck", "cpum_tck_in", 15),
GATE_ICG_AO(CLK_INFRA_M4U, "m4u_ck", "mem_sel", 8),
GATE_ICG(CLK_INFRA_MFGAXI, "mfgaxi_ck", "axi_sel", 7),
- GATE_ICG(CLK_INFRA_DEVAPC, "devapc_ck", "axi_sel", 6),
+ GATE_ICG_INV(CLK_INFRA_DEVAPC, "devapc_ck", "axi_sel", 6),
GATE_ICG(CLK_INFRA_AUDIO, "audio_ck", "aud_intbus_sel", 5),
GATE_ICG(CLK_INFRA_MFG_BUS, "mfg_bus_ck", "axi_sel", 2),
GATE_ICG(CLK_INFRA_SMI, "smi_ck", "smi_sel", 1),
--
2.53.0
next prev parent reply other threads:[~2026-09-12 10:20 UTC|newest]
Thread overview: 1533+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-09-12 6:36 [PATCH 6.18 0000/1518] 6.18.52-rc1 review Greg Kroah-Hartman
2026-09-12 6:36 ` [PATCH 6.18 0001/1518] net/mlx5e: xsk: Fix unlocked writing to ICOSQ Greg Kroah-Hartman
2026-09-12 6:36 ` [PATCH 6.18 0002/1518] drm/amd/display: Fix backlight max_brightness to match exported range Greg Kroah-Hartman
2026-09-12 6:36 ` [PATCH 6.18 0003/1518] drm/amd/display: Scale custom brightness curve from full range Greg Kroah-Hartman
2026-09-12 6:36 ` [PATCH 6.18 0004/1518] batman-adv: dat: atomically update mac addresses Greg Kroah-Hartman
2026-09-12 6:36 ` [PATCH 6.18 0005/1518] batman-adv: bla: avoid CRC corruption due to parallel claim add Greg Kroah-Hartman
2026-09-12 6:36 ` [PATCH 6.18 0006/1518] mm/damon/sysfs: read ops_id only once in damon_sysfs_apply_inputs() Greg Kroah-Hartman
2026-09-12 6:36 ` [PATCH 6.18 0007/1518] batman-adv: fix TX priority extraction for BATADV_FORW_MCAST Greg Kroah-Hartman
2026-09-12 6:36 ` [PATCH 6.18 0008/1518] ALSA: usb-audio: Relax __free() variable declarations Greg Kroah-Hartman
2026-09-12 6:36 ` [PATCH 6.18 0009/1518] ASoC: tegra210_mixer: sort the register default table Greg Kroah-Hartman
2026-09-12 6:36 ` [PATCH 6.18 0010/1518] dma-buf: dma-heap: dont publish fd before copy_to_user() succeeds Greg Kroah-Hartman
2026-09-12 6:36 ` [PATCH 6.18 0011/1518] i3c: master: Fix device_register() error path Greg Kroah-Hartman
2026-09-12 6:36 ` [PATCH 6.18 0012/1518] mtd: rawnand: pl353: Add message about ECC mode Greg Kroah-Hartman
2026-09-12 6:36 ` [PATCH 6.18 0013/1518] net/mlx5e: SHAMPO, Always calculate page size Greg Kroah-Hartman
2026-09-12 6:36 ` [PATCH 6.18 0014/1518] nvme: fold nvme_config_discard() into nvme_update_disk_info() Greg Kroah-Hartman
2026-09-12 6:36 ` [PATCH 6.18 0015/1518] PCI: Introduce PCI_SLOT_PLACEHOLDER constant for slot_nr placeholder value Greg Kroah-Hartman
2026-09-12 6:36 ` [PATCH 6.18 0016/1518] perf/core: Fix deadlock in perf_mmap() failure path Greg Kroah-Hartman
2026-09-12 6:36 ` [PATCH 6.18 0017/1518] platform/x86: intel_sar: Check ACPI_HANDLE() against NULL Greg Kroah-Hartman
2026-09-12 6:36 ` [PATCH 6.18 0018/1518] platform/x86: ISST: Check for admin capability for write commands Greg Kroah-Hartman
2026-09-12 6:36 ` [PATCH 6.18 0019/1518] PM: runtime: Wrapper macros for ACQUIRE()/ACQUIRE_ERR() Greg Kroah-Hartman
2026-09-12 6:36 ` [PATCH 6.18 0020/1518] ring-buffer: Show persistent buffer dropped events in trace_pipe file Greg Kroah-Hartman
2026-09-12 6:36 ` [PATCH 6.18 0021/1518] staging: rtl8723bs: fix spacing around operators Greg Kroah-Hartman
2026-09-12 6:36 ` [PATCH 6.18 0022/1518] tracing/probes: ignore id update from btf_type_skip_modifiers Greg Kroah-Hartman
2026-09-12 6:36 ` [PATCH 6.18 0023/1518] udf: Move udf_map_block() up Greg Kroah-Hartman
2026-09-12 6:36 ` [PATCH 6.18 0024/1518] wifi: mt76: mt7996: bound the device EEPROM address before the EFUSE copy Greg Kroah-Hartman
2026-09-12 6:36 ` [PATCH 6.18 0025/1518] compiler_types: Move lock checking attributes to compiler-context-analysis.h Greg Kroah-Hartman
2026-09-12 6:36 ` [PATCH 6.18 0026/1518] i2c: qcom-cci: Do not check return value of cci_init() Greg Kroah-Hartman
2026-09-12 6:36 ` [PATCH 6.18 0027/1518] tracing: Clean up use of trace_create_maxlat_file() Greg Kroah-Hartman
2026-09-12 6:36 ` [PATCH 6.18 0028/1518] io_uring: unify task_work cancelation checks Greg Kroah-Hartman
2026-09-12 6:36 ` [PATCH 6.18 0029/1518] nvdimm: preserve flush callback -ENOMEM Greg Kroah-Hartman
2026-09-12 6:36 ` [PATCH 6.18 0030/1518] ALSA: FCP: do not copy out an uninitialised init response Greg Kroah-Hartman
2026-09-12 6:36 ` [PATCH 6.18 0031/1518] ASoC: tegra: Fix the MIXER enable default value Greg Kroah-Hartman
2026-09-12 6:36 ` [PATCH 6.18 0032/1518] i3c: master: Fix recursive locking during device registration Greg Kroah-Hartman
2026-09-12 6:36 ` [PATCH 6.18 0033/1518] iio: light: apds9306: fix PM reference leak in apds9306_read_data() Greg Kroah-Hartman
2026-09-12 6:36 ` [PATCH 6.18 0034/1518] misc: fastrpc: dont publish fd before copy_to_user() succeeds Greg Kroah-Hartman
2026-09-12 6:36 ` [PATCH 6.18 0035/1518] mtd: rawnand: pl353: Make sure we use the monolithic helpers for raw accesses Greg Kroah-Hartman
2026-09-12 6:36 ` [PATCH 6.18 0036/1518] net/mlx5e: do not HW-GRO coalesce small frames Greg Kroah-Hartman
2026-09-12 6:36 ` [PATCH 6.18 0037/1518] nvme: skip the zoned limits update if the zone info query failed Greg Kroah-Hartman
2026-09-12 6:36 ` [PATCH 6.18 0038/1518] PCI: Allow per function PCI slots to fix slot reset on s390 Greg Kroah-Hartman
2026-09-12 6:36 ` [PATCH 6.18 0039/1518] perf: Fix use-after-free when perf mmap() revival races with the last munmap() Greg Kroah-Hartman
2026-09-12 6:36 ` [PATCH 6.18 0040/1518] platform/x86: int1092: Fix potential memory leak in sar_probe() Greg Kroah-Hartman
2026-09-12 6:36 ` [PATCH 6.18 0041/1518] platform/x86: ISST: Validate max level for set feature Greg Kroah-Hartman
2026-09-12 6:36 ` [PATCH 6.18 0042/1518] ring-buffer: Allow splice reads on static buffers Greg Kroah-Hartman
2026-09-12 6:36 ` [PATCH 6.18 0043/1518] staging: rtl8723bs: fix OOB read in rtw_restruct_wmm_ie() Greg Kroah-Hartman
2026-09-12 6:36 ` [PATCH 6.18 0044/1518] tracing/probes: Fix BTF kflag check for anonymous struct member access Greg Kroah-Hartman
2026-09-12 6:36 ` [PATCH 6.18 0045/1518] udf: Fix data loss when converting inline inodes to out of line Greg Kroah-Hartman
2026-09-12 6:36 ` [PATCH 6.18 0046/1518] futex: Optimize futex hash bucket access patterns Greg Kroah-Hartman
2026-09-12 6:36 ` [PATCH 6.18 0047/1518] i2c: qcom-cci: Remove overcautious disable_irq() calls Greg Kroah-Hartman
2026-09-12 6:36 ` [PATCH 6.18 0048/1518] tracing: Make printk_trace global for tracing system Greg Kroah-Hartman
2026-09-12 6:36 ` [PATCH 6.18 0049/1518] io_uring/waitid: have io_waitid_complete() remove wait queue entry Greg Kroah-Hartman
2026-09-12 6:36 ` [PATCH 6.18 0050/1518] nvdimm: pmem: keep PREFLUSH before data writes Greg Kroah-Hartman
2026-09-12 6:37 ` [PATCH 6.18 0051/1518] futex: Provide rt_mutex_.*_schedule() equivalents for futex scheduling Greg Kroah-Hartman
2026-09-12 6:37 ` [PATCH 6.18 0052/1518] i2c: qcom-cci: fix autosuspend cleanup Greg Kroah-Hartman
2026-09-12 6:37 ` [PATCH 6.18 0053/1518] tracing: Take trace_array reference when opening options file Greg Kroah-Hartman
2026-09-12 6:37 ` [PATCH 6.18 0054/1518] io_uring: only call io_should_terminate_tw() once for ctx Greg Kroah-Hartman
2026-09-12 6:37 ` [PATCH 6.18 0055/1518] nvdimm: virtio_pmem: stop allocating child flush bio Greg Kroah-Hartman
2026-09-12 6:37 ` [PATCH 6.18 0056/1518] io_uring: add wrapper type for io_req_tw_func_t arg Greg Kroah-Hartman
2026-09-12 6:37 ` [PATCH 6.18 0057/1518] nvdimm: virtio_pmem: always wake -ENOSPC waiters Greg Kroah-Hartman
2026-09-12 6:37 ` [PATCH 6.18 0058/1518] io_uring/waitid: honor task_work cancellation Greg Kroah-Hartman
2026-09-12 6:37 ` [PATCH 6.18 0059/1518] nvdimm: virtio_pmem: use READ_ONCE()/WRITE_ONCE() for wait flags Greg Kroah-Hartman
2026-09-12 6:37 ` [PATCH 6.18 0060/1518] io_uring/waitid: avoid siginfo copy during ring teardown Greg Kroah-Hartman
2026-09-12 6:37 ` [PATCH 6.18 0061/1518] nvdimm: virtio_pmem: refcount requests for token lifetime Greg Kroah-Hartman
2026-09-12 6:37 ` [PATCH 6.18 0062/1518] accel/amdxdna: return early from a zero-length flush Greg Kroah-Hartman
2026-09-12 6:37 ` [PATCH 6.18 0063/1518] clk: qcom: Fix test_ctl_hi field for DEFAULT_EVO PLLs Greg Kroah-Hartman
2026-09-12 6:37 ` [PATCH 6.18 0064/1518] ftrace: Take trace_array reference before accessing its ftrace_ops Greg Kroah-Hartman
2026-09-12 6:37 ` [PATCH 6.18 0065/1518] i3c: master: Do not treat master device as a duplicate target Greg Kroah-Hartman
2026-09-12 6:37 ` [PATCH 6.18 0066/1518] i3c: master: Fix use-after-free of master->this Greg Kroah-Hartman
2026-09-12 6:37 ` [PATCH 6.18 0067/1518] mm/huge_memory: transfer the pmd dirty bit to the folio on zap Greg Kroah-Hartman
2026-09-12 6:37 ` [PATCH 6.18 0068/1518] mm/mremap: reset unfaulted VMA page offset for MREMAP_DONTUNMAP Greg Kroah-Hartman
2026-09-12 6:37 ` [PATCH 6.18 0069/1518] mm/secretmem: properly account locked pages Greg Kroah-Hartman
2026-09-12 6:37 ` [PATCH 6.18 0070/1518] mm: fix incorrect vm_flags usage when checking allowable orders for tmpfs Greg Kroah-Hartman
2026-09-12 6:37 ` [PATCH 6.18 0071/1518] perf/x86/intel: Remove anythread_deprecated bit from perf_capabilities Greg Kroah-Hartman
2026-09-12 6:37 ` [PATCH 6.18 0072/1518] platform/x86/amd/pmc: Fix msg_port restoration in amd_stb_debugfs_open_v2() Greg Kroah-Hartman
2026-09-12 6:37 ` [PATCH 6.18 0073/1518] platform/x86: hp-wmi: Add support for OMEN MAX 16-ak0xxx (8DD6) Greg Kroah-Hartman
2026-09-12 6:37 ` [PATCH 6.18 0074/1518] staging: sm750fb: fix mono image source stride mismatch in lynxfb_ops_imageblit() Greg Kroah-Hartman
2026-09-12 6:37 ` [PATCH 6.18 0075/1518] tracing/probes: Fix anon_stack check for unnamed bitfields in btf_find_struct_member Greg Kroah-Hartman
2026-09-12 6:37 ` [PATCH 6.18 0076/1518] usb: cdnsp: fix wakeup from S3 after controller context loss Greg Kroah-Hartman
2026-09-12 6:37 ` [PATCH 6.18 0077/1518] usb: gadget: f_mass_storage: fix null pointer dereference in fsg_common_set_num_buffers() Greg Kroah-Hartman
2026-09-12 6:37 ` [PATCH 6.18 0078/1518] wifi: rtw89: pci: add .shutdown callback to stop rfkill polling on reboot Greg Kroah-Hartman
2026-09-12 6:37 ` [PATCH 6.18 0079/1518] dm-pcache: reject a kset that overruns its segment Greg Kroah-Hartman
2026-09-12 6:37 ` [PATCH 6.18 0080/1518] dm-pcache: bound the logical key offset from persistent memory Greg Kroah-Hartman
2026-09-12 6:37 ` [PATCH 6.18 0081/1518] dm-pcache: validate the persisted dirty_tail chain at load Greg Kroah-Hartman
2026-09-12 6:37 ` [PATCH 6.18 0082/1518] KVM: arm64: nv: Fully update VNCR fixmap state in kvm_translate_vncr() Greg Kroah-Hartman
2026-09-12 6:37 ` [PATCH 6.18 0083/1518] KVM: arm64: Handle VNCR TLB invalidation race with vcpu_put() VNCR unmapping Greg Kroah-Hartman
2026-09-12 6:37 ` [PATCH 6.18 0084/1518] media: dt-bindings: nxp,imx8-isi: Drop fsl,blk-ctrl requirement for i.MX8ULP Greg Kroah-Hartman
2026-09-12 6:37 ` [PATCH 6.18 0085/1518] KVM: arm64: Remove VM-wide VNCR mapping counter Greg Kroah-Hartman
2026-09-12 6:37 ` [PATCH 6.18 0086/1518] KVM: x86: Disallow EFER.LME and EFER.LMA if long mode is not supported Greg Kroah-Hartman
2026-09-12 6:37 ` [PATCH 6.18 0087/1518] KVM: s390: Zero initialize data structures for inject_pfault_token Greg Kroah-Hartman
2026-09-12 6:37 ` [PATCH 6.18 0088/1518] KVM: x86: Extract REGS and SREGS runtime sync code to helpers Greg Kroah-Hartman
2026-09-12 6:37 ` [PATCH 6.18 0089/1518] KVM: x86: Rename __{g,s}et_sregs2() => kvm_vcpu_ioctl_x86_{g,s}et_sregs2() Greg Kroah-Hartman
2026-09-12 6:37 ` [PATCH 6.18 0090/1518] KVM: x86: Move the bulk of register specific code from x86.c to regs.c Greg Kroah-Hartman
2026-09-12 6:37 ` [PATCH 6.18 0091/1518] KVM: x86: Check EFER validity on KVM_SET_SREGS* Greg Kroah-Hartman
2026-09-12 6:37 ` [PATCH 6.18 0092/1518] Smack: Fix error in capability bypass Greg Kroah-Hartman
2026-09-12 6:37 ` [PATCH 6.18 0093/1518] drm: Remove unused header in drm_dumb_buffers.c Greg Kroah-Hartman
2026-09-12 6:37 ` [PATCH 6.18 0094/1518] drm: lcdif: Wait for vblank before disabling DMA Greg Kroah-Hartman
2026-09-12 6:37 ` [PATCH 6.18 0095/1518] drm/bridge: synopsys: dw-dp: Support unregistering the AUX channel Greg Kroah-Hartman
2026-09-12 6:37 ` [PATCH 6.18 0096/1518] drm/bridge: synopsys: dw-dp: Set pixel mode by platform data Greg Kroah-Hartman
2026-09-12 6:37 ` [PATCH 6.18 0097/1518] drm/rockchip: dw_dp: Simplify error handling Greg Kroah-Hartman
2026-09-12 6:37 ` [PATCH 6.18 0098/1518] drm/rockchip: dw_dp: Add missing newline in dev_err_probe() message Greg Kroah-Hartman
2026-09-12 6:37 ` [PATCH 6.18 0099/1518] drm/rockchip: dw_dp: Release core resources Greg Kroah-Hartman
2026-09-12 6:37 ` [PATCH 6.18 0100/1518] drm/rockchip: vop2: Fix wrong wait target in layer cfg done check Greg Kroah-Hartman
2026-09-12 6:37 ` [PATCH 6.18 0101/1518] drm/rockchip: vop2: Wait for layer cfg done before switching LAYERSEL_REGDONE_SEL Greg Kroah-Hartman
2026-09-12 6:37 ` [PATCH 6.18 0102/1518] drm/rockchip: analogix_dp: Enable hclk for RK3588 Greg Kroah-Hartman
2026-09-12 6:37 ` [PATCH 6.18 0103/1518] drm/rockchip: analogix_dp: Fix OF node reference leak via auto cleanup Greg Kroah-Hartman
2026-09-12 6:37 ` [PATCH 6.18 0104/1518] drm/bridge: display-connector: dont autoenable HPD IRQ Greg Kroah-Hartman
2026-09-12 6:37 ` [PATCH 6.18 0105/1518] drm/bridge: display-connector: trigger initial HPD event for DP Greg Kroah-Hartman
2026-09-12 6:37 ` [PATCH 6.18 0106/1518] drm/v3d: Clear queue->active_job when v3d_fence_create() fails Greg Kroah-Hartman
2026-09-12 6:37 ` [PATCH 6.18 0107/1518] drm/rockchip: vop2: Add RK3576 to the RG swap special case Greg Kroah-Hartman
2026-09-12 6:37 ` [PATCH 6.18 0108/1518] drm/rockchip: vop2: Recognise 10-bit YUV422 as YUV format Greg Kroah-Hartman
2026-09-12 6:37 ` [PATCH 6.18 0109/1518] drm/bridge: cdns-dsi: Return an error pointer on allocation failure Greg Kroah-Hartman
2026-09-12 6:37 ` [PATCH 6.18 0110/1518] drm/bridge: cdns-mhdp8546: " Greg Kroah-Hartman
2026-09-12 6:38 ` [PATCH 6.18 0111/1518] smack: fix incorrect task context in smack_msg_queue_msgrcv Greg Kroah-Hartman
2026-09-12 6:38 ` [PATCH 6.18 0112/1518] smack: simplify write handlers of sysfs entries Greg Kroah-Hartman
2026-09-12 6:38 ` [PATCH 6.18 0113/1518] smack: deduplicate smackfs/{direct,mapped} file_operations Greg Kroah-Hartman
2026-09-12 6:38 ` [PATCH 6.18 0114/1518] smack: restrict smackfs/{direct,mapped} values to 0-255 Greg Kroah-Hartman
2026-09-12 6:38 ` [PATCH 6.18 0115/1518] sched_ext/scx_flatcg: Fix cvtime_delta race and add hweight scaling to bypass charging Greg Kroah-Hartman
2026-09-12 6:38 ` [PATCH 6.18 0116/1518] x86/cfi: Use symmetric SYM_START and SYM_END in __CFI_TYPE() Greg Kroah-Hartman
2026-09-12 6:38 ` [PATCH 6.18 0117/1518] platform/chrome: cros_ec_typec: Reject out-of-bounds PD cap count Greg Kroah-Hartman
2026-09-12 6:38 ` [PATCH 6.18 0118/1518] selftests: proc: include fcntl.h in proc-pidns Greg Kroah-Hartman
2026-09-12 6:38 ` [PATCH 6.18 0119/1518] HID: core: quiesce input in hid_hw_stop() to prevent use-after-free Greg Kroah-Hartman
2026-09-12 6:38 ` [PATCH 6.18 0120/1518] HID: nintendo: Fix imu_timestamp_us double increment per report Greg Kroah-Hartman
2026-09-12 6:38 ` [PATCH 6.18 0121/1518] HID: roccat: bound device-supplied profile index Greg Kroah-Hartman
2026-09-12 6:38 ` [PATCH 6.18 0122/1518] soc: samsung: exynos-pmu: fix of_node refcount leak in exynos_get_pmu_regmap() Greg Kroah-Hartman
2026-09-12 6:38 ` [PATCH 6.18 0123/1518] media: cec-pin: Fix event FIFO ordering Greg Kroah-Hartman
2026-09-12 6:38 ` [PATCH 6.18 0124/1518] cxl/mbox: Clamp mailbox output allocation to the payload size Greg Kroah-Hartman
2026-09-12 6:38 ` [PATCH 6.18 0125/1518] cxl/pci: Remove incorrect mbox.valid check in cxl_pci_type3_init_mailbox() Greg Kroah-Hartman
2026-09-12 6:38 ` [PATCH 6.18 0126/1518] clk: versaclock7: Fix APLL clock leak on probe failure Greg Kroah-Hartman
2026-09-12 6:38 ` [PATCH 6.18 0127/1518] clk: moxart: remove unused variables, fix refcount leak Greg Kroah-Hartman
2026-09-12 6:38 ` [PATCH 6.18 0128/1518] clk: nuvoton: ma35d1: fix ignored div_u64 return values in PLL freq calculation Greg Kroah-Hartman
2026-09-12 6:38 ` [PATCH 6.18 0129/1518] clk: nuvoton: ma35d1: fix PLL_CTL1_FRAC bit field width and fractional calc Greg Kroah-Hartman
2026-09-12 6:38 ` [PATCH 6.18 0130/1518] clk: nuvoton: ma35d1: fix ma35d1_clk_pll_determine_rate logic Greg Kroah-Hartman
2026-09-12 6:38 ` [PATCH 6.18 0131/1518] clk: stm32: add missing bitfield.h header Greg Kroah-Hartman
2026-09-12 6:38 ` [PATCH 6.18 0132/1518] ASoC: rt700-sdw: always drain jack work on remove Greg Kroah-Hartman
2026-09-12 6:38 ` [PATCH 6.18 0133/1518] ASoC: fsl_audmix: rework runtime PM handling in probe Greg Kroah-Hartman
2026-09-12 6:38 ` [PATCH 6.18 0134/1518] clk: hisilicon: reset: Use devm_kzalloc to initialize hisi_reset_controller Greg Kroah-Hartman
2026-09-12 6:38 ` [PATCH 6.18 0135/1518] ARM: imx: fix device_node refcount leak in imx_src_init() Greg Kroah-Hartman
2026-09-12 6:38 ` [PATCH 6.18 0136/1518] ARM: imx: fix device_node refcount leaks in imx7_src_init() Greg Kroah-Hartman
2026-09-12 6:38 ` [PATCH 6.18 0137/1518] arm64: dts: imx93-kontron: set memory node to 0x80000000/1GiB Greg Kroah-Hartman
2026-09-12 6:38 ` [PATCH 6.18 0138/1518] clk: imx: scu: drop redundant init.ops variable assignment Greg Kroah-Hartman
2026-09-12 6:38 ` [PATCH 6.18 0139/1518] drm/lima: call drm_mm_init() with a valid allocation range Greg Kroah-Hartman
2026-09-12 6:38 ` [PATCH 6.18 0140/1518] mm/mm_init: fix incorrect node_spanned_pages Greg Kroah-Hartman
2026-09-12 6:38 ` [PATCH 6.18 0141/1518] sched/fair: Fix overflow in update_tg_cfs_runnable() Greg Kroah-Hartman
2026-09-12 6:38 ` [PATCH 6.18 0142/1518] perf/x86/intel/uncore: Keep PCI PMUs working when MMIO/MSR setup fails Greg Kroah-Hartman
2026-09-12 6:38 ` [PATCH 6.18 0143/1518] pinctrl: bcm2835: Dont remove an unregistered GPIO chip Greg Kroah-Hartman
2026-09-12 6:38 ` [PATCH 6.18 0144/1518] riscv: kexec_file: Fix crashk_low_res not exclude bug Greg Kroah-Hartman
2026-09-12 6:38 ` [PATCH 6.18 0145/1518] media: keymaps: Remove obsolete RC_MAP_RC5_TV keymap define Greg Kroah-Hartman
2026-09-12 6:38 ` [PATCH 6.18 0146/1518] media: keymaps: Remove obsolete RC_MAP_HAUPPAUGE_NEW " Greg Kroah-Hartman
2026-09-12 6:38 ` [PATCH 6.18 0147/1518] wifi: ath12k: correct monitor destination ring size Greg Kroah-Hartman
2026-09-12 6:38 ` [PATCH 6.18 0148/1518] perf test: Drain pipe after child finishes to avoid losing output Greg Kroah-Hartman
2026-09-12 6:38 ` [PATCH 6.18 0149/1518] perf test: Refactor parallel poll loop to drain all pipes simultaneously Greg Kroah-Hartman
2026-09-12 6:38 ` [PATCH 6.18 0150/1518] perf test: Show snippet failure output for verbose=1 Greg Kroah-Hartman
2026-09-12 6:38 ` [PATCH 6.18 0151/1518] perf test: Add summary reporting Greg Kroah-Hartman
2026-09-12 6:38 ` [PATCH 6.18 0152/1518] perf test: Fix subtest status alignment for multi-digit indexes Greg Kroah-Hartman
2026-09-12 6:38 ` [PATCH 6.18 0153/1518] perf test: Add -j/--junit option for JUnit XML test reports Greg Kroah-Hartman
2026-09-12 6:38 ` [PATCH 6.18 0154/1518] perf test: Truncate printed test descriptions dynamically to avoid terminal wrapping Greg Kroah-Hartman
2026-09-12 6:38 ` [PATCH 6.18 0155/1518] perf test: Truncate test description to fit terminal width Greg Kroah-Hartman
2026-09-12 6:38 ` [PATCH 6.18 0156/1518] perf test metrics: Update all metrics for possibly failing default metrics Greg Kroah-Hartman
2026-09-12 6:38 ` [PATCH 6.18 0157/1518] perf test all metrics: Fully ignore Default metric failures Greg Kroah-Hartman
2026-09-12 6:38 ` [PATCH 6.18 0158/1518] perf test: Do not skip when some metrics tests succeeded Greg Kroah-Hartman
2026-09-12 6:38 ` [PATCH 6.18 0159/1518] perf tests: Skip metrics validation if system-wide recording lacks permission Greg Kroah-Hartman
2026-09-12 6:38 ` [PATCH 6.18 0160/1518] perf test kvm: Add some basic perf kvm test coverage Greg Kroah-Hartman
2026-09-12 6:38 ` [PATCH 6.18 0161/1518] perf tests: Add robust record retry helper and use subsecond workloads Greg Kroah-Hartman
2026-09-12 6:38 ` [PATCH 6.18 0162/1518] perf tests: Fix flakiness in trace record and replay test Greg Kroah-Hartman
2026-09-12 6:38 ` [PATCH 6.18 0163/1518] perf test: Fix perf stat --bpf-counters on hybrid machines Greg Kroah-Hartman
2026-09-12 6:38 ` [PATCH 6.18 0164/1518] perf tests: Fix flakiness in BPF counters test on hybrid systems Greg Kroah-Hartman
2026-09-12 6:38 ` [PATCH 6.18 0165/1518] perf test: Fixes for check branch stack sampling Greg Kroah-Hartman
2026-09-12 6:38 ` [PATCH 6.18 0166/1518] perf tests: Fix flakiness in branch stack sampling tests Greg Kroah-Hartman
2026-09-12 6:38 ` [PATCH 6.18 0167/1518] regulator: tps6594: Fix device node reference leaks in multiphase loop Greg Kroah-Hartman
2026-09-12 6:38 ` [PATCH 6.18 0168/1518] drm/amdgpu/pm/powerplay: bounds-check voltage index in SMU7 lookup Greg Kroah-Hartman
2026-09-12 6:38 ` [PATCH 6.18 0169/1518] drm/amdgpu/pm/powerplay: bounds-check voltage index in Vega10 lookup Greg Kroah-Hartman
2026-09-12 6:38 ` [PATCH 6.18 0170/1518] tools/bpf/bpftool: Reset vmlinux BTF after map commands Greg Kroah-Hartman
2026-09-12 6:39 ` [PATCH 6.18 0171/1518] tools/bpf/bpftool: Reset vmlinux BTF after struct_ops commands Greg Kroah-Hartman
2026-09-12 6:39 ` [PATCH 6.18 0172/1518] bpf: Copy per-CPU map value padding in copy_map_value_long() Greg Kroah-Hartman
2026-09-12 6:39 ` [PATCH 6.18 0173/1518] selftests/bpf: Systematically add SO_REUSEADDR in start_server_addr Greg Kroah-Hartman
2026-09-12 6:39 ` [PATCH 6.18 0174/1518] selftests/bpf: Mask socket type flags in mptcpify prog Greg Kroah-Hartman
2026-09-12 6:39 ` [PATCH 6.18 0175/1518] bpf,lsm: Drop bpf_prog_free from sleepable_lsm_hooks Greg Kroah-Hartman
2026-09-12 6:39 ` [PATCH 6.18 0176/1518] mm: convert memory block states (MEM_*) macros to enum Greg Kroah-Hartman
2026-09-12 6:39 ` [PATCH 6.18 0177/1518] mm: change type of state in struct memory_block Greg Kroah-Hartman
2026-09-12 6:39 ` [PATCH 6.18 0178/1518] mm: name the anonymous MMOP enum as enum mmop Greg Kroah-Hartman
2026-09-12 6:39 ` [PATCH 6.18 0179/1518] mm/mm_init: handle alloc_percpu failure in free_area_init_core_hotplug Greg Kroah-Hartman
2026-09-12 6:39 ` [PATCH 6.18 0180/1518] dmaengine: mediatek: mtk-uart-apdma: Return -ENOMEM on memory allocation failure Greg Kroah-Hartman
2026-09-12 6:39 ` [PATCH 6.18 0181/1518] dmaengine: xilinx_dma: Fix channel idle state management in AXIDMA and MCDMA interrupt handlers Greg Kroah-Hartman
2026-09-12 6:39 ` [PATCH 6.18 0182/1518] dmaengine: zynqmp_dma: fix race between runtime PM and device removal Greg Kroah-Hartman
2026-09-12 6:39 ` [PATCH 6.18 0183/1518] dmaengine: hisilicon: Return -ENOMEM on dynamic memory allocation in probe Greg Kroah-Hartman
2026-09-12 6:39 ` [PATCH 6.18 0184/1518] soundwire: qcom: Fix port exhaustion check in stream_alloc_ports Greg Kroah-Hartman
2026-09-12 6:39 ` [PATCH 6.18 0185/1518] iio: orientation: hid-sensor-rotation: Avoid race between callback setup and device exposure Greg Kroah-Hartman
2026-09-12 6:39 ` [PATCH 6.18 0186/1518] csky: Fix a4/a5 restoration in syscall trace path Greg Kroah-Hartman
2026-09-12 6:39 ` [PATCH 6.18 0187/1518] selftests/rseq: Replace glibc-specific __GNUC_PREREQ with portable check Greg Kroah-Hartman
2026-09-12 6:39 ` [PATCH 6.18 0188/1518] platform/chrome: sensorhub: Fix memory overread in ring handler Greg Kroah-Hartman
2026-09-12 6:39 ` [PATCH 6.18 0189/1518] wifi: rtw89: fill addr cam H2C command by struct Greg Kroah-Hartman
2026-09-12 6:39 ` [PATCH 6.18 0190/1518] wifi: rtw89: update format of addr cam H2C command Greg Kroah-Hartman
2026-09-12 6:39 ` [PATCH 6.18 0191/1518] wifi: rtw89: check return values in rtw89_ops_start_ap() Greg Kroah-Hartman
2026-09-12 6:39 ` [PATCH 6.18 0192/1518] wifi: rtw89: fix HE extended capability length check Greg Kroah-Hartman
2026-09-12 6:39 ` [PATCH 6.18 0193/1518] fanotify: initialize permission event watchdog state Greg Kroah-Hartman
2026-09-12 6:39 ` [PATCH 6.18 0194/1518] tools/nolibc: mark arg1 operand in __nolibc_syscall0() as write-only Greg Kroah-Hartman
2026-09-12 6:39 ` [PATCH 6.18 0195/1518] perf cs-etm: Fix thread leaks on trace queue init failure Greg Kroah-Hartman
2026-09-12 6:39 ` [PATCH 6.18 0196/1518] perf/x86/amd/uncore: Add group validation Greg Kroah-Hartman
2026-09-12 6:39 ` [PATCH 6.18 0197/1518] perf vendor events amd: Update Zen 5 core events Greg Kroah-Hartman
2026-09-12 6:39 ` [PATCH 6.18 0198/1518] hwrng: core - fix rng list on registration error Greg Kroah-Hartman
2026-09-12 6:39 ` [PATCH 6.18 0199/1518] crypto: qat - cancel work on re-enable SR-IOV timeout Greg Kroah-Hartman
2026-09-12 6:39 ` [PATCH 6.18 0200/1518] crypto: qat - clear AES key schedule from stack Greg Kroah-Hartman
2026-09-12 6:39 ` [PATCH 6.18 0201/1518] crypto: atmel-ecc - reject hardware ECDH without a public key Greg Kroah-Hartman
2026-09-12 6:39 ` [PATCH 6.18 0202/1518] crypto: atmel-sha204a - fix heap info leak on I2C transfer failure Greg Kroah-Hartman
2026-09-12 6:39 ` [PATCH 6.18 0203/1518] crypto: sa2ul - stop probe if context pool creation fails Greg Kroah-Hartman
2026-09-12 6:39 ` [PATCH 6.18 0204/1518] hwrng: xilinx-trng - propagate timeout before any data is read Greg Kroah-Hartman
2026-09-12 6:39 ` [PATCH 6.18 0205/1518] crypto: rk3288 - fail ahash requests on HASH idle timeout Greg Kroah-Hartman
2026-09-12 6:39 ` [PATCH 6.18 0206/1518] crypto: keembay - Fix AEAD unregister count in error path Greg Kroah-Hartman
2026-09-12 6:39 ` [PATCH 6.18 0207/1518] RDMA/irdma: Deduplicate the irdma_del_memlist logic Greg Kroah-Hartman
2026-09-12 6:39 ` [PATCH 6.18 0208/1518] RDMA/irdma: Add a refcount to track user ring MR associations Greg Kroah-Hartman
2026-09-12 6:39 ` [PATCH 6.18 0209/1518] RDMA/irdma: Add irdma_cq fields to track pbl allocations Greg Kroah-Hartman
2026-09-12 6:39 ` [PATCH 6.18 0210/1518] RDMA/irdma: Add refcounting to user ring MRs Greg Kroah-Hartman
2026-09-12 6:39 ` [PATCH 6.18 0211/1518] arm64: dts: qcom: sm8750: wire UFS to ice instance Greg Kroah-Hartman
2026-09-12 6:39 ` [PATCH 6.18 0212/1518] nvme-apple: Use acquire/release for queue enabled state Greg Kroah-Hartman
2026-09-12 6:39 ` [PATCH 6.18 0213/1518] nvmet-rdma: factor out response resource cleanup Greg Kroah-Hartman
2026-09-12 6:39 ` [PATCH 6.18 0214/1518] nvmet-rdma: fix response resource leak on queue teardown Greg Kroah-Hartman
2026-09-12 6:39 ` [PATCH 6.18 0215/1518] bus: ti-sysc: Fix /chosen node reference leak Greg Kroah-Hartman
2026-09-12 6:39 ` [PATCH 6.18 0216/1518] PM: sleep: Fix off-by-one in wakelocks number limit check Greg Kroah-Hartman
2026-09-12 6:39 ` [PATCH 6.18 0217/1518] cgroup/cpuset: Make nr_deadline_tasks an atomic_t Greg Kroah-Hartman
2026-09-12 6:39 ` [PATCH 6.18 0218/1518] arm64: dts: qcom: sc8280xp-blackrock: switch to uefi rtc offset Greg Kroah-Hartman
2026-09-12 6:39 ` [PATCH 6.18 0219/1518] arm64: dts: qcom: sm7225-fairphone-fp4: Fix address in fb node name Greg Kroah-Hartman
2026-09-12 6:39 ` [PATCH 6.18 0220/1518] arm64: dts: qcom: hamoa: Fix clocks for HSPHYs Greg Kroah-Hartman
2026-09-12 6:39 ` [PATCH 6.18 0221/1518] clk: qcom: gcc-glymur: Move EVA clocks to critical clock list Greg Kroah-Hartman
2026-09-12 6:39 ` [PATCH 6.18 0222/1518] bus: qcom-ebi2: Simplify with scoped for each OF child loop Greg Kroah-Hartman
2026-09-12 6:39 ` [PATCH 6.18 0223/1518] bus: qcom-ebi2: Fix clock leak on probe failure Greg Kroah-Hartman
2026-09-12 6:39 ` [PATCH 6.18 0224/1518] wifi: mac80211_hwsim: avoid NULL skb in stop queue drain Greg Kroah-Hartman
2026-09-12 6:39 ` [PATCH 6.18 0225/1518] staging: greybus: audio: correct sscanf() return value check Greg Kroah-Hartman
2026-09-12 6:39 ` [PATCH 6.18 0226/1518] staging: sm750fb: gate dualview dataflow using g_dualview Greg Kroah-Hartman
2026-09-12 6:39 ` [PATCH 6.18 0227/1518] staging: sm750fb: Add missing Kconfig dependency Greg Kroah-Hartman
2026-09-12 6:39 ` [PATCH 6.18 0228/1518] greybus: audio: bound the topology section sizes against the fetched size Greg Kroah-Hartman
2026-09-12 6:39 ` [PATCH 6.18 0229/1518] staging: fbtft: Use sysfs_emit_at() to print to sysfs file Greg Kroah-Hartman
2026-09-12 6:39 ` [PATCH 6.18 0230/1518] staging: octeon: add missing tasklet_kill in cvm_oct_tx_shutdown Greg Kroah-Hartman
2026-09-12 6:40 ` [PATCH 6.18 0231/1518] staging: octeon: fix free_irq dev_id mismatch in cvm_oct_rx_shutdown Greg Kroah-Hartman
2026-09-12 6:40 ` [PATCH 6.18 0232/1518] staging: octeon: ethernet-mem: replace pr_warn with dev_warn in free functions Greg Kroah-Hartman
2026-09-12 6:40 ` [PATCH 6.18 0233/1518] staging: octeon: replace pr_warn with dev_warn in fill and rx paths Greg Kroah-Hartman
2026-09-12 6:40 ` [PATCH 6.18 0234/1518] staging: octeon: add missing napi_disable in cvm_oct_rx_shutdown Greg Kroah-Hartman
2026-09-12 6:40 ` [PATCH 6.18 0235/1518] staging: rtl8723bs: fix mismatched free of HalData in rtw_sdio_if1_init() Greg Kroah-Hartman
2026-09-12 6:40 ` [PATCH 6.18 0236/1518] ALSA: via82xx: Remove unreachable branch in snd_via686_pcm_pointer() Greg Kroah-Hartman
2026-09-12 6:40 ` [PATCH 6.18 0237/1518] selftests/bpf: Fix memory leak in msg_alloc_iov error path Greg Kroah-Hartman
2026-09-12 6:40 ` [PATCH 6.18 0238/1518] selftests/bpf: Fix memory leak in msg_alloc_iov Greg Kroah-Hartman
2026-09-12 6:40 ` [PATCH 6.18 0239/1518] selftests/lsm: Fix memory leak in attr_lsm_count Greg Kroah-Hartman
2026-09-12 6:40 ` [PATCH 6.18 0240/1518] irqchip/gic-v3-its: Fix memleak in its_probe_one() Greg Kroah-Hartman
2026-09-12 6:40 ` [PATCH 6.18 0241/1518] irqchip/gic-v3-its: Fix its node leak in gic_acpi_parse_madt_its() Greg Kroah-Hartman
2026-09-12 6:40 ` [PATCH 6.18 0242/1518] selftests: timers: leap-a-day: Fix -w option and update usage comment Greg Kroah-Hartman
2026-09-12 6:40 ` [PATCH 6.18 0243/1518] clocksource: Unregister subsystem on device registration failure Greg Kroah-Hartman
2026-09-12 6:40 ` [PATCH 6.18 0244/1518] timekeeping: Unwind aux clock sysfs children on failure Greg Kroah-Hartman
2026-09-12 6:40 ` [PATCH 6.18 0245/1518] timers/migration: Fix memory leak in tmigr_setup_groups() error path Greg Kroah-Hartman
2026-09-12 6:40 ` [PATCH 6.18 0246/1518] x86/tsx: Make tsx_ctrl_state static Greg Kroah-Hartman
2026-09-12 6:40 ` [PATCH 6.18 0247/1518] vdso/timens: Move functions to new file Greg Kroah-Hartman
2026-09-12 6:40 ` [PATCH 6.18 0248/1518] timens: Remove dependency on the vDSO Greg Kroah-Hartman
2026-09-12 6:40 ` [PATCH 6.18 0249/1518] timens: Add a __free() wrapper for put_time_ns() Greg Kroah-Hartman
2026-09-12 6:40 ` [PATCH 6.18 0250/1518] timens: Simplify some calls to put_time_ns() Greg Kroah-Hartman
2026-09-12 6:40 ` [PATCH 6.18 0251/1518] time/namespace: Validate nanosecond field in proc_timens_set_offset() Greg Kroah-Hartman
2026-09-12 6:40 ` [PATCH 6.18 0252/1518] y2038: uapi: Use 64-bit __kernel_old_timespec::tv_nsec on x32 Greg Kroah-Hartman
2026-09-12 6:40 ` [PATCH 6.18 0253/1518] timekeeping: Account for monotonicity adjustment in ntp_error Greg Kroah-Hartman
2026-09-12 6:40 ` [PATCH 6.18 0254/1518] arm64: dts: qcom: Add #{address,size}-cells to Chromium-based /firmware Greg Kroah-Hartman
2026-09-12 6:40 ` [PATCH 6.18 0255/1518] clk: qcom: gdsc: propagate gdsc_check_status() errors from gdsc_poll_status Greg Kroah-Hartman
2026-09-12 6:40 ` [PATCH 6.18 0256/1518] clk: qcom: gdsc: propagate gdsc_enable() failure for ALWAYS_ON domains Greg Kroah-Hartman
2026-09-12 6:40 ` [PATCH 6.18 0257/1518] clk: qcom: gdsc: tear down per-domain genpds in gdsc_unregister() Greg Kroah-Hartman
2026-09-12 6:40 ` [PATCH 6.18 0258/1518] arm64: dts: qcom: sc8280xp-arcata: Fix top USB-C DP alt mode Greg Kroah-Hartman
2026-09-12 6:40 ` [PATCH 6.18 0259/1518] arm64: dts: qcom: sc8180x-primus: Rename regulator nodes Greg Kroah-Hartman
2026-09-12 6:40 ` [PATCH 6.18 0260/1518] arm64: dts: qcom: sc8180x-primus: Describe the display power net Greg Kroah-Hartman
2026-09-12 6:40 ` [PATCH 6.18 0261/1518] arm64: dts: qcom: sc8180x-lenovo-flex-5g: Rename regulator nodes Greg Kroah-Hartman
2026-09-12 6:40 ` [PATCH 6.18 0262/1518] arm64: dts: qcom: sc8180x-lenovo-flex-5g: Describe the display power net Greg Kroah-Hartman
2026-09-12 6:40 ` [PATCH 6.18 0263/1518] clk: qcom: gcc-qcs8300: Use retention for PCIe power domains Greg Kroah-Hartman
2026-09-12 6:40 ` [PATCH 6.18 0264/1518] clk: qcom: gcc-qcs8300: Use retention for USB " Greg Kroah-Hartman
2026-09-12 6:40 ` [PATCH 6.18 0265/1518] perf data convert json: Fix trace_seq memory leak in process_sample_event() Greg Kroah-Hartman
2026-09-12 6:40 ` [PATCH 6.18 0266/1518] staging: media: ipu7: fix pm_runtime refcount leak in ipu7_init_fw_code_region_by_sys() Greg Kroah-Hartman
2026-09-12 6:40 ` [PATCH 6.18 0267/1518] staging: media: ipu7: fix pm_runtime refcount leak in ipu7_resume() Greg Kroah-Hartman
2026-09-12 6:40 ` [PATCH 6.18 0268/1518] thermal/drivers/rcar: Fix error checking in probe() Greg Kroah-Hartman
2026-09-12 6:40 ` [PATCH 6.18 0269/1518] usb: typec: ucsi: unregister debugfs entries on teardown Greg Kroah-Hartman
2026-09-12 6:40 ` [PATCH 6.18 0270/1518] usb: gadget: r8a66597: avoid double free of ep0_req in probe error path Greg Kroah-Hartman
2026-09-12 6:40 ` [PATCH 6.18 0271/1518] udf: Mark LVID buffer as uptodate before marking it dirty Greg Kroah-Hartman
2026-09-12 6:40 ` [PATCH 6.18 0272/1518] bpftool: Check EVP_Digest when computing excl_prog_hash Greg Kroah-Hartman
2026-09-12 6:40 ` [PATCH 6.18 0273/1518] perf vendor events amd: Reintroduce deprecated Zen 5 core events Greg Kroah-Hartman
2026-09-12 6:40 ` [PATCH 6.18 0274/1518] perf dso: Fix kallsyms DSO detection with fallback logic Greg Kroah-Hartman
2026-09-12 6:40 ` [PATCH 6.18 0275/1518] bpf: Fix vmlinux BTF prep race in bpf_get_btf_vmlinux Greg Kroah-Hartman
2026-09-12 6:40 ` [PATCH 6.18 0276/1518] efi: fix stale reference to efi_recover_from_page_fault() Greg Kroah-Hartman
2026-09-12 6:40 ` [PATCH 6.18 0277/1518] bpf: Fix use-after-free on mm_struct in bpf_find_vma() Greg Kroah-Hartman
2026-09-12 6:40 ` [PATCH 6.18 0278/1518] bus: mhi: ep: Fix device refcount leak in the error path of MHI device creation Greg Kroah-Hartman
2026-09-12 6:40 ` [PATCH 6.18 0279/1518] iommu/mediatek-v1: Fix off-by-one in MT2701_LARB_NR_MAX Greg Kroah-Hartman
2026-09-12 6:40 ` [PATCH 6.18 0280/1518] bpf: Fix security_bpf_map_create error handling Greg Kroah-Hartman
2026-09-12 6:40 ` [PATCH 6.18 0281/1518] iommu/msm: Return -ENOMEM on memory allocation failure in probe Greg Kroah-Hartman
2026-09-12 6:40 ` [PATCH 6.18 0282/1518] iommu/amd: Prevent SB IOAPIC from overriding IVRS validation errors Greg Kroah-Hartman
2026-09-12 6:40 ` [PATCH 6.18 0283/1518] iommu/amd: Add support for Hygon family 18h model 4h IOAPIC Greg Kroah-Hartman
2026-09-12 6:40 ` [PATCH 6.18 0284/1518] iommu/amd: Fix false positive in SB IOAPIC IVRS validation Greg Kroah-Hartman
2026-09-12 6:40 ` [PATCH 6.18 0285/1518] leds: pca9532: Fix inverted GPIO output polarity Greg Kroah-Hartman
2026-09-12 6:40 ` [PATCH 6.18 0286/1518] leds: st1202: Stop pattern sequence before reprogramming Greg Kroah-Hartman
2026-09-12 6:40 ` [PATCH 6.18 0287/1518] leds: st1202: Fix pattern duration prescaler and pattern_clear skip marker Greg Kroah-Hartman
2026-09-12 6:40 ` [PATCH 6.18 0288/1518] leds: st1202: Fix spurious pattern sequence start in setup Greg Kroah-Hartman
2026-09-12 6:40 ` [PATCH 6.18 0289/1518] leds: st1202: Set all pattern PWM slots to full after clearing pattern Greg Kroah-Hartman
2026-09-12 6:40 ` [PATCH 6.18 0290/1518] leds: st1202: Fix brightness having no effect while pattern mode is active Greg Kroah-Hartman
2026-09-12 6:41 ` [PATCH 6.18 0291/1518] leds: st1202: Disable channel when brightness is set to zero Greg Kroah-Hartman
2026-09-12 6:41 ` [PATCH 6.18 0292/1518] leds: st1202: Validate LED reg property against channel count Greg Kroah-Hartman
2026-09-12 6:41 ` [PATCH 6.18 0293/1518] printk: Introduce console_flush_one_record Greg Kroah-Hartman
2026-09-12 6:41 ` [PATCH 6.18 0294/1518] printk: Fix possible console use-after-free Greg Kroah-Hartman
2026-09-12 6:41 ` [PATCH 6.18 0295/1518] ACPI: RISC-V: Fix riscv_acpi_irq_get_dep() loop termination Greg Kroah-Hartman
2026-09-12 6:41 ` [PATCH 6.18 0296/1518] ACPI: RISC-V: Check acpi_get_handle() status in riscv_acpi_add_prt_dep() Greg Kroah-Hartman
2026-09-12 6:41 ` [PATCH 6.18 0297/1518] ACPI: RISC-V: Fix riscv_acpi_add_prt_dep() loop handling Greg Kroah-Hartman
2026-09-12 6:41 ` [PATCH 6.18 0298/1518] platform/x86: dell-privacy: Fix race condition Greg Kroah-Hartman
2026-09-12 6:41 ` [PATCH 6.18 0299/1518] platform/x86: dell-wmi-base: Fix resource leak on module load failure Greg Kroah-Hartman
2026-09-12 6:41 ` [PATCH 6.18 0300/1518] platform/x86: lg-laptop: Drop debug-only ACPI notify handler Greg Kroah-Hartman
2026-09-12 6:41 ` [PATCH 6.18 0301/1518] platform/x86: lg-laptop: Convert ACPI driver to a platform one Greg Kroah-Hartman
2026-09-12 6:41 ` [PATCH 6.18 0302/1518] platform/x86: lg-laptop: Fix LED resource handling Greg Kroah-Hartman
2026-09-12 6:41 ` [PATCH 6.18 0303/1518] remoteproc: qcom_q6v5_adsp: Fix reference leak for device node Greg Kroah-Hartman
2026-09-12 6:41 ` [PATCH 6.18 0304/1518] hwspinlock: propagate errno when registering single lock Greg Kroah-Hartman
2026-09-12 6:41 ` [PATCH 6.18 0305/1518] selftests/sched_ext: Fix bpf_link leak on early return in prog_run Greg Kroah-Hartman
2026-09-12 6:41 ` [PATCH 6.18 0306/1518] perf capstone: Fix kernel map reference count leak Greg Kroah-Hartman
2026-09-12 6:41 ` [PATCH 6.18 0307/1518] spi: qcom-geni: Fix missing error check on pm_runtime_get_sync() Greg Kroah-Hartman
2026-09-12 6:41 ` [PATCH 6.18 0308/1518] serial: core: Add dedicated uart_port field for console flow Greg Kroah-Hartman
2026-09-12 6:41 ` [PATCH 6.18 0309/1518] serial: Replace driver usage of UPF_CONS_FLOW Greg Kroah-Hartman
2026-09-12 6:41 ` [PATCH 6.18 0310/1518] serial: 8250: Set cons_flow on port registration Greg Kroah-Hartman
2026-09-12 6:41 ` [PATCH 6.18 0311/1518] serial: 8250: Add support for console flow control Greg Kroah-Hartman
2026-09-12 6:41 ` [PATCH 6.18 0312/1518] serial: 8250: Clear CON_PRINTBUFFER on port re-registration Greg Kroah-Hartman
2026-09-12 6:41 ` [PATCH 6.18 0313/1518] serial: ma35d1: Fix OF node reference leaks in console init Greg Kroah-Hartman
2026-09-12 6:41 ` [PATCH 6.18 0314/1518] serial: qcom-geni: do not advance stale DMA completions Greg Kroah-Hartman
2026-09-12 6:41 ` [PATCH 6.18 0315/1518] usb: gadget: f_fs: Fix fence cleanup in ffs_dmabuf_transfer() error paths Greg Kroah-Hartman
2026-09-12 6:41 ` [PATCH 6.18 0316/1518] usb: gadget: configfs: fix out-of-bounds read of qw_sign Greg Kroah-Hartman
2026-09-12 6:41 ` [PATCH 6.18 0317/1518] usb: ljca: bound bank_num in ljca_enumerate_gpio() Greg Kroah-Hartman
2026-09-12 6:41 ` [PATCH 6.18 0318/1518] usb: gadget: aspeed_udc: check endpoint DMA allocation Greg Kroah-Hartman
2026-09-12 6:41 ` [PATCH 6.18 0319/1518] usb: fix UAF when probe runs concurrent to dyn ID removal Greg Kroah-Hartman
2026-09-12 6:41 ` [PATCH 6.18 0320/1518] platform/mellanox: mlxbf-pmc: Check ACPI_COMPANION() against NULL Greg Kroah-Hartman
2026-09-12 6:41 ` [PATCH 6.18 0321/1518] platform/surface: acpi-notify: Check ACPI companion before use Greg Kroah-Hartman
2026-09-12 6:41 ` [PATCH 6.18 0322/1518] usb: mtu3: allow system suspend during active gadget connection Greg Kroah-Hartman
2026-09-12 6:41 ` [PATCH 6.18 0323/1518] usb: renesas_usbhs: Fix power-off ordering on unbind Greg Kroah-Hartman
2026-09-12 6:41 ` [PATCH 6.18 0324/1518] usb: ucsi: huawei_gaokun: support mode switching Greg Kroah-Hartman
2026-09-12 6:41 ` [PATCH 6.18 0325/1518] usb: typec: ucsi: gaokun: unwind notifier on UCSI register failure Greg Kroah-Hartman
2026-09-12 6:41 ` [PATCH 6.18 0326/1518] drm/panel: samsung-s6d16d0: Power off on prepare failure Greg Kroah-Hartman
2026-09-12 6:41 ` [PATCH 6.18 0327/1518] perf metricgroup: Fix metric expression copy leaks Greg Kroah-Hartman
2026-09-12 6:41 ` [PATCH 6.18 0328/1518] soc: qcom: rpmh-rsc: manage PM notifiers with devres Greg Kroah-Hartman
2026-09-12 6:41 ` [PATCH 6.18 0329/1518] bus: qcom-ebi2: use managed resources for clocks and children Greg Kroah-Hartman
2026-09-12 6:41 ` [PATCH 6.18 0330/1518] clk: qcom: camcc-sc8280xp: unregister CAMCC_GDSC_CLK Greg Kroah-Hartman
2026-09-12 6:41 ` [PATCH 6.18 0331/1518] tools/sched_ext: Strip compatibility macros for cgroup and dispatch APIs Greg Kroah-Hartman
2026-09-12 6:41 ` [PATCH 6.18 0332/1518] bpf: Require a BPF cpumask for bpf_cpumask_populate() Greg Kroah-Hartman
2026-09-12 6:41 ` [PATCH 6.18 0333/1518] wifi: rtw89: pci: add to read PCI configuration space from common code Greg Kroah-Hartman
2026-09-12 6:41 ` [PATCH 6.18 0334/1518] wifi: rtw89: fw: parse firmware element of DIAG_MAC Greg Kroah-Hartman
2026-09-12 6:41 ` [PATCH 6.18 0335/1518] wifi: rtw89: debug: add parser to diagnose along DIAG_MAC fw element Greg Kroah-Hartman
2026-09-12 6:41 ` [PATCH 6.18 0336/1518] wifi: rtw89: mlo: rearrange MLSR link decision flow Greg Kroah-Hartman
2026-09-12 6:41 ` [PATCH 6.18 0337/1518] wifi: rtw89: phy: support per PHY RX statistics Greg Kroah-Hartman
2026-09-12 6:41 ` [PATCH 6.18 0338/1518] wifi: rtw89: 8852a: fix RSSI report when average beacon RSSI is not ready Greg Kroah-Hartman
2026-09-12 6:41 ` [PATCH 6.18 0339/1518] iio: accel: dmard09: Implement IIO_CHAN_INFO_SCALE Greg Kroah-Hartman
2026-09-12 6:41 ` [PATCH 6.18 0340/1518] RDMA/core: Wait for RCU callbacks before unloading ib_core Greg Kroah-Hartman
2026-09-12 6:41 ` [PATCH 6.18 0341/1518] RDMA/mlx5: Drain RCU callbacks during module teardown Greg Kroah-Hartman
2026-09-12 6:41 ` [PATCH 6.18 0342/1518] RDMA/ipoib: " Greg Kroah-Hartman
2026-09-12 6:41 ` [PATCH 6.18 0343/1518] RDMA/rxe: Avoid reprocessing the current packet after the QP enters the error state Greg Kroah-Hartman
2026-09-12 6:41 ` [PATCH 6.18 0344/1518] drm/msm/dp: add missing drm_edid_connector_update() before add_modes on cached EDID Greg Kroah-Hartman
2026-09-12 6:41 ` [PATCH 6.18 0345/1518] Revert "drm/msm: dsi: fix PLL init in bonded mode" Greg Kroah-Hartman
2026-09-12 6:41 ` [PATCH 6.18 0346/1518] crypto: ccp - Fix memory leak in SEV INIT_EX path Greg Kroah-Hartman
2026-09-12 6:41 ` [PATCH 6.18 0347/1518] hwrng: ks-sa - Fix runtime PM cleanup on registration failure Greg Kroah-Hartman
2026-09-12 6:41 ` [PATCH 6.18 0348/1518] crash_dump: release keyring reference at the correct time Greg Kroah-Hartman
2026-09-12 6:41 ` [PATCH 6.18 0349/1518] xfrm6: fix out-of-bounds write in xfrm6_input_addr() when secpath is full Greg Kroah-Hartman
2026-09-12 6:41 ` [PATCH 6.18 0350/1518] ALSA: hpi: Check transport errors during HPI6000 adapter initialization Greg Kroah-Hartman
2026-09-12 6:42 ` [PATCH 6.18 0351/1518] pmdomain: bcm: bcm2835: handle genpd provider registration errors Greg Kroah-Hartman
2026-09-12 6:42 ` [PATCH 6.18 0352/1518] misc: rtsx_usb: avoid USB I/O in runtime autosuspend Greg Kroah-Hartman
2026-09-12 6:42 ` [PATCH 6.18 0353/1518] RDMA/hfi1: Preserve unit 0 on allocation failure Greg Kroah-Hartman
2026-09-12 6:42 ` [PATCH 6.18 0354/1518] RDMA/hfi1: Free RX data on late probe failure Greg Kroah-Hartman
2026-09-12 6:42 ` [PATCH 6.18 0355/1518] RDMA/hfi1: Remove redundant PCI device ID validation Greg Kroah-Hartman
2026-09-12 6:42 ` [PATCH 6.18 0356/1518] RDMA/hfi1: Create workqueues before device initialization Greg Kroah-Hartman
2026-09-12 6:42 ` [PATCH 6.18 0357/1518] RDMA/hfi1: Stop flushing the global IB workqueue Greg Kroah-Hartman
2026-09-12 6:42 ` [PATCH 6.18 0358/1518] RDMA/hfi1: Initialize debugfs after probe completes Greg Kroah-Hartman
2026-09-12 6:42 ` [PATCH 6.18 0359/1518] ASoC: apple: mca: increase SERDES reset delay Greg Kroah-Hartman
2026-09-12 6:42 ` [PATCH 6.18 0360/1518] isofs: fix out-of-bounds page array access on empty zisofs block Greg Kroah-Hartman
2026-09-12 6:42 ` [PATCH 6.18 0361/1518] iommufd/selftest: Avoid selftest dirty bitmap size wrap Greg Kroah-Hartman
2026-09-12 6:42 ` [PATCH 6.18 0362/1518] media: v4l2-async: Unregister sub-device if asc_list is empty Greg Kroah-Hartman
2026-09-12 6:42 ` [PATCH 6.18 0363/1518] fs/resctrl: Prevent use-after-free in rdtgroup_kn_put() Greg Kroah-Hartman
2026-09-12 6:42 ` [PATCH 6.18 0364/1518] perf zstd: Fix compression error path in zstd_compress_stream_to_records() Greg Kroah-Hartman
2026-09-12 6:42 ` [PATCH 6.18 0365/1518] perf record: Return the written size from process_comp_header() Greg Kroah-Hartman
2026-09-12 6:42 ` [PATCH 6.18 0366/1518] perf record: Fix multiple PERF_RECORD_COMPRESSED2 records per push Greg Kroah-Hartman
2026-09-12 6:42 ` [PATCH 6.18 0367/1518] rpmsg: glink: remove duplicate code for rpmsg device remove Greg Kroah-Hartman
2026-09-12 6:42 ` [PATCH 6.18 0368/1518] rpmsg: glink: fix deadlock in endpoint destroy during driver detach Greg Kroah-Hartman
2026-09-12 6:42 ` [PATCH 6.18 0369/1518] iommufd: Simplify iommufd_device_remove_vdev() Greg Kroah-Hartman
2026-09-12 6:42 ` [PATCH 6.18 0370/1518] cxl/memdev: Fix firmware upload exact-fit handling Greg Kroah-Hartman
2026-09-12 6:42 ` [PATCH 6.18 0371/1518] cxl/mbox: Break poison list loop on an empty payload Greg Kroah-Hartman
2026-09-12 6:42 ` [PATCH 6.18 0372/1518] cxl/pci: Honor -EPROBE_DEFER from component register setup Greg Kroah-Hartman
2026-09-12 6:42 ` [PATCH 6.18 0373/1518] cxl/port: Restart port enumeration when a sibling adds the dport first Greg Kroah-Hartman
2026-09-12 6:42 ` [PATCH 6.18 0374/1518] hfsplus: validate thread record before delete key rebuild Greg Kroah-Hartman
2026-09-12 6:42 ` [PATCH 6.18 0375/1518] wifi: ath11k: cap out-of-range rx MCS instead of leaving bogus rate Greg Kroah-Hartman
2026-09-12 6:42 ` [PATCH 6.18 0376/1518] x86/entry/fred: Encode frame pointer on entry Greg Kroah-Hartman
2026-09-12 6:42 ` [PATCH 6.18 0377/1518] firmware: arm_scmi: Publish channel state before callbacks Greg Kroah-Hartman
2026-09-12 6:42 ` [PATCH 6.18 0378/1518] firmware: arm_scmi: Unregister device notifier before IDR teardown Greg Kroah-Hartman
2026-09-12 6:42 ` [PATCH 6.18 0379/1518] firmware: arm_scmi: Quiesce notifications before teardown Greg Kroah-Hartman
2026-09-12 6:42 ` [PATCH 6.18 0380/1518] firmware: arm_scmi: Clean up channels on setup failure Greg Kroah-Hartman
2026-09-12 6:42 ` [PATCH 6.18 0381/1518] firmware: arm_scmi: Free transport channel on IDR failure Greg Kroah-Hartman
2026-09-12 6:42 ` [PATCH 6.18 0382/1518] firmware: arm_scmi: Avoid IDR updates while cleaning channels Greg Kroah-Hartman
2026-09-12 6:42 ` [PATCH 6.18 0383/1518] firmware: arm_scmi: Reject out of range DT protocol IDs Greg Kroah-Hartman
2026-09-12 6:42 ` [PATCH 6.18 0384/1518] firmware: arm_scmi: Use channel ID for transport teardown Greg Kroah-Hartman
2026-09-12 6:42 ` [PATCH 6.18 0385/1518] firmware: arm_scmi: Protect device request lookup with RCU Greg Kroah-Hartman
2026-09-12 6:42 ` [PATCH 6.18 0386/1518] firmware: arm_scmi: Drop handle on protocol bind failures Greg Kroah-Hartman
2026-09-12 6:42 ` [PATCH 6.18 0387/1518] firmware: arm_scmi: Unwind TX receiver mailbox setup failure Greg Kroah-Hartman
2026-09-12 6:42 ` [PATCH 6.18 0388/1518] firmware: arm_scmi: Unwind P2A " Greg Kroah-Hartman
2026-09-12 6:42 ` [PATCH 6.18 0389/1518] firmware: arm_scmi: Fix transport device teardown lookup Greg Kroah-Hartman
2026-09-12 6:42 ` [PATCH 6.18 0390/1518] cxl/features: Reject Get Feature count larger than the output buffer Greg Kroah-Hartman
2026-09-12 6:42 ` [PATCH 6.18 0391/1518] cxl/features: Reject Set Features output buffer smaller than the header Greg Kroah-Hartman
2026-09-12 6:42 ` [PATCH 6.18 0392/1518] cxl/features: Clamp Get Feature output size to the remaining buffer Greg Kroah-Hartman
2026-09-12 6:42 ` [PATCH 6.18 0393/1518] regulator: adp5055: Fix error code in adp5055_of_parse_cb() Greg Kroah-Hartman
2026-09-12 6:42 ` [PATCH 6.18 0394/1518] tools/sched_ext: scx_qmap: Fix stale API name in comment Greg Kroah-Hartman
2026-09-12 6:42 ` [PATCH 6.18 0395/1518] libnvdimm/labels: Bound the on-media label size before the shift Greg Kroah-Hartman
2026-09-12 6:42 ` [PATCH 6.18 0396/1518] dax: read holder_ops once in dax_holder_notify_failure() Greg Kroah-Hartman
2026-09-12 6:42 ` [PATCH 6.18 0397/1518] cpufreq: spear: Fix an IS_ERR() vs NULL bug in spear1340_set_cpu_rate() Greg Kroah-Hartman
2026-09-12 6:42 ` [PATCH 6.18 0398/1518] PCI: xgene: Drop unnecessary OF node reference Greg Kroah-Hartman
2026-09-12 6:42 ` [PATCH 6.18 0399/1518] irqchip/renesas-irqc: Fix generic interrupt chip leak on remove Greg Kroah-Hartman
2026-09-12 6:42 ` [PATCH 6.18 0400/1518] media: i2c: rdacm21: Fix missing media_entity_cleanup() Greg Kroah-Hartman
2026-09-12 6:42 ` [PATCH 6.18 0401/1518] media: bcm2835-unicam: Fix asc leaked in error/remove path Greg Kroah-Hartman
2026-09-12 6:42 ` [PATCH 6.18 0402/1518] media: ipu6: Do not free aux device pdata after init Greg Kroah-Hartman
2026-09-12 6:42 ` [PATCH 6.18 0403/1518] drm/amd/display: Fix DM I2C teardown race Greg Kroah-Hartman
2026-09-12 6:42 ` [PATCH 6.18 0404/1518] drm/amd/display: Remove unused-but-set variable hubp from Greg Kroah-Hartman
2026-09-12 6:42 ` [PATCH 6.18 0405/1518] cpufreq: intel_pstate: Fix setting minimum P-state at init time Greg Kroah-Hartman
2026-09-12 6:42 ` [PATCH 6.18 0406/1518] cpufreq: schedutil: Fix self-contradictory comment in sugov_iowait_apply() Greg Kroah-Hartman
2026-09-12 6:42 ` [PATCH 6.18 0407/1518] remoteproc: qcom: Fix glink->node reference leak in qcom_add_glink_subdev Greg Kroah-Hartman
2026-09-12 6:42 ` [PATCH 6.18 0408/1518] perf: evsel: Fix error handling in tp_format lookup Greg Kroah-Hartman
2026-09-12 6:42 ` [PATCH 6.18 0409/1518] drm/bridge: tc358767: clamp the reported AUX read size to the request Greg Kroah-Hartman
2026-09-12 6:42 ` [PATCH 6.18 0410/1518] x86/mm/pat: Take cpa_lock around large-page collapse Greg Kroah-Hartman
2026-09-12 6:43 ` [PATCH 6.18 0411/1518] arm64: dts: qcom: msm8996-xiaomi-gemini: Fix up ti,drv2604 enable GPIO Greg Kroah-Hartman
2026-09-12 6:43 ` [PATCH 6.18 0412/1518] arm64: dts: qcom: sc8280xp-x13s: Fix the drive-strength of mclk pin Greg Kroah-Hartman
2026-09-12 6:43 ` [PATCH 6.18 0413/1518] arm64: dts: qcom: ipq5018: Correct CMN PLL reference clock rate Greg Kroah-Hartman
2026-09-12 6:43 ` [PATCH 6.18 0414/1518] arm64: qcom: ipq5018: Add GEPHY RX and TX clocks Greg Kroah-Hartman
2026-09-12 6:43 ` [PATCH 6.18 0415/1518] arm64: dts: qcom: sm8250: sort out Iris power domains Greg Kroah-Hartman
2026-09-12 6:43 ` [PATCH 6.18 0416/1518] arm64: dts: qcom: sm8250: correct frequencies in the Iris OPP table Greg Kroah-Hartman
2026-09-12 6:43 ` [PATCH 6.18 0417/1518] perf jevents: Add more components to the metric sorting order Greg Kroah-Hartman
2026-09-12 6:43 ` [PATCH 6.18 0418/1518] clk: qcom: gcc-glymur: Enable runtime PM Greg Kroah-Hartman
2026-09-12 6:43 ` [PATCH 6.18 0419/1518] soc: renesas: r8a78000: Drop duplicate "default ARCH_RENESAS" Greg Kroah-Hartman
2026-09-12 6:43 ` [PATCH 6.18 0420/1518] spi: geni-qcom: Fix sticky ret causing wrong return value on invalid proto Greg Kroah-Hartman
2026-09-12 6:43 ` [PATCH 6.18 0421/1518] wifi: iwlwifi: fix counter type in iwl_fwrt_dump_error_logs Greg Kroah-Hartman
2026-09-12 6:43 ` [PATCH 6.18 0422/1518] wifi: iwlwifi: mvm: fix off-by-one in TXF key sanitiser Greg Kroah-Hartman
2026-09-12 6:43 ` [PATCH 6.18 0423/1518] wifi: iwlwifi: mei: check SAP message length before reading it Greg Kroah-Hartman
2026-09-12 6:43 ` [PATCH 6.18 0424/1518] wifi: iwlwifi: guard against division by zero in iwl_dbg_tlv_alloc_fragments Greg Kroah-Hartman
2026-09-12 6:43 ` [PATCH 6.18 0425/1518] wifi: iwlwifi: mei: pass correct argument to function Greg Kroah-Hartman
2026-09-12 6:43 ` [PATCH 6.18 0426/1518] gpu: host1x: Fix offset calculation in trace_write_gather Greg Kroah-Hartman
2026-09-12 6:43 ` [PATCH 6.18 0427/1518] gpu: host1x: Avoid stack over-read in debug output helpers Greg Kroah-Hartman
2026-09-12 6:43 ` [PATCH 6.18 0428/1518] drm/msm/a6xx: Fix stale rpmh votes after suspend Greg Kroah-Hartman
2026-09-12 6:43 ` [PATCH 6.18 0429/1518] drm/msm: Recover HW before retire hung submit Greg Kroah-Hartman
2026-09-12 6:43 ` [PATCH 6.18 0430/1518] drm/msm/a6xx: Fix A663 GPUCC register list for state capture Greg Kroah-Hartman
2026-09-12 6:43 ` [PATCH 6.18 0431/1518] drm/msm/a6xx: Rebase GMU register offsets Greg Kroah-Hartman
2026-09-12 6:43 ` [PATCH 6.18 0432/1518] drm/msm/a6xx: Fix A621 GPUCC register list for state capture Greg Kroah-Hartman
2026-09-12 6:43 ` [PATCH 6.18 0433/1518] drm/msm: Fix task_struct reference leak in recover_worker Greg Kroah-Hartman
2026-09-12 6:43 ` [PATCH 6.18 0434/1518] drm/msm: Only fini scheduler after successful init Greg Kroah-Hartman
2026-09-12 6:43 ` [PATCH 6.18 0435/1518] bpf: Sync tail_call_reachable with callee state on entry Greg Kroah-Hartman
2026-09-12 6:43 ` [PATCH 6.18 0436/1518] crypto: sl3516 - drop invalid sg_dma_len checks before DMA mapping Greg Kroah-Hartman
2026-09-12 6:43 ` [PATCH 6.18 0437/1518] ACPI: processor: idle: Expand _LPI package sanity checks Greg Kroah-Hartman
2026-09-12 6:43 ` [PATCH 6.18 0438/1518] usb: gadget: f_uac1_legacy: remove broken string configfs attributes Greg Kroah-Hartman
2026-09-12 6:43 ` [PATCH 6.18 0439/1518] tty: hvc: restrict HVC_DCC to ARMv6+ and ARM64 Greg Kroah-Hartman
2026-09-12 6:43 ` [PATCH 6.18 0440/1518] UDF symlink pathComponent header OOB read Greg Kroah-Hartman
2026-09-12 6:43 ` [PATCH 6.18 0441/1518] staging: rtl8723bs: Fix operator spacing in rtw_security.c Greg Kroah-Hartman
2026-09-12 6:43 ` [PATCH 6.18 0442/1518] staging: rtl8723bs: use standard offsetof in cfg80211 operations Greg Kroah-Hartman
2026-09-12 6:43 ` [PATCH 6.18 0443/1518] staging: rtl8723bs: fix operator and type cast spacing Greg Kroah-Hartman
2026-09-12 6:43 ` [PATCH 6.18 0444/1518] staging: rtl8723bs: expand multiple assignment into separate statements Greg Kroah-Hartman
2026-09-12 6:43 ` [PATCH 6.18 0445/1518] staging: rtl8723bs: replace rtw_zmalloc() with kzalloc() Greg Kroah-Hartman
2026-09-12 6:43 ` [PATCH 6.18 0446/1518] staging: rtl8723bs: remove multiple blank lines in core/ Greg Kroah-Hartman
2026-09-12 6:43 ` [PATCH 6.18 0447/1518] staging: rtl8723bs: fix xmit_frame/xmit_buf leaks on mgnt-frame error paths Greg Kroah-Hartman
2026-09-12 6:43 ` [PATCH 6.18 0448/1518] gpib: Move stuck SRQ update under lock Greg Kroah-Hartman
2026-09-12 6:43 ` [PATCH 6.18 0449/1518] uio: Fix stale info pointer in failed registration path Greg Kroah-Hartman
2026-09-12 6:43 ` [PATCH 6.18 0450/1518] accessibility: speakup: Fix incorrect string length computation in report_char_chartab_status() Greg Kroah-Hartman
2026-09-12 6:43 ` [PATCH 6.18 0451/1518] speakup: keyhelp: guard letter_offsets possible out-of-range indexing Greg Kroah-Hartman
2026-09-12 6:43 ` [PATCH 6.18 0452/1518] misc: bcm-vk: Use acquire/release for msgq_inited Greg Kroah-Hartman
2026-09-12 6:43 ` [PATCH 6.18 0453/1518] misc: rtsx: add missing write register handling Greg Kroah-Hartman
2026-09-12 6:43 ` [PATCH 6.18 0454/1518] misc: ad525x_dpot: use driver core groups for sysfs files Greg Kroah-Hartman
2026-09-12 6:43 ` [PATCH 6.18 0455/1518] misc: lan966x_pci: depopulate children on populate failure Greg Kroah-Hartman
2026-09-12 6:43 ` [PATCH 6.18 0456/1518] cacheinfo: dont propagate DT/ACPI error when arch supplies info (arm64) Greg Kroah-Hartman
2026-09-12 6:43 ` [PATCH 6.18 0457/1518] ppdev: prevent overflow when setting port timeout Greg Kroah-Hartman
2026-09-12 6:43 ` [PATCH 6.18 0458/1518] ipack: ipoctal: fix UAF, null-ptr-deref, and use-after-free in cleanup on remove Greg Kroah-Hartman
2026-09-12 6:43 ` [PATCH 6.18 0459/1518] char: xilinx_hwicap: unregister class on init errors Greg Kroah-Hartman
2026-09-12 6:43 ` [PATCH 6.18 0460/1518] vfio/pci: clear vdev->msi_perm after freeing it on init failure Greg Kroah-Hartman
2026-09-12 6:43 ` [PATCH 6.18 0461/1518] soc: ti: knav_qmss_queue: Implement resource cleanup in remove() Greg Kroah-Hartman
2026-09-12 6:43 ` [PATCH 6.18 0462/1518] soc: ti: knav_qmss: Remove debugfs file on teardown Greg Kroah-Hartman
2026-09-12 6:43 ` [PATCH 6.18 0463/1518] mtd: intel-dg: wake card on operations Greg Kroah-Hartman
2026-09-12 6:43 ` [PATCH 6.18 0464/1518] mtd: intel-dg: Fix runtime PM error path in probe Greg Kroah-Hartman
2026-09-12 6:43 ` [PATCH 6.18 0465/1518] mtd: mtdswap: Avoid freeing registered blktrans device twice Greg Kroah-Hartman
2026-09-12 6:43 ` [PATCH 6.18 0466/1518] mtd: part: reject MTDPART_OFS_RETAIN in mtd_add_partition() Greg Kroah-Hartman
2026-09-12 6:43 ` [PATCH 6.18 0467/1518] perf ui hists: Fix uninitialized stack memory free on pstack allocation failure Greg Kroah-Hartman
2026-09-12 6:43 ` [PATCH 6.18 0468/1518] software node: Fix software_node_get_reference_args() with index -1 Greg Kroah-Hartman
2026-09-12 6:43 ` [PATCH 6.18 0469/1518] driver core: soc: Unregister bus on early device registration failure Greg Kroah-Hartman
2026-09-12 6:43 ` [PATCH 6.18 0470/1518] drm/msm/a6xx: Fix RBBM_CLOCK_CNTL3_TP0 value in a730_hwcg Greg Kroah-Hartman
2026-09-12 6:44 ` [PATCH 6.18 0471/1518] bpf: Reject arena frees below the arena base Greg Kroah-Hartman
2026-09-12 6:44 ` [PATCH 6.18 0472/1518] dmaengine: dw-edma: Terminate all descriptors without callbacks Greg Kroah-Hartman
2026-09-12 6:44 ` [PATCH 6.18 0473/1518] dmaengine: dw-edma: Serialize abort state updates Greg Kroah-Hartman
2026-09-12 6:44 ` [PATCH 6.18 0474/1518] dmaengine: dw-edma: Serialize channel state checks Greg Kroah-Hartman
2026-09-12 6:44 ` [PATCH 6.18 0475/1518] dmaengine: dw-edma: Clear stale requests on termination Greg Kroah-Hartman
2026-09-12 6:44 ` [PATCH 6.18 0476/1518] ASoC: meson: Keep link pointers valid on realloc failure Greg Kroah-Hartman
2026-09-12 6:44 ` [PATCH 6.18 0477/1518] phy: starfive: Fix runtime PM cleanup in JH7110 DPHY TX probe Greg Kroah-Hartman
2026-09-12 6:44 ` [PATCH 6.18 0478/1518] phy: starfive: Fix runtime PM cleanup in JH7110 DPHY RX probe Greg Kroah-Hartman
2026-09-12 6:44 ` [PATCH 6.18 0479/1518] arm64: dts: amlogic: meson-axg: Add missing nand_rb0 pin to nand_all_pins Greg Kroah-Hartman
2026-09-12 6:44 ` [PATCH 6.18 0480/1518] arm64: dts: amlogic: meson-axg-s400: enable mipi_pcie_analog_dphy for PCIe Greg Kroah-Hartman
2026-09-12 6:44 ` [PATCH 6.18 0481/1518] RDMA/hfi1: Propagate sdma_txinit_ahg() errors Greg Kroah-Hartman
2026-09-12 6:44 ` [PATCH 6.18 0482/1518] RDMA/rxe: Validate num_sge/cur_sge before indexing wqe->dma.sge[] Greg Kroah-Hartman
2026-09-12 6:44 ` [PATCH 6.18 0483/1518] RDMA/srpt: Fix srpt_alloc_rw_ctxs() unwind counters Greg Kroah-Hartman
2026-09-12 6:44 ` [PATCH 6.18 0484/1518] kcsan: avoid unintended access checking in NMIs Greg Kroah-Hartman
2026-09-12 6:44 ` [PATCH 6.18 0485/1518] arm64: dts: imx8-ss-audio: Fix LPCG clock indices for ASRC0 Greg Kroah-Hartman
2026-09-12 6:44 ` [PATCH 6.18 0486/1518] x86/bugs: Dont use cpu-type matching in cpu_vuln_blacklist Greg Kroah-Hartman
2026-09-12 6:44 ` [PATCH 6.18 0487/1518] selftests/bpf: Check malloc result with ASSERT_NEQ in test_sha256 Greg Kroah-Hartman
2026-09-12 6:44 ` [PATCH 6.18 0488/1518] selftests/bpf: Silence array bounds warning in global_map_resize Greg Kroah-Hartman
2026-09-12 6:44 ` [PATCH 6.18 0489/1518] irqchip/gic-v3-its: Prevent leak in its_vpe_irq_domain_alloc() Greg Kroah-Hartman
2026-09-12 6:44 ` [PATCH 6.18 0490/1518] RDMA/nldev: validate dynamic counter attribute length Greg Kroah-Hartman
2026-09-12 6:44 ` [PATCH 6.18 0491/1518] ACPI: EC: Avoid _REG disconnect on GPIO IRQ defer Greg Kroah-Hartman
2026-09-12 6:44 ` [PATCH 6.18 0492/1518] ACPI: processor: validate MADT IOAPIC entry bounds Greg Kroah-Hartman
2026-09-12 6:44 ` [PATCH 6.18 0493/1518] ACPI: PCI: Clear driver_data on all paths that free the acpi_pci_root Greg Kroah-Hartman
2026-09-12 6:44 ` [PATCH 6.18 0494/1518] ext4: fix circular lock dependency in ext4_ext_migrate Greg Kroah-Hartman
2026-09-12 6:44 ` [PATCH 6.18 0495/1518] ext4: fix out-of-bounds read in ext4_read_inline_dir() Greg Kroah-Hartman
2026-09-12 6:44 ` [PATCH 6.18 0496/1518] ext4: skip extra isize expansion during mount to prevent deadlock Greg Kroah-Hartman
2026-09-12 6:44 ` [PATCH 6.18 0497/1518] platform/x86: acer-wmi: reject missing gaming WMI results Greg Kroah-Hartman
2026-09-12 6:44 ` [PATCH 6.18 0498/1518] bpf: Zero queue and stack outputs on lock failure Greg Kroah-Hartman
2026-09-12 6:44 ` [PATCH 6.18 0499/1518] libbpf: Search /lib64 and /lib in resolve_full_path() Greg Kroah-Hartman
2026-09-12 6:44 ` [PATCH 6.18 0500/1518] riscv, bpf: Fix memory leak in bpf_jit_free Greg Kroah-Hartman
2026-09-12 6:44 ` [PATCH 6.18 0501/1518] riscv, bpf: Fix kernel stack corruption in tailcall with CFI Greg Kroah-Hartman
2026-09-12 6:44 ` [PATCH 6.18 0502/1518] bpf, riscv: Fix extable handling for arena load_acquire Greg Kroah-Hartman
2026-09-12 6:44 ` [PATCH 6.18 0503/1518] ACPI: battery: Adjust charging status validation check Greg Kroah-Hartman
2026-09-12 6:44 ` [PATCH 6.18 0504/1518] virt: arm-cca-guest: use migrate_disable() for attestation token requests Greg Kroah-Hartman
2026-09-12 6:44 ` [PATCH 6.18 0505/1518] bpf: Fix offset warn check for bpf_res_spin_lock Greg Kroah-Hartman
2026-09-12 6:44 ` [PATCH 6.18 0506/1518] bpf: Preserve unique-field state across nested structs Greg Kroah-Hartman
2026-09-12 6:44 ` [PATCH 6.18 0507/1518] bpf: Mark bpf_refcount field as unique Greg Kroah-Hartman
2026-09-12 6:44 ` [PATCH 6.18 0508/1518] RDMA/srpt: Pass the mapped task attribute to target_init_cmd() Greg Kroah-Hartman
2026-09-12 6:44 ` [PATCH 6.18 0509/1518] PCI: j721e: Fix incorrect max_lanes for J7200 Greg Kroah-Hartman
2026-09-12 6:44 ` [PATCH 6.18 0510/1518] RDMA/erdma: Fix CEQ tasklet use-after-free on removal Greg Kroah-Hartman
2026-09-12 6:44 ` [PATCH 6.18 0511/1518] RDMA/mana_ib: drain QP references after partial table insertion Greg Kroah-Hartman
2026-09-12 6:44 ` [PATCH 6.18 0512/1518] RDMA/restrack: Fix typos in the comments Greg Kroah-Hartman
2026-09-12 6:44 ` [PATCH 6.18 0513/1518] RDMA/nldev: Fix locking when accessing mr->pd Greg Kroah-Hartman
2026-09-12 6:44 ` [PATCH 6.18 0514/1518] RDMA/core: Add rdma_restrack_begin/abort/commit_del() operations Greg Kroah-Hartman
2026-09-12 6:44 ` [PATCH 6.18 0515/1518] RDMA/core: Fix use after free in ib_query_qp() Greg Kroah-Hartman
2026-09-12 6:44 ` [PATCH 6.18 0516/1518] RDMA/core: Fix potential use after free in ib_destroy_cq_user() Greg Kroah-Hartman
2026-09-12 6:44 ` [PATCH 6.18 0517/1518] RDMA/core: Fix potential use after free in ib_destroy_srq_user() Greg Kroah-Hartman
2026-09-12 6:44 ` [PATCH 6.18 0518/1518] RDMA/core: Fix potential use after free in counter_release() Greg Kroah-Hartman
2026-09-12 6:44 ` [PATCH 6.18 0519/1518] RDMA/core: Fix potential use after free in ib_free_cq() Greg Kroah-Hartman
2026-09-12 6:44 ` [PATCH 6.18 0520/1518] RDMA/core: Fix potential use after free in uverbs_free_dmah() Greg Kroah-Hartman
2026-09-12 6:44 ` [PATCH 6.18 0521/1518] RDMA/core: Fix potential use after free in ib_dealloc_pd_user() Greg Kroah-Hartman
2026-09-12 6:44 ` [PATCH 6.18 0522/1518] firmware: arm_scmi: Fix requested device removal race Greg Kroah-Hartman
2026-09-12 6:44 ` [PATCH 6.18 0523/1518] iommu/amd: Fix undefined behavior in devid_write debugfs function Greg Kroah-Hartman
2026-09-12 6:44 ` [PATCH 6.18 0524/1518] iommu/qcom: Remove sysfs device on probe failure path Greg Kroah-Hartman
2026-09-12 6:44 ` [PATCH 6.18 0525/1518] iommu/qcom: Fix inverted fault report check in qcom_iommu_fault() Greg Kroah-Hartman
2026-09-12 6:44 ` [PATCH 6.18 0526/1518] iommu/arm-smmu-v3: Declare eats_s1chk and eats_trans as host-endian u64 Greg Kroah-Hartman
2026-09-12 6:44 ` [PATCH 6.18 0527/1518] thermal: intel: int3400: clean up ODVP on probe failures Greg Kroah-Hartman
2026-09-12 6:44 ` [PATCH 6.18 0528/1518] ext4: clear stale xarray tags on folios skipped during writeback Greg Kroah-Hartman
2026-09-12 6:44 ` [PATCH 6.18 0529/1518] ext4: drain in-flight DIO before buffered write fallback Greg Kroah-Hartman
2026-09-12 6:44 ` [PATCH 6.18 0530/1518] ext4: use fsdata to track inline data write state and fix race Greg Kroah-Hartman
2026-09-12 6:45 ` [PATCH 6.18 0531/1518] ext4: validate readdir offset before accessing dirent Greg Kroah-Hartman
2026-09-12 6:45 ` [PATCH 6.18 0532/1518] wifi: ath6kl: avoid buffer overreads in WMI event handlers Greg Kroah-Hartman
2026-09-12 6:45 ` [PATCH 6.18 0533/1518] wifi: ath12k: switch to name-based reserved memory lookup Greg Kroah-Hartman
2026-09-12 6:45 ` [PATCH 6.18 0534/1518] wifi: ath12k: refactor QMI memory assignment Greg Kroah-Hartman
2026-09-12 6:45 ` [PATCH 6.18 0535/1518] wifi: ath12k: allocate HOST_DDR and BDF regions after Q6 RO region Greg Kroah-Hartman
2026-09-12 6:45 ` [PATCH 6.18 0536/1518] wifi: ath12k: Correctly copy the hint BSSID in WMI scan request Greg Kroah-Hartman
2026-09-12 6:45 ` [PATCH 6.18 0537/1518] wifi: ath11k: " Greg Kroah-Hartman
2026-09-12 6:45 ` [PATCH 6.18 0538/1518] wifi: ath12k: Avoid buffer overread in ath12k_wmi_op_rx() Greg Kroah-Hartman
2026-09-12 6:45 ` [PATCH 6.18 0539/1518] wifi: ath11k: Avoid buffer overread in ath11k_wmi_tlv_op_rx() Greg Kroah-Hartman
2026-09-12 6:45 ` [PATCH 6.18 0540/1518] RDMA/bnxt_re: Clear VM_MAYWRITE on DBR/toggle page mmap Greg Kroah-Hartman
2026-09-12 6:45 ` [PATCH 6.18 0541/1518] ext4: fix buffer_head leak in ext4_init_orphan_info Greg Kroah-Hartman
2026-09-12 6:45 ` [PATCH 6.18 0542/1518] ext4: check dir entry fits before reading the hash trailer in ext4_search_dir() Greg Kroah-Hartman
2026-09-12 6:45 ` [PATCH 6.18 0543/1518] ARM: dts: allwinner: a10: Fix PMU interrupt Greg Kroah-Hartman
2026-09-12 6:45 ` [PATCH 6.18 0544/1518] cpufreq: amd-pstate-ut: Skip tests when amd-pstate driver is not active Greg Kroah-Hartman
2026-09-12 6:45 ` [PATCH 6.18 0545/1518] cpufreq/amd-pstate: Use sysfs_match_string() for epp Greg Kroah-Hartman
2026-09-12 6:45 ` [PATCH 6.18 0546/1518] amd-pstate: Make certain freq_attrs conditionally visible Greg Kroah-Hartman
2026-09-12 6:45 ` [PATCH 6.18 0547/1518] cpufreq/amd-pstate: Add dynamic energy performance preference Greg Kroah-Hartman
2026-09-12 6:45 ` [PATCH 6.18 0548/1518] cpufreq/amd-pstate: Add support for platform profile class Greg Kroah-Hartman
2026-09-12 6:45 ` [PATCH 6.18 0549/1518] cpufreq/amd-pstate: Fix EPP return type and handle errors during initialization Greg Kroah-Hartman
2026-09-12 6:45 ` [PATCH 6.18 0550/1518] cpufreq/amd-pstate: Toggle auto_sel in active mode on shared memory systems Greg Kroah-Hartman
2026-09-12 6:45 ` [PATCH 6.18 0551/1518] firmware: arm_scmi: Roll back partial protocol table registration Greg Kroah-Hartman
2026-09-12 6:45 ` [PATCH 6.18 0552/1518] firmware: arm_scmi: Unrequest devices if driver registration fails Greg Kroah-Hartman
2026-09-12 6:45 ` [PATCH 6.18 0553/1518] riscv: dts: spacemit: add MusePi Pro board device tree Greg Kroah-Hartman
2026-09-12 6:45 ` [PATCH 6.18 0554/1518] riscv: dts: spacemit: Add OrangePi R2S " Greg Kroah-Hartman
2026-09-12 6:45 ` [PATCH 6.18 0555/1518] riscv: dts: spacemit: k1: Split gmac_clk_ref into independent pinctrl groups Greg Kroah-Hartman
2026-09-12 6:45 ` [PATCH 6.18 0556/1518] perf cs-etm: Flush thread stacks after decoder reset Greg Kroah-Hartman
2026-09-12 6:45 ` [PATCH 6.18 0557/1518] perf cs-etm: Avoid truncating AUX buffer sizes to int Greg Kroah-Hartman
2026-09-12 6:45 ` [PATCH 6.18 0558/1518] xfrm: Fix skb double-free in xfrm_dev_direct_output() Greg Kroah-Hartman
2026-09-12 6:45 ` [PATCH 6.18 0559/1518] RDMA/erdma: complete object teardown when the destroy command fails Greg Kroah-Hartman
2026-09-12 6:45 ` [PATCH 6.18 0560/1518] PM: hibernate: Fix memory leak in snapshot_write_next() error path Greg Kroah-Hartman
2026-09-12 6:45 ` [PATCH 6.18 0561/1518] leds: pca9532: Fix phantom device registration on missing hardware Greg Kroah-Hartman
2026-09-12 6:45 ` [PATCH 6.18 0562/1518] perf cap: Remove used_root parameter and simplify capability checks Greg Kroah-Hartman
2026-09-12 6:45 ` [PATCH 6.18 0563/1518] drm/tve200: add OF module alias for autoloading Greg Kroah-Hartman
2026-09-12 6:45 ` [PATCH 6.18 0564/1518] netfilter: nf_nat_sip: rewind offset when NAT shrinks the packet Greg Kroah-Hartman
2026-09-12 6:45 ` [PATCH 6.18 0565/1518] fs/ntfs3: fix out-of-bounds read of INDEX_ROOT in reparse/objid init Greg Kroah-Hartman
2026-09-12 6:45 ` [PATCH 6.18 0566/1518] drm/panthor: return PTR_ERR() from devm_drm_dev_alloc() Greg Kroah-Hartman
2026-09-12 6:45 ` [PATCH 6.18 0567/1518] arm64: dts: rockchip: Add missing hclk for RK3588 eDP0 Greg Kroah-Hartman
2026-09-12 6:45 ` [PATCH 6.18 0568/1518] arm64: dts: rockchip: Add missing hclk for RK3588 eDP1 Greg Kroah-Hartman
2026-09-12 6:45 ` [PATCH 6.18 0569/1518] arm64: dts: rockchip: Fix Gru WLAN sideband interrupt Greg Kroah-Hartman
2026-09-12 6:45 ` [PATCH 6.18 0570/1518] arm64: dts: rockchip: Fix rk3566-bigtreetech-cb2 touchscreen property Greg Kroah-Hartman
2026-09-12 6:45 ` [PATCH 6.18 0571/1518] bpf: Fix CFI mismatch in task work callback Greg Kroah-Hartman
2026-09-12 6:45 ` [PATCH 6.18 0572/1518] ARM: lpc32xx: only run SoC init on LPC32xx hardware Greg Kroah-Hartman
2026-09-12 6:45 ` [PATCH 6.18 0573/1518] selftests/bpf: Fix incorrect error checking for pthread_create Greg Kroah-Hartman
2026-09-12 6:45 ` [PATCH 6.18 0574/1518] selftests/bpf: Fix memory leak on subtest_states reallocation Greg Kroah-Hartman
2026-09-12 6:45 ` [PATCH 6.18 0575/1518] cxl/region: Fix use-after-free in find_pos_and_ways() error path Greg Kroah-Hartman
2026-09-12 6:45 ` [PATCH 6.18 0576/1518] pinctrl: mediatek: free EINT resources on unbind Greg Kroah-Hartman
2026-09-12 6:45 ` [PATCH 6.18 0577/1518] tools/build: Allow versioning of all LLVM tools defined in Makefile.include Greg Kroah-Hartman
2026-09-12 6:45 ` [PATCH 6.18 0578/1518] arm64: RSI: fix field-spanning write warning in attestation token init Greg Kroah-Hartman
2026-09-12 6:45 ` [PATCH 6.18 0579/1518] power: supply: sbs-battery: Use a per-device serial number buffer Greg Kroah-Hartman
2026-09-12 6:45 ` [PATCH 6.18 0580/1518] scsi: ufs: debugfs: Reserve space for a string terminator Greg Kroah-Hartman
2026-09-12 6:45 ` [PATCH 6.18 0581/1518] crypto: keembay - Initialize completion before requesting IRQ Greg Kroah-Hartman
2026-09-12 6:45 ` [PATCH 6.18 0582/1518] crypto: keembay - publish OF module alias for OCS AES/SM4 Greg Kroah-Hartman
2026-09-12 6:45 ` [PATCH 6.18 0583/1518] RDMA/mlx5: Fix integer overflow of user QP buffer size Greg Kroah-Hartman
2026-09-12 6:45 ` [PATCH 6.18 0584/1518] thermal/drivers/airoha: Fix copy paste error on clamp_t low temp Greg Kroah-Hartman
2026-09-12 6:45 ` [PATCH 6.18 0585/1518] thermal/drivers/airoha: Fix copy paste error for sen internal Greg Kroah-Hartman
2026-09-12 6:45 ` [PATCH 6.18 0586/1518] thermal/drivers/qcom-spmi-adc-tm5: Drop IIO_VAL_INT check in adc_tm5_get_temp Greg Kroah-Hartman
2026-09-12 6:45 ` [PATCH 6.18 0587/1518] powercap: intel_rapl_tpmi: Handle PMU registration failure during probe Greg Kroah-Hartman
2026-09-12 6:45 ` [PATCH 6.18 0588/1518] isofs: release zisofs block pointer buffer head Greg Kroah-Hartman
2026-09-12 6:45 ` [PATCH 6.18 0589/1518] clk: mediatek: mt6735: Unregister PLLs on probe failure Greg Kroah-Hartman
2026-09-12 6:45 ` [PATCH 6.18 0590/1518] spi: oc-tiny: switch to managed controller allocation Greg Kroah-Hartman
2026-09-12 6:46 ` [PATCH 6.18 0591/1518] w1: ds2482: Fix signedness bug in ds2482_w1_triplet() Greg Kroah-Hartman
2026-09-12 6:46 ` [PATCH 6.18 0592/1518] cpufreq/amd-pstate: Add comment explaining nominal_perf usage for performance policy Greg Kroah-Hartman
2026-09-12 6:46 ` [PATCH 6.18 0593/1518] cpufreq/amd-pstate: Set min_limit_freq based on bios_min_perf Greg Kroah-Hartman
2026-09-12 6:46 ` [PATCH 6.18 0594/1518] remoteproc: core: Drop redundant initialization of ret in rproc_shutdown() Greg Kroah-Hartman
2026-09-12 6:46 ` [PATCH 6.18 0595/1518] remoteproc: Allow shutdown of crashed processors Greg Kroah-Hartman
2026-09-12 6:46 ` [PATCH 6.18 0596/1518] remoteproc: core: Attach rproc asynchronously in rproc_add() path via schedule_work() Greg Kroah-Hartman
2026-09-12 6:46 ` [PATCH 6.18 0597/1518] remoteproc: Prevent crash handling to race with rproc_del() Greg Kroah-Hartman
2026-09-12 6:46 ` [PATCH 6.18 0598/1518] firmware: qcom_scm: Introduce PAS context allocator helper function Greg Kroah-Hartman
2026-09-12 6:46 ` [PATCH 6.18 0599/1518] staging: rtl8723bs: use kfree_sensitive() for key material Greg Kroah-Hartman
2026-09-12 6:46 ` [PATCH 6.18 0600/1518] fs/ntfs3: reject restart table growth beyond U16_MAX entries Greg Kroah-Hartman
2026-09-12 6:46 ` [PATCH 6.18 0601/1518] iommu/tegra241-cmdqv: Publish an LVCMDQ only after it is fully initialized Greg Kroah-Hartman
2026-09-12 6:46 ` [PATCH 6.18 0602/1518] iommu/tegra241-cmdqv: Synchronize the error ISR against VINTF (de)init Greg Kroah-Hartman
2026-09-12 6:46 ` [PATCH 6.18 0603/1518] iommu/tegra241-cmdqv: Dont run the error ISR before probe sets up vintfs Greg Kroah-Hartman
2026-09-12 6:46 ` [PATCH 6.18 0604/1518] iommu/tegra241-cmdqv: Free the error IRQ before tearing down VINTFs Greg Kroah-Hartman
2026-09-12 6:46 ` [PATCH 6.18 0605/1518] iommu/tegra241-cmdqv: Require exactly one Stream ID for a vSID Greg Kroah-Hartman
2026-09-12 6:46 ` [PATCH 6.18 0606/1518] iommu/tegra241-cmdqv: Fix VINTF0 leak on the init-failure path Greg Kroah-Hartman
2026-09-12 6:46 ` [PATCH 6.18 0607/1518] RDMA/rxe: Fix UAF in ODP init error-handling path Greg Kroah-Hartman
2026-09-12 6:46 ` [PATCH 6.18 0608/1518] RDMA/efa: Fix PBL chunk length computation Greg Kroah-Hartman
2026-09-12 6:46 ` [PATCH 6.18 0609/1518] wifi: mac80211: fix per-STA profile length in cross-link CSA parsing Greg Kroah-Hartman
2026-09-12 6:46 ` [PATCH 6.18 0610/1518] arm64: dts: allwinner: sun50i-a64-pinephone: Fix mpu6050 mount matrix Greg Kroah-Hartman
2026-09-12 6:46 ` [PATCH 6.18 0611/1518] clk: tegra: tegra124-emc: put EMC node on register failure Greg Kroah-Hartman
2026-09-12 6:46 ` [PATCH 6.18 0612/1518] clk: mediatek: Refactor pll registration to pass device Greg Kroah-Hartman
2026-09-12 6:46 ` [PATCH 6.18 0613/1518] clk: mediatek: Pass device to clk_hw_register for PLLs Greg Kroah-Hartman
2026-09-12 6:46 ` [PATCH 6.18 0614/1518] clk: mediatek: Refactor pllfh registration to pass device Greg Kroah-Hartman
2026-09-12 6:46 ` [PATCH 6.18 0615/1518] clk: mediatek: pllfh: Fix IO remapping leak in register_pllfhs error path Greg Kroah-Hartman
2026-09-12 6:46 ` [PATCH 6.18 0616/1518] clk: palmas: Manage external-control prepare with devm Greg Kroah-Hartman
2026-09-12 6:46 ` [PATCH 6.18 0617/1518] clk/x86: pmc_atom: add kasprintf return value check Greg Kroah-Hartman
2026-09-12 6:46 ` Greg Kroah-Hartman [this message]
2026-09-12 6:46 ` [PATCH 6.18 0619/1518] clk: rockchip: Fix the fractional part denominator on RK3588/RK3576 PLLs Greg Kroah-Hartman
2026-09-12 6:46 ` [PATCH 6.18 0620/1518] nilfs2: fix infinite loop in nilfs_clean_segments() Greg Kroah-Hartman
2026-09-12 6:46 ` [PATCH 6.18 0621/1518] nilfs2: prevent out-of-bounds read in super root block parsing Greg Kroah-Hartman
2026-09-12 6:46 ` [PATCH 6.18 0622/1518] nilfs2: fix BUG in nilfs_copy_dirty_pages() on dirty state mismatch Greg Kroah-Hartman
2026-09-12 6:46 ` [PATCH 6.18 0623/1518] scsi: smartpqi: Fix AIO retry marker cleared by SCSI core between dispatches Greg Kroah-Hartman
2026-09-12 6:46 ` [PATCH 6.18 0624/1518] RDMA/mlx5: Fix stack out-of-bounds read in cc_params debugfs Greg Kroah-Hartman
2026-09-12 6:46 ` [PATCH 6.18 0625/1518] RDMA/mlx5: Send cong param changes to the resolved port mdev Greg Kroah-Hartman
2026-09-12 6:46 ` [PATCH 6.18 0626/1518] RDMA/cxgb4: free STAG index when TPT entry write fails Greg Kroah-Hartman
2026-09-12 6:46 ` [PATCH 6.18 0627/1518] media: staging/ipu7: fix async notifier leak on init error Greg Kroah-Hartman
2026-09-12 6:46 ` [PATCH 6.18 0628/1518] IB/isert: reject PDUs declaring more data than was received Greg Kroah-Hartman
2026-09-12 6:46 ` [PATCH 6.18 0629/1518] IB/isert: reject login " Greg Kroah-Hartman
2026-09-12 6:46 ` [PATCH 6.18 0630/1518] nvme-fc: unmap cmd_iu DMA on rsp_iu mapping failure in init_request Greg Kroah-Hartman
2026-09-12 6:46 ` [PATCH 6.18 0631/1518] spi: davinci: switch to managed controller allocation Greg Kroah-Hartman
2026-09-12 6:46 ` [PATCH 6.18 0632/1518] wifi: ath11k: fix overreads in ath11k_wmi_process_csa_switch_count_event() Greg Kroah-Hartman
2026-09-12 6:46 ` [PATCH 6.18 0633/1518] wifi: ath12k: validate TLV length in process_tpc_stats() Greg Kroah-Hartman
2026-09-12 6:46 ` [PATCH 6.18 0634/1518] PCI: starfive: Fix Runtime PM handling and teardown ordering Greg Kroah-Hartman
2026-09-12 6:46 ` [PATCH 6.18 0635/1518] PCI: starfive: Fix unchecked pm_runtime_get_sync() in probe Greg Kroah-Hartman
2026-09-12 6:46 ` [PATCH 6.18 0636/1518] drm/msm: remove objects from evit list after pinning them Greg Kroah-Hartman
2026-09-12 6:46 ` [PATCH 6.18 0637/1518] media: qcom: iris: Fix bitmask test in iris_allow_cmd() Greg Kroah-Hartman
2026-09-12 6:46 ` [PATCH 6.18 0638/1518] media: qcom: iris: handle runtime PM resume failure in core deinit Greg Kroah-Hartman
2026-09-12 6:46 ` [PATCH 6.18 0639/1518] s390/ptrace: Rename psw_t32 to psw32_t Greg Kroah-Hartman
2026-09-12 6:46 ` [PATCH 6.18 0640/1518] s390/syscalls: Add pt_regs parameter to SYSCALL_DEFINE0() syscall wrapper Greg Kroah-Hartman
2026-09-12 6:46 ` [PATCH 6.18 0641/1518] s390: Remove compat support Greg Kroah-Hartman
2026-09-12 6:46 ` [PATCH 6.18 0642/1518] s390: Add stackprotector support Greg Kroah-Hartman
2026-09-12 6:46 ` [PATCH 6.18 0643/1518] s390/vdso: Rename vdso64 to vdso Greg Kroah-Hartman
2026-09-12 6:46 ` [PATCH 6.18 0644/1518] s390/vdso: Pass --eh-frame-hdr to the linker Greg Kroah-Hartman
2026-09-12 6:46 ` [PATCH 6.18 0645/1518] platform/chrome: cros_ec_debugfs: Clean up console log on probe failure Greg Kroah-Hartman
2026-09-12 6:46 ` [PATCH 6.18 0646/1518] platform/chrome: cros_ec_debugfs: Unregister panic notifier Greg Kroah-Hartman
2026-09-12 6:46 ` [PATCH 6.18 0647/1518] wifi: rtlwifi: pci: fix error path in rtl_pci_probe() Greg Kroah-Hartman
2026-09-12 6:46 ` [PATCH 6.18 0648/1518] bus: mhi: host: Flush the posted write after writing to MHI_SOC_RESET_REQ_OFFSET Greg Kroah-Hartman
2026-09-12 6:46 ` [PATCH 6.18 0649/1518] bus: mhi: host: Fix controller cleanup on EDL sysfs failure Greg Kroah-Hartman
2026-09-12 6:46 ` [PATCH 6.18 0650/1518] md/raid5: protect bitmap batch counters aka seq_flush/seq_write consistency Greg Kroah-Hartman
2026-09-12 6:47 ` [PATCH 6.18 0651/1518] md/raid5-ppl: fix use-after-free in ppl_do_flush() Greg Kroah-Hartman
2026-09-12 6:47 ` [PATCH 6.18 0652/1518] md/raid5: protect lockless recovery_offset accesses during reshape Greg Kroah-Hartman
2026-09-12 6:47 ` [PATCH 6.18 0653/1518] fanotify: stop permission watchdog when timeout is zero Greg Kroah-Hartman
2026-09-12 6:47 ` [PATCH 6.18 0654/1518] tools/nolibc/powerpc: mark ctr and xer as clobbered by system call Greg Kroah-Hartman
2026-09-12 6:47 ` [PATCH 6.18 0655/1518] md: recheck spare changes before starting sync Greg Kroah-Hartman
2026-09-12 6:47 ` [PATCH 6.18 0656/1518] selftests/zram: fix kernel_gte() for POSIX sh Greg Kroah-Hartman
2026-09-12 6:47 ` [PATCH 6.18 0657/1518] Revert "serial: 8250: Clear CON_PRINTBUFFER on port re-registration" Greg Kroah-Hartman
2026-09-12 6:47 ` [PATCH 6.18 0658/1518] wifi: ath12k: fix stride mismatch in mac_phy_caps_parse() Greg Kroah-Hartman
2026-09-12 6:47 ` [PATCH 6.18 0659/1518] wifi: ath11k: " Greg Kroah-Hartman
2026-09-12 6:47 ` [PATCH 6.18 0660/1518] md/raid10: consistently fail atomic writes that require splitting Greg Kroah-Hartman
2026-09-12 6:47 ` [PATCH 6.18 0661/1518] rcu: Mark accesses to ->rcu_urgent_qs and ->rcu_need_heavy_qs Greg Kroah-Hartman
2026-09-12 6:47 ` [PATCH 6.18 0662/1518] arm64: dts: qcom: msm8998: Dont pull-up I2C pins by default in sleep Greg Kroah-Hartman
2026-09-12 6:47 ` [PATCH 6.18 0663/1518] arm64: dts: qcom: msm8976-longcheer-l9360: Fix accidental node override Greg Kroah-Hartman
2026-09-12 6:47 ` [PATCH 6.18 0664/1518] arm64: dts: qcom: sdm632-motorola-ocean: Fix LED default trigger property Greg Kroah-Hartman
2026-09-12 6:47 ` [PATCH 6.18 0665/1518] arm64: dts: qcom: qcs404: Fix DTBS Check errors in usb controller nodes Greg Kroah-Hartman
2026-09-12 6:47 ` [PATCH 6.18 0666/1518] clk: qcom: gcc-qcm2290: dont park QUP RCGs upon registration Greg Kroah-Hartman
2026-09-12 6:47 ` [PATCH 6.18 0667/1518] arm64: dts: qcom: sc8280xp-crd: Fix the pin index for misc_3p3_reg_en Greg Kroah-Hartman
2026-09-12 6:47 ` [PATCH 6.18 0668/1518] firmware: qcom_scm: Add API to get waitqueue IRQ info Greg Kroah-Hartman
2026-09-12 6:47 ` [PATCH 6.18 0669/1518] firmware: qcom_scm: Support multiple waitq contexts Greg Kroah-Hartman
2026-09-12 6:47 ` [PATCH 6.18 0670/1518] firmware: qcom: scm: add trace events for the SMC call interface Greg Kroah-Hartman
2026-09-12 6:47 ` [PATCH 6.18 0671/1518] firmware: qcom: scm: instrument SMC call path with tracepoints Greg Kroah-Hartman
2026-09-12 6:47 ` [PATCH 6.18 0672/1518] firmware: qcom: scm: Fix NULL dereference in IRQ handler before __scm is published Greg Kroah-Hartman
2026-09-12 6:47 ` [PATCH 6.18 0673/1518] firmware: qcom: scm: Fix reserved memory cleanup on probe failure Greg Kroah-Hartman
2026-09-12 6:47 ` [PATCH 6.18 0674/1518] firmware: qcom: scm: Fix tzmem state on probe retry Greg Kroah-Hartman
2026-09-12 6:47 ` [PATCH 6.18 0675/1518] blk-crypto: submit the encrypted bio in blk_crypto_fallback_bio_prep Greg Kroah-Hartman
2026-09-12 6:47 ` [PATCH 6.18 0676/1518] blk-crypto: optimize bio splitting in blk_crypto_fallback_encrypt_bio Greg Kroah-Hartman
2026-09-12 6:47 ` [PATCH 6.18 0677/1518] blk-crypto: use on-stack skcipher requests for fallback en/decryption Greg Kroah-Hartman
2026-09-12 6:47 ` [PATCH 6.18 0678/1518] block: dont set BIO_QUIET for BLK_STS_AGAIN Greg Kroah-Hartman
2026-09-12 6:47 ` [PATCH 6.18 0679/1518] block: add a bio_endio_status helper Greg Kroah-Hartman
2026-09-12 6:47 ` [PATCH 6.18 0680/1518] block: fix dio leak on metadata mapping error Greg Kroah-Hartman
2026-09-12 6:47 ` [PATCH 6.18 0681/1518] arm64: dts: qcom: sm8250-xiaomi-elish: correct the board ID Greg Kroah-Hartman
2026-09-12 6:47 ` [PATCH 6.18 0682/1518] arm64: dts: qcom: kodiak: Fix the PCIe iommu-map entries Greg Kroah-Hartman
2026-09-12 6:47 ` [PATCH 6.18 0683/1518] arm64: dts: qcom: sar2130p: " Greg Kroah-Hartman
2026-09-12 6:47 ` [PATCH 6.18 0684/1518] arm64: dts: qcom: sc8180x: " Greg Kroah-Hartman
2026-09-12 6:47 ` [PATCH 6.18 0685/1518] arm64: dts: qcom: sdm845: " Greg Kroah-Hartman
2026-09-12 6:47 ` [PATCH 6.18 0686/1518] arm64: dts: qcom: sm8150: " Greg Kroah-Hartman
2026-09-12 6:47 ` [PATCH 6.18 0687/1518] arm64: dts: qcom: sm8250: " Greg Kroah-Hartman
2026-09-12 6:47 ` [PATCH 6.18 0688/1518] arm64: dts: qcom: sm8350: " Greg Kroah-Hartman
2026-09-12 6:47 ` [PATCH 6.18 0689/1518] arm64: dts: qcom: sm8450: " Greg Kroah-Hartman
2026-09-12 6:47 ` [PATCH 6.18 0690/1518] arm64: dts: qcom: sm8550: " Greg Kroah-Hartman
2026-09-12 6:47 ` [PATCH 6.18 0691/1518] arm64: dts: qcom: sm8650: " Greg Kroah-Hartman
2026-09-12 6:47 ` [PATCH 6.18 0692/1518] arm64: dts: qcom: sm8750: " Greg Kroah-Hartman
2026-09-12 6:47 ` [PATCH 6.18 0693/1518] arm64: dts: qcom: talos: " Greg Kroah-Hartman
2026-09-12 6:47 ` [PATCH 6.18 0694/1518] arm64: dts: qcom: lemans: move USB PHYs to a proper place Greg Kroah-Hartman
2026-09-12 6:47 ` [PATCH 6.18 0695/1518] arm64: dts: qcom: lemans: add refgen regulator and use it for DSI Greg Kroah-Hartman
2026-09-12 6:47 ` [PATCH 6.18 0696/1518] arm64: dts: qcom: lemans: add QCrypto node Greg Kroah-Hartman
2026-09-12 6:47 ` [PATCH 6.18 0697/1518] arm64: dts: qcom: sa8775p: Add reg and clocks for QoS configuration Greg Kroah-Hartman
2026-09-12 6:47 ` [PATCH 6.18 0698/1518] arm64: dts: qcom: lemans: Move PCIe devices into soc node Greg Kroah-Hartman
2026-09-12 6:47 ` [PATCH 6.18 0699/1518] arm64: dts: qcom: lemans: Fix the PCIe iommu-map entries Greg Kroah-Hartman
2026-09-12 6:47 ` [PATCH 6.18 0700/1518] arm64: dts: qcom: qcs6490-rb3gen2: " Greg Kroah-Hartman
2026-09-12 6:47 ` [PATCH 6.18 0701/1518] power: supply: isp1704_charger: cancel work on remove Greg Kroah-Hartman
2026-09-12 6:47 ` [PATCH 6.18 0702/1518] power: supply: sc2731_charger: " Greg Kroah-Hartman
2026-09-12 6:47 ` [PATCH 6.18 0703/1518] bpf: Fix potential UAF in bpf_netns_link_update_prog Greg Kroah-Hartman
2026-09-12 6:47 ` [PATCH 6.18 0704/1518] bpf: Fix potential UAF when reading bpf link info Greg Kroah-Hartman
2026-09-12 6:47 ` [PATCH 6.18 0705/1518] lib/test_hmm: fail dmirror_fault() when the mirrored mm is gone Greg Kroah-Hartman
2026-09-12 6:47 ` [PATCH 6.18 0706/1518] clk: qcom: gpucc-qcm2290: Park RCGs clk source at XO during disable Greg Kroah-Hartman
2026-09-12 6:47 ` [PATCH 6.18 0707/1518] clk: qcom: Return expected ENOMEM error on dynamic allocation failure Greg Kroah-Hartman
2026-09-12 6:47 ` [PATCH 6.18 0708/1518] md/bitmap: resume array on backlog_store() error path Greg Kroah-Hartman
2026-09-12 6:47 ` [PATCH 6.18 0709/1518] md: remove unused mddev argument from export_rdev Greg Kroah-Hartman
2026-09-12 6:47 ` [PATCH 6.18 0710/1518] md: skip redundant raid_disks update when value is unchanged Greg Kroah-Hartman
2026-09-12 6:48 ` [PATCH 6.18 0711/1518] md: scope memalloc_noio to allocation critical sections Greg Kroah-Hartman
2026-09-12 6:48 ` [PATCH 6.18 0712/1518] iommu/dma: Check atomic pool allocation result directly Greg Kroah-Hartman
2026-09-12 6:48 ` [PATCH 6.18 0713/1518] swiotlb: Preserve allocation virtual address for dynamic pools Greg Kroah-Hartman
2026-09-12 6:48 ` [PATCH 6.18 0714/1518] i3c: dw: avoid shift-out-of-bounds when DAA assigns no devices Greg Kroah-Hartman
2026-09-12 6:48 ` [PATCH 6.18 0715/1518] i3c: master: adi: add OF module alias for autoloading Greg Kroah-Hartman
2026-09-12 6:48 ` [PATCH 6.18 0716/1518] fs: annotate inode timestamp accessors Greg Kroah-Hartman
2026-09-12 6:48 ` [PATCH 6.18 0717/1518] md/raid1: create serial pool adding rdev to array with serialize_policy=1 Greg Kroah-Hartman
2026-09-12 6:48 ` [PATCH 6.18 0718/1518] locking/lockdep: Fix NULL pointer dereference in __lock_set_class() Greg Kroah-Hartman
2026-09-12 6:48 ` [PATCH 6.18 0719/1518] powerpc: implement get_direction() in cpm2 Greg Kroah-Hartman
2026-09-12 6:48 ` [PATCH 6.18 0720/1518] powerpc/44x: Set GPIO chip parent Greg Kroah-Hartman
2026-09-12 6:48 ` [PATCH 6.18 0721/1518] powerpc/crash: Fix possible memory leak in update_crash_elfcorehdr() Greg Kroah-Hartman
2026-09-12 6:48 ` [PATCH 6.18 0722/1518] misc: vmc_vmci: Fix potential memory leak in vmci_event_subscribe() Greg Kroah-Hartman
2026-09-12 6:48 ` [PATCH 6.18 0723/1518] misc: sgi-gru: remove interrupt-context page-table walks Greg Kroah-Hartman
2026-09-12 6:48 ` [PATCH 6.18 0724/1518] fanotify: report full event length for FIONREAD Greg Kroah-Hartman
2026-09-12 6:48 ` [PATCH 6.18 0725/1518] wifi: mt76: connac: add MT7991A (0x7991) to is_mt7996() Greg Kroah-Hartman
2026-09-12 6:48 ` [PATCH 6.18 0726/1518] wifi: mt76: mt76x02: do not WARN on invalid rx descriptor length Greg Kroah-Hartman
2026-09-12 6:48 ` [PATCH 6.18 0727/1518] wifi: mt76: mt7921: validate CLC firmware records Greg Kroah-Hartman
2026-09-12 6:48 ` [PATCH 6.18 0728/1518] wifi: mt76: mt7915: fix net_fill_forward_path for non-DBDC mt7986 Greg Kroah-Hartman
2026-09-12 6:48 ` [PATCH 6.18 0729/1518] wifi: mt76: Move Q_READ/Q_WRITE definitions in dma.h Greg Kroah-Hartman
2026-09-12 6:48 ` [PATCH 6.18 0730/1518] wifi: mt76: Introduce the NPU generic layer Greg Kroah-Hartman
2026-09-12 6:48 ` [PATCH 6.18 0731/1518] wifi: mt76: always enable RRO queues for non-MT7992 chipset Greg Kroah-Hartman
2026-09-12 6:48 ` [PATCH 6.18 0732/1518] wifi: mt76: mt7921: Add PCIe AER handler support to prevent system crash Greg Kroah-Hartman
2026-09-12 6:48 ` [PATCH 6.18 0733/1518] wifi: mt76: mt7925: update clc before setting sar power table Greg Kroah-Hartman
2026-09-12 6:48 ` [PATCH 6.18 0734/1518] wifi: mt76: mt7925: fix msg len mismatch between driver and firmware Greg Kroah-Hartman
2026-09-12 6:48 ` [PATCH 6.18 0735/1518] wifi: mt76: mt792x: Fix memory leak in SDIO TX path Greg Kroah-Hartman
2026-09-12 6:48 ` [PATCH 6.18 0736/1518] wifi: mt76: mt7996: fix EAPOL source BSS for non-MLD stations Greg Kroah-Hartman
2026-09-12 6:48 ` [PATCH 6.18 0737/1518] wifi: mt76: mt7996: fix capability of EHT-MCS 15 in MRU Greg Kroah-Hartman
2026-09-12 6:48 ` [PATCH 6.18 0738/1518] wifi: mt76: fix RX data queuing of RRO 3.0 Greg Kroah-Hartman
2026-09-12 6:48 ` [PATCH 6.18 0739/1518] wifi: mt76: mt7996: support fixed rate for link station Greg Kroah-Hartman
2026-09-12 6:48 ` [PATCH 6.18 0740/1518] wifi: mt76: mt7996: set specific BSSINFO and STAREC commands after channel switch Greg Kroah-Hartman
2026-09-12 6:48 ` [PATCH 6.18 0741/1518] wifi: mt76: mt7996: fix out-of-bounds array access during hardware restart Greg Kroah-Hartman
2026-09-12 6:48 ` [PATCH 6.18 0742/1518] wifi: mt76: mt7996: fix MLD ID in MAC TXD and HIF TXP Greg Kroah-Hartman
2026-09-12 6:48 ` [PATCH 6.18 0743/1518] wifi: mt76: fix non-AQL packet accounting for MLO stations Greg Kroah-Hartman
2026-09-12 6:48 ` [PATCH 6.18 0744/1518] wifi: mt76: assign link_id when sending probe request during scan Greg Kroah-Hartman
2026-09-12 6:48 ` [PATCH 6.18 0745/1518] wifi: mt76: mt7996: validate RX band_idx before dereferencing phys[] Greg Kroah-Hartman
2026-09-12 6:48 ` [PATCH 6.18 0746/1518] wifi: mt76: mt7996: set MT76_MCU_RESET before waking MCU waiters on full reset Greg Kroah-Hartman
2026-09-12 6:48 ` [PATCH 6.18 0747/1518] wifi: mt76: mt7915: clear wcid mask under mutex after RCU pointer clear Greg Kroah-Hartman
2026-09-12 6:48 ` [PATCH 6.18 0748/1518] wifi: mt76: mt7915: avoid nss underflow in mt7915_mcu_get_sta_nss Greg Kroah-Hartman
2026-09-12 6:48 ` [PATCH 6.18 0749/1518] wifi: mt76: mt7996: dont report a zero TX bitrate Greg Kroah-Hartman
2026-09-12 6:48 ` [PATCH 6.18 0750/1518] wifi: mt76: mt7915: write RX header translation bit to the correct register Greg Kroah-Hartman
2026-09-12 6:48 ` [PATCH 6.18 0751/1518] wifi: mt76: fix stranded frames in mt76_txq_schedule_pending Greg Kroah-Hartman
2026-09-12 6:48 ` [PATCH 6.18 0752/1518] wifi: mt76: fix uninitialised RXDMAD_C descriptor info Greg Kroah-Hartman
2026-09-12 6:48 ` [PATCH 6.18 0753/1518] wifi: mt76: fix RXDMAD_C buffer recycling race Greg Kroah-Hartman
2026-09-12 6:48 ` [PATCH 6.18 0754/1518] wifi: mt76: mt7915: poll the correct SLP CTRL register for the second adie Greg Kroah-Hartman
2026-09-12 6:48 ` [PATCH 6.18 0755/1518] wifi: mt76: check txfree done event on the WED hw path Greg Kroah-Hartman
2026-09-12 6:48 ` [PATCH 6.18 0756/1518] wifi: mt76: mt7996: bound TLV walk in mt7996_mcu_get_chip_config Greg Kroah-Hartman
2026-09-12 6:48 ` [PATCH 6.18 0757/1518] wifi: mt76: mt7915: unwind state on add_interface failure Greg Kroah-Hartman
2026-09-12 6:48 ` [PATCH 6.18 0758/1518] wifi: mt76: mt7996: hold dev->mt76.mutex while disabling tx worker in SER Greg Kroah-Hartman
2026-09-12 6:48 ` [PATCH 6.18 0759/1518] wifi: mt76: mt7996: reserve space for the CSA-abort countdown TLV Greg Kroah-Hartman
2026-09-12 6:48 ` [PATCH 6.18 0760/1518] wifi: mt76: mt7996: dont leak MLD group index on remap alloc failure Greg Kroah-Hartman
2026-09-12 6:48 ` [PATCH 6.18 0761/1518] wifi: mt76: mt7915: use little-endian for bss_info_ra wire fields Greg Kroah-Hartman
2026-09-12 6:48 ` [PATCH 6.18 0762/1518] wifi: mt76: mt7996: add missing rdd_idx check when enabling background radar Greg Kroah-Hartman
2026-09-12 6:48 ` [PATCH 6.18 0763/1518] wifi: mt76: only consume the WO drop bit on WED v2 devices Greg Kroah-Hartman
2026-09-12 6:48 ` [PATCH 6.18 0764/1518] ACPI: processor: idle: Optimize ACPI idle driver registration Greg Kroah-Hartman
2026-09-12 6:48 ` [PATCH 6.18 0765/1518] ACPI: processor: Unregister cpufreq notifier on init failure Greg Kroah-Hartman
2026-09-12 6:48 ` [PATCH 6.18 0766/1518] drm/msm: dont tear down KMS twice when KMS init fails Greg Kroah-Hartman
2026-09-12 6:48 ` [PATCH 6.18 0767/1518] drm/msm/dp: reject YUV420-only modes without VSC SDP support Greg Kroah-Hartman
2026-09-12 6:48 ` [PATCH 6.18 0768/1518] drm/msm/dp: do not reject wide-bus modes while a YUV420 mode is active Greg Kroah-Hartman
2026-09-12 6:48 ` [PATCH 6.18 0769/1518] perf: arm_spe: Make wakeup range check overflow safe Greg Kroah-Hartman
2026-09-12 6:48 ` [PATCH 6.18 0770/1518] drm/msm/dpu: Drop sneaky dev_pm_opp_set_rate(0) Greg Kroah-Hartman
2026-09-12 6:49 ` [PATCH 6.18 0771/1518] drm/msm/dp: Drop dev_pm_opp_set_rate(0) Greg Kroah-Hartman
2026-09-12 6:49 ` [PATCH 6.18 0772/1518] drm/msm/dsi: " Greg Kroah-Hartman
2026-09-12 6:49 ` [PATCH 6.18 0773/1518] wifi: ath11k: fix leak in ath11k_service_ready_ext_event() Greg Kroah-Hartman
2026-09-12 6:49 ` [PATCH 6.18 0774/1518] soundwire: Add a helper function to wait for device initialisation Greg Kroah-Hartman
2026-09-12 6:49 ` [PATCH 6.18 0775/1518] ASoC: tas2783: Use new SoundWire enumeration helper Greg Kroah-Hartman
2026-09-12 6:49 ` [PATCH 6.18 0776/1518] ASoC: codecs: tas2783-sdw: Propagate regcache_sync() errors Greg Kroah-Hartman
2026-09-12 6:49 ` [PATCH 6.18 0777/1518] ASoC: tas2783-sdw: drop stale regcache on uninitialized re-attach Greg Kroah-Hartman
2026-09-12 6:49 ` [PATCH 6.18 0778/1518] regulator: core: use system_freezable_wq for init complete work Greg Kroah-Hartman
2026-09-12 6:49 ` [PATCH 6.18 0779/1518] perf machine: Fix fd leak on bounds check in maps__set_modules_path_dir() Greg Kroah-Hartman
2026-09-12 6:49 ` [PATCH 6.18 0780/1518] perf machine: Fix NULL parent dereference in fork event processing Greg Kroah-Hartman
2026-09-12 6:49 ` [PATCH 6.18 0781/1518] perf machine: Guard against NULL strlist in machines__findnew() Greg Kroah-Hartman
2026-09-12 6:49 ` [PATCH 6.18 0782/1518] perf machine: Check snprintf truncation " Greg Kroah-Hartman
2026-09-12 6:49 ` [PATCH 6.18 0783/1518] perf machine: Dont abort guest map creation on first inaccessible dir Greg Kroah-Hartman
2026-09-12 6:49 ` [PATCH 6.18 0784/1518] perf machine: Reset errno before strtol in guest kernel map creation Greg Kroah-Hartman
2026-09-12 6:49 ` [PATCH 6.18 0785/1518] perf machine: Free scandir entries " Greg Kroah-Hartman
2026-09-12 6:49 ` [PATCH 6.18 0786/1518] perf machine: Check snprintf truncation for guest kallsyms path Greg Kroah-Hartman
2026-09-12 6:49 ` [PATCH 6.18 0787/1518] bpf, x86: Fix trampoline stack size for 128-bit arguments Greg Kroah-Hartman
2026-09-12 6:49 ` [PATCH 6.18 0788/1518] wifi: mt76: mt7915: unlink TWT flow if the MCU rejects the agreement Greg Kroah-Hartman
2026-09-12 6:49 ` [PATCH 6.18 0789/1518] wifi: mt76: mt7996: skip key upload when adding an offchannel link Greg Kroah-Hartman
2026-09-12 6:49 ` [PATCH 6.18 0790/1518] wifi: mt76: mt7996: wake MCU waiters before aborting scan in L1 SER Greg Kroah-Hartman
2026-09-12 6:49 ` [PATCH 6.18 0791/1518] wifi: mt76: mt7996: free vif links after clearing wcid entries on full reset Greg Kroah-Hartman
2026-09-12 6:49 ` [PATCH 6.18 0792/1518] wifi: mt76: mt7996: fix MIB TX aggregation counter registers for mt7990 Greg Kroah-Hartman
2026-09-12 6:49 ` [PATCH 6.18 0793/1518] wifi: mt76: mt7915: fix double hif2 init on the non-WED path Greg Kroah-Hartman
2026-09-12 6:49 ` [PATCH 6.18 0794/1518] wifi: mt76: mt7915: fix ext PHY use-after-free on register error path Greg Kroah-Hartman
2026-09-12 6:49 ` [PATCH 6.18 0795/1518] wifi: mt76: mt7915: release hif2 reference on probe IRQ failure Greg Kroah-Hartman
2026-09-12 6:49 ` [PATCH 6.18 0796/1518] wifi: mt76: mt7996: fix reg addr remap when addr is 0 Greg Kroah-Hartman
2026-09-12 6:49 ` [PATCH 6.18 0797/1518] wifi: mt76: mt7996: do not attach hif2 WED when the main WED attach failed Greg Kroah-Hartman
2026-09-12 6:49 ` [PATCH 6.18 0798/1518] wifi: mt76: mt7915: fix chainmask handling for non-dbdc phys on band 1 Greg Kroah-Hartman
2026-09-12 6:49 ` [PATCH 6.18 0799/1518] wifi: mt76: mt7915: report RX chain signal for all RX paths Greg Kroah-Hartman
2026-09-12 6:49 ` [PATCH 6.18 0800/1518] wifi: mt76: fix queue assignment for disassoc packets Greg Kroah-Hartman
2026-09-12 6:49 ` [PATCH 6.18 0801/1518] wifi: mt76: mt7925: advertise EHT 320MHz capabilities for 6GHz band Greg Kroah-Hartman
2026-09-12 6:49 ` [PATCH 6.18 0802/1518] wifi: mt76: mt7925: Fix EHT Beamformee SS subfields to meet 802.11be minimum Greg Kroah-Hartman
2026-09-12 6:49 ` [PATCH 6.18 0803/1518] wifi: mt76: reject out-of-range link ids in mt76_vif_link() Greg Kroah-Hartman
2026-09-12 6:49 ` [PATCH 6.18 0804/1518] wifi: mt76: mt7996: fix out-of-bounds link array access in mt7996_tx() Greg Kroah-Hartman
2026-09-12 6:49 ` [PATCH 6.18 0805/1518] wifi: ath10k: snoc: use memcpy_fromio() for MSA ramdump Greg Kroah-Hartman
2026-09-12 6:49 ` [PATCH 6.18 0806/1518] wifi: mt76: mt7996: remove beacon_int_min_gcd from ADHOC interface combinations Greg Kroah-Hartman
2026-09-12 6:49 ` [PATCH 6.18 0807/1518] arm64: smp: Fix IPI teardown for GICv5 flow Greg Kroah-Hartman
2026-09-12 6:49 ` [PATCH 6.18 0808/1518] arm64/fpsimd: ptrace: Fix inactive SVE and SSVE regsets Greg Kroah-Hartman
2026-09-12 6:49 ` [PATCH 6.18 0809/1518] kselftest/arm64: fp-ptrace: Fix checks for " Greg Kroah-Hartman
2026-09-12 6:49 ` [PATCH 6.18 0810/1518] kselftest/arm64: Dont write to P0 in irritator on SME only systems Greg Kroah-Hartman
2026-09-12 6:49 ` [PATCH 6.18 0811/1518] iommu/arm-smmu-v3: Convert to use atomic poll timeout Greg Kroah-Hartman
2026-09-12 6:49 ` [PATCH 6.18 0812/1518] perf/cxlpmu: Fix 64-bit write to 32-bit HDM filter register Greg Kroah-Hartman
2026-09-12 6:49 ` [PATCH 6.18 0813/1518] wifi: mac80211: send TWT teardown to peer after setup TX failure Greg Kroah-Hartman
2026-09-12 6:49 ` [PATCH 6.18 0814/1518] wifi: zd1211rw: reject secondary interfaces to prevent conflicts Greg Kroah-Hartman
2026-09-12 6:49 ` [PATCH 6.18 0815/1518] wifi: mac80211: skip unused probe response countdown offsets Greg Kroah-Hartman
2026-09-12 6:49 ` [PATCH 6.18 0816/1518] wifi: mac80211: disconnect on CSA to channel 0 Greg Kroah-Hartman
2026-09-12 6:49 ` [PATCH 6.18 0817/1518] wifi: cfg80211: include S1G_NO_PRIMARY flag when sending channel Greg Kroah-Hartman
2026-09-12 6:49 ` [PATCH 6.18 0818/1518] wifi: nl80211: Add support for EPP peer indication Greg Kroah-Hartman
2026-09-12 6:49 ` [PATCH 6.18 0819/1518] wifi: ieee80211: add some initial UHR definitions Greg Kroah-Hartman
2026-09-12 6:49 ` [PATCH 6.18 0820/1518] wifi: cfg80211: add initial UHR support Greg Kroah-Hartman
2026-09-12 6:49 ` [PATCH 6.18 0821/1518] wifi: cfg80211: add support to handle incumbent signal detected event from mac80211/driver Greg Kroah-Hartman
2026-09-12 6:49 ` [PATCH 6.18 0822/1518] wifi: nl80211: refactor nl80211_parse_chandef Greg Kroah-Hartman
2026-09-12 6:49 ` [PATCH 6.18 0823/1518] wifi: nl80211: split out UHR operation information Greg Kroah-Hartman
2026-09-12 6:49 ` [PATCH 6.18 0824/1518] wifi: cfg80211: Add an API to configure local NAN schedule Greg Kroah-Hartman
2026-09-12 6:49 ` [PATCH 6.18 0825/1518] wifi: cfg80211: stop PMSR before P2P and NAN teardown Greg Kroah-Hartman
2026-09-12 6:49 ` [PATCH 6.18 0826/1518] firmware: google: Add bounds checks in coreboot_table_populate() Greg Kroah-Hartman
2026-09-12 6:49 ` [PATCH 6.18 0827/1518] firmware: coreboot: Validate table bounds Greg Kroah-Hartman
2026-09-12 6:49 ` [PATCH 6.18 0828/1518] pinctrl: eswin: Fix Handling of PIN_CONFIG_PERSIST_STATE Greg Kroah-Hartman
2026-09-12 6:49 ` [PATCH 6.18 0829/1518] pinctrl: spacemit: validate pins in pinconf callbacks Greg Kroah-Hartman
2026-09-12 6:49 ` [PATCH 6.18 0830/1518] powerpc/smp: add NULL guard for cause_ipi in smp_muxed_ipi_message_pass Greg Kroah-Hartman
2026-09-12 6:50 ` [PATCH 6.18 0831/1518] powerpc/irq: Fix missing r2 clobber in PCREL inline assembly Greg Kroah-Hartman
2026-09-12 6:50 ` [PATCH 6.18 0832/1518] soc: fsl: qe: properly scan GPIO nodes at startup Greg Kroah-Hartman
2026-09-12 6:50 ` [PATCH 6.18 0833/1518] soc: fsl: qe: implement get_direction() Greg Kroah-Hartman
2026-09-12 6:50 ` [PATCH 6.18 0834/1518] MIPS: ptrace: Fix syscall skipping via PTRACE_SYSCALL Greg Kroah-Hartman
2026-09-12 6:50 ` [PATCH 6.18 0835/1518] serial: amba-pl011: unprepare console clock on unregister Greg Kroah-Hartman
2026-09-12 6:50 ` [PATCH 6.18 0836/1518] serial: amba-pl011: keep console clock enabled for atomic writes Greg Kroah-Hartman
2026-09-12 6:50 ` [PATCH 6.18 0837/1518] tty: clear cdev pointer after cdev_add() failure Greg Kroah-Hartman
2026-09-12 6:50 ` [PATCH 6.18 0838/1518] dm-integrity: replace forgeable discard filler with a keyed sector marker Greg Kroah-Hartman
2026-09-12 6:50 ` [PATCH 6.18 0839/1518] misc: pci_endpoint_test: Check SUCCESS bit for doorbell status Greg Kroah-Hartman
2026-09-12 6:50 ` [PATCH 6.18 0840/1518] HID: i2c-hid: Refactor _DSM helper and add i2c-hid-acpi-prp0001 driver Greg Kroah-Hartman
2026-09-12 6:50 ` [PATCH 6.18 0841/1518] HID: synchronize input before cleaning up a failed probe Greg Kroah-Hartman
2026-09-12 6:50 ` [PATCH 6.18 0842/1518] HID: i2c-hid: Fix "(null)" output when reading report descriptor fails Greg Kroah-Hartman
2026-09-12 6:50 ` [PATCH 6.18 0843/1518] HID: steam: Refactor and clean up report parsing Greg Kroah-Hartman
2026-09-12 6:50 ` [PATCH 6.18 0844/1518] HID: steam: Rename some constants that got renamed upstream Greg Kroah-Hartman
2026-09-12 6:50 ` [PATCH 6.18 0845/1518] HID: steam: Add support for sensor events on the Steam Controller (2015) Greg Kroah-Hartman
2026-09-12 6:50 ` [PATCH 6.18 0846/1518] HID: steam: Improve logging and other cleanup Greg Kroah-Hartman
2026-09-12 6:50 ` [PATCH 6.18 0847/1518] HID: steam: Reject short reads Greg Kroah-Hartman
2026-09-12 6:50 ` [PATCH 6.18 0848/1518] HID: i2c-hid: goodix: Disable VDD on VDDIO enable failure Greg Kroah-Hartman
2026-09-12 6:50 ` [PATCH 6.18 0849/1518] HID: lg4ff: validate report length before fixed offsets Greg Kroah-Hartman
2026-09-12 6:50 ` [PATCH 6.18 0850/1518] perf thread-stack: Fix heap buffer overflow on branch stack wrap copy Greg Kroah-Hartman
2026-09-12 6:50 ` [PATCH 6.18 0851/1518] perf auxtrace: Fix queue grow overflow and old array leak Greg Kroah-Hartman
2026-09-12 6:50 ` [PATCH 6.18 0852/1518] perf intel-pt: Fix off-by-one in auxtrace_info minimum size check Greg Kroah-Hartman
2026-09-12 6:50 ` [PATCH 6.18 0853/1518] perf intel-bts: " Greg Kroah-Hartman
2026-09-12 6:50 ` [PATCH 6.18 0854/1518] perf arm-spe: Reject zero nr_cpu in metadata to prevent division by zero Greg Kroah-Hartman
2026-09-12 6:50 ` [PATCH 6.18 0855/1518] iio: light: tsl2772: fix ALS calibscale readback Greg Kroah-Hartman
2026-09-12 6:50 ` [PATCH 6.18 0856/1518] iio: light: isl29028: return zero in write_raw() on success Greg Kroah-Hartman
2026-09-12 6:50 ` [PATCH 6.18 0857/1518] iio: light: tsl2583: " Greg Kroah-Hartman
2026-09-12 6:50 ` [PATCH 6.18 0858/1518] net: stmmac: Skip PHY attach if custom PCS is in use Greg Kroah-Hartman
2026-09-12 6:50 ` [PATCH 6.18 0859/1518] phonet: pep: do not write beyond optlen in getsockopt Greg Kroah-Hartman
2026-09-12 6:50 ` [PATCH 6.18 0860/1518] blk-cgroup: fix race between policy activation and blkg destruction Greg Kroah-Hartman
2026-09-12 6:50 ` [PATCH 6.18 0861/1518] blk-cgroup: skip dying blkg in blkcg_activate_policy() Greg Kroah-Hartman
2026-09-12 6:50 ` [PATCH 6.18 0862/1518] block/blk-stat: drain per-cpu callback stats over possible CPUs Greg Kroah-Hartman
2026-09-12 6:50 ` [PATCH 6.18 0863/1518] block/blk-iocost: collect per-cpu latency " Greg Kroah-Hartman
2026-09-12 6:50 ` [PATCH 6.18 0864/1518] block/kyber-iosched: flush per-cpu latency buckets " Greg Kroah-Hartman
2026-09-12 6:50 ` [PATCH 6.18 0865/1518] ublk: check import_ubuf() return value Greg Kroah-Hartman
2026-09-12 6:50 ` [PATCH 6.18 0866/1518] ublk: check for ublk_unmap_io() returning 0 Greg Kroah-Hartman
2026-09-12 6:50 ` [PATCH 6.18 0867/1518] ocfs2/cluster: keep heartbeat local node stable Greg Kroah-Hartman
2026-09-12 6:50 ` [PATCH 6.18 0868/1518] lib/string: fix memchr_inv() for large ranges Greg Kroah-Hartman
2026-09-12 6:50 ` [PATCH 6.18 0869/1518] pps: dont try to wait for negative timeouts in PPS_FETCH Greg Kroah-Hartman
2026-09-12 6:50 ` [PATCH 6.18 0870/1518] pps: pps-gpio: split IRQ handler into hardirq timestamper + threaded handler Greg Kroah-Hartman
2026-09-12 6:50 ` [PATCH 6.18 0871/1518] pps-gpio: remove dead capture_clear code Greg Kroah-Hartman
2026-09-12 6:50 ` [PATCH 6.18 0872/1518] rapidio: clear mport->net when rio_add_net() fails Greg Kroah-Hartman
2026-09-12 6:50 ` [PATCH 6.18 0873/1518] fat: release buffer head after rebuilding parent Greg Kroah-Hartman
2026-09-12 6:50 ` [PATCH 6.18 0874/1518] riscv: dts: sophgo: cv180x: Allow the DMA multiplexer to set channel number for DMA controller Greg Kroah-Hartman
2026-09-12 6:50 ` [PATCH 6.18 0875/1518] drm/omap: dsi: Do not copy isr table Greg Kroah-Hartman
2026-09-12 6:50 ` [PATCH 6.18 0876/1518] arm64: dts: qcom: agatti: Add missing CX power domain to DISPCC Greg Kroah-Hartman
2026-09-12 6:50 ` [PATCH 6.18 0877/1518] remoteproc: Move resource table data structure to its own header Greg Kroah-Hartman
2026-09-12 6:50 ` [PATCH 6.18 0878/1518] remoteproc: use rsc_table_for_each_entry() in rproc_handle_resources() Greg Kroah-Hartman
2026-09-12 6:50 ` [PATCH 6.18 0879/1518] remoteproc: fix OOB read via signed offset in rsc_table_for_each_entry() Greg Kroah-Hartman
2026-09-12 6:50 ` [PATCH 6.18 0880/1518] bpf, cgroup: Fix invalid storage access after __cgroup_bpf_attach failed Greg Kroah-Hartman
2026-09-12 6:50 ` [PATCH 6.18 0881/1518] selftests/mm: ksm_tests: use kselftest framework Greg Kroah-Hartman
2026-09-12 6:50 ` [PATCH 6.18 0882/1518] selftests/mm: fix ksm NUMA merge test for systems with memoryless NUMA nodes Greg Kroah-Hartman
2026-09-12 6:50 ` [PATCH 6.18 0883/1518] selftests/mm: fix ternary operator precedence in ksm_tests Greg Kroah-Hartman
2026-09-12 6:50 ` [PATCH 6.18 0884/1518] arm64: dts: qcom: sc8280xp-blackrock: Fix swapped USB QMP PHY vdda-phy/vdda-pll supplies Greg Kroah-Hartman
2026-09-12 6:50 ` [PATCH 6.18 0885/1518] arm64: dts: qcom: qcs8550-aim300: " Greg Kroah-Hartman
2026-09-12 6:50 ` [PATCH 6.18 0886/1518] arm64: dts: qcom: sm7225-fairphone-fp4: " Greg Kroah-Hartman
2026-09-12 6:50 ` [PATCH 6.18 0887/1518] arm64: dts: qcom: sar2130p: " Greg Kroah-Hartman
2026-09-12 6:50 ` [PATCH 6.18 0888/1518] bpf: Check load-acquire src ptr type before the load Greg Kroah-Hartman
2026-09-12 6:50 ` [PATCH 6.18 0889/1518] intel_idle: Initialize sysfs after cpuidle driver initialization Greg Kroah-Hartman
2026-09-12 6:50 ` [PATCH 6.18 0890/1518] intel_idle: Add cmdline option to adjust C-states table Greg Kroah-Hartman
2026-09-12 6:51 ` [PATCH 6.18 0891/1518] intel_idle: Avoid using deep idle states during initialization Greg Kroah-Hartman
2026-09-12 6:51 ` [PATCH 6.18 0892/1518] scripts/tags.sh: Prevent binary files appearing in cscope.files Greg Kroah-Hartman
2026-09-12 6:51 ` [PATCH 6.18 0893/1518] modpost: prevent leak when early return no suffix .o in read_symbols() Greg Kroah-Hartman
2026-09-12 6:51 ` [PATCH 6.18 0894/1518] kbuild: fix modules.builtin(.modinfo) targets in the top-level Makefile Greg Kroah-Hartman
2026-09-12 6:51 ` [PATCH 6.18 0895/1518] RDMA/erdma: Hold CQ references when processing EQ events Greg Kroah-Hartman
2026-09-12 6:51 ` [PATCH 6.18 0896/1518] RDMA/erdma: Hold QP references for AE and CM processing Greg Kroah-Hartman
2026-09-12 6:51 ` [PATCH 6.18 0897/1518] RDMA/srp: fix heap information leak on a truncated SRP_CRED_REQ Greg Kroah-Hartman
2026-09-12 6:51 ` [PATCH 6.18 0898/1518] ARM: 9481/2: breakpoint: CFI breakpoints only on demand Greg Kroah-Hartman
2026-09-12 6:51 ` [PATCH 6.18 0899/1518] ARM: 9485/1: mm: acquire mmap write lock around show_pte() for user faults Greg Kroah-Hartman
2026-09-12 6:51 ` [PATCH 6.18 0900/1518] perf libbfd: Validate BPF prog info arrays before pointer cast Greg Kroah-Hartman
2026-09-12 6:51 ` [PATCH 6.18 0901/1518] perf bpf: Add PROG_TAGS to required arrays in __bpf_event__print_bpf_prog_info() Greg Kroah-Hartman
2026-09-12 6:51 ` [PATCH 6.18 0902/1518] perf libbfd: Fix memory leaks and NULL fclose in BPF disassembly Greg Kroah-Hartman
2026-09-12 6:51 ` [PATCH 6.18 0903/1518] ocfs2: synchronize heartbeat callbacks with o2net teardown Greg Kroah-Hartman
2026-09-12 6:51 ` [PATCH 6.18 0904/1518] clk: rockchip: rk3576: fix source muxes for SPI0..SPI4 Greg Kroah-Hartman
2026-09-12 6:51 ` [PATCH 6.18 0905/1518] perf c2c: Add annotation support to perf c2c report Greg Kroah-Hartman
2026-09-12 6:51 ` [PATCH 6.18 0906/1518] perf report: Fix histogram entry collapsing for -F option Greg Kroah-Hartman
2026-09-12 6:51 ` [PATCH 6.18 0907/1518] perf report: Update sort key state from " Greg Kroah-Hartman
2026-09-12 6:51 ` [PATCH 6.18 0908/1518] perf c2c: Use perf_env e_machine rather than arch Greg Kroah-Hartman
2026-09-12 6:51 ` [PATCH 6.18 0909/1518] perf c2c: Fix error masking, OOM, and unchecked caller errors in hpp_list__parse() Greg Kroah-Hartman
2026-09-12 6:51 ` [PATCH 6.18 0910/1518] perf c2c: Clean up registered formats on c2c_hists__init() and c2c_hists__reinit() failure Greg Kroah-Hartman
2026-09-12 6:51 ` [PATCH 6.18 0911/1518] drm/sun4i: vi scaler: Fix coefficient selection Greg Kroah-Hartman
2026-09-12 6:51 ` [PATCH 6.18 0912/1518] drm/sun4i: tcon: Set output mux for DSI and LVDS Greg Kroah-Hartman
2026-09-12 6:51 ` [PATCH 6.18 0913/1518] drm/sun4i: tcon: Drop TCON TOP device reference Greg Kroah-Hartman
2026-09-12 6:51 ` [PATCH 6.18 0914/1518] drm/sun4i: hdmi: Dont leak sync polarity bits into packet control Greg Kroah-Hartman
2026-09-12 6:51 ` [PATCH 6.18 0915/1518] drm/sun4i: crtc: Propagate layer initialization error Greg Kroah-Hartman
2026-09-12 6:51 ` [PATCH 6.18 0916/1518] drm/sun4i: tcon: Drop remote endpoint reference Greg Kroah-Hartman
2026-09-12 6:51 ` [PATCH 6.18 0917/1518] drm/sun4i: dw-hdmi: Drop TCON TOP port reference Greg Kroah-Hartman
2026-09-12 6:51 ` [PATCH 6.18 0918/1518] drm/sun4i: hdmi-phy: Fix H6 8-bit MPLL config at 594 MHz Greg Kroah-Hartman
2026-09-12 6:51 ` [PATCH 6.18 0919/1518] rust: cpufreq: Add CPUFREQ_TABLE_END as last table entry in TableBuilder::to_table Greg Kroah-Hartman
2026-09-12 6:51 ` [PATCH 6.18 0920/1518] rust: cpufreq: Fix temporary write in Registration::bios_limit_callback Greg Kroah-Hartman
2026-09-12 6:51 ` [PATCH 6.18 0921/1518] cpufreq: imx6q: fix devres accumulation across driver rebind Greg Kroah-Hartman
2026-09-12 6:51 ` [PATCH 6.18 0922/1518] cpufreq: imx6q: fix out-of-bounds write when probed more than once Greg Kroah-Hartman
2026-09-12 6:51 ` [PATCH 6.18 0923/1518] IB/isert: delay the final Login Response until the session is registered Greg Kroah-Hartman
2026-09-12 6:51 ` [PATCH 6.18 0924/1518] IB/isert: post the full-feature receive buffers after session registration Greg Kroah-Hartman
2026-09-12 6:51 ` [PATCH 6.18 0925/1518] RDMA/siw: Fix use-after-free in siw_accept() Greg Kroah-Hartman
2026-09-12 6:51 ` [PATCH 6.18 0926/1518] module: replace use of system_wq with system_dfl_wq Greg Kroah-Hartman
2026-09-12 6:51 ` [PATCH 6.18 0927/1518] module: use strscpy() to copy module names in stats and dup tracking Greg Kroah-Hartman
2026-09-12 6:51 ` [PATCH 6.18 0928/1518] module/dups: Inform duplicate requests about the result directly Greg Kroah-Hartman
2026-09-12 6:51 ` [PATCH 6.18 0929/1518] module/dups: Fix use-after-free in kmod_dup_req lifetime handling Greg Kroah-Hartman
2026-09-12 6:51 ` [PATCH 6.18 0930/1518] RDMA/erdma: restrict the driver to little-endian systems Greg Kroah-Hartman
2026-09-12 6:51 ` [PATCH 6.18 0931/1518] wifi: mac80211: skip default WMM setup for AP_VLAN links Greg Kroah-Hartman
2026-09-12 6:51 ` [PATCH 6.18 0932/1518] arm64: hibernate: mask DAIF before restoring hibernated kernel Greg Kroah-Hartman
2026-09-12 6:51 ` [PATCH 6.18 0933/1518] arm64: hibernate: Restore DAIF state on error Greg Kroah-Hartman
2026-09-12 6:51 ` [PATCH 6.18 0934/1518] mfd: rave-sp: validate received frame payload lengths Greg Kroah-Hartman
2026-09-12 6:51 ` [PATCH 6.18 0935/1518] mfd: iqs62x: Reject zero-length firmware records Greg Kroah-Hartman
2026-09-12 6:51 ` [PATCH 6.18 0936/1518] mfd: macsmc: Fix key count endianness annotation Greg Kroah-Hartman
2026-09-12 6:51 ` [PATCH 6.18 0937/1518] gpiolib: move legacy interface into linux/gpio/legacy.h Greg Kroah-Hartman
2026-09-12 6:51 ` [PATCH 6.18 0938/1518] leds: gpio: Make legacy gpiolib interface optional Greg Kroah-Hartman
2026-09-12 6:51 ` [PATCH 6.18 0939/1518] leds: gpio: Clear error pointers for skipped LEDs Greg Kroah-Hartman
2026-09-12 6:51 ` [PATCH 6.18 0940/1518] drm/amdgpu/gfx6: Fixup emit_cntxcntl() Greg Kroah-Hartman
2026-09-12 6:51 ` [PATCH 6.18 0941/1518] ext4: fix spurious message about orphan cleanup on RO fs Greg Kroah-Hartman
2026-09-12 6:51 ` [PATCH 6.18 0942/1518] arm64: dts: ti: k3-am64: Fix MDIO clock reference for ICSSG0 node Greg Kroah-Hartman
2026-09-12 6:51 ` [PATCH 6.18 0943/1518] phy: renesas: rcar-gen3-usb2: Factor out VBUS control logic Greg Kroah-Hartman
2026-09-12 6:51 ` [PATCH 6.18 0944/1518] phy: renesas: rcar-gen3-usb2: Add regulator for OTG VBUS control Greg Kroah-Hartman
2026-09-12 6:51 ` [PATCH 6.18 0945/1518] phy: renesas: phy-rcar-gen3-usb2: Fix devm action registration for disabled VBUS regulator Greg Kroah-Hartman
2026-09-12 6:51 ` [PATCH 6.18 0946/1518] phy: sunplus: fix error handling in sp_uphy_init() Greg Kroah-Hartman
2026-09-12 6:51 ` [PATCH 6.18 0947/1518] phy: rockchip: phy-rockchip-inno-csidphy: fix rk1808 hsfreq table Greg Kroah-Hartman
2026-09-12 6:51 ` [PATCH 6.18 0948/1518] perf trace-event: Fix buffer overflow in read_string() Greg Kroah-Hartman
2026-09-12 6:51 ` [PATCH 6.18 0949/1518] drm/amdgpu/gfx6: Fixup emitting SWITCH_BUFFER packets Greg Kroah-Hartman
2026-09-12 6:51 ` [PATCH 6.18 0950/1518] drm/amdgpu/gfx6: Use PFP on the compute queues too Greg Kroah-Hartman
2026-09-12 6:52 ` [PATCH 6.18 0951/1518] scsi: qla2xxx: Remove redundant VPD flash read in sysfs read path Greg Kroah-Hartman
2026-09-12 6:52 ` [PATCH 6.18 0952/1518] firmware_loader: do not queue completed sysfs fallback requests Greg Kroah-Hartman
2026-09-12 6:52 ` [PATCH 6.18 0953/1518] pinctrl: rockchip: Reset the pin count when recalculating SoC data Greg Kroah-Hartman
2026-09-12 6:52 ` [PATCH 6.18 0954/1518] hugetlbfs: release subpool on fill_super failure Greg Kroah-Hartman
2026-09-12 6:52 ` [PATCH 6.18 0955/1518] soc: fsl: qe: check platform_driver_register() in qe_ic_of_init() Greg Kroah-Hartman
2026-09-12 6:52 ` [PATCH 6.18 0956/1518] phy: qcom-sgmii-eth: relax order of .power_on() vs .set_mode*() Greg Kroah-Hartman
2026-09-12 6:52 ` [PATCH 6.18 0957/1518] phy: qcom: sgmii-eth: vote for both voltage rails with correct current loads Greg Kroah-Hartman
2026-09-12 6:52 ` [PATCH 6.18 0958/1518] phy: qcom: qmp-usb-legacy: Fix possible NULL-deref on early runtime suspend Greg Kroah-Hartman
2026-09-12 6:52 ` [PATCH 6.18 0959/1518] phy: qcom: snps-femto-v2: " Greg Kroah-Hartman
2026-09-12 6:52 ` [PATCH 6.18 0960/1518] phy: qcom: qmp-usb: " Greg Kroah-Hartman
2026-09-12 6:52 ` [PATCH 6.18 0961/1518] phy: qcom: qmp-pcie: Add pcs_lane1 offset to V5 offsets Greg Kroah-Hartman
2026-09-12 6:52 ` [PATCH 6.18 0962/1518] md/raid5: round bitmap stripes with sector division Greg Kroah-Hartman
2026-09-12 6:52 ` [PATCH 6.18 0963/1518] md: wait for behind writes before destroying bitmap Greg Kroah-Hartman
2026-09-12 6:52 ` [PATCH 6.18 0964/1518] md: avoid stale clone I/O accounting timestamps Greg Kroah-Hartman
2026-09-12 6:52 ` [PATCH 6.18 0965/1518] md/md-llbitmap: prevent create failure bitmap UAF Greg Kroah-Hartman
2026-09-12 6:52 ` [PATCH 6.18 0966/1518] md/md-llbitmap: stop daemon timer rearm on destroy Greg Kroah-Hartman
2026-09-12 6:52 ` [PATCH 6.18 0967/1518] md/raid1: dont set array_frozen in raid1_takeover() Greg Kroah-Hartman
2026-09-12 6:52 ` [PATCH 6.18 0968/1518] coresight: etm4x: fix wrong check of etm4x_sspcicrn_present() Greg Kroah-Hartman
2026-09-12 6:52 ` [PATCH 6.18 0969/1518] coresight: Change syncfreq to be a u8 Greg Kroah-Hartman
2026-09-12 6:52 ` [PATCH 6.18 0970/1518] coresight: etm4x: fix underflow for usage of (nrseqstate - 1) Greg Kroah-Hartman
2026-09-12 6:52 ` [PATCH 6.18 0971/1518] coresight: etm4x: fix leaked trace id Greg Kroah-Hartman
2026-09-12 6:52 ` [PATCH 6.18 0972/1518] coresight: Refactor etm4_config_timestamp_event() Greg Kroah-Hartman
2026-09-12 6:52 ` [PATCH 6.18 0973/1518] perf: arm_pmuv3: Zero initialize hw_id branch stack field Greg Kroah-Hartman
2026-09-12 6:52 ` [PATCH 6.18 0974/1518] bpf: Reject load-acquire from pointers requiring fault protection Greg Kroah-Hartman
2026-09-12 6:52 ` [PATCH 6.18 0975/1518] bpf, riscv: Add and use bpf_atomic_is_load_acq() helper Greg Kroah-Hartman
2026-09-12 6:52 ` [PATCH 6.18 0976/1518] bpf, x86: Fix exception table metadata for arena load-acquire Greg Kroah-Hartman
2026-09-12 6:52 ` [PATCH 6.18 0977/1518] bpf, arm64: " Greg Kroah-Hartman
2026-09-12 6:52 ` [PATCH 6.18 0978/1518] regulator: qcom-rpmh: Fix PMIC5 BOB bypass mode handling Greg Kroah-Hartman
2026-09-12 6:52 ` [PATCH 6.18 0979/1518] ACPI: video: Release PCI device reference after lookup Greg Kroah-Hartman
2026-09-12 6:52 ` [PATCH 6.18 0980/1518] perf/x86/intel/pt: Factor out pt_config_enable() Greg Kroah-Hartman
2026-09-12 6:52 ` [PATCH 6.18 0981/1518] perf/x86/intel/pt: Use bitwise access for PERF_HES_STOPPED Greg Kroah-Hartman
2026-09-12 6:52 ` [PATCH 6.18 0982/1518] perf/x86/intel/pt: Fix stop/start with no update Greg Kroah-Hartman
2026-09-12 6:52 ` [PATCH 6.18 0983/1518] sched/fair: Also gate overloaded status update for SD_ASYM_CPUCAPACITY Greg Kroah-Hartman
2026-09-12 6:52 ` [PATCH 6.18 0984/1518] sched/fair: Check CPU capacity before comparing group types during load balance Greg Kroah-Hartman
2026-09-12 6:52 ` [PATCH 6.18 0985/1518] Bluetooth: btqca: Fix qca_set_bdaddr() waiting for wrong HCI event Greg Kroah-Hartman
2026-09-12 6:52 ` [PATCH 6.18 0986/1518] Bluetooth: btusb: Fix BD_ADDR byte order in btusb_set_bdaddr_wcn6855() Greg Kroah-Hartman
2026-09-12 6:52 ` [PATCH 6.18 0987/1518] Bluetooth: btusb: refactor endpoint lookup Greg Kroah-Hartman
2026-09-12 6:52 ` [PATCH 6.18 0988/1518] Bluetooth: btusb: Record matched usb_device_id into btusb_data Greg Kroah-Hartman
2026-09-12 6:52 ` [PATCH 6.18 0989/1518] Bluetooth: btusb: QCA: Fix populating devcoredump fields on unenabled devices Greg Kroah-Hartman
2026-09-12 6:52 ` [PATCH 6.18 0990/1518] perf trace-event: Fix integer truncation in do_read() and skip() Greg Kroah-Hartman
2026-09-12 6:52 ` [PATCH 6.18 0991/1518] scsi: core: Pass a struct scsi_driver to scsi_{,un}register_driver() Greg Kroah-Hartman
2026-09-12 6:52 ` [PATCH 6.18 0992/1518] scsi: core: sysfs: Make use of bus callbacks Greg Kroah-Hartman
2026-09-12 6:52 ` [PATCH 6.18 0993/1518] scsi: sd: Convert to SCSI bus methods Greg Kroah-Hartman
2026-09-12 6:52 ` [PATCH 6.18 0994/1518] scsi: sd: Move the sd_remove() function definition Greg Kroah-Hartman
2026-09-12 6:52 ` [PATCH 6.18 0995/1518] scsi: sd: Move the sd_config_discard() " Greg Kroah-Hartman
2026-09-12 6:52 ` [PATCH 6.18 0996/1518] scsi: sd: Enable sector size > PAGE_SIZE in SCSI sd driver Greg Kroah-Hartman
2026-09-12 6:52 ` [PATCH 6.18 0997/1518] scsi: sd: Fix special_vec mempool leak when scsi_alloc_sgtables() fails Greg Kroah-Hartman
2026-09-12 6:52 ` [PATCH 6.18 0998/1518] scsi: sd: Fix sd_done() sense handling condition Greg Kroah-Hartman
2026-09-12 6:52 ` [PATCH 6.18 0999/1518] btrfs: defrag: fix deadlock between defrag and delalloc space reservation Greg Kroah-Hartman
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=20260912065637.409982539@linuxfoundation.org \
--to=gregkh@linuxfoundation.org \
--cc=akkun11.open@gmail.com \
--cc=bmasney@redhat.com \
--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