From: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
To: stable@vger.kernel.org
Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>,
patches@lists.linux.dev,
Nuno Das Neves <nunodasneves@linux.microsoft.com>,
Mukesh R <mrathor@linux.microsoft.com>,
Sean Christopherson <seanjc@google.com>,
Wei Liu <wei.liu@kernel.org>, Sasha Levin <sashal@kernel.org>
Subject: [PATCH 6.17 071/371] mshv: Handle NEED_RESCHED_LAZY before transferring to guest
Date: Fri, 17 Oct 2025 16:50:46 +0200 [thread overview]
Message-ID: <20251017145204.510871335@linuxfoundation.org> (raw)
In-Reply-To: <20251017145201.780251198@linuxfoundation.org>
6.17-stable review patch. If anyone has any objections, please let me know.
------------------
From: Sean Christopherson <seanjc@google.com>
[ Upstream commit 0ebac01a00be972020c002a7fe0bb6b6fca8410f ]
Check for NEED_RESCHED_LAZY, not just NEED_RESCHED, prior to transferring
control to a guest. Failure to check for lazy resched can unnecessarily
delay rescheduling until the next tick when using a lazy preemption model.
Note, ideally both the checking and processing of TIF bits would be handled
in common code, to avoid having to keep three separate paths synchronized,
but defer such cleanups to the future to keep the fix as standalone as
possible.
Cc: Nuno Das Neves <nunodasneves@linux.microsoft.com>
Cc: Mukesh R <mrathor@linux.microsoft.com>
Fixes: 621191d709b1 ("Drivers: hv: Introduce mshv_root module to expose /dev/mshv to VMMs")
Signed-off-by: Sean Christopherson <seanjc@google.com>
Tested-by: Nuno Das Neves <nunodasneves@linux.microsoft.com>
Reviewed-by: Nuno Das Neves <nunodasneves@linux.microsoft.com>
Signed-off-by: Wei Liu <wei.liu@kernel.org>
Signed-off-by: Sasha Levin <sashal@kernel.org>
---
drivers/hv/mshv_common.c | 2 +-
drivers/hv/mshv_root_main.c | 3 ++-
2 files changed, 3 insertions(+), 2 deletions(-)
diff --git a/drivers/hv/mshv_common.c b/drivers/hv/mshv_common.c
index 6f227a8a5af71..eb3df3e296bbe 100644
--- a/drivers/hv/mshv_common.c
+++ b/drivers/hv/mshv_common.c
@@ -151,7 +151,7 @@ int mshv_do_pre_guest_mode_work(ulong th_flags)
if (th_flags & (_TIF_SIGPENDING | _TIF_NOTIFY_SIGNAL))
return -EINTR;
- if (th_flags & _TIF_NEED_RESCHED)
+ if (th_flags & (_TIF_NEED_RESCHED | _TIF_NEED_RESCHED_LAZY))
schedule();
if (th_flags & _TIF_NOTIFY_RESUME)
diff --git a/drivers/hv/mshv_root_main.c b/drivers/hv/mshv_root_main.c
index 72df774e410ab..cad09ff5f94dc 100644
--- a/drivers/hv/mshv_root_main.c
+++ b/drivers/hv/mshv_root_main.c
@@ -490,7 +490,8 @@ mshv_vp_wait_for_hv_kick(struct mshv_vp *vp)
static int mshv_pre_guest_mode_work(struct mshv_vp *vp)
{
const ulong work_flags = _TIF_NOTIFY_SIGNAL | _TIF_SIGPENDING |
- _TIF_NEED_RESCHED | _TIF_NOTIFY_RESUME;
+ _TIF_NEED_RESCHED | _TIF_NEED_RESCHED_LAZY |
+ _TIF_NOTIFY_RESUME;
ulong th_flags;
th_flags = read_thread_flags();
--
2.51.0
next prev parent reply other threads:[~2025-10-17 15:30 UTC|newest]
Thread overview: 388+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-10-17 14:49 [PATCH 6.17 000/371] 6.17.4-rc1 review Greg Kroah-Hartman
2025-10-17 14:49 ` [PATCH 6.17 001/371] fs: always return zero on success from replace_fd() Greg Kroah-Hartman
2025-10-17 14:49 ` [PATCH 6.17 002/371] fscontext: do not consume log entries when returning -EMSGSIZE Greg Kroah-Hartman
2025-10-17 14:49 ` [PATCH 6.17 003/371] btrfs: fix the incorrect max_bytes value for find_lock_delalloc_range() Greg Kroah-Hartman
2025-10-17 15:42 ` David Sterba
2025-10-17 14:49 ` [PATCH 6.17 004/371] arm64: map [_text, _stext) virtual address range non-executable+read-only Greg Kroah-Hartman
2025-10-17 14:49 ` [PATCH 6.17 005/371] rseq: Protect event mask against membarrier IPI Greg Kroah-Hartman
2025-10-17 14:49 ` [PATCH 6.17 006/371] statmount: dont call path_put() under namespace semaphore Greg Kroah-Hartman
2025-10-17 14:49 ` [PATCH 6.17 007/371] listmount: " Greg Kroah-Hartman
2025-10-17 14:49 ` [PATCH 6.17 008/371] clocksource/drivers/clps711x: Fix resource leaks in error paths Greg Kroah-Hartman
2025-10-17 14:49 ` [PATCH 6.17 009/371] memcg: skip cgroup_file_notify if spinning is not allowed Greg Kroah-Hartman
2025-10-17 14:49 ` [PATCH 6.17 010/371] page_pool: Fix PP_MAGIC_MASK to avoid crashing on some 32-bit arches Greg Kroah-Hartman
2025-10-17 14:49 ` [PATCH 6.17 011/371] PM: runtime: Update kerneldoc return codes Greg Kroah-Hartman
2025-10-17 14:49 ` [PATCH 6.17 012/371] dma-mapping: fix direction in dma_alloc direction traces Greg Kroah-Hartman
2025-10-17 14:49 ` [PATCH 6.17 013/371] cpufreq: Make drivers using CPUFREQ_ETERNAL specify transition latency Greg Kroah-Hartman
2025-10-17 14:49 ` [PATCH 6.17 014/371] nfsd: unregister with rpcbind when deleting a transport Greg Kroah-Hartman
2025-10-17 14:49 ` [PATCH 6.17 015/371] KVM: x86: Add helper to retrieve current value of user return MSR Greg Kroah-Hartman
2025-10-17 14:49 ` [PATCH 6.17 016/371] KVM: SVM: Emulate PERF_CNTR_GLOBAL_STATUS_SET for PerfMonV2 Greg Kroah-Hartman
2025-10-17 14:49 ` [PATCH 6.17 017/371] iio: frequency: adf4350: Fix ADF4350_REG3_12BIT_CLKDIV_MODE Greg Kroah-Hartman
2025-10-17 14:49 ` [PATCH 6.17 018/371] media: v4l2-subdev: Fix alloc failure check in v4l2_subdev_call_state_try() Greg Kroah-Hartman
2025-10-17 14:49 ` [PATCH 6.17 019/371] asm-generic/io.h: Skip trace helpers if rwmmio events are disabled Greg Kroah-Hartman
2025-10-17 14:49 ` [PATCH 6.17 020/371] clk: npcm: select CONFIG_AUXILIARY_BUS Greg Kroah-Hartman
2025-10-17 14:49 ` [PATCH 6.17 021/371] clk: thead: th1520-ap: describe gate clocks with clk_gate Greg Kroah-Hartman
2025-10-17 14:49 ` [PATCH 6.17 022/371] clk: thead: th1520-ap: fix parent of padctrl0 clock Greg Kroah-Hartman
2025-10-17 14:49 ` [PATCH 6.17 023/371] clk: thead: Correct parent for DPU pixel clocks Greg Kroah-Hartman
2025-10-17 14:49 ` [PATCH 6.17 024/371] clk: renesas: r9a08g045: Add MSTOP for GPIO Greg Kroah-Hartman
2025-10-17 14:50 ` [PATCH 6.17 025/371] perf disasm: Avoid undefined behavior in incrementing NULL Greg Kroah-Hartman
2025-10-17 14:50 ` [PATCH 6.17 026/371] perf test trace_btf_enum: Skip if permissions are insufficient Greg Kroah-Hartman
2025-10-17 14:50 ` [PATCH 6.17 027/371] perf evsel: Avoid container_of on a NULL leader Greg Kroah-Hartman
2025-10-17 14:50 ` [PATCH 6.17 028/371] libperf event: Ensure tracing data is multiple of 8 sized Greg Kroah-Hartman
2025-10-17 14:50 ` [PATCH 6.17 029/371] clk: qcom: common: Fix NULL vs IS_ERR() check in qcom_cc_icc_register() Greg Kroah-Hartman
2025-10-17 14:50 ` [PATCH 6.17 030/371] clk: qcom: Select the intended config in QCS_DISPCC_615 Greg Kroah-Hartman
2025-10-17 14:50 ` [PATCH 6.17 031/371] perf parse-events: Handle fake PMUs in CPU terms Greg Kroah-Hartman
2025-10-17 14:50 ` [PATCH 6.17 032/371] clk: at91: peripheral: fix return value Greg Kroah-Hartman
2025-10-17 14:50 ` [PATCH 6.17 033/371] clk: renesas: cpg-mssr: Fix memory leak in cpg_mssr_reserved_init() Greg Kroah-Hartman
2025-10-17 14:50 ` [PATCH 6.17 034/371] perf: Completely remove possibility to override MAX_NR_CPUS Greg Kroah-Hartman
2025-10-17 14:50 ` [PATCH 6.17 035/371] perf drm_pmu: Fix fd_dir leaks in for_each_drm_fdinfo_in_dir() Greg Kroah-Hartman
2025-10-17 14:50 ` [PATCH 6.17 036/371] perf util: Fix compression checks returning -1 as bool Greg Kroah-Hartman
2025-10-17 14:50 ` [PATCH 6.17 037/371] rtc: x1205: Fix Xicor X1205 vendor prefix Greg Kroah-Hartman
2025-10-17 14:50 ` [PATCH 6.17 038/371] rtc: optee: fix memory leak on driver removal Greg Kroah-Hartman
2025-10-17 14:50 ` [PATCH 6.17 039/371] perf arm_spe: Correct setting remote access Greg Kroah-Hartman
2025-10-17 14:50 ` [PATCH 6.17 040/371] perf arm_spe: Correct memory level for " Greg Kroah-Hartman
2025-10-17 14:50 ` [PATCH 6.17 041/371] perf vendor events arm64 AmpereOneX: Fix typo - should be l1d_cache_access_prefetches Greg Kroah-Hartman
2025-10-17 14:50 ` [PATCH 6.17 042/371] perf test: AMD IBS swfilt skip kernel tests if paranoia is >1 Greg Kroah-Hartman
2025-10-17 14:50 ` [PATCH 6.17 043/371] perf test shell lbr: Avoid failures with perf event paranoia Greg Kroah-Hartman
2025-10-17 14:50 ` [PATCH 6.17 044/371] perf trace: Fix IS_ERR() vs NULL check bug Greg Kroah-Hartman
2025-10-17 14:50 ` [PATCH 6.17 045/371] perf session: Fix handling when buffer exceeds 2 GiB Greg Kroah-Hartman
2025-10-17 14:50 ` [PATCH 6.17 046/371] perf test: Dont leak workload gopipe in PERF_RECORD_* Greg Kroah-Hartman
2025-10-17 14:50 ` [PATCH 6.17 047/371] perf evsel: Fix uniquification when PMU given without suffix Greg Kroah-Hartman
2025-10-17 14:50 ` [PATCH 6.17 048/371] perf test: Avoid uncore_imc/clockticks in uniquification test Greg Kroah-Hartman
2025-10-17 14:50 ` [PATCH 6.17 049/371] perf evsel: Ensure the fallback message is always written to Greg Kroah-Hartman
2025-10-17 14:50 ` [PATCH 6.17 050/371] perf build-id: Ensure snprintf string is empty when size is 0 Greg Kroah-Hartman
2025-10-17 14:50 ` [PATCH 6.17 051/371] clk: mediatek: mt8195-infra_ao: Fix parent for infra_ao_hdmi_26m Greg Kroah-Hartman
2025-10-17 14:50 ` [PATCH 6.17 052/371] clk: mediatek: clk-mux: Do not pass flags to clk_mux_determine_rate_flags() Greg Kroah-Hartman
2025-10-17 14:50 ` [PATCH 6.17 053/371] clk: nxp: lpc18xx-cgu: convert from round_rate() to determine_rate() Greg Kroah-Hartman
2025-10-17 14:50 ` [PATCH 6.17 054/371] clk: nxp: Fix pll0 rate check condition in LPC18xx CGU driver Greg Kroah-Hartman
2025-10-17 14:50 ` [PATCH 6.17 055/371] clk: tegra: do not overallocate memory for bpmp clocks Greg Kroah-Hartman
2025-10-17 14:50 ` [PATCH 6.17 056/371] nfsd: fix assignment of ia_ctime.tv_nsec on delegated mtime update Greg Kroah-Hartman
2025-10-17 14:50 ` [PATCH 6.17 057/371] nfsd: ignore ATTR_DELEG when checking ia_valid before notify_change() Greg Kroah-Hartman
2025-10-17 14:50 ` [PATCH 6.17 058/371] vfs: add ATTR_CTIME_SET flag Greg Kroah-Hartman
2025-10-17 14:50 ` [PATCH 6.17 059/371] nfsd: use ATTR_CTIME_SET for delegated ctime updates Greg Kroah-Hartman
2025-10-17 14:50 ` [PATCH 6.17 060/371] nfsd: track original timestamps in nfs4_delegation Greg Kroah-Hartman
2025-10-17 14:50 ` [PATCH 6.17 061/371] nfsd: fix SETATTR updates for delegated timestamps Greg Kroah-Hartman
2025-10-17 14:50 ` [PATCH 6.17 062/371] nfsd: fix timestamp updates in CB_GETATTR Greg Kroah-Hartman
2025-10-17 14:50 ` [PATCH 6.17 063/371] tracing: Fix the bug where bpf_get_stackid returns -EFAULT on the ARM64 Greg Kroah-Hartman
2025-10-17 14:50 ` [PATCH 6.17 064/371] PM: core: Annotate loops walking device links as _srcu Greg Kroah-Hartman
2025-10-17 14:50 ` [PATCH 6.17 065/371] PM: core: Add two macros for walking device links Greg Kroah-Hartman
2025-10-17 14:50 ` [PATCH 6.17 066/371] PM: sleep: Do not wait on SYNC_STATE_ONLY " Greg Kroah-Hartman
2025-10-17 14:50 ` [PATCH 6.17 067/371] cpufreq: tegra186: Set target frequency for all cpus in policy Greg Kroah-Hartman
2025-10-17 14:50 ` [PATCH 6.17 068/371] scsi: mvsas: Fix use-after-free bugs in mvs_work_queue Greg Kroah-Hartman
2025-10-17 14:50 ` [PATCH 6.17 069/371] perf bpf-filter: Fix opts declaration on older libbpfs Greg Kroah-Hartman
2025-10-17 14:50 ` [PATCH 6.17 070/371] scsi: ufs: sysfs: Make HID attributes visible Greg Kroah-Hartman
2025-10-17 14:50 ` Greg Kroah-Hartman [this message]
2025-10-17 14:50 ` [PATCH 6.17 072/371] perf bpf_counter: Fix handling of cpumap fixing hybrid Greg Kroah-Hartman
2025-10-17 14:50 ` [PATCH 6.17 073/371] ASoC: SOF: ipc4-topology: Correct the minimum host DMA buffer size Greg Kroah-Hartman
2025-10-17 14:50 ` [PATCH 6.17 074/371] ASoC: SOF: ipc4-topology: Account for different ChainDMA host " Greg Kroah-Hartman
2025-10-17 14:50 ` [PATCH 6.17 075/371] ASoC: SOF: Intel: hda-pcm: Place the constraint on period time instead of buffer time Greg Kroah-Hartman
2025-10-17 14:50 ` [PATCH 6.17 076/371] LoongArch: Add cflag -fno-isolate-erroneous-paths-dereference Greg Kroah-Hartman
2025-10-17 14:50 ` [PATCH 6.17 077/371] LoongArch: Fix build error for LTO with LLVM-18 Greg Kroah-Hartman
2025-10-17 14:50 ` [PATCH 6.17 078/371] LoongArch: Init acpi_gbl_use_global_lock to false Greg Kroah-Hartman
2025-10-17 14:50 ` [PATCH 6.17 079/371] ASoC: SOF: Intel: Read the LLP via the associated Link DMA channel Greg Kroah-Hartman
2025-10-17 14:50 ` [PATCH 6.17 080/371] net: usb: lan78xx: Fix lost EEPROM read timeout error(-ETIMEDOUT) in lan78xx_read_raw_eeprom Greg Kroah-Hartman
2025-10-17 14:50 ` [PATCH 6.17 081/371] net/mlx4: prevent potential use after free in mlx4_en_do_uc_filter() Greg Kroah-Hartman
2025-10-17 14:50 ` [PATCH 6.17 082/371] drm/xe/hw_engine_group: Fix double write lock release in error path Greg Kroah-Hartman
2025-10-17 14:50 ` [PATCH 6.17 083/371] drm/xe/i2c: Dont rely on d3cold.allowed flag in system PM path Greg Kroah-Hartman
2025-10-17 14:50 ` [PATCH 6.17 084/371] s390/cio: Update purge function to unregister the unused subchannels Greg Kroah-Hartman
2025-10-17 14:51 ` [PATCH 6.17 085/371] drm/vmwgfx: Fix a null-ptr access in the cursor snooper Greg Kroah-Hartman
2025-10-17 14:51 ` [PATCH 6.17 086/371] drm/vmwgfx: Fix Use-after-free in validation Greg Kroah-Hartman
2025-10-17 14:51 ` [PATCH 6.17 087/371] drm/vmwgfx: Fix copy-paste typo " Greg Kroah-Hartman
2025-10-17 14:51 ` [PATCH 6.17 088/371] net/sctp: fix a null dereference in sctp_disposition sctp_sf_do_5_1D_ce() Greg Kroah-Hartman
2025-10-17 14:51 ` [PATCH 6.17 089/371] tcp: Dont call reqsk_fastopen_remove() in tcp_conn_request() Greg Kroah-Hartman
2025-10-17 14:51 ` [PATCH 6.17 090/371] net: mscc: ocelot: Fix use-after-free caused by cyclic delayed work Greg Kroah-Hartman
2025-10-17 14:51 ` [PATCH 6.17 091/371] selftest: net: ovpn: Fix uninit return values Greg Kroah-Hartman
2025-10-17 14:51 ` [PATCH 6.17 092/371] ice: ice_adapter: release xa entry on adapter allocation failure Greg Kroah-Hartman
2025-10-17 14:51 ` [PATCH 6.17 093/371] net: fsl_pq_mdio: Fix device node reference leak in fsl_pq_mdio_probe Greg Kroah-Hartman
2025-10-17 14:51 ` [PATCH 6.17 094/371] tools build: Align warning options with perf Greg Kroah-Hartman
2025-10-17 14:51 ` [PATCH 6.17 095/371] perf python: split Clang options when invoking Popen Greg Kroah-Hartman
2025-10-17 14:51 ` [PATCH 6.17 096/371] tcp: take care of zero tp->window_clamp in tcp_set_rcvlowat() Greg Kroah-Hartman
2025-10-17 14:51 ` [PATCH 6.17 097/371] perf tools: Fix arm64 libjvmti build by generating unistd_64.h Greg Kroah-Hartman
2025-10-17 14:51 ` [PATCH 6.17 098/371] mailbox: zynqmp-ipi: Remove redundant mbox_controller_unregister() call Greg Kroah-Hartman
2025-10-17 14:51 ` [PATCH 6.17 099/371] mailbox: zynqmp-ipi: Remove dev.parent check in zynqmp_ipi_free_mboxes Greg Kroah-Hartman
2025-10-17 14:51 ` [PATCH 6.17 100/371] mailbox: zynqmp-ipi: Fix out-of-bounds access in mailbox cleanup loop Greg Kroah-Hartman
2025-10-17 14:51 ` [PATCH 6.17 101/371] mailbox: zynqmp-ipi: Fix SGI cleanup on unbind Greg Kroah-Hartman
2025-10-17 14:51 ` [PATCH 6.17 102/371] bpf: Fix metadata_dst leak __bpf_redirect_neigh_v{4,6} Greg Kroah-Hartman
2025-10-17 14:51 ` [PATCH 6.17 103/371] net: mdio: mdio-i2c: Hold the i2c bus lock during smbus transactions Greg Kroah-Hartman
2025-10-17 14:51 ` [PATCH 6.17 104/371] net: sparx5/lan969x: fix flooding configuration on bridge join/leave Greg Kroah-Hartman
2025-10-17 14:51 ` [PATCH 6.17 105/371] net/mlx5: Prevent tunnel mode conflicts between FDB and NIC IPsec tables Greg Kroah-Hartman
2025-10-17 14:51 ` [PATCH 6.17 106/371] net/mlx5e: Prevent tunnel reformat when tunnel mode not allowed Greg Kroah-Hartman
2025-10-17 14:51 ` [PATCH 6.17 107/371] mailbox: mtk-cmdq: Remove pm_runtime APIs from cmdq_mbox_send_data() Greg Kroah-Hartman
2025-10-17 14:51 ` [PATCH 6.17 108/371] drm/amdgpu: Add additional DCE6 SCL registers Greg Kroah-Hartman
2025-10-17 14:51 ` [PATCH 6.17 109/371] drm/amd/display: Add missing DCE6 SCL_HORZ_FILTER_INIT* SRIs Greg Kroah-Hartman
2025-10-17 14:51 ` [PATCH 6.17 110/371] drm/amd/display: Properly clear SCL_*_FILTER_CONTROL on DCE6 Greg Kroah-Hartman
2025-10-17 14:51 ` [PATCH 6.17 111/371] drm/amd/display: Properly disable scaling " Greg Kroah-Hartman
2025-10-17 14:51 ` [PATCH 6.17 112/371] drm/amd/display: Disable scaling on DCE6 for now Greg Kroah-Hartman
2025-10-17 14:51 ` [PATCH 6.17 113/371] drm/amdkfd: Fix kfd process ref leaking when userptr unmapping Greg Kroah-Hartman
2025-10-17 14:51 ` [PATCH 6.17 114/371] net: pse-pd: tps23881: Fix current measurement scaling Greg Kroah-Hartman
2025-10-17 14:51 ` [PATCH 6.17 115/371] crypto: skcipher - Fix reqsize handling Greg Kroah-Hartman
2025-10-17 14:51 ` [PATCH 6.17 116/371] netfilter: nft_objref: validate objref and objrefmap expressions Greg Kroah-Hartman
2025-10-17 14:51 ` [PATCH 6.17 117/371] bridge: br_vlan_fill_forward_path_pvid: use br_vlan_group_rcu() Greg Kroah-Hartman
2025-10-17 14:51 ` [PATCH 6.17 118/371] selftests: netfilter: nft_fib.sh: fix spurious test failures Greg Kroah-Hartman
2025-10-17 14:51 ` [PATCH 6.17 119/371] selftests: netfilter: query conntrack state to check for port clash resolution Greg Kroah-Hartman
2025-10-17 14:51 ` [PATCH 6.17 120/371] io_uring/zcrx: increment fallback loop src offset Greg Kroah-Hartman
2025-10-17 14:51 ` [PATCH 6.17 121/371] crypto: essiv - Check ssize for decryption and in-place encryption Greg Kroah-Hartman
2025-10-17 14:51 ` [PATCH 6.17 122/371] net: airoha: Fix loopback mode configuration for GDM2 port Greg Kroah-Hartman
2025-10-17 14:51 ` [PATCH 6.17 123/371] cifs: Fix copy_to_iter return value check Greg Kroah-Hartman
2025-10-17 14:51 ` [PATCH 6.17 124/371] smb: client: fix missing timestamp updates after utime(2) Greg Kroah-Hartman
2025-10-17 14:51 ` [PATCH 6.17 125/371] rtc: isl12022: Fix initial enable_irq/disable_irq balance Greg Kroah-Hartman
2025-10-17 14:51 ` [PATCH 6.17 126/371] cifs: Query EA $LXMOD in cifs_query_path_info() for WSL reparse points Greg Kroah-Hartman
2025-10-17 14:51 ` [PATCH 6.17 127/371] tpm_tis: Fix incorrect arguments in tpm_tis_probe_irq_single Greg Kroah-Hartman
2025-10-17 14:51 ` [PATCH 6.17 128/371] gpio: wcd934x: mark the GPIO controller as sleeping Greg Kroah-Hartman
2025-10-17 14:51 ` [PATCH 6.17 129/371] bpf: Avoid RCU context warning when unpinning htab with internal structs Greg Kroah-Hartman
2025-10-17 14:51 ` [PATCH 6.17 130/371] kbuild: always create intermediate vmlinux.unstripped Greg Kroah-Hartman
2025-10-17 14:51 ` [PATCH 6.17 131/371] kbuild: keep .modinfo section in vmlinux.unstripped Greg Kroah-Hartman
2025-10-17 14:51 ` [PATCH 6.17 132/371] kbuild: Restore pattern to avoid stripping .rela.dyn from vmlinux Greg Kroah-Hartman
2025-10-17 14:51 ` [PATCH 6.17 133/371] kbuild: Add .rel.* strip pattern for vmlinux Greg Kroah-Hartman
2025-10-17 14:51 ` [PATCH 6.17 134/371] s390: vmlinux.lds.S: Reorder sections Greg Kroah-Hartman
2025-10-17 14:51 ` [PATCH 6.17 135/371] s390/vmlinux.lds.S: Move .vmlinux.info to end of allocatable sections Greg Kroah-Hartman
2025-10-17 14:51 ` [PATCH 6.17 136/371] ACPICA: acpidump: drop ACPI_NONSTRING attribute from file_name Greg Kroah-Hartman
2025-10-17 14:51 ` [PATCH 6.17 137/371] ACPI: property: Fix buffer properties extraction for subnodes Greg Kroah-Hartman
2025-10-17 14:51 ` [PATCH 6.17 138/371] ACPI: TAD: Add missing sysfs_remove_group() for ACPI_TAD_RT Greg Kroah-Hartman
2025-10-17 14:51 ` [PATCH 6.17 139/371] ACPICA: Debugger: drop ACPI_NONSTRING attribute from name_seg Greg Kroah-Hartman
2025-10-17 14:51 ` [PATCH 6.17 140/371] ACPI: debug: fix signedness issues in read/write helpers Greg Kroah-Hartman
2025-10-17 14:51 ` [PATCH 6.17 141/371] ACPI: battery: Add synchronization between interface updates Greg Kroah-Hartman
2025-10-17 14:51 ` [PATCH 6.17 142/371] arm64: dts: qcom: msm8916: Add missing MDSS reset Greg Kroah-Hartman
2025-10-17 14:51 ` [PATCH 6.17 143/371] arm64: dts: qcom: msm8939: " Greg Kroah-Hartman
2025-10-17 14:51 ` [PATCH 6.17 144/371] arm64: dts: qcom: sdm845: Fix slimbam num-channels/ees Greg Kroah-Hartman
2025-10-17 14:52 ` [PATCH 6.17 145/371] arm64: dts: qcom: x1e80100-pmics: Disable pm8010 by default Greg Kroah-Hartman
2025-10-17 14:52 ` [PATCH 6.17 146/371] arm64: dts: ti: k3-am62a-main: Fix main padcfg length Greg Kroah-Hartman
2025-10-17 14:52 ` [PATCH 6.17 147/371] arm64: dts: ti: k3-am62p: Fix supported hardware for 1GHz OPP Greg Kroah-Hartman
2025-10-17 14:52 ` [PATCH 6.17 148/371] arm64: kprobes: call set_memory_rox() for kprobe page Greg Kroah-Hartman
2025-10-17 14:52 ` [PATCH 6.17 149/371] arm64: mte: Do not flag the zero page as PG_mte_tagged Greg Kroah-Hartman
2025-10-17 14:52 ` [PATCH 6.17 150/371] ARM: AM33xx: Implement TI advisory 1.0.36 (EMU0/EMU1 pins state on reset) Greg Kroah-Hartman
2025-10-17 14:52 ` [PATCH 6.17 151/371] ARM: OMAP2+: pm33xx-core: ix device node reference leaks in amx3_idle_init Greg Kroah-Hartman
2025-10-17 14:52 ` [PATCH 6.17 152/371] firmware: arm_scmi: quirk: Prevent writes to string constants Greg Kroah-Hartman
2025-10-17 14:52 ` [PATCH 6.17 153/371] perf/arm-cmn: Fix CMN S3 DTM offset Greg Kroah-Hartman
2025-10-17 14:52 ` [PATCH 6.17 154/371] KVM: s390: Fix to clear PTE when discarding a swapped page Greg Kroah-Hartman
2025-10-17 14:52 ` [PATCH 6.17 155/371] KVM: arm64: Fix debug checking for np-guests using huge mappings Greg Kroah-Hartman
2025-10-17 14:52 ` [PATCH 6.17 156/371] KVM: arm64: Fix page leak in user_mem_abort() Greg Kroah-Hartman
2025-10-17 14:52 ` [PATCH 6.17 157/371] x86/kvm: Force legacy PCI hole to UC when overriding MTRRs for TDX/SNP Greg Kroah-Hartman
2025-10-17 14:52 ` [PATCH 6.17 158/371] KVM: SVM: Re-load current, not host, TSC_AUX on #VMEXIT from SEV-ES guest Greg Kroah-Hartman
2025-10-17 14:52 ` [PATCH 6.17 159/371] KVM: TDX: Fix uninitialized error code for __tdx_bringup() Greg Kroah-Hartman
2025-10-17 14:52 ` [PATCH 6.17 160/371] dt-bindings: phy: rockchip-inno-csi-dphy: make power-domains non-required Greg Kroah-Hartman
2025-10-17 14:52 ` [PATCH 6.17 161/371] xen: take system_transition_mutex on suspend Greg Kroah-Hartman
2025-10-17 14:52 ` [PATCH 6.17 162/371] xen/events: Cleanup find_virq() return codes Greg Kroah-Hartman
2025-10-17 14:52 ` [PATCH 6.17 163/371] xen/manage: Fix suspend error path Greg Kroah-Hartman
2025-10-17 14:52 ` [PATCH 6.17 164/371] xen/events: Return -EEXIST for bound VIRQs Greg Kroah-Hartman
2025-10-17 14:52 ` [PATCH 6.17 165/371] xen/events: Update virq_to_irq on migration Greg Kroah-Hartman
2025-10-17 14:52 ` [PATCH 6.17 166/371] firmware: exynos-acpm: fix PMIC returned errno Greg Kroah-Hartman
2025-10-17 14:52 ` [PATCH 6.17 167/371] firmware: meson_sm: fix device leak at probe Greg Kroah-Hartman
2025-10-17 14:52 ` [PATCH 6.17 168/371] media: cec: extron-da-hd-4k-plus: drop external-module make commands Greg Kroah-Hartman
2025-10-17 14:52 ` [PATCH 6.17 169/371] media: cx18: Add missing check after DMA map Greg Kroah-Hartman
2025-10-17 14:52 ` [PATCH 6.17 170/371] media: i2c: mt9p031: fix mbus code initialization Greg Kroah-Hartman
2025-10-17 14:52 ` [PATCH 6.17 171/371] media: i2c: mt9v111: fix incorrect type for ret Greg Kroah-Hartman
2025-10-17 14:52 ` [PATCH 6.17 172/371] media: mc: Fix MUST_CONNECT handling for pads with no links Greg Kroah-Hartman
2025-10-17 14:52 ` [PATCH 6.17 173/371] media: pci: ivtv: Add missing check after DMA map Greg Kroah-Hartman
2025-10-17 14:52 ` [PATCH 6.17 174/371] media: pci: mg4b: fix uninitialized iio scan data Greg Kroah-Hartman
2025-10-17 14:52 ` [PATCH 6.17 175/371] media: platform: mtk-mdp3: Add missing MT8188 compatible to comp_dt_ids Greg Kroah-Hartman
2025-10-17 14:52 ` [PATCH 6.17 176/371] media: s5p-mfc: remove an unused/uninitialized variable Greg Kroah-Hartman
2025-10-17 14:52 ` [PATCH 6.17 177/371] media: staging/ipu7: fix isys device runtime PM usage in firmware closing Greg Kroah-Hartman
2025-10-17 14:52 ` [PATCH 6.17 178/371] media: uvcvideo: Avoid variable shadowing in uvc_ctrl_cleanup_fh Greg Kroah-Hartman
2025-10-17 14:52 ` [PATCH 6.17 179/371] media: venus: firmware: Use correct reset sequence for IRIS2 Greg Kroah-Hartman
2025-10-17 14:52 ` [PATCH 6.17 180/371] media: venus: pm_helpers: add fallback for the opp-table Greg Kroah-Hartman
2025-10-17 14:52 ` [PATCH 6.17 181/371] media: vivid: fix disappearing <Vendor Command With ID> messages Greg Kroah-Hartman
2025-10-17 14:52 ` [PATCH 6.17 182/371] media: vsp1: Export missing vsp1_isp_free_buffer symbol Greg Kroah-Hartman
2025-10-17 14:52 ` [PATCH 6.17 183/371] media: ti: j721e-csi2rx: Use devm_of_platform_populate Greg Kroah-Hartman
2025-10-17 14:52 ` [PATCH 6.17 184/371] media: ti: j721e-csi2rx: Fix source subdev link creation Greg Kroah-Hartman
2025-10-17 14:52 ` [PATCH 6.17 185/371] media: lirc: Fix error handling in lirc_register() Greg Kroah-Hartman
2025-10-17 14:52 ` [PATCH 6.17 186/371] drm/exynos: exynos7_drm_decon: remove ctx->suspended Greg Kroah-Hartman
2025-10-17 14:52 ` [PATCH 6.17 187/371] drm/panthor: Fix memory leak in panthor_ioctl_group_create() Greg Kroah-Hartman
2025-10-17 14:52 ` [PATCH 6.17 188/371] drm/msm/a6xx: Fix PDC sleep sequence Greg Kroah-Hartman
2025-10-17 14:52 ` [PATCH 6.17 189/371] drm/rcar-du: dsi: Fix 1/2/3 lane support Greg Kroah-Hartman
2025-10-17 14:52 ` [PATCH 6.17 190/371] drm/nouveau: fix bad ret code in nouveau_bo_move_prep Greg Kroah-Hartman
2025-10-17 14:52 ` [PATCH 6.17 191/371] drm/xe/uapi: loosen used tracking restriction Greg Kroah-Hartman
2025-10-17 14:52 ` [PATCH 6.17 192/371] drm/amd/display: Incorrect Mirror Cositing Greg Kroah-Hartman
2025-10-17 14:52 ` [PATCH 6.17 193/371] drm/amd/display: Enable Dynamic DTBCLK Switch Greg Kroah-Hartman
2025-10-17 14:52 ` [PATCH 6.17 194/371] drm/amd/display: Fix unsafe uses of kernel mode FPU Greg Kroah-Hartman
2025-10-17 14:52 ` [PATCH 6.17 195/371] blk-crypto: fix missing blktrace bio split events Greg Kroah-Hartman
2025-10-17 14:52 ` [PATCH 6.17 196/371] btrfs: avoid potential out-of-bounds in btrfs_encode_fh() Greg Kroah-Hartman
2025-10-17 14:52 ` [PATCH 6.17 197/371] bus: mhi: ep: Fix chained transfer handling in read path Greg Kroah-Hartman
2025-10-17 14:52 ` [PATCH 6.17 198/371] bus: mhi: host: Do not use uninitialized dev pointer in mhi_init_irq_setup() Greg Kroah-Hartman
2025-10-17 14:52 ` [PATCH 6.17 199/371] cdx: Fix device node reference leak in cdx_msi_domain_init Greg Kroah-Hartman
2025-10-17 14:52 ` [PATCH 6.17 200/371] clk: qcom: tcsrcc-x1e80100: Set the bi_tcxo as parent to eDP refclk Greg Kroah-Hartman
2025-10-17 14:52 ` [PATCH 6.17 201/371] clk: samsung: exynos990: Use PLL_CON0 for PLL parent muxes Greg Kroah-Hartman
2025-10-17 14:52 ` [PATCH 6.17 202/371] clk: samsung: exynos990: Fix CMU_TOP mux/div bit widths Greg Kroah-Hartman
2025-10-17 14:52 ` [PATCH 6.17 203/371] clk: samsung: exynos990: Replace bogus divs with fixed-factor clocks Greg Kroah-Hartman
2025-10-17 14:52 ` [PATCH 6.17 204/371] copy_sighand: Handle architectures where sizeof(unsigned long) < sizeof(u64) Greg Kroah-Hartman
2025-10-17 14:53 ` [PATCH 6.17 205/371] cpufreq: CPPC: Avoid using CPUFREQ_ETERNAL as transition delay Greg Kroah-Hartman
2025-10-17 14:53 ` [PATCH 6.17 206/371] cpufreq: intel_pstate: Fix object lifecycle issue in update_qos_request() Greg Kroah-Hartman
2025-10-17 14:53 ` [PATCH 6.17 207/371] crypto: aspeed - Fix dma_unmap_sg() direction Greg Kroah-Hartman
2025-10-17 14:53 ` [PATCH 6.17 208/371] crypto: atmel " Greg Kroah-Hartman
2025-10-17 14:53 ` [PATCH 6.17 209/371] crypto: rockchip - Fix dma_unmap_sg() nents value Greg Kroah-Hartman
2025-10-17 14:53 ` [PATCH 6.17 210/371] eventpoll: Replace rwlock with spinlock Greg Kroah-Hartman
2025-10-17 14:53 ` [PATCH 6.17 211/371] fbdev: Fix logic error in "offb" name match Greg Kroah-Hartman
2025-10-17 14:53 ` [PATCH 6.17 212/371] fs/ntfs3: Fix a resource leak bug in wnd_extend() Greg Kroah-Hartman
2025-10-17 14:53 ` [PATCH 6.17 213/371] fs: quota: create dedicated workqueue for quota_release_work Greg Kroah-Hartman
2025-10-17 14:53 ` [PATCH 6.17 214/371] fsnotify: pass correct offset to fsnotify_mmap_perm() Greg Kroah-Hartman
2025-10-17 14:53 ` [PATCH 6.17 215/371] fuse: fix possibly missing fuse_copy_finish() call in fuse_notify() Greg Kroah-Hartman
2025-10-17 14:53 ` [PATCH 6.17 216/371] fuse: fix livelock in synchronous file put from fuseblk workers Greg Kroah-Hartman
2025-10-17 14:53 ` [PATCH 6.17 217/371] gpio: mpfs: fix setting gpio direction to output Greg Kroah-Hartman
2025-10-17 14:53 ` [PATCH 6.17 218/371] i3c: Fix default I2C adapter timeout value Greg Kroah-Hartman
2025-10-17 14:53 ` [PATCH 6.17 219/371] iio/adc/pac1934: fix channel disable configuration Greg Kroah-Hartman
2025-10-17 14:53 ` [PATCH 6.17 220/371] iio: dac: ad5360: use int type to store negative error codes Greg Kroah-Hartman
2025-10-17 14:53 ` [PATCH 6.17 221/371] iio: dac: ad5421: " Greg Kroah-Hartman
2025-10-17 14:53 ` [PATCH 6.17 222/371] iio: frequency: adf4350: Fix prescaler usage Greg Kroah-Hartman
2025-10-17 14:53 ` [PATCH 6.17 223/371] iio: xilinx-ams: Fix AMS_ALARM_THR_DIRECT_MASK Greg Kroah-Hartman
2025-10-17 14:53 ` [PATCH 6.17 224/371] iio: xilinx-ams: Unmask interrupts after updating alarms Greg Kroah-Hartman
2025-10-17 14:53 ` [PATCH 6.17 225/371] init: handle bootloader identifier in kernel parameters Greg Kroah-Hartman
2025-10-17 14:53 ` [PATCH 6.17 226/371] iio: imu: inv_icm42600: Simplify pm_runtime setup Greg Kroah-Hartman
2025-10-17 14:53 ` [PATCH 6.17 227/371] iio: imu: inv_icm42600: Drop redundant pm_runtime reinitialization in resume Greg Kroah-Hartman
2025-10-17 14:53 ` [PATCH 6.17 228/371] iio: imu: inv_icm42600: Avoid configuring if already pm_runtime suspended Greg Kroah-Hartman
2025-10-17 14:53 ` [PATCH 6.17 229/371] iommu/vt-d: PRS isnt usable if PDS isnt supported Greg Kroah-Hartman
2025-10-17 14:53 ` [PATCH 6.17 230/371] ipmi: Rework user message limit handling Greg Kroah-Hartman
2025-10-17 14:53 ` [PATCH 6.17 231/371] ipmi:msghandler:Change seq_lock to a mutex Greg Kroah-Hartman
2025-10-17 14:53 ` [PATCH 6.17 232/371] kernel/sys.c: fix the racy usage of task_lock(tsk->group_leader) in sys_prlimit64() paths Greg Kroah-Hartman
2025-10-17 14:53 ` [PATCH 6.17 233/371] KEYS: trusted_tpm1: Compare HMAC values in constant time Greg Kroah-Hartman
2025-10-17 14:53 ` [PATCH 6.17 234/371] kho: only fill kimage if KHO is finalized Greg Kroah-Hartman
2025-10-17 14:53 ` [PATCH 6.17 235/371] lib/genalloc: fix device leak in of_gen_pool_get() Greg Kroah-Hartman
2025-10-17 14:53 ` [PATCH 6.17 236/371] loop: fix backing file reference leak on validation error Greg Kroah-Hartman
2025-10-17 14:53 ` [PATCH 6.17 237/371] md: fix mssing blktrace bio split events Greg Kroah-Hartman
2025-10-17 14:53 ` [PATCH 6.17 238/371] of: unittest: Fix device reference count leak in of_unittest_pci_node_verify Greg Kroah-Hartman
2025-10-17 14:53 ` [PATCH 6.17 239/371] openat2: dont trigger automounts with RESOLVE_NO_XDEV Greg Kroah-Hartman
2025-10-17 14:53 ` [PATCH 6.17 240/371] padata: Reset next CPU when reorder sequence wraps around Greg Kroah-Hartman
2025-10-17 14:53 ` [PATCH 6.17 241/371] parisc: dont reference obsolete termio struct for TC* constants Greg Kroah-Hartman
2025-10-17 14:53 ` [PATCH 6.17 242/371] parisc: Remove spurious if statement from raw_copy_from_user() Greg Kroah-Hartman
2025-10-17 14:53 ` [PATCH 6.17 243/371] nvme-pci: Add TUXEDO IBS Gen8 to Samsung sleep quirk Greg Kroah-Hartman
2025-10-17 14:53 ` [PATCH 6.17 244/371] pinctrl: samsung: Drop unused S3C24xx driver data Greg Kroah-Hartman
2025-10-17 14:53 ` [PATCH 6.17 245/371] PM: EM: Fix late boot with holes in CPU topology Greg Kroah-Hartman
2025-10-17 14:53 ` [PATCH 6.17 246/371] PM: hibernate: Fix hybrid-sleep Greg Kroah-Hartman
2025-10-17 14:53 ` [PATCH 6.17 247/371] PM: hibernate: Restrict GFP mask in power_down() Greg Kroah-Hartman
2025-10-17 14:53 ` [PATCH 6.17 248/371] power: supply: max77976_charger: fix constant current reporting Greg Kroah-Hartman
2025-10-17 14:53 ` [PATCH 6.17 249/371] powerpc/powernv/pci: Fix underflow and leak issue Greg Kroah-Hartman
2025-10-17 14:53 ` [PATCH 6.17 250/371] powerpc/pseries/msi: Fix potential " Greg Kroah-Hartman
2025-10-17 14:53 ` [PATCH 6.17 251/371] pwm: berlin: Fix wrong register in suspend/resume Greg Kroah-Hartman
2025-10-17 14:53 ` [PATCH 6.17 252/371] pwm: Fix incorrect variable used in error message Greg Kroah-Hartman
2025-10-17 14:53 ` [PATCH 6.17 253/371] Revert "ipmi: fix msg stack when IPMI is disconnected" Greg Kroah-Hartman
2025-10-17 14:53 ` [PATCH 6.17 254/371] riscv: use an atomic xchg in pudp_huge_get_and_clear() Greg Kroah-Hartman
2025-10-17 18:13 ` Jiri Slaby
2025-10-19 12:01 ` Greg Kroah-Hartman
2025-10-17 14:53 ` [PATCH 6.17 255/371] sched/deadline: Fix race in push_dl_task() Greg Kroah-Hartman
2025-10-17 14:53 ` [PATCH 6.17 256/371] scsi: hpsa: Fix potential memory leak in hpsa_big_passthru_ioctl() Greg Kroah-Hartman
2025-10-17 14:53 ` [PATCH 6.17 257/371] scsi: sd: Fix build warning in sd_revalidate_disk() Greg Kroah-Hartman
2025-10-17 14:53 ` [PATCH 6.17 258/371] sctp: Fix MAC comparison to be constant-time Greg Kroah-Hartman
2025-10-17 14:53 ` [PATCH 6.17 259/371] smb client: fix bug with newly created file in cached dir Greg Kroah-Hartman
2025-10-17 14:53 ` [PATCH 6.17 260/371] sparc64: fix hugetlb for sun4u Greg Kroah-Hartman
2025-10-17 14:53 ` [PATCH 6.17 261/371] sparc: fix error handling in scan_one_device() Greg Kroah-Hartman
2025-10-17 14:53 ` [PATCH 6.17 262/371] xtensa: simdisk: add input size check in proc_write_simdisk Greg Kroah-Hartman
2025-10-17 14:53 ` [PATCH 6.17 263/371] xsk: Harden userspace-supplied xdp_desc validation Greg Kroah-Hartman
2025-10-17 14:53 ` [PATCH 6.17 264/371] mtd: rawnand: fsmc: Default to autodetect buswidth Greg Kroah-Hartman
2025-10-17 14:54 ` [PATCH 6.17 265/371] mtd: nand: raw: gpmi: fix clocks when CONFIG_PM=N Greg Kroah-Hartman
2025-10-17 14:54 ` [PATCH 6.17 266/371] mmc: core: SPI mode remove cmd7 Greg Kroah-Hartman
2025-10-17 14:54 ` [PATCH 6.17 267/371] mmc: mmc_spi: multiple block read remove read crc ack Greg Kroah-Hartman
2025-10-17 14:54 ` [PATCH 6.17 268/371] memory: samsung: exynos-srom: Fix of_iomap leak in exynos_srom_probe Greg Kroah-Hartman
2025-10-17 14:54 ` [PATCH 6.17 269/371] memory: stm32_omm: Fix req2ack update test Greg Kroah-Hartman
2025-10-17 14:54 ` [PATCH 6.17 270/371] rtc: interface: Ensure alarm irq is enabled when UIE is enabled Greg Kroah-Hartman
2025-10-17 14:54 ` [PATCH 6.17 271/371] rtc: interface: Fix long-standing race when setting alarm Greg Kroah-Hartman
2025-10-17 14:54 ` [PATCH 6.17 272/371] rseq/selftests: Use weak symbol reference, not definition, to link with glibc Greg Kroah-Hartman
2025-10-17 14:54 ` [PATCH 6.17 273/371] PCI: xilinx-nwl: Fix ECAM programming Greg Kroah-Hartman
2025-10-17 14:54 ` [PATCH 6.17 274/371] PCI: tegra: Convert struct tegra_msi mask_lock into raw spinlock Greg Kroah-Hartman
2025-10-17 14:54 ` [PATCH 6.17 275/371] PCI/sysfs: Ensure devices are powered for config reads Greg Kroah-Hartman
2025-10-17 14:54 ` [PATCH 6.17 276/371] PCI/IOV: Add PCI rescan-remove locking when enabling/disabling SR-IOV Greg Kroah-Hartman
2025-10-17 14:54 ` [PATCH 6.17 277/371] PCI/ERR: Fix uevent on failure to recover Greg Kroah-Hartman
2025-10-17 14:54 ` [PATCH 6.17 278/371] PCI/AER: Fix missing uevent on recovery when a reset is requested Greg Kroah-Hartman
2025-10-17 14:54 ` [PATCH 6.17 279/371] PCI/AER: Support errors introduced by PCIe r6.0 Greg Kroah-Hartman
2025-10-17 14:54 ` [PATCH 6.17 280/371] PCI: Ensure relaxed tail alignment does not increase min_align Greg Kroah-Hartman
2025-10-17 14:54 ` [PATCH 6.17 281/371] PCI: Fix failure detection during resource resize Greg Kroah-Hartman
2025-10-17 14:54 ` [PATCH 6.17 282/371] PCI: j721e: Fix module autoloading Greg Kroah-Hartman
2025-10-17 14:54 ` [PATCH 6.17 283/371] PCI: j721e: Fix programming sequence of "strap" settings Greg Kroah-Hartman
2025-10-17 14:54 ` [PATCH 6.17 284/371] PCI: keystone: Use devm_request_irq() to free "ks-pcie-error-irq" on exit Greg Kroah-Hartman
2025-10-17 14:54 ` [PATCH 6.17 285/371] PCI: rcar-gen4: Fix PHY initialization Greg Kroah-Hartman
2025-10-17 14:54 ` [PATCH 6.17 286/371] PCI: rcar-host: Drop PMSR spinlock Greg Kroah-Hartman
2025-10-17 14:54 ` [PATCH 6.17 287/371] PCI: rcar-host: Convert struct rcar_msi mask_lock into raw spinlock Greg Kroah-Hartman
2025-10-17 14:54 ` [PATCH 6.17 288/371] PCI: tegra194: Fix broken tegra_pcie_ep_raise_msi_irq() Greg Kroah-Hartman
2025-10-17 14:54 ` [PATCH 6.17 289/371] PCI: tegra194: Handle errors in BPMP response Greg Kroah-Hartman
2025-10-17 14:54 ` [PATCH 6.17 290/371] PCI: tegra194: Reset BARs when running in PCIe endpoint mode Greg Kroah-Hartman
2025-10-17 14:54 ` [PATCH 6.17 291/371] PCI/pwrctrl: Fix device leak at registration Greg Kroah-Hartman
2025-10-17 14:54 ` [PATCH 6.17 292/371] PCI/pwrctrl: Fix device and OF node leak at bus scan Greg Kroah-Hartman
2025-10-17 14:54 ` [PATCH 6.17 293/371] PCI/pwrctrl: Fix device leak at device stop Greg Kroah-Hartman
2025-10-17 14:54 ` [PATCH 6.17 294/371] spi: cadence-quadspi: Flush posted register writes before INDAC access Greg Kroah-Hartman
2025-10-17 14:54 ` [PATCH 6.17 295/371] spi: cadence-quadspi: Flush posted register writes before DAC access Greg Kroah-Hartman
2025-10-17 14:54 ` [PATCH 6.17 296/371] spi: cadence-quadspi: Fix cqspi_setup_flash() Greg Kroah-Hartman
2025-10-17 14:54 ` [PATCH 6.17 297/371] xfs: use deferred intent items for reaping crosslinked blocks Greg Kroah-Hartman
2025-10-17 14:54 ` [PATCH 6.17 298/371] x86/fred: Remove ENDBR64 from FRED entry points Greg Kroah-Hartman
2025-10-17 14:54 ` [PATCH 6.17 299/371] x86/umip: Check that the instruction opcode is at least two bytes Greg Kroah-Hartman
2025-10-17 14:54 ` [PATCH 6.17 300/371] x86/umip: Fix decoding of register forms of 0F 01 (SGDT and SIDT aliases) Greg Kroah-Hartman
2025-10-17 14:54 ` [PATCH 6.17 301/371] mptcp: pm: in-kernel: usable client side with C-flag Greg Kroah-Hartman
2025-10-17 14:54 ` [PATCH 6.17 302/371] mptcp: reset blackhole on success with non-loopback ifaces Greg Kroah-Hartman
2025-10-17 14:54 ` [PATCH 6.17 303/371] selftests: mptcp: join: validate C-flag + def limit Greg Kroah-Hartman
2025-10-17 14:54 ` [PATCH 6.17 304/371] s390/cio/ioasm: Fix __xsch() condition code handling Greg Kroah-Hartman
2025-10-17 14:54 ` [PATCH 6.17 305/371] s390/dasd: enforce dma_alignment to ensure proper buffer validation Greg Kroah-Hartman
2025-10-17 14:54 ` [PATCH 6.17 306/371] s390/dasd: Return BLK_STS_INVAL for EINVAL from do_dasd_request Greg Kroah-Hartman
2025-10-17 14:54 ` [PATCH 6.17 307/371] s390: Add -Wno-pointer-sign to KBUILD_CFLAGS_DECOMPRESSOR Greg Kroah-Hartman
2025-10-17 14:54 ` [PATCH 6.17 308/371] slab: prevent warnings when slab obj_exts vector allocation fails Greg Kroah-Hartman
2025-10-17 14:54 ` [PATCH 6.17 309/371] slab: mark slab->obj_exts allocation failures unconditionally Greg Kroah-Hartman
2025-10-17 14:54 ` [PATCH 6.17 310/371] wifi: ath11k: HAL SRNG: dont deinitialize and re-initialize again Greg Kroah-Hartman
2025-10-17 14:54 ` [PATCH 6.17 311/371] wifi: iwlwifi: Fix dentry reference leak in iwl_mld_add_link_debugfs Greg Kroah-Hartman
2025-10-17 14:54 ` [PATCH 6.17 312/371] wifi: rtw89: avoid possible TX wait initialization race Greg Kroah-Hartman
2025-10-17 14:54 ` [PATCH 6.17 313/371] wifi: mt76: mt7925u: Add VID/PID for Netgear A9000 Greg Kroah-Hartman
2025-10-17 14:54 ` [PATCH 6.17 314/371] wifi: mt76: mt7921u: Add VID/PID for Netgear A7500 Greg Kroah-Hartman
2025-10-17 14:54 ` [PATCH 6.17 315/371] mm/thp: fix MTE tag mismatch when replacing zero-filled subpages Greg Kroah-Hartman
2025-10-17 14:54 ` [PATCH 6.17 316/371] mm/rmap: fix soft-dirty and uffd-wp bit loss when remapping zero-filled mTHP subpage to shared zeropage Greg Kroah-Hartman
2025-10-17 14:54 ` [PATCH 6.17 317/371] mm/page_alloc: only set ALLOC_HIGHATOMIC for __GPF_HIGH allocations Greg Kroah-Hartman
2025-10-17 14:54 ` [PATCH 6.17 318/371] mm/hugetlb: early exit from hugetlb_pages_alloc_boot() when max_huge_pages=0 Greg Kroah-Hartman
2025-10-17 14:54 ` [PATCH 6.17 319/371] mm/damon/vaddr: do not repeat pte_offset_map_lock() until success Greg Kroah-Hartman
2025-10-17 14:54 ` [PATCH 6.17 320/371] mm/damon/lru_sort: use param_ctx for damon_attrs staging Greg Kroah-Hartman
2025-10-17 14:54 ` [PATCH 6.17 321/371] nfsd: decouple the xprtsec policy check from check_nfsd_access() Greg Kroah-Hartman
2025-10-17 14:54 ` [PATCH 6.17 322/371] NFSD: Fix destination buffer size in nfsd4_ssc_setup_dul() Greg Kroah-Hartman
2025-10-17 14:54 ` [PATCH 6.17 323/371] nfsd: nfserr_jukebox in nlm_fopen should lead to a retry Greg Kroah-Hartman
2025-10-17 14:54 ` [PATCH 6.17 324/371] media: iris: Call correct power off callback in cleanup path Greg Kroah-Hartman
2025-10-17 14:55 ` [PATCH 6.17 325/371] media: iris: Fix firmware reference leak and unmap memory after load Greg Kroah-Hartman
2025-10-17 14:55 ` [PATCH 6.17 326/371] media: iris: fix module removal if firmware download failed Greg Kroah-Hartman
2025-10-17 14:55 ` [PATCH 6.17 327/371] media: iris: vpu3x: Add MNoC low power handshake during hardware power-off Greg Kroah-Hartman
2025-10-17 14:55 ` [PATCH 6.17 328/371] media: iris: Fix port streaming handling Greg Kroah-Hartman
2025-10-17 14:55 ` [PATCH 6.17 329/371] media: iris: Fix buffer count reporting in internal buffer check Greg Kroah-Hartman
2025-10-17 14:55 ` [PATCH 6.17 330/371] media: iris: Allow substate transition to load resources during output streaming Greg Kroah-Hartman
2025-10-17 14:55 ` [PATCH 6.17 331/371] media: iris: Always destroy internal buffers on firmware release response Greg Kroah-Hartman
2025-10-17 14:55 ` [PATCH 6.17 332/371] media: iris: Simplify session stop logic by relying on vb2 checks Greg Kroah-Hartman
2025-10-17 14:55 ` [PATCH 6.17 333/371] media: iris: Update vbuf flags before v4l2_m2m_buf_done Greg Kroah-Hartman
2025-10-17 14:55 ` [PATCH 6.17 334/371] media: iris: Send dummy buffer address for all codecs during drain Greg Kroah-Hartman
2025-10-17 14:55 ` [PATCH 6.17 335/371] media: iris: Fix missing LAST flag handling " Greg Kroah-Hartman
2025-10-17 14:55 ` [PATCH 6.17 336/371] media: iris: Fix format check for CAPTURE plane in try_fmt Greg Kroah-Hartman
2025-10-17 14:55 ` [PATCH 6.17 337/371] media: iris: Allow stop on firmware only if start was issued Greg Kroah-Hartman
2025-10-17 14:55 ` [PATCH 6.17 338/371] ext4: add ext4_sb_bread_nofail() helper function for ext4_free_branches() Greg Kroah-Hartman
2025-10-17 14:55 ` [PATCH 6.17 339/371] ext4: fail unaligned direct IO write with EINVAL Greg Kroah-Hartman
2025-10-17 14:55 ` [PATCH 6.17 340/371] ext4: verify orphan file size is not too big Greg Kroah-Hartman
2025-10-17 14:55 ` [PATCH 6.17 341/371] ext4: increase i_disksize to offset + len in ext4_update_disksize_before_punch() Greg Kroah-Hartman
2025-10-17 14:55 ` [PATCH 6.17 342/371] ext4: correctly handle queries for metadata mappings Greg Kroah-Hartman
2025-10-17 14:55 ` [PATCH 6.17 343/371] ext4: avoid potential buffer over-read in parse_apply_sb_mount_options() Greg Kroah-Hartman
2025-10-17 14:55 ` [PATCH 6.17 344/371] ext4: fix an off-by-one issue during moving extents Greg Kroah-Hartman
2025-10-17 14:55 ` [PATCH 6.17 345/371] ext4: guard against EA inode refcount underflow in xattr update Greg Kroah-Hartman
2025-10-17 14:55 ` [PATCH 6.17 346/371] ext4: validate ea_ino and size in check_xattrs Greg Kroah-Hartman
2025-10-17 14:55 ` [PATCH 6.17 347/371] ACPICA: Allow to skip Global Lock initialization Greg Kroah-Hartman
2025-10-17 14:55 ` [PATCH 6.17 348/371] ext4: free orphan info with kvfree Greg Kroah-Hartman
2025-10-17 14:55 ` [PATCH 6.17 349/371] ipmi: Fix handling of messages with provided receive message pointer Greg Kroah-Hartman
2025-10-17 14:55 ` [PATCH 6.17 350/371] Squashfs: add additional inode sanity checking Greg Kroah-Hartman
2025-10-17 14:55 ` [PATCH 6.17 351/371] Squashfs: reject negative file sizes in squashfs_read_inode() Greg Kroah-Hartman
2025-10-17 14:55 ` [PATCH 6.17 352/371] mm/ksm: fix incorrect KSM counter handling in mm_struct during fork Greg Kroah-Hartman
2025-10-17 14:55 ` [PATCH 6.17 353/371] media: mc: Clear minor number before put device Greg Kroah-Hartman
2025-10-17 14:55 ` [PATCH 6.17 354/371] arm64: dts: qcom: qcs615: add missing dt property in QUP SEs Greg Kroah-Hartman
2025-10-17 14:55 ` [PATCH 6.17 355/371] ACPI: property: Disregard references in data-only subnode lists Greg Kroah-Hartman
2025-10-17 14:55 ` [PATCH 6.17 356/371] ACPI: property: Add code comments explaining what is going on Greg Kroah-Hartman
2025-10-17 14:55 ` [PATCH 6.17 357/371] ACPI: property: Do not pass NULL handles to acpi_attach_data() Greg Kroah-Hartman
2025-10-17 14:55 ` [PATCH 6.17 358/371] irqchip/sifive-plic: Avoid interrupt ID 0 handling during suspend/resume Greg Kroah-Hartman
2025-10-17 14:55 ` [PATCH 6.17 359/371] copy_file_range: limit size if in compat mode Greg Kroah-Hartman
2025-10-17 14:55 ` [PATCH 6.17 360/371] minixfs: Verify inode mode when loading from disk Greg Kroah-Hartman
2025-10-17 14:55 ` [PATCH 6.17 361/371] pid: Add a judgment for ns null in pid_nr_ns Greg Kroah-Hartman
2025-10-17 14:55 ` [PATCH 6.17 362/371] pid: make __task_pid_nr_ns(ns => NULL) safe for zombie callers Greg Kroah-Hartman
2025-10-17 14:55 ` [PATCH 6.17 363/371] fs: Add initramfs_options to set initramfs mount options Greg Kroah-Hartman
2025-10-17 14:55 ` [PATCH 6.17 364/371] cramfs: Verify inode mode when loading from disk Greg Kroah-Hartman
2025-10-17 14:55 ` [PATCH 6.17 365/371] nsfs: validate extensible ioctls Greg Kroah-Hartman
2025-10-17 14:55 ` [PATCH 6.17 366/371] mnt_ns_tree_remove(): DTRT if mnt_ns had never been added to mnt_ns_list Greg Kroah-Hartman
2025-10-17 14:55 ` [PATCH 6.17 367/371] writeback: Avoid softlockup when switching many inodes Greg Kroah-Hartman
2025-10-17 14:55 ` [PATCH 6.17 368/371] writeback: Avoid excessively long inode switching times Greg Kroah-Hartman
2025-10-17 14:55 ` [PATCH 6.17 369/371] iomap: error out on file IO when there is no inline_data buffer Greg Kroah-Hartman
2025-10-17 14:55 ` [PATCH 6.17 370/371] pidfs: validate extensible ioctls Greg Kroah-Hartman
2025-10-17 14:55 ` [PATCH 6.17 371/371] mount: handle NULL values in mnt_ns_release() Greg Kroah-Hartman
2025-10-17 18:18 ` [PATCH 6.17 000/371] 6.17.4-rc1 review Ronald Warsow
2025-10-17 18:21 ` Jon Hunter
2025-10-17 21:47 ` Hardik Garg
2025-10-17 23:04 ` Ron Economos
2025-10-19 12:02 ` Greg Kroah-Hartman
2025-10-18 0:24 ` Shuah Khan
2025-10-18 3:45 ` Florian Fainelli
2025-10-18 3:53 ` Peter Schneider
2025-10-18 7:52 ` Brett A C Sheffield
2025-10-18 9:18 ` Dileep malepu
2025-10-18 16:19 ` Miguel Ojeda
2025-10-19 10:36 ` Pascal Ernster
2025-10-20 8:35 ` Naresh Kamboju
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=20251017145204.510871335@linuxfoundation.org \
--to=gregkh@linuxfoundation.org \
--cc=mrathor@linux.microsoft.com \
--cc=nunodasneves@linux.microsoft.com \
--cc=patches@lists.linux.dev \
--cc=sashal@kernel.org \
--cc=seanjc@google.com \
--cc=stable@vger.kernel.org \
--cc=wei.liu@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).