patches.lists.linux.dev 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, "Peter Gonda" <pgonda@google.com>,
	"Vitaly Kuznetsov" <vkuznets@redhat.com>,
	"Tom Lendacky" <thomas.lendacky@amd.com>,
	"Jürgen Groß" <jgross@suse.com>,
	"Korakit Seemakhupt" <korakit@google.com>,
	"Jianxiong Gao" <jxgao@google.com>,
	"Nikolay Borisov" <nik.borisov@suse.com>,
	"Binbin Wu" <binbin.wu@linux.intel.com>,
	"Sean Christopherson" <seanjc@google.com>,
	"Sasha Levin" <sashal@kernel.org>
Subject: [PATCH 6.12 242/277] x86/kvm: Force legacy PCI hole to UC when overriding MTRRs for TDX/SNP
Date: Fri, 17 Oct 2025 16:54:09 +0200	[thread overview]
Message-ID: <20251017145155.979733982@linuxfoundation.org> (raw)
In-Reply-To: <20251017145147.138822285@linuxfoundation.org>

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

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

From: Sean Christopherson <seanjc@google.com>

[ Upstream commit 0dccbc75e18df85399a71933d60b97494110f559 ]

When running as an SNP or TDX guest under KVM, force the legacy PCI hole,
i.e. memory between Top of Lower Usable DRAM and 4GiB, to be mapped as UC
via a forced variable MTRR range.

In most KVM-based setups, legacy devices such as the HPET and TPM are
enumerated via ACPI.  ACPI enumeration includes a Memory32Fixed entry, and
optionally a SystemMemory descriptor for an OperationRegion, e.g. if the
device needs to be accessed via a Control Method.

If a SystemMemory entry is present, then the kernel's ACPI driver will
auto-ioremap the region so that it can be accessed at will.  However, the
ACPI spec doesn't provide a way to enumerate the memory type of
SystemMemory regions, i.e. there's no way to tell software that a region
must be mapped as UC vs. WB, etc.  As a result, Linux's ACPI driver always
maps SystemMemory regions using ioremap_cache(), i.e. as WB on x86.

The dedicated device drivers however, e.g. the HPET driver and TPM driver,
want to map their associated memory as UC or WC, as accessing PCI devices
using WB is unsupported.

On bare metal and non-CoCO, the conflicting requirements "work" as firmware
configures the PCI hole (and other device memory) to be UC in the MTRRs.
So even though the ACPI mappings request WB, they are forced to UC- in the
kernel's tracking due to the kernel properly handling the MTRR overrides,
and thus are compatible with the drivers' requested WC/UC-.

With force WB MTRRs on SNP and TDX guests, the ACPI mappings get their
requested WB if the ACPI mappings are established before the dedicated
driver code attempts to initialize the device.  E.g. if acpi_init()
runs before the corresponding device driver is probed, ACPI's WB mapping
will "win", and result in the driver's ioremap() failing because the
existing WB mapping isn't compatible with the requested WC/UC-.

E.g. when a TPM is emulated by the hypervisor (ignoring the security
implications of relying on what is allegedly an untrusted entity to store
measurements), the TPM driver will request UC and fail:

  [  1.730459] ioremap error for 0xfed40000-0xfed45000, requested 0x2, got 0x0
  [  1.732780] tpm_tis MSFT0101:00: probe with driver tpm_tis failed with error -12

Note, the '0x2' and '0x0' values refer to "enum page_cache_mode", not x86's
memtypes (which frustratingly are an almost pure inversion; 2 == WB, 0 == UC).
E.g. tracing mapping requests for TPM TIS yields:

 Mapping TPM TIS with req_type = 0
 WARNING: CPU: 22 PID: 1 at arch/x86/mm/pat/memtype.c:530 memtype_reserve+0x2ab/0x460
 Modules linked in:
 CPU: 22 UID: 0 PID: 1 Comm: swapper/0 Tainted: G        W           6.16.0-rc7+ #2 VOLUNTARY
 Tainted: [W]=WARN
 Hardware name: Google Google Compute Engine/Google Compute Engine, BIOS Google 05/29/2025
 RIP: 0010:memtype_reserve+0x2ab/0x460
  __ioremap_caller+0x16d/0x3d0
  ioremap_cache+0x17/0x30
  x86_acpi_os_ioremap+0xe/0x20
  acpi_os_map_iomem+0x1f3/0x240
  acpi_os_map_memory+0xe/0x20
  acpi_ex_system_memory_space_handler+0x273/0x440
  acpi_ev_address_space_dispatch+0x176/0x4c0
  acpi_ex_access_region+0x2ad/0x530
  acpi_ex_field_datum_io+0xa2/0x4f0
  acpi_ex_extract_from_field+0x296/0x3e0
  acpi_ex_read_data_from_field+0xd1/0x460
  acpi_ex_resolve_node_to_value+0x2ee/0x530
  acpi_ex_resolve_to_value+0x1f2/0x540
  acpi_ds_evaluate_name_path+0x11b/0x190
  acpi_ds_exec_end_op+0x456/0x960
  acpi_ps_parse_loop+0x27a/0xa50
  acpi_ps_parse_aml+0x226/0x600
  acpi_ps_execute_method+0x172/0x3e0
  acpi_ns_evaluate+0x175/0x5f0
  acpi_evaluate_object+0x213/0x490
  acpi_evaluate_integer+0x6d/0x140
  acpi_bus_get_status+0x93/0x150
  acpi_add_single_object+0x43a/0x7c0
  acpi_bus_check_add+0x149/0x3a0
  acpi_bus_check_add_1+0x16/0x30
  acpi_ns_walk_namespace+0x22c/0x360
  acpi_walk_namespace+0x15c/0x170
  acpi_bus_scan+0x1dd/0x200
  acpi_scan_init+0xe5/0x2b0
  acpi_init+0x264/0x5b0
  do_one_initcall+0x5a/0x310
  kernel_init_freeable+0x34f/0x4f0
  kernel_init+0x1b/0x200
  ret_from_fork+0x186/0x1b0
  ret_from_fork_asm+0x1a/0x30
  </TASK>

The above traces are from a Google-VMM based VM, but the same behavior
happens with a QEMU based VM that is modified to add a SystemMemory range
for the TPM TIS address space.

The only reason this doesn't cause problems for HPET, which appears to
require a SystemMemory region, is because HPET gets special treatment via
x86_init.timers.timer_init(), and so gets a chance to create its UC-
mapping before acpi_init() clobbers things.  Disabling the early call to
hpet_time_init() yields the same behavior for HPET:

  [  0.318264] ioremap error for 0xfed00000-0xfed01000, requested 0x2, got 0x0

Hack around the ACPI gap by forcing the legacy PCI hole to UC when
overriding the (virtual) MTRRs for CoCo guest, so that ioremap handling
of MTRRs naturally kicks in and forces the ACPI mappings to be UC.

Note, the requested/mapped memtype doesn't actually matter in terms of
accessing the device.  In practically every setup, legacy PCI devices are
emulated by the hypervisor, and accesses are intercepted and handled as
emulated MMIO, i.e. never access physical memory and thus don't have an
effective memtype.

Even in a theoretical setup where such devices are passed through by the
host, i.e. point at real MMIO memory, it is KVM's (as the hypervisor)
responsibility to force the memory to be WC/UC, e.g. via EPT memtype
under TDX or real hardware MTRRs under SNP.  Not doing so cannot work,
and the hypervisor is highly motivated to do the right thing as letting
the guest access hardware MMIO with WB would likely result in a variety
of fatal #MCs.

In other words, forcing the range to be UC is all about coercing the
kernel's tracking into thinking that it has established UC mappings, so
that the ioremap code doesn't reject mappings from e.g. the TPM driver and
thus prevent the driver from loading and the device from functioning.

Note #2, relying on guest firmware to handle this scenario, e.g. by setting
virtual MTRRs and then consuming them in Linux, is not a viable option, as
the virtual MTRR state is managed by the untrusted hypervisor, and because
OVMF at least has stopped programming virtual MTRRs when running as a TDX
guest.

Link: https://lore.kernel.org/all/8137d98e-8825-415b-9282-1d2a115bb51a@linux.intel.com
Fixes: 8e690b817e38 ("x86/kvm: Override default caching mode for SEV-SNP and TDX")
Cc: stable@vger.kernel.org
Cc: Peter Gonda <pgonda@google.com>
Cc: Vitaly Kuznetsov <vkuznets@redhat.com>
Cc: Tom Lendacky <thomas.lendacky@amd.com>
Cc: Jürgen Groß <jgross@suse.com>
Cc: Korakit Seemakhupt <korakit@google.com>
Cc: Jianxiong Gao <jxgao@google.com>
Cc: Nikolay Borisov <nik.borisov@suse.com>
Suggested-by: Binbin Wu <binbin.wu@linux.intel.com>
Reviewed-by: Binbin Wu <binbin.wu@linux.intel.com>
Tested-by: Korakit Seemakhupt <korakit@google.com>
Link: https://lore.kernel.org/r/20250828005249.39339-1-seanjc@google.com
Signed-off-by: Sean Christopherson <seanjc@google.com>
Signed-off-by: Sasha Levin <sashal@kernel.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
---
 arch/x86/kernel/kvm.c |   21 +++++++++++++++++++--
 1 file changed, 19 insertions(+), 2 deletions(-)

--- a/arch/x86/kernel/kvm.c
+++ b/arch/x86/kernel/kvm.c
@@ -933,6 +933,19 @@ static void kvm_sev_hc_page_enc_status(u
 
 static void __init kvm_init_platform(void)
 {
+	u64 tolud = PFN_PHYS(e820__end_of_low_ram_pfn());
+	/*
+	 * Note, hardware requires variable MTRR ranges to be power-of-2 sized
+	 * and naturally aligned.  But when forcing guest MTRR state, Linux
+	 * doesn't program the forced ranges into hardware.  Don't bother doing
+	 * the math to generate a technically-legal range.
+	 */
+	struct mtrr_var_range pci_hole = {
+		.base_lo = tolud | X86_MEMTYPE_UC,
+		.mask_lo = (u32)(~(SZ_4G - tolud - 1)) | MTRR_PHYSMASK_V,
+		.mask_hi = (BIT_ULL(boot_cpu_data.x86_phys_bits) - 1) >> 32,
+	};
+
 	if (cc_platform_has(CC_ATTR_GUEST_MEM_ENCRYPT) &&
 	    kvm_para_has_feature(KVM_FEATURE_MIGRATION_CONTROL)) {
 		unsigned long nr_pages;
@@ -982,8 +995,12 @@ static void __init kvm_init_platform(voi
 	kvmclock_init();
 	x86_platform.apic_post_init = kvm_apic_init;
 
-	/* Set WB as the default cache mode for SEV-SNP and TDX */
-	guest_force_mtrr_state(NULL, 0, MTRR_TYPE_WRBACK);
+	/*
+	 * Set WB as the default cache mode for SEV-SNP and TDX, with a single
+	 * UC range for the legacy PCI hole, e.g. so that devices that expect
+	 * to get UC/WC mappings don't get surprised with WB.
+	 */
+	guest_force_mtrr_state(&pci_hole, 1, MTRR_TYPE_WRBACK);
 }
 
 #if defined(CONFIG_AMD_MEM_ENCRYPT)



  parent reply	other threads:[~2025-10-17 15:25 UTC|newest]

Thread overview: 299+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2025-10-17 14:50 [PATCH 6.12 000/277] 6.12.54-rc1 review Greg Kroah-Hartman
2025-10-17 14:50 ` [PATCH 6.12 001/277] fs: always return zero on success from replace_fd() Greg Kroah-Hartman
2025-10-17 14:50 ` [PATCH 6.12 002/277] fscontext: do not consume log entries when returning -EMSGSIZE Greg Kroah-Hartman
2025-10-17 14:50 ` [PATCH 6.12 003/277] arm64: map [_text, _stext) virtual address range non-executable+read-only Greg Kroah-Hartman
2025-10-17 14:50 ` [PATCH 6.12 004/277] rseq: Protect event mask against membarrier IPI Greg Kroah-Hartman
2025-10-17 14:50 ` [PATCH 6.12 005/277] listmount: dont call path_put() under namespace semaphore Greg Kroah-Hartman
2025-10-17 14:50 ` [PATCH 6.12 006/277] clocksource/drivers/clps711x: Fix resource leaks in error paths Greg Kroah-Hartman
2025-10-17 14:50 ` [PATCH 6.12 007/277] page_pool: Fix PP_MAGIC_MASK to avoid crashing on some 32-bit arches Greg Kroah-Hartman
2025-10-17 14:50 ` [PATCH 6.12 008/277] dma-mapping: fix direction in dma_alloc direction traces Greg Kroah-Hartman
2025-10-17 14:50 ` [PATCH 6.12 009/277] KVM: SVM: Emulate PERF_CNTR_GLOBAL_STATUS_SET for PerfMonV2 Greg Kroah-Hartman
2025-10-17 14:50 ` [PATCH 6.12 010/277] iio: frequency: adf4350: Fix ADF4350_REG3_12BIT_CLKDIV_MODE Greg Kroah-Hartman
2025-10-17 14:50 ` [PATCH 6.12 011/277] media: v4l2-subdev: Fix alloc failure check in v4l2_subdev_call_state_try() Greg Kroah-Hartman
2025-10-17 14:50 ` [PATCH 6.12 012/277] asm-generic/io.h: Skip trace helpers if rwmmio events are disabled Greg Kroah-Hartman
2025-10-17 14:50 ` [PATCH 6.12 013/277] perf disasm: Avoid undefined behavior in incrementing NULL Greg Kroah-Hartman
2025-10-17 14:50 ` [PATCH 6.12 014/277] perf test trace_btf_enum: Skip if permissions are insufficient Greg Kroah-Hartman
2025-10-17 14:50 ` [PATCH 6.12 015/277] perf evsel: Avoid container_of on a NULL leader Greg Kroah-Hartman
2025-10-17 14:50 ` [PATCH 6.12 016/277] libperf event: Ensure tracing data is multiple of 8 sized Greg Kroah-Hartman
2025-10-17 14:50 ` [PATCH 6.12 017/277] clk: qcom: common: Fix NULL vs IS_ERR() check in qcom_cc_icc_register() Greg Kroah-Hartman
2025-10-17 14:50 ` [PATCH 6.12 018/277] clk: at91: peripheral: fix return value Greg Kroah-Hartman
2025-10-17 14:50 ` [PATCH 6.12 019/277] clk: renesas: cpg-mssr: Fix memory leak in cpg_mssr_reserved_init() Greg Kroah-Hartman
2025-10-17 14:50 ` [PATCH 6.12 020/277] perf util: Fix compression checks returning -1 as bool Greg Kroah-Hartman
2025-10-17 14:50 ` [PATCH 6.12 021/277] rtc: x1205: Fix Xicor X1205 vendor prefix Greg Kroah-Hartman
2025-10-17 14:50 ` [PATCH 6.12 022/277] rtc: optee: fix memory leak on driver removal Greg Kroah-Hartman
2025-10-17 14:50 ` [PATCH 6.12 023/277] perf arm_spe: Correct setting remote access Greg Kroah-Hartman
2025-10-17 14:50 ` [PATCH 6.12 024/277] perf arm-spe: Rename the common data source encoding Greg Kroah-Hartman
2025-10-17 14:50 ` [PATCH 6.12 025/277] perf arm_spe: Correct memory level for remote access Greg Kroah-Hartman
2025-10-17 14:50 ` [PATCH 6.12 026/277] perf vendor events arm64 AmpereOneX: Fix typo - should be l1d_cache_access_prefetches Greg Kroah-Hartman
2025-10-17 14:50 ` [PATCH 6.12 027/277] perf test: Update sysfs path for core PMU caps Greg Kroah-Hartman
2025-10-17 14:50 ` [PATCH 6.12 028/277] perf test shell lbr: Avoid failures with perf event paranoia Greg Kroah-Hartman
2025-10-17 14:50 ` [PATCH 6.12 029/277] perf session: Fix handling when buffer exceeds 2 GiB Greg Kroah-Hartman
2025-10-17 14:50 ` [PATCH 6.12 030/277] perf test: Dont leak workload gopipe in PERF_RECORD_* Greg Kroah-Hartman
2025-10-17 14:50 ` [PATCH 6.12 031/277] perf test: Add a test for default perf stat command Greg Kroah-Hartman
2025-10-17 14:50 ` [PATCH 6.12 032/277] perf tools: Add fallback for exclude_guest Greg Kroah-Hartman
2025-10-17 14:50 ` [PATCH 6.12 033/277] perf evsel: Ensure the fallback message is always written to Greg Kroah-Hartman
2025-10-17 14:50 ` [PATCH 6.12 034/277] clk: mediatek: mt8195-infra_ao: Fix parent for infra_ao_hdmi_26m Greg Kroah-Hartman
2025-10-17 14:50 ` [PATCH 6.12 035/277] clk: mediatek: clk-mux: Do not pass flags to clk_mux_determine_rate_flags() Greg Kroah-Hartman
2025-10-17 14:50 ` [PATCH 6.12 036/277] clk: nxp: lpc18xx-cgu: convert from round_rate() to determine_rate() Greg Kroah-Hartman
2025-10-17 14:50 ` [PATCH 6.12 037/277] clk: nxp: Fix pll0 rate check condition in LPC18xx CGU driver Greg Kroah-Hartman
2025-10-17 14:50 ` [PATCH 6.12 038/277] clk: tegra: do not overallocate memory for bpmp clocks Greg Kroah-Hartman
2025-10-17 14:50 ` [PATCH 6.12 039/277] cpufreq: tegra186: Set target frequency for all cpus in policy Greg Kroah-Hartman
2025-10-17 14:50 ` [PATCH 6.12 040/277] scsi: mvsas: Fix use-after-free bugs in mvs_work_queue Greg Kroah-Hartman
2025-10-17 14:50 ` [PATCH 6.12 041/277] ASoC: SOF: ipc4-topology: Correct the minimum host DMA buffer size Greg Kroah-Hartman
2025-10-17 14:50 ` [PATCH 6.12 042/277] ASoC: SOF: ipc4-topology: Account for different ChainDMA host " Greg Kroah-Hartman
2025-10-17 14:50 ` [PATCH 6.12 043/277] 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.12 044/277] LoongArch: Add cflag -fno-isolate-erroneous-paths-dereference Greg Kroah-Hartman
2025-10-17 14:50 ` [PATCH 6.12 045/277] LoongArch: Init acpi_gbl_use_global_lock to false Greg Kroah-Hartman
2025-10-17 14:50 ` [PATCH 6.12 046/277] ASoC: SOF: Intel: Read the LLP via the associated Link DMA channel Greg Kroah-Hartman
2025-10-17 14:50 ` [PATCH 6.12 047/277] net/mlx4: prevent potential use after free in mlx4_en_do_uc_filter() Greg Kroah-Hartman
2025-10-17 14:50 ` [PATCH 6.12 048/277] drm/xe/hw_engine_group: Fix double write lock release in error path Greg Kroah-Hartman
2025-10-17 14:50 ` [PATCH 6.12 049/277] s390/cio: Update purge function to unregister the unused subchannels Greg Kroah-Hartman
2025-10-17 14:50 ` [PATCH 6.12 050/277] drm/vmwgfx: Fix a null-ptr access in the cursor snooper Greg Kroah-Hartman
2025-10-17 14:50 ` [PATCH 6.12 051/277] drm/vmwgfx: Fix Use-after-free in validation Greg Kroah-Hartman
2025-10-17 14:50 ` [PATCH 6.12 052/277] drm/vmwgfx: Fix copy-paste typo " Greg Kroah-Hartman
2025-10-17 14:51 ` [PATCH 6.12 053/277] 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.12 054/277] tcp: Dont call reqsk_fastopen_remove() in tcp_conn_request() Greg Kroah-Hartman
2025-10-17 14:51 ` [PATCH 6.12 055/277] net: mscc: ocelot: Fix use-after-free caused by cyclic delayed work Greg Kroah-Hartman
2025-10-17 14:51 ` [PATCH 6.12 056/277] ice: ice_adapter: release xa entry on adapter allocation failure Greg Kroah-Hartman
2025-10-17 14:51 ` [PATCH 6.12 057/277] net: fsl_pq_mdio: Fix device node reference leak in fsl_pq_mdio_probe Greg Kroah-Hartman
2025-10-17 14:51 ` [PATCH 6.12 058/277] tools build: Align warning options with perf Greg Kroah-Hartman
2025-10-17 14:51 ` [PATCH 6.12 059/277] perf python: split Clang options when invoking Popen Greg Kroah-Hartman
2025-10-17 14:51 ` [PATCH 6.12 060/277] tcp: take care of zero tp->window_clamp in tcp_set_rcvlowat() Greg Kroah-Hartman
2025-10-17 14:51 ` [PATCH 6.12 061/277] mailbox: zynqmp-ipi: Remove redundant mbox_controller_unregister() call Greg Kroah-Hartman
2025-10-17 14:51 ` [PATCH 6.12 062/277] mailbox: zynqmp-ipi: Remove dev.parent check in zynqmp_ipi_free_mboxes Greg Kroah-Hartman
2025-10-17 14:51 ` [PATCH 6.12 063/277] mailbox: zynqmp-ipi: Fix out-of-bounds access in mailbox cleanup loop Greg Kroah-Hartman
2025-10-17 14:51 ` [PATCH 6.12 064/277] mailbox: zynqmp-ipi: Fix SGI cleanup on unbind Greg Kroah-Hartman
2025-10-17 14:51 ` [PATCH 6.12 065/277] bpf: Fix metadata_dst leak __bpf_redirect_neigh_v{4,6} Greg Kroah-Hartman
2025-10-17 14:51 ` [PATCH 6.12 066/277] mailbox: mtk-cmdq-mailbox: Switch to __pm_runtime_put_autosuspend() Greg Kroah-Hartman
2025-10-17 14:51 ` [PATCH 6.12 067/277] mailbox: mtk-cmdq: Switch to pm_runtime_put_autosuspend() Greg Kroah-Hartman
2025-10-17 14:51 ` [PATCH 6.12 068/277] mailbox: mtk-cmdq: Remove pm_runtime APIs from cmdq_mbox_send_data() Greg Kroah-Hartman
2025-10-17 14:51 ` [PATCH 6.12 069/277] drm/amdgpu: Add additional DCE6 SCL registers Greg Kroah-Hartman
2025-10-17 14:51 ` [PATCH 6.12 070/277] drm/amd/display: Add missing DCE6 SCL_HORZ_FILTER_INIT* SRIs Greg Kroah-Hartman
2025-10-17 14:51 ` [PATCH 6.12 071/277] drm/amd/display: Properly clear SCL_*_FILTER_CONTROL on DCE6 Greg Kroah-Hartman
2025-10-17 14:51 ` [PATCH 6.12 072/277] drm/amd/display: Properly disable scaling " Greg Kroah-Hartman
2025-10-17 14:51 ` [PATCH 6.12 073/277] netfilter: nft_objref: validate objref and objrefmap expressions Greg Kroah-Hartman
2025-10-17 14:51 ` [PATCH 6.12 074/277] bridge: br_vlan_fill_forward_path_pvid: use br_vlan_group_rcu() Greg Kroah-Hartman
2025-10-17 14:51 ` [PATCH 6.12 075/277] selftests: netfilter: query conntrack state to check for port clash resolution Greg Kroah-Hartman
2025-10-17 14:51 ` [PATCH 6.12 076/277] crypto: essiv - Check ssize for decryption and in-place encryption Greg Kroah-Hartman
2025-10-17 14:51 ` [PATCH 6.12 077/277] cifs: Fix copy_to_iter return value check Greg Kroah-Hartman
2025-10-17 14:51 ` [PATCH 6.12 078/277] smb: client: fix missing timestamp updates after utime(2) Greg Kroah-Hartman
2025-10-17 14:51 ` [PATCH 6.12 079/277] cifs: Query EA $LXMOD in cifs_query_path_info() for WSL reparse points Greg Kroah-Hartman
2025-10-17 14:51 ` [PATCH 6.12 080/277] tpm_tis: Fix incorrect arguments in tpm_tis_probe_irq_single Greg Kroah-Hartman
2025-10-17 14:51 ` [PATCH 6.12 081/277] gpio: wcd934x: mark the GPIO controller as sleeping Greg Kroah-Hartman
2025-10-17 14:51 ` [PATCH 6.12 082/277] bpf: Avoid RCU context warning when unpinning htab with internal structs Greg Kroah-Hartman
2025-10-17 14:51 ` [PATCH 6.12 083/277] s390: vmlinux.lds.S: Reorder sections Greg Kroah-Hartman
2025-10-17 14:51 ` [PATCH 6.12 084/277] s390/vmlinux.lds.S: Move .vmlinux.info to end of allocatable sections Greg Kroah-Hartman
2025-10-17 14:51 ` [PATCH 6.12 085/277] ACPI: property: Fix buffer properties extraction for subnodes Greg Kroah-Hartman
2025-10-17 14:51 ` [PATCH 6.12 086/277] ACPI: TAD: Add missing sysfs_remove_group() for ACPI_TAD_RT Greg Kroah-Hartman
2025-10-17 14:51 ` [PATCH 6.12 087/277] ACPI: debug: fix signedness issues in read/write helpers Greg Kroah-Hartman
2025-10-17 14:51 ` [PATCH 6.12 088/277] arm64: dts: qcom: msm8916: Add missing MDSS reset Greg Kroah-Hartman
2025-10-17 14:51 ` [PATCH 6.12 089/277] arm64: dts: qcom: msm8939: " Greg Kroah-Hartman
2025-10-17 14:51 ` [PATCH 6.12 090/277] arm64: dts: qcom: sdm845: Fix slimbam num-channels/ees Greg Kroah-Hartman
2025-10-17 14:51 ` [PATCH 6.12 091/277] arm64: dts: qcom: x1e80100-pmics: Disable pm8010 by default Greg Kroah-Hartman
2025-10-17 14:51 ` [PATCH 6.12 092/277] arm64: dts: ti: k3-am62a-main: Fix main padcfg length Greg Kroah-Hartman
2025-10-17 14:51 ` [PATCH 6.12 093/277] arm64: kprobes: call set_memory_rox() for kprobe page Greg Kroah-Hartman
2025-10-17 14:51 ` [PATCH 6.12 094/277] ARM: AM33xx: Implement TI advisory 1.0.36 (EMU0/EMU1 pins state on reset) Greg Kroah-Hartman
2025-10-17 14:51 ` [PATCH 6.12 095/277] ARM: OMAP2+: pm33xx-core: ix device node reference leaks in amx3_idle_init Greg Kroah-Hartman
2025-10-17 14:51 ` [PATCH 6.12 096/277] perf/arm-cmn: Fix CMN S3 DTM offset Greg Kroah-Hartman
2025-10-17 14:51 ` [PATCH 6.12 097/277] dt-bindings: phy: rockchip-inno-csi-dphy: make power-domains non-required Greg Kroah-Hartman
2025-10-17 14:51 ` [PATCH 6.12 098/277] xen/events: Cleanup find_virq() return codes Greg Kroah-Hartman
2025-10-17 14:51 ` [PATCH 6.12 099/277] xen/manage: Fix suspend error path Greg Kroah-Hartman
2025-10-17 14:51 ` [PATCH 6.12 100/277] xen/events: Return -EEXIST for bound VIRQs Greg Kroah-Hartman
2025-10-17 14:51 ` [PATCH 6.12 101/277] xen/events: Update virq_to_irq on migration Greg Kroah-Hartman
2025-10-17 14:51 ` [PATCH 6.12 102/277] firmware: meson_sm: fix device leak at probe Greg Kroah-Hartman
2025-10-17 14:51 ` [PATCH 6.12 103/277] media: cec: extron-da-hd-4k-plus: drop external-module make commands Greg Kroah-Hartman
2025-10-17 14:51 ` [PATCH 6.12 104/277] media: cx18: Add missing check after DMA map Greg Kroah-Hartman
2025-10-17 14:51 ` [PATCH 6.12 105/277] media: i2c: mt9v111: fix incorrect type for ret Greg Kroah-Hartman
2025-10-17 14:51 ` [PATCH 6.12 106/277] media: mc: Fix MUST_CONNECT handling for pads with no links Greg Kroah-Hartman
2025-10-17 14:51 ` [PATCH 6.12 107/277] media: pci: ivtv: Add missing check after DMA map Greg Kroah-Hartman
2025-10-17 14:51 ` [PATCH 6.12 108/277] media: pci: mg4b: fix uninitialized iio scan data Greg Kroah-Hartman
2025-10-17 14:51 ` [PATCH 6.12 109/277] media: s5p-mfc: remove an unused/uninitialized variable Greg Kroah-Hartman
2025-10-17 14:51 ` [PATCH 6.12 110/277] media: venus: firmware: Use correct reset sequence for IRIS2 Greg Kroah-Hartman
2025-10-17 14:51 ` [PATCH 6.12 111/277] media: vivid: fix disappearing <Vendor Command With ID> messages Greg Kroah-Hartman
2025-10-17 14:51 ` [PATCH 6.12 112/277] media: ti: j721e-csi2rx: Use devm_of_platform_populate Greg Kroah-Hartman
2025-10-17 14:52 ` [PATCH 6.12 113/277] media: ti: j721e-csi2rx: Fix source subdev link creation Greg Kroah-Hartman
2025-10-17 14:52 ` [PATCH 6.12 114/277] media: lirc: Fix error handling in lirc_register() Greg Kroah-Hartman
2025-10-17 14:52 ` [PATCH 6.12 115/277] drm/panthor: Fix memory leak in panthor_ioctl_group_create() Greg Kroah-Hartman
2025-10-17 14:52 ` [PATCH 6.12 116/277] drm/rcar-du: dsi: Fix 1/2/3 lane support Greg Kroah-Hartman
2025-10-17 14:52 ` [PATCH 6.12 117/277] drm/nouveau: fix bad ret code in nouveau_bo_move_prep Greg Kroah-Hartman
2025-10-17 14:52 ` [PATCH 6.12 118/277] drm/xe/uapi: loosen used tracking restriction Greg Kroah-Hartman
2025-10-17 14:52 ` [PATCH 6.12 119/277] drm/amd/display: Enable Dynamic DTBCLK Switch Greg Kroah-Hartman
2025-10-17 14:52 ` [PATCH 6.12 120/277] blk-crypto: fix missing blktrace bio split events Greg Kroah-Hartman
2025-10-17 14:52 ` [PATCH 6.12 121/277] btrfs: avoid potential out-of-bounds in btrfs_encode_fh() Greg Kroah-Hartman
2025-10-17 14:52 ` [PATCH 6.12 122/277] bus: mhi: ep: Fix chained transfer handling in read path Greg Kroah-Hartman
2025-10-17 14:52 ` [PATCH 6.12 123/277] bus: mhi: host: Do not use uninitialized dev pointer in mhi_init_irq_setup() Greg Kroah-Hartman
2025-10-17 14:52 ` [PATCH 6.12 124/277] clk: qcom: tcsrcc-x1e80100: Set the bi_tcxo as parent to eDP refclk Greg Kroah-Hartman
2025-10-17 14:52 ` [PATCH 6.12 125/277] copy_sighand: Handle architectures where sizeof(unsigned long) < sizeof(u64) Greg Kroah-Hartman
2025-10-17 14:52 ` [PATCH 6.12 126/277] cpufreq: intel_pstate: Fix object lifecycle issue in update_qos_request() Greg Kroah-Hartman
2025-10-17 14:52 ` [PATCH 6.12 127/277] crypto: aspeed - Fix dma_unmap_sg() direction Greg Kroah-Hartman
2025-10-17 14:52 ` [PATCH 6.12 128/277] crypto: atmel " Greg Kroah-Hartman
2025-10-17 14:52 ` [PATCH 6.12 129/277] crypto: rockchip - Fix dma_unmap_sg() nents value Greg Kroah-Hartman
2025-10-17 14:52 ` [PATCH 6.12 130/277] eventpoll: Replace rwlock with spinlock Greg Kroah-Hartman
2025-10-17 14:52 ` [PATCH 6.12 131/277] fbdev: Fix logic error in "offb" name match Greg Kroah-Hartman
2025-10-17 14:52 ` [PATCH 6.12 132/277] fs/ntfs3: Fix a resource leak bug in wnd_extend() Greg Kroah-Hartman
2025-10-17 14:52 ` [PATCH 6.12 133/277] fs: quota: create dedicated workqueue for quota_release_work Greg Kroah-Hartman
2025-10-17 14:52 ` [PATCH 6.12 134/277] fuse: fix possibly missing fuse_copy_finish() call in fuse_notify() Greg Kroah-Hartman
2025-10-17 14:52 ` [PATCH 6.12 135/277] fuse: fix livelock in synchronous file put from fuseblk workers Greg Kroah-Hartman
2025-10-17 14:52 ` [PATCH 6.12 136/277] iio/adc/pac1934: fix channel disable configuration Greg Kroah-Hartman
2025-10-17 14:52 ` [PATCH 6.12 137/277] iio: dac: ad5360: use int type to store negative error codes Greg Kroah-Hartman
2025-10-17 14:52 ` [PATCH 6.12 138/277] iio: dac: ad5421: " Greg Kroah-Hartman
2025-10-17 14:52 ` [PATCH 6.12 139/277] iio: frequency: adf4350: Fix prescaler usage Greg Kroah-Hartman
2025-10-17 14:52 ` [PATCH 6.12 140/277] iio: xilinx-ams: Fix AMS_ALARM_THR_DIRECT_MASK Greg Kroah-Hartman
2025-10-17 14:52 ` [PATCH 6.12 141/277] iio: xilinx-ams: Unmask interrupts after updating alarms Greg Kroah-Hartman
2025-10-17 14:52 ` [PATCH 6.12 142/277] init: handle bootloader identifier in kernel parameters Greg Kroah-Hartman
2025-10-17 14:52 ` [PATCH 6.12 143/277] iio: imu: inv_icm42600: Drop redundant pm_runtime reinitialization in resume Greg Kroah-Hartman
2025-10-17 14:52 ` [PATCH 6.12 144/277] iommu/vt-d: PRS isnt usable if PDS isnt supported Greg Kroah-Hartman
2025-10-17 14:52 ` [PATCH 6.12 145/277] kernel/sys.c: fix the racy usage of task_lock(tsk->group_leader) in sys_prlimit64() paths Greg Kroah-Hartman
2025-10-17 14:52 ` [PATCH 6.12 146/277] KEYS: trusted_tpm1: Compare HMAC values in constant time Greg Kroah-Hartman
2025-10-17 14:52 ` [PATCH 6.12 147/277] lib/genalloc: fix device leak in of_gen_pool_get() Greg Kroah-Hartman
2025-10-17 14:52 ` [PATCH 6.12 148/277] loop: fix backing file reference leak on validation error Greg Kroah-Hartman
2025-10-17 14:52 ` [PATCH 6.12 149/277] of: unittest: Fix device reference count leak in of_unittest_pci_node_verify Greg Kroah-Hartman
2025-10-17 14:52 ` [PATCH 6.12 150/277] openat2: dont trigger automounts with RESOLVE_NO_XDEV Greg Kroah-Hartman
2025-10-17 14:52 ` [PATCH 6.12 151/277] parisc: dont reference obsolete termio struct for TC* constants Greg Kroah-Hartman
2025-10-17 14:52 ` [PATCH 6.12 152/277] parisc: Remove spurious if statement from raw_copy_from_user() Greg Kroah-Hartman
2025-10-17 14:52 ` [PATCH 6.12 153/277] nvme-pci: Add TUXEDO IBS Gen8 to Samsung sleep quirk Greg Kroah-Hartman
2025-10-17 14:52 ` [PATCH 6.12 154/277] pinctrl: samsung: Drop unused S3C24xx driver data Greg Kroah-Hartman
2025-10-17 14:52 ` [PATCH 6.12 155/277] power: supply: max77976_charger: fix constant current reporting Greg Kroah-Hartman
2025-10-17 14:52 ` [PATCH 6.12 156/277] powerpc/powernv/pci: Fix underflow and leak issue Greg Kroah-Hartman
2025-10-17 14:52 ` [PATCH 6.12 157/277] powerpc/pseries/msi: Fix potential " Greg Kroah-Hartman
2025-10-17 14:52 ` [PATCH 6.12 158/277] pwm: berlin: Fix wrong register in suspend/resume Greg Kroah-Hartman
2025-10-17 14:52 ` [PATCH 6.12 159/277] Revert "ipmi: fix msg stack when IPMI is disconnected" Greg Kroah-Hartman
2025-10-17 14:52 ` [PATCH 6.12 160/277] sched/deadline: Fix race in push_dl_task() Greg Kroah-Hartman
2025-10-17 14:52 ` [PATCH 6.12 161/277] scsi: hpsa: Fix potential memory leak in hpsa_big_passthru_ioctl() Greg Kroah-Hartman
2025-10-17 14:52 ` [PATCH 6.12 162/277] scsi: sd: Fix build warning in sd_revalidate_disk() Greg Kroah-Hartman
2025-10-17 14:52 ` [PATCH 6.12 163/277] sctp: Fix MAC comparison to be constant-time Greg Kroah-Hartman
2025-10-17 14:52 ` [PATCH 6.12 164/277] sparc64: fix hugetlb for sun4u Greg Kroah-Hartman
2025-10-17 14:52 ` [PATCH 6.12 165/277] sparc: fix error handling in scan_one_device() Greg Kroah-Hartman
2025-10-17 14:52 ` [PATCH 6.12 166/277] xtensa: simdisk: add input size check in proc_write_simdisk Greg Kroah-Hartman
2025-10-17 14:52 ` [PATCH 6.12 167/277] xsk: Harden userspace-supplied xdp_desc validation Greg Kroah-Hartman
2025-10-17 14:52 ` [PATCH 6.12 168/277] mtd: rawnand: fsmc: Default to autodetect buswidth Greg Kroah-Hartman
2025-10-17 14:52 ` [PATCH 6.12 169/277] mmc: core: SPI mode remove cmd7 Greg Kroah-Hartman
2025-10-17 14:52 ` [PATCH 6.12 170/277] mmc: mmc_spi: multiple block read remove read crc ack Greg Kroah-Hartman
2025-10-17 14:52 ` [PATCH 6.12 171/277] memory: samsung: exynos-srom: Fix of_iomap leak in exynos_srom_probe Greg Kroah-Hartman
2025-10-17 14:52 ` [PATCH 6.12 172/277] rtc: interface: Ensure alarm irq is enabled when UIE is enabled Greg Kroah-Hartman
2025-10-17 14:53 ` [PATCH 6.12 173/277] rtc: interface: Fix long-standing race when setting alarm Greg Kroah-Hartman
2025-10-17 14:53 ` [PATCH 6.12 174/277] rseq/selftests: Use weak symbol reference, not definition, to link with glibc Greg Kroah-Hartman
2025-10-17 14:53 ` [PATCH 6.12 175/277] PCI: xilinx-nwl: Fix ECAM programming Greg Kroah-Hartman
2025-10-17 14:53 ` [PATCH 6.12 176/277] PCI: tegra: Convert struct tegra_msi mask_lock into raw spinlock Greg Kroah-Hartman
2025-10-17 14:53 ` [PATCH 6.12 177/277] PCI/sysfs: Ensure devices are powered for config reads Greg Kroah-Hartman
2025-10-17 14:53 ` [PATCH 6.12 178/277] PCI/IOV: Add PCI rescan-remove locking when enabling/disabling SR-IOV Greg Kroah-Hartman
2025-10-17 14:53 ` [PATCH 6.12 179/277] PCI/ERR: Fix uevent on failure to recover Greg Kroah-Hartman
2025-10-17 14:53 ` [PATCH 6.12 180/277] PCI/AER: Fix missing uevent on recovery when a reset is requested Greg Kroah-Hartman
2025-10-17 14:53 ` [PATCH 6.12 181/277] PCI/AER: Support errors introduced by PCIe r6.0 Greg Kroah-Hartman
2025-10-17 14:53 ` [PATCH 6.12 182/277] PCI: j721e: Fix programming sequence of "strap" settings Greg Kroah-Hartman
2025-10-17 14:53 ` [PATCH 6.12 183/277] PCI: keystone: Use devm_request_irq() to free "ks-pcie-error-irq" on exit Greg Kroah-Hartman
2025-10-17 14:53 ` [PATCH 6.12 184/277] PCI: rcar-gen4: Fix PHY initialization Greg Kroah-Hartman
2025-10-17 14:53 ` [PATCH 6.12 185/277] PCI: rcar-host: Drop PMSR spinlock Greg Kroah-Hartman
2025-10-17 14:53 ` [PATCH 6.12 186/277] PCI: rcar-host: Convert struct rcar_msi mask_lock into raw spinlock Greg Kroah-Hartman
2025-10-17 14:53 ` [PATCH 6.12 187/277] PCI: tegra194: Fix broken tegra_pcie_ep_raise_msi_irq() Greg Kroah-Hartman
2025-10-17 14:53 ` [PATCH 6.12 188/277] PCI: tegra194: Handle errors in BPMP response Greg Kroah-Hartman
2025-10-17 14:53 ` [PATCH 6.12 189/277] PCI: tegra194: Reset BARs when running in PCIe endpoint mode Greg Kroah-Hartman
2025-10-17 14:53 ` [PATCH 6.12 190/277] spi: cadence-quadspi: Flush posted register writes before INDAC access Greg Kroah-Hartman
2025-10-17 14:53 ` [PATCH 6.12 191/277] spi: cadence-quadspi: Flush posted register writes before DAC access Greg Kroah-Hartman
2025-10-17 14:53 ` [PATCH 6.12 192/277] spi: cadence-quadspi: Fix cqspi_setup_flash() Greg Kroah-Hartman
2025-10-17 14:53 ` [PATCH 6.12 193/277] x86/fred: Remove ENDBR64 from FRED entry points Greg Kroah-Hartman
2025-10-17 14:53 ` [PATCH 6.12 194/277] x86/umip: Check that the instruction opcode is at least two bytes Greg Kroah-Hartman
2025-10-17 14:53 ` [PATCH 6.12 195/277] x86/umip: Fix decoding of register forms of 0F 01 (SGDT and SIDT aliases) Greg Kroah-Hartman
2025-10-17 14:53 ` [PATCH 6.12 196/277] selftests: mptcp: join: validate C-flag + def limit Greg Kroah-Hartman
2025-10-17 14:53 ` [PATCH 6.12 197/277] s390/dasd: enforce dma_alignment to ensure proper buffer validation Greg Kroah-Hartman
2025-10-17 14:53 ` [PATCH 6.12 198/277] s390/dasd: Return BLK_STS_INVAL for EINVAL from do_dasd_request Greg Kroah-Hartman
2025-10-17 14:53 ` [PATCH 6.12 199/277] s390: Add -Wno-pointer-sign to KBUILD_CFLAGS_DECOMPRESSOR Greg Kroah-Hartman
2025-10-17 14:53 ` [PATCH 6.12 200/277] slab: prevent warnings when slab obj_exts vector allocation fails Greg Kroah-Hartman
2025-10-17 14:53 ` [PATCH 6.12 201/277] slab: mark slab->obj_exts allocation failures unconditionally Greg Kroah-Hartman
2025-10-17 14:53 ` [PATCH 6.12 202/277] wifi: ath11k: HAL SRNG: dont deinitialize and re-initialize again Greg Kroah-Hartman
2025-10-17 14:53 ` [PATCH 6.12 203/277] wifi: mt76: mt7925u: Add VID/PID for Netgear A9000 Greg Kroah-Hartman
2025-10-17 14:53 ` [PATCH 6.12 204/277] wifi: mt76: mt7921u: Add VID/PID for Netgear A7500 Greg Kroah-Hartman
2025-10-17 14:53 ` [PATCH 6.12 205/277] mm/thp: fix MTE tag mismatch when replacing zero-filled subpages Greg Kroah-Hartman
2025-10-17 14:53 ` [PATCH 6.12 206/277] mm/page_alloc: only set ALLOC_HIGHATOMIC for __GPF_HIGH allocations Greg Kroah-Hartman
2025-10-17 14:53 ` [PATCH 6.12 207/277] mm/hugetlb: early exit from hugetlb_pages_alloc_boot() when max_huge_pages=0 Greg Kroah-Hartman
2025-10-17 14:53 ` [PATCH 6.12 208/277] mm/damon/vaddr: do not repeat pte_offset_map_lock() until success Greg Kroah-Hartman
2025-10-17 14:53 ` [PATCH 6.12 209/277] mm/damon/lru_sort: use param_ctx for damon_attrs staging Greg Kroah-Hartman
2025-10-17 14:53 ` [PATCH 6.12 210/277] NFSD: Fix destination buffer size in nfsd4_ssc_setup_dul() Greg Kroah-Hartman
2025-10-17 14:53 ` [PATCH 6.12 211/277] nfsd: nfserr_jukebox in nlm_fopen should lead to a retry Greg Kroah-Hartman
2025-10-17 14:53 ` [PATCH 6.12 212/277] ext4: add ext4_sb_bread_nofail() helper function for ext4_free_branches() Greg Kroah-Hartman
2025-10-17 14:53 ` [PATCH 6.12 213/277] ext4: verify orphan file size is not too big Greg Kroah-Hartman
2025-10-17 14:53 ` [PATCH 6.12 214/277] ext4: increase i_disksize to offset + len in ext4_update_disksize_before_punch() Greg Kroah-Hartman
2025-10-17 14:53 ` [PATCH 6.12 215/277] ext4: correctly handle queries for metadata mappings Greg Kroah-Hartman
2025-10-17 14:53 ` [PATCH 6.12 216/277] ext4: avoid potential buffer over-read in parse_apply_sb_mount_options() Greg Kroah-Hartman
2025-10-17 14:53 ` [PATCH 6.12 217/277] ext4: fix an off-by-one issue during moving extents Greg Kroah-Hartman
2025-10-17 14:53 ` [PATCH 6.12 218/277] ext4: guard against EA inode refcount underflow in xattr update Greg Kroah-Hartman
2025-10-17 14:53 ` [PATCH 6.12 219/277] ext4: validate ea_ino and size in check_xattrs Greg Kroah-Hartman
2025-10-17 14:53 ` [PATCH 6.12 220/277] ACPICA: Allow to skip Global Lock initialization Greg Kroah-Hartman
2025-10-17 14:53 ` [PATCH 6.12 221/277] ext4: free orphan info with kvfree Greg Kroah-Hartman
2025-10-17 14:53 ` [PATCH 6.12 222/277] lib/crypto/curve25519-hacl64: Disable KASAN with clang-17 and older Greg Kroah-Hartman
2025-10-17 14:53 ` [PATCH 6.12 223/277] selftests/mm: skip soft-dirty tests when CONFIG_MEM_SOFT_DIRTY is disabled Greg Kroah-Hartman
2025-10-17 14:53 ` [PATCH 6.12 224/277] media: mc: Clear minor number before put device Greg Kroah-Hartman
2025-10-17 14:53 ` [PATCH 6.12 225/277] Squashfs: add additional inode sanity checking Greg Kroah-Hartman
2025-10-17 14:53 ` [PATCH 6.12 226/277] Squashfs: reject negative file sizes in squashfs_read_inode() Greg Kroah-Hartman
2025-10-17 14:53 ` [PATCH 6.12 227/277] tracing: Fix race condition in kprobe initialization causing NULL pointer dereference Greg Kroah-Hartman
2025-10-17 14:53 ` [PATCH 6.12 228/277] mm/ksm: fix incorrect KSM counter handling in mm_struct during fork Greg Kroah-Hartman
2025-10-17 14:53 ` [PATCH 6.12 229/277] PCI: endpoint: Remove surplus return statement from pci_epf_test_clean_dma_chan() Greg Kroah-Hartman
2025-10-17 14:53 ` [PATCH 6.12 230/277] PCI: endpoint: pci-epf-test: Add NULL check for DMA channels before release Greg Kroah-Hartman
2025-10-17 14:53 ` [PATCH 6.12 231/277] ASoC: SOF: ipc4-pcm: Enable delay reporting for ChainDMA streams Greg Kroah-Hartman
2025-10-17 14:53 ` [PATCH 6.12 232/277] ASoC: SOF: ipc4-pcm: fix delay calculation when DSP resamples Greg Kroah-Hartman
2025-10-17 14:54 ` [PATCH 6.12 233/277] mfd: intel_soc_pmic_chtdc_ti: Fix invalid regmap-config max_register value Greg Kroah-Hartman
2025-10-17 14:54 ` [PATCH 6.12 234/277] mfd: intel_soc_pmic_chtdc_ti: Drop unneeded assignment for cache_type Greg Kroah-Hartman
2025-10-17 14:54 ` [PATCH 6.12 235/277] mfd: intel_soc_pmic_chtdc_ti: Set use_single_read regmap_config flag Greg Kroah-Hartman
2025-10-17 14:54 ` [PATCH 6.12 236/277] btrfs: fix the incorrect max_bytes value for find_lock_delalloc_range() Greg Kroah-Hartman
2025-10-17 14:54 ` [PATCH 6.12 237/277] cpufreq: Make drivers using CPUFREQ_ETERNAL specify transition latency Greg Kroah-Hartman
2025-10-17 14:54 ` [PATCH 6.12 238/277] KVM: x86: Advertise SRSO_USER_KERNEL_NO to userspace Greg Kroah-Hartman
2025-10-17 16:41   ` Harshit Mogalapalli
2025-10-17 16:53     ` Borislav Petkov
2025-10-17 17:06       ` Harshit Mogalapalli
2025-10-18  8:04         ` Greg Kroah-Hartman
2025-10-17 14:54 ` [PATCH 6.12 239/277] statmount: dont call path_put() under namespace semaphore Greg Kroah-Hartman
2025-10-17 14:54 ` [PATCH 6.12 240/277] arm64: mte: Do not flag the zero page as PG_mte_tagged Greg Kroah-Hartman
2025-10-17 14:54 ` [PATCH 6.12 241/277] x86/mtrr: Rename mtrr_overwrite_state() to guest_force_mtrr_state() Greg Kroah-Hartman
2025-10-17 14:54 ` Greg Kroah-Hartman [this message]
2025-10-17 14:54 ` [PATCH 6.12 243/277] nfsd: Fix NFSD_MAY_BYPASS_GSS and NFSD_MAY_BYPASS_GSS_ON_ROOT Greg Kroah-Hartman
2025-10-17 14:54 ` [PATCH 6.12 244/277] NFSD: Replace use of NFSD_MAY_LOCK in nfsd4_lock() Greg Kroah-Hartman
2025-10-17 14:54 ` [PATCH 6.12 245/277] nfsd: refine and rename NFSD_MAY_LOCK Greg Kroah-Hartman
2025-10-17 14:54 ` [PATCH 6.12 246/277] nfsd: dont use sv_nrthreads in connection limiting calculations Greg Kroah-Hartman
2025-10-17 14:54 ` [PATCH 6.12 247/277] nfsd: unregister with rpcbind when deleting a transport Greg Kroah-Hartman
2025-10-17 14:54 ` [PATCH 6.12 248/277] ACPI: battery: allocate driver data through devm_ APIs Greg Kroah-Hartman
2025-10-17 14:54 ` [PATCH 6.12 249/277] ACPI: battery: initialize mutexes " Greg Kroah-Hartman
2025-10-17 14:54 ` [PATCH 6.12 250/277] ACPI: battery: Check for error code from devm_mutex_init() call Greg Kroah-Hartman
2025-10-17 14:54 ` [PATCH 6.12 251/277] ACPI: battery: Add synchronization between interface updates Greg Kroah-Hartman
2025-10-17 14:54 ` [PATCH 6.12 252/277] ACPI: property: Disregard references in data-only subnode lists Greg Kroah-Hartman
2025-10-17 14:54 ` [PATCH 6.12 253/277] ACPI: property: Add code comments explaining what is going on Greg Kroah-Hartman
2025-10-17 14:54 ` [PATCH 6.12 254/277] ACPI: property: Do not pass NULL handles to acpi_attach_data() Greg Kroah-Hartman
2025-10-17 14:54 ` [PATCH 6.12 255/277] mptcp: pm: in-kernel: usable client side with C-flag Greg Kroah-Hartman
2025-10-17 14:54 ` [PATCH 6.12 256/277] ipmi: Rework user message limit handling Greg Kroah-Hartman
2025-10-17 14:54 ` [PATCH 6.12 257/277] ipmi: Fix handling of messages with provided receive message pointer Greg Kroah-Hartman
2025-10-17 14:54 ` [PATCH 6.12 258/277] 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.12 259/277] s390/bpf: Centralize frame offset calculations Greg Kroah-Hartman
2025-10-17 14:54 ` [PATCH 6.12 260/277] s390/bpf: Describe the frame using a struct instead of constants Greg Kroah-Hartman
2025-10-17 14:54 ` [PATCH 6.12 261/277] s390/bpf: Write back tail call counter for BPF_PSEUDO_CALL Greg Kroah-Hartman
2025-10-17 14:54 ` [PATCH 6.12 262/277] s390/bpf: Write back tail call counter for BPF_TRAMP_F_CALL_ORIG Greg Kroah-Hartman
2025-10-17 14:54 ` [PATCH 6.12 263/277] irqchip/sifive-plic: Make use of __assign_bit() Greg Kroah-Hartman
2025-10-17 14:54 ` [PATCH 6.12 264/277] irqchip/sifive-plic: Avoid interrupt ID 0 handling during suspend/resume Greg Kroah-Hartman
2025-10-17 14:54 ` [PATCH 6.12 265/277] copy_file_range: limit size if in compat mode Greg Kroah-Hartman
2025-10-17 14:54 ` [PATCH 6.12 266/277] minixfs: Verify inode mode when loading from disk Greg Kroah-Hartman
2025-10-17 14:54 ` [PATCH 6.12 267/277] pid: Add a judgment for ns null in pid_nr_ns Greg Kroah-Hartman
2025-10-17 14:54 ` [PATCH 6.12 268/277] pid: make __task_pid_nr_ns(ns => NULL) safe for zombie callers Greg Kroah-Hartman
2025-10-17 14:54 ` [PATCH 6.12 269/277] fs: Add initramfs_options to set initramfs mount options Greg Kroah-Hartman
2025-10-17 14:54 ` [PATCH 6.12 270/277] cramfs: Verify inode mode when loading from disk Greg Kroah-Hartman
2025-10-17 14:54 ` [PATCH 6.12 271/277] writeback: Avoid softlockup when switching many inodes Greg Kroah-Hartman
2025-10-17 14:54 ` [PATCH 6.12 272/277] writeback: Avoid excessively long inode switching times Greg Kroah-Hartman
2025-10-17 14:54 ` [PATCH 6.12 273/277] sched/fair: Block delayed tasks on throttled hierarchy during dequeue Greg Kroah-Hartman
2025-10-17 14:54 ` [PATCH 6.12 274/277] perf test stat: Avoid hybrid assumption when virtualized Greg Kroah-Hartman
2025-10-17 14:54 ` [PATCH 6.12 275/277] nfsd: fix __fh_verify for localio Greg Kroah-Hartman
2025-10-17 14:54 ` [PATCH 6.12 276/277] nfsd: fix access checking for NLM under XPRTSEC policies Greg Kroah-Hartman
2025-10-17 15:32   ` Chuck Lever
2025-10-19 12:25     ` Greg Kroah-Hartman
2025-10-19 15:19       ` Chuck Lever
2025-10-17 14:54 ` [PATCH 6.12 277/277] ASoC: SOF: ipc4-pcm: fix start offset calculation for chain DMA Greg Kroah-Hartman
2025-10-17 18:21 ` [PATCH 6.12 000/277] 6.12.54-rc1 review Jon Hunter
2025-10-17 19:24 ` Pavel Machek
2025-10-17 20:31 ` Brett Mastbergen
2025-10-17 21:46 ` Hardik Garg
2025-10-18  0:25 ` Shuah Khan
2025-10-18  3:26 ` Peter Schneider
2025-10-18  3:31 ` Florian Fainelli
2025-10-18  6:06 ` Naresh Kamboju
2025-10-19 12:11   ` Greg Kroah-Hartman
2025-10-18  8:09 ` Brett A C Sheffield
2025-10-18  8:16 ` Harshit Mogalapalli
2025-10-18  9:56 ` Dileep malepu
2025-10-18 16:14 ` Miguel Ojeda
2025-10-19 10:36 ` Pascal Ernster

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=20251017145155.979733982@linuxfoundation.org \
    --to=gregkh@linuxfoundation.org \
    --cc=binbin.wu@linux.intel.com \
    --cc=jgross@suse.com \
    --cc=jxgao@google.com \
    --cc=korakit@google.com \
    --cc=nik.borisov@suse.com \
    --cc=patches@lists.linux.dev \
    --cc=pgonda@google.com \
    --cc=sashal@kernel.org \
    --cc=seanjc@google.com \
    --cc=stable@vger.kernel.org \
    --cc=thomas.lendacky@amd.com \
    --cc=vkuznets@redhat.com \
    /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).