stable.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
To: stable@vger.kernel.org
Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>,
	patches@lists.linux.dev, Brian Masney <bmasney@redhat.com>,
	Alexandre Belloni <alexandre.belloni@bootlin.com>,
	Sasha Levin <sashal@kernel.org>
Subject: [PATCH 6.16 468/627] rtc: pcf85063: fix incorrect maximum clock rate handling
Date: Tue, 12 Aug 2025 19:32:43 +0200	[thread overview]
Message-ID: <20250812173440.558149092@linuxfoundation.org> (raw)
In-Reply-To: <20250812173419.303046420@linuxfoundation.org>

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

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

From: Brian Masney <bmasney@redhat.com>

[ Upstream commit 186ae1869880e58bb3f142d222abdb35ecb4df0f ]

When pcf85063_clkout_round_rate() is called with a requested rate higher
than the highest supported rate, it currently returns 0, which disables
the clock. According to the clk API, round_rate() should instead return
the highest supported rate. Update the function to return the maximum
supported rate in this case.

Fixes: 8c229ab6048b7 ("rtc: pcf85063: Add pcf85063 clkout control to common clock framework")
Signed-off-by: Brian Masney <bmasney@redhat.com>
Link: https://lore.kernel.org/r/20250710-rtc-clk-round-rate-v1-4-33140bb2278e@redhat.com
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
Signed-off-by: Sasha Levin <sashal@kernel.org>
---
 drivers/rtc/rtc-pcf85063.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/rtc/rtc-pcf85063.c b/drivers/rtc/rtc-pcf85063.c
index 4fa5c4ecdd5a..b26c9bfad5d9 100644
--- a/drivers/rtc/rtc-pcf85063.c
+++ b/drivers/rtc/rtc-pcf85063.c
@@ -410,7 +410,7 @@ static long pcf85063_clkout_round_rate(struct clk_hw *hw, unsigned long rate,
 		if (clkout_rates[i] <= rate)
 			return clkout_rates[i];
 
-	return 0;
+	return clkout_rates[0];
 }
 
 static int pcf85063_clkout_set_rate(struct clk_hw *hw, unsigned long rate,
-- 
2.39.5




  parent reply	other threads:[~2025-08-12 18:52 UTC|newest]

Thread overview: 676+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2025-08-12 17:24 [PATCH 6.16 000/627] 6.16.1-rc1 review Greg Kroah-Hartman
2025-08-12 17:24 ` [PATCH 6.16 001/627] audit,module: restore audit logging in load failure case Greg Kroah-Hartman
2025-08-12 17:24 ` [PATCH 6.16 002/627] [ceph] parse_longname(): strrchr() expects NUL-terminated string Greg Kroah-Hartman
2025-08-12 17:24 ` [PATCH 6.16 003/627] fs_context: fix parameter name in infofc() macro Greg Kroah-Hartman
2025-08-12 17:24 ` [PATCH 6.16 004/627] selftests/landlock: Fix readlink check Greg Kroah-Hartman
2025-08-12 17:25 ` [PATCH 6.16 005/627] selftests/landlock: Fix build of audit_test Greg Kroah-Hartman
2025-08-12 17:25 ` [PATCH 6.16 006/627] fs/ntfs3: cancle set bad inode after removing name fails Greg Kroah-Hartman
2025-08-12 17:25 ` [PATCH 6.16 007/627] landlock: Fix warning from KUnit tests Greg Kroah-Hartman
2025-08-12 17:25 ` [PATCH 6.16 008/627] ublk: use vmalloc for ublk_devices __queues Greg Kroah-Hartman
2025-08-12 17:25 ` [PATCH 6.16 009/627] hfsplus: make splice write available again Greg Kroah-Hartman
2025-08-12 17:25 ` [PATCH 6.16 010/627] hfs: " Greg Kroah-Hartman
2025-08-12 17:25 ` [PATCH 6.16 011/627] hfsplus: remove mutex_lock check in hfsplus_free_extents Greg Kroah-Hartman
2025-08-12 17:25 ` [PATCH 6.16 012/627] Revert "fs/ntfs3: Replace inode_trylock with inode_lock" Greg Kroah-Hartman
2025-08-12 17:25 ` [PATCH 6.16 013/627] block: mtip32xx: Fix usage of dma_map_sg() Greg Kroah-Hartman
2025-08-12 17:25 ` [PATCH 6.16 014/627] gfs2: Minor do_xmote cancelation fix Greg Kroah-Hartman
2025-08-12 17:25 ` [PATCH 6.16 015/627] nbd: fix lockdep deadlock warning Greg Kroah-Hartman
2025-08-12 17:25 ` [PATCH 6.16 016/627] md: allow removing faulty rdev during resync Greg Kroah-Hartman
2025-08-12 17:25 ` [PATCH 6.16 017/627] kunit/fortify: Add back "volatile" for sizeof() constants Greg Kroah-Hartman
2025-08-12 17:25 ` [PATCH 6.16 018/627] ublk: speed up ublk server exit handling Greg Kroah-Hartman
2025-08-12 17:25 ` [PATCH 6.16 019/627] ublk: validate ublk server pid Greg Kroah-Hartman
2025-08-12 17:25 ` [PATCH 6.16 020/627] md/raid10: fix set but not used variable in sync_request_write() Greg Kroah-Hartman
2025-08-12 17:25 ` [PATCH 6.16 021/627] gfs2: No more self recovery Greg Kroah-Hartman
2025-08-12 17:25 ` [PATCH 6.16 022/627] nvmet: pci-epf: Do not complete commands twice if nvmet_req_init() fails Greg Kroah-Hartman
2025-08-12 17:25 ` [PATCH 6.16 023/627] block: sanitize chunk_sectors for atomic write limits Greg Kroah-Hartman
2025-08-12 17:25 ` [PATCH 6.16 024/627] io_uring: fix breakage in EXPERT menu Greg Kroah-Hartman
2025-08-12 17:25 ` [PATCH 6.16 025/627] btrfs: remove partial support for lowest level from btrfs_search_forward() Greg Kroah-Hartman
2025-08-12 17:25 ` [PATCH 6.16 026/627] eventpoll: Fix semi-unbounded recursion Greg Kroah-Hartman
2025-08-12 17:25 ` [PATCH 6.16 027/627] eventpoll: fix sphinx documentation build warning Greg Kroah-Hartman
2025-08-12 17:25 ` [PATCH 6.16 028/627] erofs: fix build error with CONFIG_EROFS_FS_ZIP_ACCEL=y Greg Kroah-Hartman
2025-08-13  6:32   ` Jiri Slaby
2025-08-13  6:36     ` Jiri Slaby
2025-08-13  8:06       ` Greg Kroah-Hartman
2025-08-13 11:55         ` Gao Xiang
2025-08-12 17:25 ` [PATCH 6.16 029/627] block: restore two stage elevator switch while running nr_hw_queue update Greg Kroah-Hartman
2025-08-12 17:25 ` [PATCH 6.16 030/627] sched/task_stack: Add missing const qualifier to end_of_stack() Greg Kroah-Hartman
2025-08-12 17:25 ` [PATCH 6.16 031/627] ASOC: rockchip: fix capture stream handling in rockchip_sai_xfer_stop Greg Kroah-Hartman
2025-08-12 17:25 ` [PATCH 6.16 032/627] ASoC: soc-dai: tidyup return value of snd_soc_xlate_tdm_slot_mask() Greg Kroah-Hartman
2025-08-12 17:25 ` [PATCH 6.16 033/627] ASoC: amd: acp: Fix pointer assignments for snd_soc_acpi_mach structures Greg Kroah-Hartman
2025-08-12 17:25 ` [PATCH 6.16 034/627] ASoC: ops: dynamically allocate struct snd_ctl_elem_value Greg Kroah-Hartman
2025-08-12 17:25 ` [PATCH 6.16 035/627] arm64: dts: qcom: x1p42100: Fix thermal sensor configuration Greg Kroah-Hartman
2025-08-12 17:25 ` [PATCH 6.16 036/627] ASoC: mediatek: use reserved memory or enable buffer pre-allocation Greg Kroah-Hartman
2025-08-12 17:25 ` [PATCH 6.16 037/627] ASoC: mediatek: mt8183-afe-pcm: Support >32 bit DMA addresses Greg Kroah-Hartman
2025-08-12 17:25 ` [PATCH 6.16 038/627] arm64: dts: freescale: imx93-tqma9352: Limit BUCK2 to 600mV Greg Kroah-Hartman
2025-08-12 17:25 ` [PATCH 6.16 039/627] selftests: Fix errno checking in syscall_user_dispatch test Greg Kroah-Hartman
2025-08-12 17:25 ` [PATCH 6.16 040/627] soc: qcom: QMI encoding/decoding for big endian Greg Kroah-Hartman
2025-08-12 17:25 ` [PATCH 6.16 041/627] soc: qcom: fix endianness for QMI header Greg Kroah-Hartman
2025-08-12 17:25 ` [PATCH 6.16 042/627] arm64: dts: qcom: qcs615: fix a crash issue caused by infinite loop for Coresight Greg Kroah-Hartman
2025-08-12 17:25 ` [PATCH 6.16 043/627] arm64: dts: qcom: sdm845: Expand IMEM region Greg Kroah-Hartman
2025-08-12 17:25 ` [PATCH 6.16 044/627] arm64: dts: qcom: sc7180: " Greg Kroah-Hartman
2025-08-12 17:25 ` [PATCH 6.16 045/627] arm64: dts: qcom: qcs615: disable the CTI device of the camera block Greg Kroah-Hartman
2025-08-12 17:25 ` [PATCH 6.16 046/627] arm64: dts: exynos: gs101: Add local-timer-stop to cpuidle nodes Greg Kroah-Hartman
2025-08-12 17:25 ` [PATCH 6.16 047/627] arm64: dts: qcom: sa8775p: Correct the interrupt for remoteproc Greg Kroah-Hartman
2025-08-12 17:25 ` [PATCH 6.16 048/627] arm64: dts: qcom: msm8976: Make blsp_dma controlled-remotely Greg Kroah-Hartman
2025-08-12 17:25 ` [PATCH 6.16 049/627] pm: cpupower: Fix printing of CORE, CPU fields in cpupower-monitor Greg Kroah-Hartman
2025-08-12 17:25 ` [PATCH 6.16 050/627] ARM: dts: vfxxx: Correctly use two tuples for timer address Greg Kroah-Hartman
2025-08-12 17:25 ` [PATCH 6.16 051/627] usb: host: xhci-plat: fix incorrect type for of_match variable in xhci_plat_probe() Greg Kroah-Hartman
2025-08-12 17:25 ` [PATCH 6.16 052/627] usb: misc: apple-mfi-fastcharge: Make power supply names unique Greg Kroah-Hartman
2025-08-12 17:25 ` [PATCH 6.16 053/627] arm64: dts: rockchip: fix endpoint dtc warning for PX30 ISP Greg Kroah-Hartman
2025-08-12 17:25 ` [PATCH 6.16 054/627] arm64: dts: ti: k3-am642-phyboard-electra: Fix PRU-ICSSG Ethernet ports Greg Kroah-Hartman
2025-08-12 17:25 ` [PATCH 6.16 055/627] arm64: dts: ti: k3-am62p-verdin: Enable pull-ups on I2C_3_HDMI Greg Kroah-Hartman
2025-08-12 17:25 ` [PATCH 6.16 056/627] arm64: dts: ti: k3-am62p-j722s: fix pinctrl-single size Greg Kroah-Hartman
2025-08-12 17:25 ` [PATCH 6.16 057/627] ARM: dts: microchip: sama7d65: Add clock name property Greg Kroah-Hartman
2025-08-12 17:25 ` [PATCH 6.16 058/627] ARM: dts: microchip: sam9x7: " Greg Kroah-Hartman
2025-08-12 17:25 ` [PATCH 6.16 059/627] cpufreq: armada-8k: make both cpu masks static Greg Kroah-Hartman
2025-08-12 17:25 ` [PATCH 6.16 060/627] firmware: arm_scmi: Fix up turbo frequencies selection Greg Kroah-Hartman
2025-08-12 17:25 ` [PATCH 6.16 061/627] x86/bugs: Avoid AUTO after the select step in the retbleed mitigation Greg Kroah-Hartman
2025-08-12 17:25 ` [PATCH 6.16 062/627] x86/bugs: Simplify the retbleed=stuff checks Greg Kroah-Hartman
2025-08-12 17:25 ` [PATCH 6.16 063/627] x86/bugs: Introduce cdt_possible() Greg Kroah-Hartman
2025-08-12 17:25 ` [PATCH 6.16 064/627] x86/bugs: Allow ITS stuffing in eIBRS+retpoline mode also Greg Kroah-Hartman
2025-08-12 17:26 ` [PATCH 6.16 065/627] usb: typec: ucsi: yoga-c630: fix error and remove paths Greg Kroah-Hartman
2025-08-12 17:26 ` [PATCH 6.16 066/627] mei: vsc: Dont re-init VSC from mei_vsc_hw_reset() on stop Greg Kroah-Hartman
2025-08-12 17:26 ` [PATCH 6.16 067/627] mei: vsc: Destroy mutex after freeing the IRQ Greg Kroah-Hartman
2025-08-12 17:26 ` [PATCH 6.16 068/627] mei: vsc: Event notifier fixes Greg Kroah-Hartman
2025-08-12 17:26 ` [PATCH 6.16 069/627] mei: vsc: Unset the event callback on remove and probe errors Greg Kroah-Hartman
2025-08-12 17:26 ` [PATCH 6.16 070/627] mei: vsc: Drop unused vsc_tp_request_irq() and vsc_tp_free_irq() Greg Kroah-Hartman
2025-08-12 17:26 ` [PATCH 6.16 071/627] mei: vsc: Run event callback from a workqueue Greg Kroah-Hartman
2025-08-12 17:26 ` [PATCH 6.16 072/627] mei: vsc: Fix "BUG: Invalid wait context" lockdep error Greg Kroah-Hartman
2025-08-12 17:26 ` [PATCH 6.16 073/627] spi: stm32: Check for cfg availability in stm32_spi_probe Greg Kroah-Hartman
2025-08-12 17:26 ` [PATCH 6.16 074/627] drivers: misc: sram: fix up some const issues with recent attribute changes Greg Kroah-Hartman
2025-08-12 17:26 ` [PATCH 6.16 075/627] rust: devres: require T: Send for Devres Greg Kroah-Hartman
2025-08-12 17:26 ` [PATCH 6.16 076/627] power: sequencing: qcom-wcn: fix bluetooth-wifi copypasta for WCN6855 Greg Kroah-Hartman
2025-08-12 17:26 ` [PATCH 6.16 077/627] arm64: dts: rockchip: Enable eMMC HS200 mode on Radxa E20C Greg Kroah-Hartman
2025-08-12 17:26 ` [PATCH 6.16 078/627] ASoC: SDCA: Add missing default in switch in entity_pde_event() Greg Kroah-Hartman
2025-08-12 17:26 ` [PATCH 6.16 079/627] staging: gpib: fix unset padding field copy back to userspace Greg Kroah-Hartman
2025-08-12 17:26 ` [PATCH 6.16 080/627] staging: fbtft: fix potential memory leak in fbtft_framebuffer_alloc() Greg Kroah-Hartman
2025-08-12 17:26 ` [PATCH 6.16 081/627] rust: miscdevice: clarify invariant for `MiscDeviceRegistration` Greg Kroah-Hartman
2025-08-12 17:26 ` [PATCH 6.16 082/627] vmci: Prevent the dispatching of uninitialized payloads Greg Kroah-Hartman
2025-08-12 17:26 ` [PATCH 6.16 083/627] pps: fix poll support Greg Kroah-Hartman
2025-08-12 17:26 ` [PATCH 6.16 084/627] arm64: dts: imx8mp-venice-gw74xx: update name of M2SKT_WDIS2# gpio Greg Kroah-Hartman
2025-08-12 17:26 ` [PATCH 6.16 085/627] selftests: vDSO: chacha: Correctly skip test if necessary Greg Kroah-Hartman
2025-08-12 17:26 ` [PATCH 6.16 086/627] Revert "vmci: Prevent the dispatching of uninitialized payloads" Greg Kroah-Hartman
2025-08-12 17:26 ` [PATCH 6.16 087/627] powercap: dtpm_cpu: Fix NULL pointer dereference in get_pd_power_uw() Greg Kroah-Hartman
2025-08-12 17:26 ` [PATCH 6.16 088/627] arm64: dts: ti: k3-am62p-verdin: add SD_1 CD pull-up Greg Kroah-Hartman
2025-08-12 17:26 ` [PATCH 6.16 089/627] selftests/nolibc: correctly report errors from printf() and friends Greg Kroah-Hartman
2025-08-12 17:26 ` [PATCH 6.16 090/627] usb: early: xhci-dbc: Fix early_ioremap leak Greg Kroah-Hartman
2025-08-12 17:26 ` [PATCH 6.16 091/627] tools/nolibc: avoid false-positive -Wmaybe-uninitialized through waitpid() Greg Kroah-Hartman
2025-08-12 17:26 ` [PATCH 6.16 092/627] arm: dts: ti: omap: Fixup pinheader typo Greg Kroah-Hartman
2025-08-12 17:26 ` [PATCH 6.16 093/627] arm64: dts: renesas: r8a779g3-sparrow-hawk-fan-pwm: Add missing install target Greg Kroah-Hartman
2025-08-12 17:26 ` [PATCH 6.16 094/627] arm64: dts: ti: k3-am62p-verdin: fix PWM_3_DSI GPIO direction Greg Kroah-Hartman
2025-08-12 17:26 ` [PATCH 6.16 095/627] staging: gpib: Fix error code in board_type_ioctl() Greg Kroah-Hartman
2025-08-12 17:26 ` [PATCH 6.16 096/627] staging: gpib: Fix error handling paths in cb_gpib_probe() Greg Kroah-Hartman
2025-08-12 17:26 ` [PATCH 6.16 097/627] soc/tegra: cbb: Clear ERR_FORCE register with ERR_STATUS Greg Kroah-Hartman
2025-08-12 17:26 ` [PATCH 6.16 098/627] arm64: dts: rockchip: fix PHY handling for ROCK 4D Greg Kroah-Hartman
2025-08-12 17:26 ` [PATCH 6.16 099/627] arm64: dts: st: fix timer used for ticks Greg Kroah-Hartman
2025-08-12 17:26 ` [PATCH 6.16 100/627] selftests: breakpoints: use suspend_stats to reliably check suspend success Greg Kroah-Hartman
2025-08-12 17:26 ` [PATCH 6.16 101/627] ARM: dts: imx6ul-kontron-bl-common: Fix RTS polarity for RS485 interface Greg Kroah-Hartman
2025-08-12 17:26 ` [PATCH 6.16 102/627] arm64: dts: imx8mm-beacon: Fix HS400 USDHC clock speed Greg Kroah-Hartman
2025-08-12 17:26 ` [PATCH 6.16 103/627] arm64: dts: imx8mn-beacon: " Greg Kroah-Hartman
2025-08-12 17:26 ` [PATCH 6.16 104/627] arm64: dts: freescale: imx8mp-toradex-smarc: fix lvds dsi mux gpio Greg Kroah-Hartman
2025-08-12 17:26 ` [PATCH 6.16 105/627] arm64: dts: rockchip: Fix pinctrl node names for RK3528 Greg Kroah-Hartman
2025-08-12 17:26 ` [PATCH 6.16 106/627] PM / devfreq: Check governor before using governor->name Greg Kroah-Hartman
2025-08-12 17:26 ` [PATCH 6.16 107/627] PM / devfreq: Fix a index typo in trans_stat Greg Kroah-Hartman
2025-08-12 17:26 ` [PATCH 6.16 108/627] cpufreq: intel_pstate: Always use HWP_DESIRED_PERF in passive mode Greg Kroah-Hartman
2025-08-12 17:26 ` [PATCH 6.16 109/627] cpufreq: Initialize cpufreq-based frequency-invariance later Greg Kroah-Hartman
2025-08-12 17:26 ` [PATCH 6.16 110/627] cpufreq: Init policy->rwsem before it may be possibly used Greg Kroah-Hartman
2025-08-12 17:26 ` [PATCH 6.16 111/627] arm64: dts: rockchip: Fix UART DMA support for RK3528 Greg Kroah-Hartman
2025-08-12 17:26 ` [PATCH 6.16 112/627] kexec_core: Fix error code path in the KEXEC_JUMP flow Greg Kroah-Hartman
2025-08-12 17:26 ` [PATCH 6.16 113/627] ASoC: SDCA: Update memory allocations to zero initialise Greg Kroah-Hartman
2025-08-12 17:26 ` [PATCH 6.16 114/627] ASoC: SDCA: Allow read-only controls to be deferrable Greg Kroah-Hartman
2025-08-12 17:26 ` [PATCH 6.16 115/627] staging: greybus: gbphy: fix up const issue with the match callback Greg Kroah-Hartman
2025-08-12 17:26 ` [PATCH 6.16 116/627] driver core: auxiliary bus: fix OF node leak Greg Kroah-Hartman
2025-08-12 17:26 ` [PATCH 6.16 117/627] samples: mei: Fix building on musl libc Greg Kroah-Hartman
2025-08-12 17:26 ` [PATCH 6.16 118/627] soc: qcom: pmic_glink: fix OF node leak Greg Kroah-Hartman
2025-08-12 17:26 ` [PATCH 6.16 119/627] interconnect: qcom: sc8280xp: specify num_links for qnm_a1noc_cfg Greg Kroah-Hartman
2025-08-12 17:26 ` [PATCH 6.16 120/627] interconnect: qcom: sc8180x: specify num_nodes Greg Kroah-Hartman
2025-08-12 17:26 ` [PATCH 6.16 121/627] interconnect: qcom: qcs615: Drop IP0 interconnects Greg Kroah-Hartman
2025-08-13  8:58   ` Konrad Dybcio
2025-08-13  9:05     ` Greg Kroah-Hartman
2025-08-12 17:26 ` [PATCH 6.16 122/627] bus: mhi: host: pci_generic: Fix the modem name of Foxconn T99W640 Greg Kroah-Hartman
2025-08-12 17:26 ` [PATCH 6.16 123/627] drm/xe: Correct the rev value for the DVSEC entries Greg Kroah-Hartman
2025-08-12 17:26 ` [PATCH 6.16 124/627] drm/xe: Correct BMG VSEC header sizing Greg Kroah-Hartman
2025-08-12 17:27 ` [PATCH 6.16 125/627] platform/x86: oxpec: Fix turbo register for G1 AMD Greg Kroah-Hartman
2025-08-12 17:27 ` [PATCH 6.16 126/627] riscv: dts: sophgo: sg2044: Add missing riscv,cbop-block-size property Greg Kroah-Hartman
2025-08-12 17:27 ` [PATCH 6.16 127/627] staging: nvec: Fix incorrect null termination of battery manufacturer Greg Kroah-Hartman
2025-08-12 17:27 ` [PATCH 6.16 128/627] selftests/tracing: Fix false failure of subsystem event test Greg Kroah-Hartman
2025-08-12 17:27 ` [PATCH 6.16 129/627] MIPS: alchemy: gpio: use new GPIO line value setter callbacks for the remaining chips Greg Kroah-Hartman
2025-08-12 17:27 ` [PATCH 6.16 130/627] Revert "udmabuf: fix vmap_udmabuf error page set" Greg Kroah-Hartman
2025-08-12 17:27 ` [PATCH 6.16 131/627] udmabuf: fix vmap missed offset page Greg Kroah-Hartman
2025-08-12 17:27 ` [PATCH 6.16 132/627] drm/rockchip: cleanup fb when drm_gem_fb_afbc_init failed Greg Kroah-Hartman
2025-08-12 17:27 ` [PATCH 6.16 133/627] drm/sitronix: Remove broken backwards-compatibility layer Greg Kroah-Hartman
2025-08-12 17:27 ` [PATCH 6.16 134/627] drm/connector: hdmi: Evaluate limited range after computing format Greg Kroah-Hartman
2025-08-12 17:27 ` [PATCH 6.16 135/627] drm/panfrost: Fix panfrost device variable name in devfreq Greg Kroah-Hartman
2025-08-12 17:27 ` [PATCH 6.16 136/627] drm/panthor: Add missing explicit padding in drm_panthor_gpu_info Greg Kroah-Hartman
2025-08-12 17:27 ` [PATCH 6.16 137/627] wifi: rtw89: mcc: prevent shift wrapping in rtw89_core_mlsr_switch() Greg Kroah-Hartman
2025-08-12 17:27 ` [PATCH 6.16 138/627] wifi: rtw89: sar: drop lockdep assertion in rtw89_set_sar_from_acpi Greg Kroah-Hartman
2025-08-12 17:27 ` [PATCH 6.16 139/627] wifi: rtw89: sar: do not assert wiphy lock held until probing is done Greg Kroah-Hartman
2025-08-12 17:27 ` [PATCH 6.16 140/627] wifi: rtw89: fix EHT 20MHz TX rate for non-AP STA Greg Kroah-Hartman
2025-08-12 17:27 ` [PATCH 6.16 141/627] bpf, sockmap: Fix psock incorrectly pointing to sk Greg Kroah-Hartman
2025-08-12 17:27 ` [PATCH 6.16 142/627] netconsole: Only register console drivers when targets are configured Greg Kroah-Hartman
2025-08-12 17:27 ` [PATCH 6.16 143/627] bpf, ktls: Fix data corruption when using bpf_msg_pop_data() in ktls Greg Kroah-Hartman
2025-08-12 17:27 ` [PATCH 6.16 144/627] net, bpf: Fix RCU usage in task_cls_state() for BPF programs Greg Kroah-Hartman
2025-08-12 17:27 ` [PATCH 6.16 145/627] selftests/bpf: fix signedness bug in redir_partial() Greg Kroah-Hartman
2025-08-12 17:27 ` [PATCH 6.16 146/627] bpf: handle jset (if a & b ...) as a jump in CFG computation Greg Kroah-Hartman
2025-08-12 17:27 ` [PATCH 6.16 147/627] selftests/bpf: Fix unintentional switch case fall through Greg Kroah-Hartman
2025-08-12 17:27 ` [PATCH 6.16 148/627] net: ipv6: ip6mr: Fix in/out netdev to pass to the FORWARD chain Greg Kroah-Hartman
2025-08-12 17:27 ` [PATCH 6.16 149/627] drm/vmwgfx: Fix Host-Backed userspace on Guest-Backed kernel Greg Kroah-Hartman
2025-08-12 17:27 ` [PATCH 6.16 150/627] slub: Fix a documentation build error for krealloc() Greg Kroah-Hartman
2025-08-12 17:27 ` [PATCH 6.16 151/627] drm/amdgpu: Remove nbiov7.9 replay count reporting Greg Kroah-Hartman
2025-08-12 17:27 ` [PATCH 6.16 152/627] drm/amdgpu/sdma: handle paging queues in amdgpu_sdma_reset_engine() Greg Kroah-Hartman
2025-08-12 17:27 ` [PATCH 6.16 153/627] net: mana: Fix potential deadlocks in mana napi ops Greg Kroah-Hartman
2025-08-12 17:27 ` [PATCH 6.16 154/627] wifi: mac80211: Fix bssid_indicator for MBSSID in AP mode Greg Kroah-Hartman
2025-08-12 17:27 ` [PATCH 6.16 155/627] bpftool: Fix memory leak in dump_xx_nlmsg on realloc failure Greg Kroah-Hartman
2025-08-12 17:27 ` [PATCH 6.16 156/627] powerpc/pseries/dlpar: Search DRC index from ibm,drc-indexes for IO add Greg Kroah-Hartman
2025-08-12 17:27 ` [PATCH 6.16 157/627] wifi: ath12k: Avoid accessing uninitialized arvif->ar during beacon miss Greg Kroah-Hartman
2025-08-12 17:27 ` [PATCH 6.16 158/627] wifi: ath12k: update channel list in worker when wait flag is set Greg Kroah-Hartman
2025-08-12 17:27 ` [PATCH 6.16 159/627] wifi: ath12k: Fix double budget decrement while reaping monitor ring Greg Kroah-Hartman
2025-08-12 17:27 ` [PATCH 6.16 160/627] wifi: ath12k: Pass ab pointer directly to ath12k_dp_tx_get_encap_type() Greg Kroah-Hartman
2025-08-12 17:27 ` [PATCH 6.16 161/627] caif: reduce stack size, again Greg Kroah-Hartman
2025-08-12 17:27 ` [PATCH 6.16 162/627] net: annotate races around sk->sk_uid Greg Kroah-Hartman
2025-08-12 17:27 ` [PATCH 6.16 163/627] wifi: rtw89: avoid NULL dereference when RX problematic packet on unsupported 6 GHz band Greg Kroah-Hartman
2025-08-12 17:27 ` [PATCH 6.16 164/627] wifi: rtl818x: Kill URBs before clearing tx status queue Greg Kroah-Hartman
2025-08-12 17:27 ` [PATCH 6.16 165/627] drm/amdgpu: fix slab-use-after-free in amdgpu_userq_mgr_fini+0x70c Greg Kroah-Hartman
2025-08-12 17:27 ` [PATCH 6.16 166/627] wifi: iwlwifi: Fix memory leak in iwl_mvm_init() Greg Kroah-Hartman
2025-08-12 17:27 ` [PATCH 6.16 167/627] iwlwifi: Add missing check for alloc_ordered_workqueue Greg Kroah-Hartman
2025-08-12 17:27 ` [PATCH 6.16 168/627] drm/xe/uapi: Correct sync type definition in comments Greg Kroah-Hartman
2025-08-12 17:27 ` [PATCH 6.16 169/627] team: replace team lock with rtnl lock Greg Kroah-Hartman
2025-08-12 17:27 ` [PATCH 6.16 170/627] wifi: ath11k: clear initialized flag for deinit-ed srng lists Greg Kroah-Hartman
2025-08-12 17:27 ` [PATCH 6.16 171/627] wifi: ath12k: Clear auth flag only for actual association in security mode Greg Kroah-Hartman
2025-08-12 17:27 ` [PATCH 6.16 172/627] tcp: fix tcp_ofo_queue() to avoid including too much DUP SACK range Greg Kroah-Hartman
2025-08-12 17:27 ` [PATCH 6.16 173/627] net/mlx5: Check device memory pointer before usage Greg Kroah-Hartman
2025-08-12 17:27 ` [PATCH 6.16 174/627] net: dst: annotate data-races around dst->input Greg Kroah-Hartman
2025-08-12 17:27 ` [PATCH 6.16 175/627] net: dst: annotate data-races around dst->output Greg Kroah-Hartman
2025-08-12 17:27 ` [PATCH 6.16 176/627] net: dst: add four helpers to annotate data-races around dst->dev Greg Kroah-Hartman
2025-08-12 17:27 ` [PATCH 6.16 177/627] wifi: iwlwifi: Fix error code in iwl_op_mode_dvm_start() Greg Kroah-Hartman
2025-08-12 17:27 ` [PATCH 6.16 178/627] kselftest/arm64: Fix check for setting new VLs in sve-ptrace Greg Kroah-Hartman
2025-08-12 17:27 ` [PATCH 6.16 179/627] wifi: mt76: mt7925: fix off by one in mt7925_mcu_hw_scan() Greg Kroah-Hartman
2025-08-12 17:27 ` [PATCH 6.16 180/627] bpf: Ensure RCU lock is held around bpf_prog_ksym_find Greg Kroah-Hartman
2025-08-12 17:27 ` [PATCH 6.16 181/627] drm/msm/dpu: Fill in min_prefill_lines for SC8180X Greg Kroah-Hartman
2025-08-12 17:27 ` [PATCH 6.16 182/627] m68k: Dont unregister boot console needlessly Greg Kroah-Hartman
2025-08-12 17:27 ` [PATCH 6.16 183/627] refscale: Check that nreaders and loops multiplication doesnt overflow Greg Kroah-Hartman
2025-08-12 17:27 ` [PATCH 6.16 184/627] wifi: mt76: mt7996: Fix secondary link lookup in mt7996_mcu_sta_mld_setup_tlv() Greg Kroah-Hartman
2025-08-12 17:28 ` [PATCH 6.16 185/627] wifi: mt76: mt7996: Fix possible OOB access in mt7996_tx() Greg Kroah-Hartman
2025-08-12 17:28 ` [PATCH 6.16 186/627] wifi: mt76: mt7996: Fix valid_links bitmask in mt7996_mac_sta_{add,remove} Greg Kroah-Hartman
2025-08-12 17:28 ` [PATCH 6.16 187/627] drm/amdkfd: Move the process suspend and resume out of full access Greg Kroah-Hartman
2025-08-12 17:28 ` [PATCH 6.16 188/627] drm/amdgpu: rework queue reset scheduler interaction Greg Kroah-Hartman
2025-08-12 17:28 ` [PATCH 6.16 189/627] drm/amdgpu: move force completion into ring resets Greg Kroah-Hartman
2025-08-12 17:28 ` [PATCH 6.16 190/627] drm/amdgpu/gfx10: fix KGQ reset sequence Greg Kroah-Hartman
2025-08-12 17:28 ` [PATCH 6.16 191/627] drm/amd/pm/powerplay/hwmgr/smu_helper: fix order of mask and value Greg Kroah-Hartman
2025-08-12 17:28 ` [PATCH 6.16 192/627] Revert "drm/amdgpu: fix slab-use-after-free in amdgpu_userq_mgr_fini" Greg Kroah-Hartman
2025-08-12 17:28 ` [PATCH 6.16 193/627] drm/amdgpu: fix use-after-free in amdgpu_userq_suspend+0x51a/0x5a0 Greg Kroah-Hartman
2025-08-12 17:28 ` [PATCH 6.16 194/627] wifi: ath12k: Block radio bring-up in FTM mode Greg Kroah-Hartman
2025-08-12 17:28 ` [PATCH 6.16 195/627] arm64: fix unnecessary rebuilding when CONFIG_DEBUG_EFI=y Greg Kroah-Hartman
2025-08-12 17:28 ` [PATCH 6.16 196/627] drm/rockchip: vop2: fail cleanly if missing a primary plane for a video-port Greg Kroah-Hartman
2025-08-12 17:28 ` [PATCH 6.16 197/627] drm/rockchip: vop2: Fix the update of LAYER/PORT select registers when there are multi display output on rk3588/rk3568 Greg Kroah-Hartman
2025-08-12 17:28 ` [PATCH 6.16 198/627] sched/psi: Optimize psi_group_change() cpu_clock() usage Greg Kroah-Hartman
2025-08-12 17:28 ` [PATCH 6.16 199/627] sched/deadline: Less agressive dl_server handling Greg Kroah-Hartman
2025-08-14  8:22   ` Jiri Slaby
2025-08-14  8:37     ` Jiri Slaby
2025-08-14  9:18       ` Juri Lelli
2025-08-14 15:17       ` Greg Kroah-Hartman
2025-08-12 17:28 ` [PATCH 6.16 200/627] fbcon: Fix outdated registered_fb reference in comment Greg Kroah-Hartman
2025-08-12 17:28 ` [PATCH 6.16 201/627] netfilter: nf_tables: Drop dead code from fill_*_info routines Greg Kroah-Hartman
2025-08-12 17:28 ` [PATCH 6.16 202/627] netfilter: nf_tables: adjust lockdep assertions handling Greg Kroah-Hartman
2025-08-12 17:28 ` [PATCH 6.16 203/627] drm/panthor: Fix UAF in panthor_gem_create_with_handle() debugfs code Greg Kroah-Hartman
2025-08-12 17:28 ` [PATCH 6.16 204/627] wifi: ath12k: update unsupported bandwidth flags in reg rules Greg Kroah-Hartman
2025-08-12 17:28 ` [PATCH 6.16 205/627] wifi: ath12k: pack HTT pdev rate stats structs Greg Kroah-Hartman
2025-08-12 17:28 ` [PATCH 6.16 206/627] arch: powerpc: defconfig: Drop obsolete CONFIG_NET_CLS_TCINDEX Greg Kroah-Hartman
2025-08-12 17:28 ` [PATCH 6.16 207/627] um: rtc: Avoid shadowing err in uml_rtc_start() Greg Kroah-Hartman
2025-08-12 17:28 ` [PATCH 6.16 208/627] iommu/amd: Enable PASID and ATS capabilities in the correct order Greg Kroah-Hartman
2025-08-12 17:28 ` [PATCH 6.16 209/627] spi: spi-nxp-fspi: Check return value of devm_mutex_init() Greg Kroah-Hartman
2025-08-12 17:28 ` [PATCH 6.16 210/627] leds: lp8860: " Greg Kroah-Hartman
2025-08-12 17:28 ` [PATCH 6.16 211/627] net/sched: Restrict conditions for adding duplicating netems to qdisc tree Greg Kroah-Hartman
2025-08-12 17:28 ` [PATCH 6.16 212/627] net_sched: act_ctinfo: use atomic64_t for three counters Greg Kroah-Hartman
2025-08-12 17:28 ` [PATCH 6.16 213/627] RDMA/mlx5: Fix UMR modifying of mkey page size Greg Kroah-Hartman
2025-08-12 17:28 ` [PATCH 6.16 214/627] xen: fix UAF in dmabuf_exp_from_pages() Greg Kroah-Hartman
2025-08-12 17:28 ` [PATCH 6.16 215/627] sched/deadline: Initialize dl_servers after SMP Greg Kroah-Hartman
2025-08-12 17:28 ` [PATCH 6.16 216/627] sched/deadline: Reset extra_bw to max_bw when clearing root domains Greg Kroah-Hartman
2025-08-12 17:28 ` [PATCH 6.16 217/627] iommu/vt-d: Do not wipe out the page table NID when devices detach Greg Kroah-Hartman
2025-08-12 17:28 ` [PATCH 6.16 218/627] iommu/vt-d: Fix missing PASID in dev TLB flush with cache_tag_flush_all Greg Kroah-Hartman
2025-08-12 17:28 ` [PATCH 6.16 219/627] iommu/arm-smmu: disable PRR on SM8250 Greg Kroah-Hartman
2025-08-12 17:28 ` [PATCH 6.16 220/627] xen/gntdev: remove struct gntdev_copy_batch from stack Greg Kroah-Hartman
2025-08-12 17:28 ` [PATCH 6.16 221/627] tcp: call tcp_measure_rcv_mss() for ooo packets Greg Kroah-Hartman
2025-08-12 17:28 ` [PATCH 6.16 222/627] wifi: rtl8xxxu: Fix RX skb size for aggregation disabled Greg Kroah-Hartman
2025-08-12 17:28 ` [PATCH 6.16 223/627] wifi: rtw88: Fix macid assigned to TDLS station Greg Kroah-Hartman
2025-08-12 17:28 ` [PATCH 6.16 224/627] mwl8k: Add missing check after DMA map Greg Kroah-Hartman
2025-08-12 17:28 ` [PATCH 6.16 225/627] wifi: mac80211: use RCU-safe iteration in ieee80211_csa_finish Greg Kroah-Hartman
2025-08-12 17:28 ` [PATCH 6.16 226/627] wifi: ath12k: Use HTT_TCL_METADATA_VER_V1 in FTM mode Greg Kroah-Hartman
2025-08-12 17:28 ` [PATCH 6.16 227/627] wifi: ath11k: fix sleeping-in-atomic in ath11k_mac_op_set_bitrate_mask() Greg Kroah-Hartman
2025-08-12 17:28 ` [PATCH 6.16 228/627] drm/amdgpu/gfx9: fix kiq locking in KCQ reset Greg Kroah-Hartman
2025-08-12 17:28 ` [PATCH 6.16 229/627] drm/amdgpu/gfx9.4.3: " Greg Kroah-Hartman
2025-08-12 17:28 ` [PATCH 6.16 230/627] drm/amdgpu/gfx10: " Greg Kroah-Hartman
2025-08-12 17:28 ` [PATCH 6.16 231/627] selftests/bpf: fix implementation of smp_mb() Greg Kroah-Hartman
2025-08-12 17:28 ` [PATCH 6.16 232/627] iommu/amd: Fix geometry.aperture_end for V2 tables Greg Kroah-Hartman
2025-08-12 17:28 ` [PATCH 6.16 233/627] rcu: Fix delayed execution of hurry callbacks Greg Kroah-Hartman
2025-08-12 17:28 ` [PATCH 6.16 234/627] wifi: mac80211: reject TDLS operations when station is not associated Greg Kroah-Hartman
2025-08-12 17:28 ` [PATCH 6.16 235/627] wifi: plfxlc: Fix error handling in usb driver probe Greg Kroah-Hartman
2025-08-12 17:28 ` [PATCH 6.16 236/627] wifi: cfg80211: Add missing lock in cfg80211_check_and_end_cac() Greg Kroah-Hartman
2025-08-12 17:28 ` [PATCH 6.16 237/627] wifi: mac80211: Do not schedule stopped TXQs Greg Kroah-Hartman
2025-08-12 17:28 ` [PATCH 6.16 238/627] wifi: mac80211: Dont call fq_flow_idx() for management frames Greg Kroah-Hartman
2025-08-12 17:28 ` [PATCH 6.16 239/627] wifi: mac80211: Check 802.11 encaps offloading in ieee80211_tx_h_select_key() Greg Kroah-Hartman
2025-08-12 17:28 ` [PATCH 6.16 240/627] Reapply "wifi: mac80211: Update skbs control block key in ieee80211_tx_dequeue()" Greg Kroah-Hartman
2025-08-12 17:28 ` [PATCH 6.16 241/627] wifi: ath12k: fix endianness handling while accessing wmi service bit Greg Kroah-Hartman
2025-08-12 17:28 ` [PATCH 6.16 242/627] wifi: brcmfmac: fix P2P discovery failure in P2P peer due to missing P2P IE Greg Kroah-Hartman
2025-08-12 17:28 ` [PATCH 6.16 243/627] PM: cpufreq: powernv/tracing: Move powernv_throttle trace event Greg Kroah-Hartman
2025-08-12 17:28 ` [PATCH 6.16 244/627] wifi: mac80211: Write cnt before copying in ieee80211_copy_rnr_beacon() Greg Kroah-Hartman
2025-08-12 17:29 ` [PATCH 6.16 245/627] wifi: nl80211: Set num_sub_specs before looping through sub_specs Greg Kroah-Hartman
2025-08-12 17:29 ` [PATCH 6.16 246/627] ring-buffer: Remove ring_buffer_read_prepare_sync() Greg Kroah-Hartman
2025-08-12 17:29 ` [PATCH 6.16 247/627] kcsan: test: Initialize dummy variable Greg Kroah-Hartman
2025-08-12 17:29 ` [PATCH 6.16 248/627] memcg_slabinfo: Fix use of PG_slab Greg Kroah-Hartman
2025-08-12 17:29 ` [PATCH 6.16 249/627] wifi: brcmfmac: cyw: Fix __counted_by to be LE variant Greg Kroah-Hartman
2025-08-12 17:29 ` [PATCH 6.16 250/627] wifi: mac80211: fix WARN_ON for monitor mode on some devices Greg Kroah-Hartman
2025-08-12 17:29 ` [PATCH 6.16 251/627] arm64/gcs: task_gcs_el0_enable() should use passed task Greg Kroah-Hartman
2025-08-12 17:29 ` [PATCH 6.16 252/627] wifi: iwlwifi: mld: decode EOF bit for AMPDUs Greg Kroah-Hartman
2025-08-12 17:29 ` [PATCH 6.16 253/627] iommu/vt-d: Fix UAF on sva unbind with pending IOPFs Greg Kroah-Hartman
2025-08-12 17:29 ` [PATCH 6.16 254/627] wifi: brcmfmac: fix EXTSAE WPA3 connection failure due to AUTH TX failure Greg Kroah-Hartman
2025-08-12 17:29 ` [PATCH 6.16 255/627] Bluetooth: btusb: Fix potential NULL dereference on kmalloc failure Greg Kroah-Hartman
2025-08-12 17:29 ` [PATCH 6.16 256/627] Bluetooth: hci_sync: fix double free in hci_discovery_filter_clear() Greg Kroah-Hartman
2025-08-12 17:29 ` [PATCH 6.16 257/627] Bluetooth: hci_devcd_dump: fix out-of-bounds via dev_coredumpv Greg Kroah-Hartman
2025-08-12 17:29 ` [PATCH 6.16 258/627] Bluetooth: btintel: Define a macro for Intel Reset vendor command Greg Kroah-Hartman
2025-08-12 17:29 ` [PATCH 6.16 259/627] Bluetooth: btintel_pcie: Make driver wait for alive interrupt Greg Kroah-Hartman
2025-08-12 17:29 ` [PATCH 6.16 260/627] Bluetooth: hci_event: Mask data status from LE ext adv reports Greg Kroah-Hartman
2025-08-12 17:29 ` [PATCH 6.16 261/627] bpf: Disable migration in nf_hook_run_bpf() Greg Kroah-Hartman
2025-08-12 17:29 ` [PATCH 6.16 262/627] bpf: Reject narrower access to pointer ctx fields Greg Kroah-Hartman
2025-08-12 17:29 ` [PATCH 6.16 263/627] tools/rv: Do not skip idle in trace Greg Kroah-Hartman
2025-08-12 17:29 ` [PATCH 6.16 264/627] selftests: drv-net: Fix remote command checking in require_cmd() Greg Kroah-Hartman
2025-08-12 17:29 ` [PATCH 6.16 265/627] selftests: drv-net: tso: enable test cases based on hw_features Greg Kroah-Hartman
2025-08-12 17:29 ` [PATCH 6.16 266/627] selftests: drv-net: tso: fix vxlan tunnel flags to get correct gso_type Greg Kroah-Hartman
2025-08-12 17:29 ` [PATCH 6.16 267/627] selftests: drv-net: tso: fix non-tunneled tso6 test case name Greg Kroah-Hartman
2025-08-12 17:29 ` [PATCH 6.16 268/627] can: peak_usb: fix USB FD devices potential malfunction Greg Kroah-Hartman
2025-08-12 17:29 ` [PATCH 6.16 269/627] can: tscan1: Kconfig: add COMPILE_TEST Greg Kroah-Hartman
2025-08-12 17:29 ` [PATCH 6.16 270/627] can: tscan1: CAN_TSCAN1 can depend on PC104 Greg Kroah-Hartman
2025-08-12 17:29 ` [PATCH 6.16 271/627] can: kvaser_pciefd: Store device channel index Greg Kroah-Hartman
2025-08-12 17:29 ` [PATCH 6.16 272/627] can: kvaser_usb: Assign netdev.dev_port based on " Greg Kroah-Hartman
2025-08-12 17:29 ` [PATCH 6.16 273/627] netfilter: xt_nfacct: dont assume acct name is null-terminated Greg Kroah-Hartman
2025-08-12 17:29 ` [PATCH 6.16 274/627] selftests: netfilter: Ignore tainted kernels in interface stress test Greg Kroah-Hartman
2025-08-12 17:29 ` [PATCH 6.16 275/627] selftests: netfilter: ipvs.sh: Explicity disable rp_filter on interface tunl0 Greg Kroah-Hartman
2025-08-12 17:29 ` [PATCH 6.16 276/627] net/mlx5e: Clear Read-Only port buffer size in PBMC before update Greg Kroah-Hartman
2025-08-12 17:29 ` [PATCH 6.16 277/627] net/mlx5e: Remove skb secpath if xfrm state is not found Greg Kroah-Hartman
2025-08-12 17:29 ` [PATCH 6.16 278/627] net/mlx5e: Fix potential deadlock by deferring RX timeout recovery Greg Kroah-Hartman
2025-08-12 17:29 ` [PATCH 6.16 279/627] macsec: set IFF_UNICAST_FLT priv flag Greg Kroah-Hartman
2025-08-12 17:29 ` [PATCH 6.16 280/627] net: dsa: microchip: Fix wrong rx drop MIB counter for KSZ8863 Greg Kroah-Hartman
2025-08-12 17:29 ` [PATCH 6.16 281/627] neighbour: Fix null-ptr-deref in neigh_flush_dev() Greg Kroah-Hartman
2025-08-12 17:29 ` [PATCH 6.16 282/627] stmmac: xsk: fix negative overflow of budget in zerocopy mode Greg Kroah-Hartman
2025-08-12 17:29 ` [PATCH 6.16 283/627] igb: xsk: solve negative overflow of nb_pkts " Greg Kroah-Hartman
2025-08-12 17:29 ` [PATCH 6.16 284/627] selftests: rtnetlink.sh: remove esp4_offload after test Greg Kroah-Hartman
2025-08-12 17:29 ` [PATCH 6.16 285/627] vrf: Drop existing dst reference in vrf_ip6_input_dst Greg Kroah-Hartman
2025-08-12 17:29 ` [PATCH 6.16 286/627] ipv6: add a retry logic in net6_rt_notify() Greg Kroah-Hartman
2025-08-12 17:29 ` [PATCH 6.16 287/627] ipv6: prevent infinite loop in rt6_nlmsg_size() Greg Kroah-Hartman
2025-08-12 17:29 ` [PATCH 6.16 288/627] ipv6: fix possible infinite loop in fib6_info_uses_dev() Greg Kroah-Hartman
2025-08-12 17:29 ` [PATCH 6.16 289/627] ipv6: annotate data-races around rt->fib6_nsiblings Greg Kroah-Hartman
2025-08-12 17:29 ` [PATCH 6.16 290/627] bpf/preload: Dont select USERMODE_DRIVER Greg Kroah-Hartman
2025-08-12 17:29 ` [PATCH 6.16 291/627] bpf, arm64: Fix fp initialization for exception boundary Greg Kroah-Hartman
2025-08-12 17:29 ` [PATCH 6.16 292/627] RISC-V: KVM: Fix inclusion of Smnpm in the guest ISA bitmap Greg Kroah-Hartman
2025-08-12 17:29 ` [PATCH 6.16 293/627] rv: Remove trailing whitespace from tracepoint string Greg Kroah-Hartman
2025-08-12 17:29 ` [PATCH 6.16 294/627] rv: Use strings in da monitors tracepoints Greg Kroah-Hartman
2025-08-12 17:29 ` [PATCH 6.16 295/627] rv: Adjust monitor dependencies Greg Kroah-Hartman
2025-08-12 17:29 ` [PATCH 6.16 296/627] staging: media: atomisp: Fix stack buffer overflow in gmin_get_var_int() Greg Kroah-Hartman
2025-08-12 17:29 ` [PATCH 6.16 297/627] fortify: Fix incorrect reporting of read buffer size Greg Kroah-Hartman
2025-08-12 17:29 ` [PATCH 6.16 298/627] pinctrl: cirrus: madera-core: Use devm_pinctrl_register_mappings() Greg Kroah-Hartman
2025-08-12 17:29 ` [PATCH 6.16 299/627] remoteproc: qcom: pas: Conclude the rename from adsp Greg Kroah-Hartman
2025-08-12 17:29 ` [PATCH 6.16 300/627] PCI: rockchip-host: Fix "Unexpected Completion" log message Greg Kroah-Hartman
2025-08-12 17:29 ` [PATCH 6.16 301/627] clk: renesas: rzv2h: Fix missing CLK_SET_RATE_PARENT flag for ddiv clocks Greg Kroah-Hartman
2025-08-12 17:29 ` [PATCH 6.16 302/627] crypto: sun8i-ce - fix nents passed to dma_unmap_sg() Greg Kroah-Hartman
2025-08-12 17:29 ` [PATCH 6.16 303/627] crypto: qat - use unmanaged allocation for dc_data Greg Kroah-Hartman
2025-08-12 17:29 ` [PATCH 6.16 304/627] crypto: marvell/cesa - Fix engine load inaccuracy Greg Kroah-Hartman
2025-08-12 17:30 ` [PATCH 6.16 305/627] crypto: s390/hmac - Fix counter in export state Greg Kroah-Hartman
2025-08-12 17:30 ` [PATCH 6.16 306/627] crypto: s390/sha3 - Use cpu byte-order when exporting Greg Kroah-Hartman
2025-08-12 17:30 ` [PATCH 6.16 307/627] padata: Fix pd UAF once and for all Greg Kroah-Hartman
2025-08-12 17:30 ` [PATCH 6.16 308/627] crypto: ccp - Fix dereferencing uninitialized error pointer Greg Kroah-Hartman
2025-08-12 17:30 ` [PATCH 6.16 309/627] crypto: qat - allow enabling VFs in the absence of IOMMU Greg Kroah-Hartman
2025-08-12 17:30 ` [PATCH 6.16 310/627] crypto: qat - fix state restore for banks with exceptions Greg Kroah-Hartman
2025-08-12 17:30 ` [PATCH 6.16 311/627] mtd: fix possible integer overflow in erase_xfer() Greg Kroah-Hartman
2025-08-12 17:30 ` [PATCH 6.16 312/627] clk: davinci: Add NULL check in davinci_lpsc_clk_register() Greg Kroah-Hartman
2025-08-12 17:30 ` [PATCH 6.16 313/627] media: imx-jpeg: Account for data_offset when getting image address Greg Kroah-Hartman
2025-08-12 17:30 ` [PATCH 6.16 314/627] media: v4l2-ctrls: Fix H264 SEPARATE_COLOUR_PLANE check Greg Kroah-Hartman
2025-08-12 17:30 ` [PATCH 6.16 315/627] perf parse-events: Set default GH modifier properly Greg Kroah-Hartman
2025-08-12 17:30 ` [PATCH 6.16 316/627] clk: xilinx: vcu: unregister pll_post only if registered correctly Greg Kroah-Hartman
2025-08-12 17:30 ` [PATCH 6.16 317/627] power: supply: cpcap-charger: Fix null check for power_supply_get_by_name Greg Kroah-Hartman
2025-08-12 17:30 ` [PATCH 6.16 318/627] power: reset: POWER_RESET_TORADEX_EC should depend on ARCH_MXC Greg Kroah-Hartman
2025-08-12 17:30 ` [PATCH 6.16 319/627] power: supply: max14577: Handle NULL pdata when CONFIG_OF is not set Greg Kroah-Hartman
2025-08-12 17:30 ` [PATCH 6.16 320/627] power: supply: qcom_pmi8998_charger: fix wakeirq Greg Kroah-Hartman
2025-08-12 17:30 ` [PATCH 6.16 321/627] power: supply: max1720x correct capacity computation Greg Kroah-Hartman
2025-08-12 17:30 ` [PATCH 6.16 322/627] crypto: arm/aes-neonbs - work around gcc-15 warning Greg Kroah-Hartman
2025-08-12 17:30 ` [PATCH 6.16 323/627] crypto: ahash - Add support for drivers with no fallback Greg Kroah-Hartman
2025-08-12 17:30 ` [PATCH 6.16 324/627] crypto: ahash - Stop legacy tfms from using the set_virt fallback path Greg Kroah-Hartman
2025-08-12 17:30 ` [PATCH 6.16 325/627] crypto: qat - restore ASYM service support for GEN6 devices Greg Kroah-Hartman
2025-08-12 17:30 ` [PATCH 6.16 326/627] PCI: endpoint: pci-epf-vntb: Return -ENOENT if pci_epc_get_next_free_bar() fails Greg Kroah-Hartman
2025-08-12 17:30 ` [PATCH 6.16 327/627] pinctrl: sunxi: Fix memory leak on krealloc failure Greg Kroah-Hartman
2025-08-12 17:30 ` [PATCH 6.16 328/627] pinctrl: berlin: fix memory leak in berlin_pinctrl_build_state() Greg Kroah-Hartman
2025-08-12 17:30 ` [PATCH 6.16 329/627] pinctrl: canaan: k230: add NULL check in DT parse Greg Kroah-Hartman
2025-08-12 17:30 ` [PATCH 6.16 330/627] pinctrl: canaan: k230: Fix order of DT parse and pinctrl register Greg Kroah-Hartman
2025-08-12 17:30 ` [PATCH 6.16 331/627] PCI: Adjust the position of reading the Link Control 2 register Greg Kroah-Hartman
2025-08-12 17:30 ` [PATCH 6.16 332/627] PCI: Rename PCIE_RESET_CONFIG_DEVICE_WAIT_MS to PCIE_RESET_CONFIG_WAIT_MS Greg Kroah-Hartman
2025-08-12 17:30 ` [PATCH 6.16 333/627] PCI: dw-rockchip: Wait PCIE_RESET_CONFIG_WAIT_MS after link-up IRQ Greg Kroah-Hartman
2025-08-12 17:30 ` [PATCH 6.16 334/627] PCI: qcom: " Greg Kroah-Hartman
2025-08-12 17:30 ` [PATCH 6.16 335/627] soundwire: Correct some property names Greg Kroah-Hartman
2025-08-12 17:30 ` [PATCH 6.16 336/627] dmaengine: mmp: Fix again Wvoid-pointer-to-enum-cast warning Greg Kroah-Hartman
2025-08-12 17:30 ` [PATCH 6.16 337/627] soundwire: debugfs: move debug statement outside of error handling Greg Kroah-Hartman
2025-08-12 17:30 ` [PATCH 6.16 338/627] phy: qualcomm: phy-qcom-eusb2-repeater: Dont zero-out registers Greg Kroah-Hartman
2025-08-12 17:30 ` [PATCH 6.16 339/627] fanotify: sanitize handle_type values when reporting fid Greg Kroah-Hartman
2025-08-12 17:30 ` [PATCH 6.16 340/627] clk: clk-axi-clkgen: fix fpfd_max frequency for zynq Greg Kroah-Hartman
2025-08-12 17:30 ` [PATCH 6.16 341/627] RDMA/ipoib: Use parent rdma device net namespace Greg Kroah-Hartman
2025-08-12 17:30 ` [PATCH 6.16 342/627] RDMA/uverbs: Check CAP_NET_RAW in user namespace for flow create Greg Kroah-Hartman
2025-08-12 17:30 ` [PATCH 6.16 343/627] RDMA/mlx5: " Greg Kroah-Hartman
2025-08-12 17:30 ` [PATCH 6.16 344/627] RDMA/mlx5: Check CAP_NET_RAW in user namespace for anchor create Greg Kroah-Hartman
2025-08-12 17:30 ` [PATCH 6.16 345/627] RDMA/uverbs: Check CAP_NET_RAW in user namespace for QP create Greg Kroah-Hartman
2025-08-12 17:30 ` [PATCH 6.16 346/627] RDMA/uverbs: Check CAP_NET_RAW in user namespace for RAW " Greg Kroah-Hartman
2025-08-12 17:30 ` [PATCH 6.16 347/627] leds: tps6131x: Add V4L2_FLASH_LED_CLASS dependency Greg Kroah-Hartman
2025-08-12 17:30 ` [PATCH 6.16 348/627] RDMA/mlx5: Check CAP_NET_RAW in user namespace for devx create Greg Kroah-Hartman
2025-08-12 17:30 ` [PATCH 6.16 349/627] RDMA/nldev: Check CAP_NET_RAW in user namespace for QP modify Greg Kroah-Hartman
2025-08-12 17:30 ` [PATCH 6.16 350/627] RDMA/counter: Check CAP_NET_RAW check in user namespace for RDMA counters Greg Kroah-Hartman
2025-08-12 17:30 ` [PATCH 6.16 351/627] Fix dma_unmap_sg() nents value Greg Kroah-Hartman
2025-08-12 17:30 ` [PATCH 6.16 352/627] leds: pca955x: Avoid potential overflow when filling default_label (take 2) Greg Kroah-Hartman
2025-08-12 17:30 ` [PATCH 6.16 353/627] gitignore: allow .pylintrc to be tracked Greg Kroah-Hartman
2025-08-12 17:30 ` [PATCH 6.16 354/627] perf tools: Fix use-after-free in help_unknown_cmd() Greg Kroah-Hartman
2025-08-12 17:30 ` [PATCH 6.16 355/627] perf dso: Add missed dso__put to dso__load_kcore Greg Kroah-Hartman
2025-08-12 17:30 ` [PATCH 6.16 356/627] mtd: spi-nor: spansion: Fixup params->set_4byte_addr_mode for SEMPER Greg Kroah-Hartman
2025-08-12 17:30 ` [PATCH 6.16 357/627] perf sched: Make sure it frees the usage string Greg Kroah-Hartman
2025-08-12 17:30 ` [PATCH 6.16 358/627] perf sched: Free thread->priv using priv_destructor Greg Kroah-Hartman
2025-08-12 17:30 ` [PATCH 6.16 359/627] perf sched: Fix memory leaks in perf sched map Greg Kroah-Hartman
2025-08-12 17:30 ` [PATCH 6.16 360/627] perf sched: Fix thread leaks in perf sched timehist Greg Kroah-Hartman
2025-08-12 17:30 ` [PATCH 6.16 361/627] perf sched: Fix memory leaks for evsel->priv in timehist Greg Kroah-Hartman
2025-08-12 17:30 ` [PATCH 6.16 362/627] perf sched: Use RC_CHK_EQUAL() to compare pointers Greg Kroah-Hartman
2025-08-12 17:30 ` [PATCH 6.16 363/627] perf sched: Fix memory leaks in perf sched latency Greg Kroah-Hartman
2025-08-12 17:30 ` [PATCH 6.16 364/627] clk: spacemit: mark K1 pll1_d8 as critical Greg Kroah-Hartman
2025-08-12 17:31 ` [PATCH 6.16 365/627] RDMA/hns: Fix double destruction of rsv_qp Greg Kroah-Hartman
2025-08-12 17:31 ` [PATCH 6.16 366/627] RDMA/hns: Fix HW configurations not cleared in error flow Greg Kroah-Hartman
2025-08-12 17:31 ` [PATCH 6.16 367/627] crypto: ccp - Fix locking on alloc failure handling Greg Kroah-Hartman
2025-08-12 17:31 ` [PATCH 6.16 368/627] crypto: inside-secure - Fix `dma_unmap_sg()` nents value Greg Kroah-Hartman
2025-08-12 17:31 ` [PATCH 6.16 369/627] crypto: ccp - Fix crash when rebind ccp device for ccp.ko Greg Kroah-Hartman
2025-08-12 17:31 ` [PATCH 6.16 370/627] RDMA/hns: Get message length of ack_req from FW Greg Kroah-Hartman
2025-08-12 17:31 ` [PATCH 6.16 371/627] RDMA/hns: Fix accessing uninitialized resources Greg Kroah-Hartman
2025-08-12 17:31 ` [PATCH 6.16 372/627] RDMA/hns: Drop GFP_NOWARN Greg Kroah-Hartman
2025-08-12 17:31 ` [PATCH 6.16 373/627] RDMA/hns: Fix -Wframe-larger-than issue Greg Kroah-Hartman
2025-08-12 17:31 ` [PATCH 6.16 374/627] tracing: Use queue_rcu_work() to free filters Greg Kroah-Hartman
2025-08-12 17:31 ` [PATCH 6.16 375/627] kernel: trace: preemptirq_delay_test: use offstack cpu mask Greg Kroah-Hartman
2025-08-12 17:31 ` [PATCH 6.16 376/627] RDMA/uverbs: Add empty rdma_uattrs_has_raw_cap() declaration Greg Kroah-Hartman
2025-08-12 17:31 ` [PATCH 6.16 377/627] proc: use the same treatment to check proc_lseek as ones for proc_read_iter et.al Greg Kroah-Hartman
2025-08-12 17:31 ` [PATCH 6.16 378/627] cxl/core: Introduce a new helper cxl_resource_contains_addr() Greg Kroah-Hartman
2025-08-12 17:31 ` [PATCH 6.16 379/627] cxl/edac: Fix wrong dpa checking for PPR operation Greg Kroah-Hartman
2025-08-12 17:31 ` [PATCH 6.16 380/627] pinmux: fix race causing mux_owner NULL with active mux_usecount Greg Kroah-Hartman
2025-08-12 17:31 ` [PATCH 6.16 381/627] perf tests bp_account: Fix leaked file descriptor Greg Kroah-Hartman
2025-08-12 17:31 ` [PATCH 6.16 382/627] perf hwmon_pmu: Avoid shortening hwmon PMU name Greg Kroah-Hartman
2025-08-12 17:31 ` [PATCH 6.16 383/627] perf python: Fix thread check in pyrf_evsel__read Greg Kroah-Hartman
2025-08-12 17:31 ` [PATCH 6.16 384/627] perf python: Correct pyrf_evsel__read for tool PMUs Greg Kroah-Hartman
2025-08-12 17:31 ` [PATCH 6.16 385/627] RDMA/mana_ib: Fix DSCP value in modify QP Greg Kroah-Hartman
2025-08-12 17:31 ` [PATCH 6.16 386/627] clk: thead: th1520-ap: Correctly refer the parent of osc_12m Greg Kroah-Hartman
2025-08-12 17:31 ` [PATCH 6.16 387/627] ext4: correct the reserved credits for extent conversion Greg Kroah-Hartman
2025-08-12 17:31 ` [PATCH 6.16 388/627] ext4: fix insufficient credits calculation in ext4_meta_trans_blocks() Greg Kroah-Hartman
2025-08-12 17:31 ` [PATCH 6.16 389/627] clk: sunxi-ng: v3s: Fix de clock definition Greg Kroah-Hartman
2025-08-12 17:31 ` [PATCH 6.16 390/627] scsi: ibmvscsi_tgt: Fix dma_unmap_sg() nents value Greg Kroah-Hartman
2025-08-12 17:31 ` [PATCH 6.16 391/627] scsi: core: Fix kernel doc for scsi_track_queue_full() Greg Kroah-Hartman
2025-08-12 17:31 ` [PATCH 6.16 392/627] scsi: elx: efct: Fix dma_unmap_sg() nents value Greg Kroah-Hartman
2025-08-12 17:31 ` [PATCH 6.16 393/627] scsi: mvsas: " Greg Kroah-Hartman
2025-08-12 17:31 ` [PATCH 6.16 394/627] scsi: isci: " Greg Kroah-Hartman
2025-08-12 17:31 ` [PATCH 6.16 395/627] PCI: Fix driver_managed_dma check Greg Kroah-Hartman
2025-08-12 17:31 ` [PATCH 6.16 396/627] watchdog: ziirave_wdt: check record length in ziirave_firm_verify() Greg Kroah-Hartman
2025-08-12 17:31 ` [PATCH 6.16 397/627] selftests/cgroup: fix cpu.max tests Greg Kroah-Hartman
2025-08-12 17:31 ` [PATCH 6.16 398/627] ext4: fix inode use after free in ext4_end_io_rsv_work() Greg Kroah-Hartman
2025-08-12 17:31 ` [PATCH 6.16 399/627] ext4: Make sure BH_New bit is cleared in ->write_end handler Greg Kroah-Hartman
2025-08-12 17:31 ` [PATCH 6.16 400/627] clk: at91: sam9x7: update pll clk ranges Greg Kroah-Hartman
2025-08-12 17:31 ` [PATCH 6.16 401/627] hwrng: mtk - handle devm_pm_runtime_enable errors Greg Kroah-Hartman
2025-08-12 17:31 ` [PATCH 6.16 402/627] crypto: keembay - Fix dma_unmap_sg() nents value Greg Kroah-Hartman
2025-08-12 17:31 ` [PATCH 6.16 403/627] crypto: img-hash " Greg Kroah-Hartman
2025-08-12 17:31 ` [PATCH 6.16 404/627] crypto: qat - disable ZUC-256 capability for QAT GEN5 Greg Kroah-Hartman
2025-08-12 17:31 ` [PATCH 6.16 405/627] crypto: qat - fix virtual channel configuration for GEN6 devices Greg Kroah-Hartman
2025-08-12 17:31 ` [PATCH 6.16 406/627] crypto: krb5 - Fix memory leak in krb5_test_one_prf() Greg Kroah-Hartman
2025-08-12 17:31 ` [PATCH 6.16 407/627] cgroup: Add compatibility option for content of /proc/cgroups Greg Kroah-Hartman
2025-08-12 17:31 ` [PATCH 6.16 408/627] soundwire: stream: restore params when prepare ports fail Greg Kroah-Hartman
2025-08-12 17:31 ` [PATCH 6.16 409/627] PCI: endpoint: pci-epf-vntb: Fix the incorrect usage of __iomem attribute Greg Kroah-Hartman
2025-08-12 17:31 ` [PATCH 6.16 410/627] clk: imx95-blk-ctl: Fix synchronous abort Greg Kroah-Hartman
2025-08-12 17:31 ` [PATCH 6.16 411/627] phy: qcom: phy-qcom-snps-eusb2: Add missing write from init sequence Greg Kroah-Hartman
2025-08-12 17:31 ` [PATCH 6.16 412/627] remoteproc: xlnx: Disable unsupported features Greg Kroah-Hartman
2025-08-12 17:31 ` [PATCH 6.16 413/627] fs/orangefs: Allow 2 more characters in do_c_string() Greg Kroah-Hartman
2025-08-12 17:31 ` [PATCH 6.16 414/627] clk: thead: th1520-ap: Describe mux clocks with clk_mux Greg Kroah-Hartman
2025-08-12 17:31 ` [PATCH 6.16 415/627] tools subcmd: Tighten the filename size in check_if_command_finished Greg Kroah-Hartman
2025-08-12 17:31 ` [PATCH 6.16 416/627] perf pmu: Switch FILENAME_MAX to NAME_MAX Greg Kroah-Hartman
2025-08-12 17:31 ` [PATCH 6.16 417/627] dmaengine: mv_xor: Fix missing check after DMA map and missing unmap Greg Kroah-Hartman
2025-08-12 17:31 ` [PATCH 6.16 418/627] dmaengine: nbpfaxi: Add missing check after DMA map Greg Kroah-Hartman
2025-08-12 17:31 ` [PATCH 6.16 419/627] mfd: tps65219: Update TPS65214 MFD cells GPIO compatible string Greg Kroah-Hartman
2025-08-12 17:31 ` [PATCH 6.16 420/627] ASoC: SDCA: Fix some holes in the regmap readable/writeable helpers Greg Kroah-Hartman
2025-08-12 17:31 ` [PATCH 6.16 421/627] ASoC: fsl_xcvr: get channel status data when PHY is not exists Greg Kroah-Hartman
2025-08-12 17:31 ` [PATCH 6.16 422/627] ASoC: fsl_xcvr: get channel status data with firmware exists Greg Kroah-Hartman
2025-08-12 17:31 ` [PATCH 6.16 423/627] perf topdown: Use attribute to see an event is a topdown metic or slots Greg Kroah-Hartman
2025-08-13  3:31   ` Thorsten Leemhuis
2025-08-13  7:46     ` Greg Kroah-Hartman
2025-08-12 17:31 ` [PATCH 6.16 424/627] clk: spacemit: ccu_pll: fix error return value in recalc_rate callback Greg Kroah-Hartman
2025-08-12 17:32 ` [PATCH 6.16 425/627] sh: Do not use hyphen in exported variable name Greg Kroah-Hartman
2025-08-12 17:32 ` [PATCH 6.16 426/627] perf tools: Remove libtraceevent in .gitignore Greg Kroah-Hartman
2025-08-12 17:32 ` [PATCH 6.16 427/627] clk: clocking-wizard: Fix the round rate handling for versal Greg Kroah-Hartman
2025-08-12 17:32 ` [PATCH 6.16 428/627] crypto: qat - fix DMA direction for compression on GEN2 devices Greg Kroah-Hartman
2025-08-12 17:32 ` [PATCH 6.16 429/627] crypto: qat - fix seq_file position update in adf_ring_next() Greg Kroah-Hartman
2025-08-12 17:32 ` [PATCH 6.16 430/627] fbdev: imxfb: Check fb_add_videomode to prevent null-ptr-deref Greg Kroah-Hartman
2025-08-12 17:32 ` [PATCH 6.16 431/627] smb: client: allow parsing zero-length AV pairs Greg Kroah-Hartman
2025-08-12 17:32 ` [PATCH 6.16 432/627] drm/xe/configfs: Fix pci_dev reference leak Greg Kroah-Hartman
2025-08-12 17:32 ` [PATCH 6.16 433/627] jfs: fix metapage reference count leak in dbAllocCtl Greg Kroah-Hartman
2025-08-12 17:32 ` [PATCH 6.16 434/627] mtd: rawnand: atmel: Fix dma_mapping_error() address Greg Kroah-Hartman
2025-08-12 17:32 ` [PATCH 6.16 435/627] mtd: rawnand: rockchip: Add missing check after DMA map Greg Kroah-Hartman
2025-08-12 17:32 ` [PATCH 6.16 436/627] mtd: rawnand: atmel: set pmecc data setup time Greg Kroah-Hartman
2025-08-12 17:32 ` [PATCH 6.16 437/627] drm/xe/vf: Disable CSC support on VF Greg Kroah-Hartman
2025-08-12 17:32 ` [PATCH 6.16 438/627] selftests: ALSA: fix memory leak in utimer test Greg Kroah-Hartman
2025-08-12 17:32 ` [PATCH 6.16 439/627] ALSA: usb: scarlett2: Fix missing NULL check Greg Kroah-Hartman
2025-08-12 17:32 ` [PATCH 6.16 440/627] perf record: Cache build-ID of hit DSOs only Greg Kroah-Hartman
2025-08-12 17:32 ` [PATCH 6.16 441/627] bpf: Add cookie object to bpf maps Greg Kroah-Hartman
2025-08-12 17:32 ` [PATCH 6.16 442/627] bpf: Move bpf map owner out of common struct Greg Kroah-Hartman
2025-08-12 17:32 ` [PATCH 6.16 443/627] bpf: Move cgroup iterator helpers to bpf.h Greg Kroah-Hartman
2025-08-12 17:32 ` [PATCH 6.16 444/627] bpf: Fix oob access in cgroup local storage Greg Kroah-Hartman
2025-08-12 17:32 ` [PATCH 6.16 445/627] vdpa/mlx5: Fix needs_teardown flag calculation Greg Kroah-Hartman
2025-08-12 17:32 ` [PATCH 6.16 446/627] vhost-scsi: Fix log flooding with target does not exist errors Greg Kroah-Hartman
2025-08-12 17:32 ` [PATCH 6.16 447/627] vhost-scsi: Fix check for inline_sg_cnt exceeding preallocated limit Greg Kroah-Hartman
2025-08-12 17:32 ` [PATCH 6.16 448/627] vdpa/mlx5: Fix release of uninitialized resources on error path Greg Kroah-Hartman
2025-08-12 17:32 ` [PATCH 6.16 449/627] vdpa: Fix IDR memory leak in VDUSE module exit Greg Kroah-Hartman
2025-08-12 17:32 ` [PATCH 6.16 450/627] vhost: Reintroduce kthread API and add mode selection Greg Kroah-Hartman
2025-08-12 17:32 ` [PATCH 6.16 451/627] bpf: Check flow_dissector ctx accesses are aligned Greg Kroah-Hartman
2025-08-12 17:32 ` [PATCH 6.16 452/627] bpf: Check netfilter " Greg Kroah-Hartman
2025-08-12 17:32 ` [PATCH 6.16 453/627] apparmor: ensure WB_HISTORY_SIZE value is a power of 2 Greg Kroah-Hartman
2025-08-12 17:32 ` [PATCH 6.16 454/627] apparmor: fix loop detection used in conflicting attachment resolution Greg Kroah-Hartman
2025-08-12 17:32 ` [PATCH 6.16 455/627] dm-flakey: Fix corrupt_bio_byte setup checks Greg Kroah-Hartman
2025-08-12 17:32 ` [PATCH 6.16 456/627] uprobes: revert ref_ctr_offset in uprobe_unregister error path Greg Kroah-Hartman
2025-08-12 17:32 ` [PATCH 6.16 457/627] scripts: gdb: move MNT_* constants to gdb-parsed Greg Kroah-Hartman
2025-08-12 17:32 ` [PATCH 6.16 458/627] squashfs: use folios in squashfs_bio_read_cached() Greg Kroah-Hartman
2025-08-12 17:32 ` [PATCH 6.16 459/627] squashfs: fix incorrect argument to sizeof in kmalloc_array call Greg Kroah-Hartman
2025-08-12 17:32 ` [PATCH 6.16 460/627] apparmor: Fix unaligned memory accesses in KUnit test Greg Kroah-Hartman
2025-08-12 17:32 ` [PATCH 6.16 461/627] i3c: fix module_i3c_i2c_driver() with I3C=n Greg Kroah-Hartman
2025-08-12 17:32 ` [PATCH 6.16 462/627] i3c: master: svc: Fix npcm845 FIFO_EMPTY quirk Greg Kroah-Hartman
2025-08-12 17:32 ` [PATCH 6.16 463/627] module: Restore the moduleparam prefix length check Greg Kroah-Hartman
2025-08-12 17:32 ` [PATCH 6.16 464/627] ucount: fix atomic_long_inc_below() argument type Greg Kroah-Hartman
2025-08-12 17:32 ` [PATCH 6.16 465/627] rtc: ds1307: fix incorrect maximum clock rate handling Greg Kroah-Hartman
2025-08-12 17:32 ` [PATCH 6.16 466/627] rtc: hym8563: " Greg Kroah-Hartman
2025-08-12 17:32 ` [PATCH 6.16 467/627] rtc: nct3018y: " Greg Kroah-Hartman
2025-08-12 17:32 ` Greg Kroah-Hartman [this message]
2025-08-12 17:32 ` [PATCH 6.16 469/627] rtc: pcf8563: " Greg Kroah-Hartman
2025-08-12 17:32 ` [PATCH 6.16 470/627] rtc: rv3028: " Greg Kroah-Hartman
2025-08-12 17:32 ` [PATCH 6.16 471/627] f2fs: turn off one_time when forcibly set to foreground GC Greg Kroah-Hartman
2025-08-12 17:32 ` [PATCH 6.16 472/627] f2fs: fix bio memleak when committing super block Greg Kroah-Hartman
2025-08-12 17:32 ` [PATCH 6.16 473/627] f2fs: fix to avoid invalid wait context issue Greg Kroah-Hartman
2025-08-12 17:32 ` [PATCH 6.16 474/627] f2fs: compress: change the first parameter of page_array_{alloc,free} to sbi Greg Kroah-Hartman
2025-08-12 17:32 ` [PATCH 6.16 475/627] f2fs: compress: fix UAF of f2fs_inode_info in f2fs_free_dic Greg Kroah-Hartman
2025-08-12 17:32 ` [PATCH 6.16 476/627] f2fs: fix KMSAN uninit-value in extent_info usage Greg Kroah-Hartman
2025-08-12 17:32 ` [PATCH 6.16 477/627] f2fs: fix to check upper boundary for value of gc_boost_zoned_gc_percent Greg Kroah-Hartman
2025-08-12 17:32 ` [PATCH 6.16 478/627] f2fs: fix to check upper boundary for gc_valid_thresh_ratio Greg Kroah-Hartman
2025-08-12 17:32 ` [PATCH 6.16 479/627] f2fs: fix to check upper boundary for gc_no_zoned_gc_percent Greg Kroah-Hartman
2025-08-12 17:32 ` [PATCH 6.16 480/627] f2fs: doc: fix wrong quota mount option description Greg Kroah-Hartman
2025-08-12 17:32 ` [PATCH 6.16 481/627] f2fs: fix to avoid UAF in f2fs_sync_inode_meta() Greg Kroah-Hartman
2025-08-12 17:32 ` [PATCH 6.16 482/627] f2fs: fix to avoid panic in f2fs_evict_inode Greg Kroah-Hartman
2025-08-12 17:32 ` [PATCH 6.16 483/627] f2fs: fix to avoid out-of-boundary access in devs.path Greg Kroah-Hartman
2025-08-12 17:32 ` [PATCH 6.16 484/627] f2fs: vm_unmap_ram() may be called from an invalid context Greg Kroah-Hartman
2025-08-12 17:33 ` [PATCH 6.16 485/627] f2fs: fix to update upper_p in __get_secs_required() correctly Greg Kroah-Hartman
2025-08-12 17:33 ` [PATCH 6.16 486/627] f2fs: fix to calculate dirty data during has_not_enough_free_secs() Greg Kroah-Hartman
2025-08-12 17:33 ` [PATCH 6.16 487/627] f2fs: fix to trigger foreground gc during f2fs_map_blocks() in lfs mode Greg Kroah-Hartman
2025-08-12 17:33 ` [PATCH 6.16 488/627] exfat: fdatasync flag should be same like generic_write_sync() Greg Kroah-Hartman
2025-08-12 17:33 ` [PATCH 6.16 489/627] i2c: muxes: mule: Fix an error handling path in mule_i2c_mux_probe() Greg Kroah-Hartman
2025-08-12 17:33 ` [PATCH 6.16 490/627] vfio: Fix unbalanced vfio_df_close call in no-iommu mode Greg Kroah-Hartman
2025-08-12 17:33 ` [PATCH 6.16 491/627] vfio: Prevent open_count decrement to negative Greg Kroah-Hartman
2025-08-12 17:33 ` [PATCH 6.16 492/627] vfio/pds: Fix missing detach_ioas op Greg Kroah-Hartman
2025-08-12 17:33 ` [PATCH 6.16 493/627] vfio/pci: Separate SR-IOV VF dev_set Greg Kroah-Hartman
2025-08-12 17:33 ` [PATCH 6.16 494/627] scsi: mpt3sas: Fix a fw_event memory leak Greg Kroah-Hartman
2025-08-12 17:33 ` [PATCH 6.16 495/627] scsi: Revert "scsi: iscsi: Fix HW conn removal use after free" Greg Kroah-Hartman
2025-08-12 17:33 ` [PATCH 6.16 496/627] scsi: ufs: core: Use link recovery when h8 exit fails during runtime resume Greg Kroah-Hartman
2025-08-12 17:33 ` [PATCH 6.16 497/627] scsi: sd: Make sd shutdown issue START STOP UNIT appropriately Greg Kroah-Hartman
2025-08-12 17:33 ` [PATCH 6.16 498/627] kconfig: qconf: fix ConfigList::updateListAllforAll() Greg Kroah-Hartman
2025-08-12 17:33 ` [PATCH 6.16 499/627] vfio/pci: Do vf_token checks for VFIO_DEVICE_BIND_IOMMUFD Greg Kroah-Hartman
2025-08-12 17:33 ` [PATCH 6.16 500/627] sched/psi: Fix psi_seq initialization Greg Kroah-Hartman
2025-08-12 17:33 ` [PATCH 6.16 501/627] padata: Remove comment for reorder_work Greg Kroah-Hartman
2025-08-12 17:33 ` [PATCH 6.16 502/627] PCI: pnv_php: Clean up allocated IRQs on unplug Greg Kroah-Hartman
2025-08-12 17:33 ` [PATCH 6.16 503/627] PCI: pnv_php: Work around switches with broken presence detection Greg Kroah-Hartman
2025-08-12 17:33 ` [PATCH 6.16 504/627] powerpc/eeh: Export eeh_unfreeze_pe() Greg Kroah-Hartman
2025-08-12 17:33 ` [PATCH 6.16 505/627] powerpc/eeh: Make EEH driver device hotplug safe Greg Kroah-Hartman
2025-08-12 17:33 ` [PATCH 6.16 506/627] PCI: pnv_php: Fix surprise plug detection and recovery Greg Kroah-Hartman
2025-08-12 17:33 ` [PATCH 6.16 507/627] tools/power turbostat: regression fix: --show C1E% Greg Kroah-Hartman
2025-08-12 17:33 ` [PATCH 6.16 508/627] pNFS/flexfiles: dont attempt pnfs on fatal DS errors Greg Kroah-Hartman
2025-08-12 17:33 ` [PATCH 6.16 509/627] NFS: Fix wakeup of __nfs_lookup_revalidate() in unblock_revalidate() Greg Kroah-Hartman
2025-08-12 17:33 ` [PATCH 6.16 510/627] NFS: Fix filehandle bounds checking in nfs_fh_to_dentry() Greg Kroah-Hartman
2025-08-12 17:33 ` [PATCH 6.16 511/627] NFSv4.2: another fix for listxattr Greg Kroah-Hartman
2025-08-12 17:33 ` [PATCH 6.16 512/627] NFS: Fixup allocation flags for nfsiods __GFP_NORETRY Greg Kroah-Hartman
2025-08-12 17:33 ` [PATCH 6.16 513/627] ARM: s3c/gpio: complete the conversion to new GPIO value setters Greg Kroah-Hartman
2025-08-12 17:33 ` [PATCH 6.16 514/627] md/md-cluster: handle REMOVE message earlier Greg Kroah-Hartman
2025-08-12 17:33 ` [PATCH 6.16 515/627] kcm: Fix splice support Greg Kroah-Hartman
2025-08-12 17:33 ` [PATCH 6.16 516/627] netpoll: prevent hanging NAPI when netcons gets enabled Greg Kroah-Hartman
2025-08-12 17:33 ` [PATCH 6.16 517/627] phy: mscc: Fix parsing of unicast frames Greg Kroah-Hartman
2025-08-12 17:33 ` [PATCH 6.16 518/627] net: ipa: add IPA v5.1 and v5.5 to ipa_version_string() Greg Kroah-Hartman
2025-08-12 17:33 ` [PATCH 6.16 519/627] net: mdio_bus: Use devm for getting reset GPIO Greg Kroah-Hartman
2025-08-12 20:22   ` Csókás Bence
2025-08-13  7:47     ` Greg Kroah-Hartman
2025-08-13  7:56       ` Greg Kroah-Hartman
2025-08-13  8:10         ` Csókás Bence
2025-08-13  8:14           ` Greg Kroah-Hartman
2025-08-12 17:33 ` [PATCH 6.16 520/627] pptp: ensure minimal skb length in pptp_xmit() Greg Kroah-Hartman
2025-08-12 17:33 ` [PATCH 6.16 521/627] nvmet: initialize discovery subsys after debugfs is initialized Greg Kroah-Hartman
2025-08-12 17:33 ` [PATCH 6.16 522/627] s390/ap: Unmask SLCF bit in card and queue ap functions sysfs Greg Kroah-Hartman
2025-08-12 17:33 ` [PATCH 6.16 523/627] s390/mm: Set high_memory at the end of the identity mapping Greg Kroah-Hartman
2025-08-12 17:33 ` [PATCH 6.16 524/627] netlink: specs: ethtool: fix module EEPROM input/output arguments Greg Kroah-Hartman
2025-08-12 17:33 ` [PATCH 6.16 525/627] block: Fix default IO priority if there is no IO context Greg Kroah-Hartman
2025-08-12 17:33 ` [PATCH 6.16 526/627] block: ensure discard_granularity is zero when discard is not supported Greg Kroah-Hartman
2025-08-12 17:33 ` [PATCH 6.16 527/627] ASoC: tas2781: Fix the wrong step for TLV on tas2781 Greg Kroah-Hartman
2025-08-12 17:33 ` [PATCH 6.16 528/627] spi: cs42l43: Property entry should be a null-terminated array Greg Kroah-Hartman
2025-08-12 17:33 ` [PATCH 6.16 529/627] net: airoha: Fix PPE table access in airoha_ppe_debugfs_foe_show() Greg Kroah-Hartman
2025-08-12 17:33 ` [PATCH 6.16 530/627] net/mlx5: Correctly set gso_segs when LRO is used Greg Kroah-Hartman
2025-08-12 17:33 ` [PATCH 6.16 531/627] selftests: avoid using ifconfig Greg Kroah-Hartman
2025-08-12 17:33 ` [PATCH 6.16 532/627] ipv6: reject malicious packets in ipv6_gso_segment() Greg Kroah-Hartman
2025-08-12 17:33 ` [PATCH 6.16 533/627] net: mdio: mdio-bcm-unimac: Correct rate fallback logic Greg Kroah-Hartman
2025-08-12 17:33 ` [PATCH 6.16 534/627] net: drop UFO packets in udp_rcv_segment() Greg Kroah-Hartman
2025-08-12 17:33 ` [PATCH 6.16 535/627] net/sched: taprio: enforce minimum value for picos_per_byte Greg Kroah-Hartman
2025-08-12 17:33 ` [PATCH 6.16 536/627] md: make rdev_addable usable for rcu mode Greg Kroah-Hartman
2025-08-12 17:33 ` [PATCH 6.16 537/627] sunrpc: fix client side handling of tls alerts Greg Kroah-Hartman
2025-08-12 17:33 ` [PATCH 6.16 538/627] drm/xe/pf: Disable PF restart worker on device removal Greg Kroah-Hartman
2025-08-12 17:33 ` [PATCH 6.16 539/627] x86/irq: Plug vector setup race Greg Kroah-Hartman
2025-08-12 17:33 ` [PATCH 6.16 540/627] eth: fbnic: unlink NAPIs from queues on error to open Greg Kroah-Hartman
2025-08-12 17:33 ` [PATCH 6.16 541/627] ipa: fix compile-testing with qcom-mdt=m Greg Kroah-Hartman
2025-08-12 17:33 ` [PATCH 6.16 542/627] net: devmem: fix DMA direction on unmapping Greg Kroah-Hartman
2025-08-12 17:33 ` [PATCH 6.16 543/627] net: airoha: npu: Add missing MODULE_FIRMWARE macros Greg Kroah-Hartman
2025-08-12 17:33 ` [PATCH 6.16 544/627] benet: fix BUG when creating VFs Greg Kroah-Hartman
2025-08-12 17:34 ` [PATCH 6.16 545/627] Revert "net: mdio_bus: Use devm for getting reset GPIO" Greg Kroah-Hartman
2025-08-12 17:34 ` [PATCH 6.16 546/627] net/sched: mqprio: fix stack out-of-bounds write in tc entry parsing Greg Kroah-Hartman
2025-08-12 17:34 ` [PATCH 6.16 547/627] s390/mm: Allocate page table with PAGE_SIZE granularity Greg Kroah-Hartman
2025-08-12 17:34 ` [PATCH 6.16 548/627] eth: fbnic: remove the debugging trick of super high page bias Greg Kroah-Hartman
2025-08-12 17:34 ` [PATCH 6.16 549/627] eth: fbnic: Fix tx_dropped reporting Greg Kroah-Hartman
2025-08-12 17:34 ` [PATCH 6.16 550/627] eth: fbnic: Lock the tx_dropped update Greg Kroah-Hartman
2025-08-12 17:34 ` [PATCH 6.16 551/627] NFS/localio: nfs_close_local_fh() fix check for file closed Greg Kroah-Hartman
2025-08-12 17:34 ` [PATCH 6.16 552/627] NFS/localio: nfs_uuid_put() fix races with nfs_open/close_local_fh() Greg Kroah-Hartman
2025-08-12 17:34 ` [PATCH 6.16 553/627] NFS/localio: nfs_uuid_put() fix the wake up after unlinking the file Greg Kroah-Hartman
2025-08-12 17:34 ` [PATCH 6.16 554/627] net: ti: icssg-prueth: Fix skb handling for XDP_PASS Greg Kroah-Hartman
2025-08-12 17:34 ` [PATCH 6.16 555/627] irqchip: Build IMX_MU_MSI only on ARM Greg Kroah-Hartman
2025-08-12 17:34 ` [PATCH 6.16 556/627] ASoC: SOF: Intel: hda-sdw-bpt: fix SND_SOF_SOF_HDA_SDW_BPT dependencies Greg Kroah-Hartman
2025-08-12 17:34 ` [PATCH 6.16 557/627] ALSA: hda/ca0132: Fix missing error handling in ca0132_alt_select_out() Greg Kroah-Hartman
2025-08-12 17:34 ` [PATCH 6.16 558/627] s390/boot: Fix startup debugging log Greg Kroah-Hartman
2025-08-12 17:34 ` [PATCH 6.16 559/627] smb: server: remove separate empty_recvmsg_queue Greg Kroah-Hartman
2025-08-12 17:34 ` [PATCH 6.16 560/627] smb: server: make sure we call ib_dma_unmap_single() only if we called ib_dma_map_single already Greg Kroah-Hartman
2025-08-12 17:34 ` [PATCH 6.16 561/627] smb: server: let recv_done() consistently call put_recvmsg/smb_direct_disconnect_rdma_connection Greg Kroah-Hartman
2025-08-12 17:34 ` [PATCH 6.16 562/627] smb: server: let recv_done() avoid touching data_transfer after cleanup/move Greg Kroah-Hartman
2025-08-12 17:34 ` [PATCH 6.16 563/627] smb: client: let send_done() cleanup before calling smbd_disconnect_rdma_connection() Greg Kroah-Hartman
2025-08-13  6:17   ` Stefan Metzmacher
2025-08-13  7:59     ` Greg Kroah-Hartman
2025-08-13  8:04       ` Stefan Metzmacher
2025-08-13  8:10         ` Greg Kroah-Hartman
2025-08-17  9:45           ` Stefan Metzmacher
2025-08-17 10:00             ` Greg Kroah-Hartman
2025-08-12 17:34 ` [PATCH 6.16 564/627] smb: client: remove separate empty_packet_queue Greg Kroah-Hartman
2025-08-12 17:34 ` [PATCH 6.16 565/627] smb: client: make sure we call ib_dma_unmap_single() only if we called ib_dma_map_single already Greg Kroah-Hartman
2025-08-12 17:34 ` [PATCH 6.16 566/627] smb: client: let recv_done() cleanup before notifying the callers Greg Kroah-Hartman
2025-08-12 17:34 ` [PATCH 6.16 567/627] smb: client: let recv_done() avoid touching data_transfer after cleanup/move Greg Kroah-Hartman
2025-08-12 17:34 ` [PATCH 6.16 568/627] nvmet: exit debugfs after discovery subsystem exits Greg Kroah-Hartman
2025-08-12 17:34 ` [PATCH 6.16 569/627] pptp: fix pptp_xmit() error path Greg Kroah-Hartman
2025-08-12 17:34 ` [PATCH 6.16 570/627] smb: client: return an error if rdma_connect does not return within 5 seconds Greg Kroah-Hartman
2025-08-12 17:34 ` [PATCH 6.16 571/627] tools/power turbostat: Fix bogus SysWatt for forked program Greg Kroah-Hartman
2025-08-12 17:34 ` [PATCH 6.16 572/627] tools/power turbostat: Fix DMR support Greg Kroah-Hartman
2025-08-12 17:34 ` [PATCH 6.16 573/627] nfsd: dont set the ctime on delegated atime updates Greg Kroah-Hartman
2025-08-12 17:34 ` [PATCH 6.16 574/627] nfsd: avoid ref leak in nfsd_open_local_fh() Greg Kroah-Hartman
2025-08-12 17:34 ` [PATCH 6.16 575/627] sunrpc: fix handling of server side tls alerts Greg Kroah-Hartman
2025-08-12 17:34 ` [PATCH 6.16 576/627] perf/core: Preserve AUX buffer allocation failure result Greg Kroah-Hartman
2025-08-12 17:34 ` [PATCH 6.16 577/627] perf/core: Dont leak AUX buffer refcount on allocation failure Greg Kroah-Hartman
2025-08-12 17:34 ` [PATCH 6.16 578/627] perf/core: Exit early on perf_mmap() fail Greg Kroah-Hartman
2025-08-12 17:34 ` [PATCH 6.16 579/627] perf/core: Handle buffer mapping fail correctly in perf_mmap() Greg Kroah-Hartman
2025-08-12 17:34 ` [PATCH 6.16 580/627] perf/core: Prevent VMA split of buffer mappings Greg Kroah-Hartman
2025-08-12 17:34 ` [PATCH 6.16 581/627] selftests/perf_events: Add a mmap() correctness test Greg Kroah-Hartman
2025-08-12 17:34 ` [PATCH 6.16 582/627] net/packet: fix a race in packet_set_ring() and packet_notifier() Greg Kroah-Hartman
2025-08-12 17:34 ` [PATCH 6.16 583/627] vsock: Do not allow binding to VMADDR_PORT_ANY Greg Kroah-Hartman
2025-08-12 17:34 ` [PATCH 6.16 584/627] ksmbd: fix null pointer dereference error in generate_encryptionkey Greg Kroah-Hartman
2025-08-12 17:34 ` [PATCH 6.16 585/627] ksmbd: fix Preauh_HashValue race condition Greg Kroah-Hartman
2025-08-12 17:34 ` [PATCH 6.16 586/627] ksmbd: fix corrupted mtime and ctime in smb2_open Greg Kroah-Hartman
2025-08-12 17:34 ` [PATCH 6.16 587/627] smb: client: fix netns refcount leak after net_passive changes Greg Kroah-Hartman
2025-08-12 17:34 ` [PATCH 6.16 588/627] smb: client: set symlink type as native for POSIX mounts Greg Kroah-Hartman
2025-08-12 17:34 ` [PATCH 6.16 589/627] smb: client: default to nonativesocket under " Greg Kroah-Hartman
2025-08-12 17:34 ` [PATCH 6.16 590/627] ksmbd: limit repeated connections from clients with the same IP Greg Kroah-Hartman
2025-08-12 17:34 ` [PATCH 6.16 591/627] smb: server: Fix extension string in ksmbd_extract_shortname() Greg Kroah-Hartman
2025-08-12 17:34 ` [PATCH 6.16 592/627] USB: serial: option: add Foxconn T99W709 Greg Kroah-Hartman
2025-08-12 17:34 ` [PATCH 6.16 593/627] Bluetooth: btusb: Add USB ID 3625:010b for TP-LINK Archer TX10UB Nano Greg Kroah-Hartman
2025-08-12 17:34 ` [PATCH 6.16 594/627] net: usbnet: Avoid potential RCU stall on LINK_CHANGE event Greg Kroah-Hartman
2025-08-12 17:34 ` [PATCH 6.16 595/627] net: usbnet: Fix the wrong netif_carrier_on() call Greg Kroah-Hartman
2025-08-12 17:34 ` [PATCH 6.16 596/627] x86/sev: Evict cache lines during SNP memory validation Greg Kroah-Hartman
2025-08-12 17:34 ` [PATCH 6.16 597/627] ALSA: intel_hdmi: Fix off-by-one error in __hdmi_lpe_audio_probe() Greg Kroah-Hartman
2025-08-12 17:34 ` [PATCH 6.16 598/627] ALSA: scarlett2: Add retry on -EPROTO from scarlett2_usb_tx() Greg Kroah-Hartman
2025-08-12 17:34 ` [PATCH 6.16 599/627] ALSA: hda/realtek - Fix mute LED for HP Victus 16-r1xxx Greg Kroah-Hartman
2025-08-12 17:34 ` [PATCH 6.16 600/627] ALSA: hda/realtek - Fix mute LED for HP Victus 16-s0xxx Greg Kroah-Hartman
2025-08-12 17:34 ` [PATCH 6.16 601/627] ALSA: hda/realtek - Fix mute LED for HP Victus 16-d1xxx (MB 8A26) Greg Kroah-Hartman
2025-08-12 17:34 ` [PATCH 6.16 602/627] platform/x86/intel/pmt: fix a crashlog NULL pointer access Greg Kroah-Hartman
2025-08-12 17:34 ` [PATCH 6.16 603/627] x86/fpu: Delay instruction pointer fixup until after warning Greg Kroah-Hartman
2025-08-12 17:34 ` [PATCH 6.16 604/627] KVM: x86: Convert vcpu_run()s immediate exit param into a generic bitmap Greg Kroah-Hartman
2025-08-12 17:35 ` [PATCH 6.16 605/627] KVM: x86: Drop kvm_x86_ops.set_dr6() in favor of a new KVM_RUN flag Greg Kroah-Hartman
2025-08-12 17:35 ` [PATCH 6.16 606/627] KVM: VMX: Allow guest to set DEBUGCTL.RTM_DEBUG if RTM is supported Greg Kroah-Hartman
2025-08-12 17:35 ` [PATCH 6.16 607/627] KVM: arm64: Check for SYSREGS_ON_CPU before accessing the CPU state Greg Kroah-Hartman
2025-08-12 17:35 ` [PATCH 6.16 608/627] KVM: arm64: Filter out HCR_EL2 bits when running in hypervisor context Greg Kroah-Hartman
2025-08-12 17:35 ` [PATCH 6.16 609/627] zloop: fix KASAN use-after-free of tag set Greg Kroah-Hartman
2025-08-12 17:35 ` [PATCH 6.16 610/627] s390/mm: Remove possible false-positive warning in pte_free_defer() Greg Kroah-Hartman
2025-08-12 17:35 ` [PATCH 6.16 611/627] MIPS: mm: tlb-r4k: Uniquify TLB entries on init Greg Kroah-Hartman
2025-08-12 17:35 ` [PATCH 6.16 612/627] mm/hmm: move pmd_to_hmm_pfn_flags() to the respective #ifdeffery Greg Kroah-Hartman
2025-08-12 17:35 ` [PATCH 6.16 613/627] mm: swap: correctly use maxpages in swapon syscall to avoid potential deadloop Greg Kroah-Hartman
2025-08-12 17:35 ` [PATCH 6.16 614/627] mm: swap: fix potential buffer overflow in setup_clusters() Greg Kroah-Hartman
2025-08-12 17:35 ` [PATCH 6.16 615/627] mm: swap: move nr_swap_pages counter decrement from folio_alloc_swap() to swap_range_alloc() Greg Kroah-Hartman
2025-08-12 17:35 ` [PATCH 6.16 616/627] mm: shmem: fix the shmem large folio allocation for the i915 driver Greg Kroah-Hartman
2025-08-12 17:35 ` [PATCH 6.16 617/627] usb: gadget: uvc: Initialize frame-based format color matching descriptor Greg Kroah-Hartman
2025-08-12 17:35 ` [PATCH 6.16 618/627] perf/arm-ni: Set initial IRQ affinity Greg Kroah-Hartman
2025-08-12 17:35 ` [PATCH 6.16 619/627] media: ti: j721e-csi2rx: fix list_del corruption Greg Kroah-Hartman
2025-08-12 17:35 ` [PATCH 6.16 620/627] HID: apple: validate feature-report field count to prevent NULL pointer dereference Greg Kroah-Hartman
2025-08-12 17:35 ` [PATCH 6.16 621/627] USB: gadget: f_hid: Fix memory leak in hidg_bind error path Greg Kroah-Hartman
2025-08-12 17:35 ` [PATCH 6.16 622/627] HID: core: Harden s32ton() against conversion to 0 bits Greg Kroah-Hartman
2025-08-12 17:35 ` [PATCH 6.16 623/627] HID: magicmouse: avoid setting up battery timer when not needed Greg Kroah-Hartman
2025-08-12 17:35 ` [PATCH 6.16 624/627] HID: apple: avoid setting up battery timer for devices without battery Greg Kroah-Hartman
2025-08-12 17:35 ` [PATCH 6.16 625/627] usb: gadget : fix use-after-free in composite_dev_cleanup() Greg Kroah-Hartman
2025-08-12 17:35 ` [PATCH 6.16 626/627] wifi: ath12k: install pairwise key first Greg Kroah-Hartman
2025-08-12 17:35 ` [PATCH 6.16 627/627] mm: fix a UAF when vma->mm is freed after vma->vm_refcnt got dropped Greg Kroah-Hartman
2025-08-12 19:48 ` [PATCH 6.16 000/627] 6.16.1-rc1 review Brett A C Sheffield
2025-08-12 21:56 ` Florian Fainelli
2025-08-13  6:12 ` Peter Schneider
2025-08-13 11:39 ` Frank Scheiner
2025-08-13 11:40 ` Takeshi Ogasawara
2025-08-13 12:16 ` Naresh Kamboju
2025-08-13 12:50   ` Greg Kroah-Hartman
2025-08-13 14:31     ` Naresh Kamboju
2025-08-13 14:53       ` Greg Kroah-Hartman
2025-08-13 15:58         ` Dan Carpenter
2025-08-14  1:27         ` Zhang Yi
2025-08-14 15:30           ` Greg Kroah-Hartman
2025-08-14 20:19     ` Namhyung Kim
2025-08-15  5:33       ` Greg Kroah-Hartman
2025-08-15 16:24         ` Namhyung Kim
2025-08-13 12:51   ` Mark Brown
2025-08-13 13:41     ` Naresh Kamboju
2025-08-14 15:35       ` Greg Kroah-Hartman
2025-08-13 13:56 ` Mark Brown
2025-08-13 15:05 ` Shuah Khan
2025-08-13 15:48 ` Jon Hunter
2025-08-13 21:26 ` Ron Economos
2025-08-14  4:01 ` Salvatore Bonaccorso
2025-08-14 10:25 ` Christian Heusel
2025-08-14 14:57 ` Miguel Ojeda

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=20250812173440.558149092@linuxfoundation.org \
    --to=gregkh@linuxfoundation.org \
    --cc=alexandre.belloni@bootlin.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;
as well as URLs for NNTP newsgroup(s).