From: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
To: stable@vger.kernel.org
Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>,
patches@lists.linux.dev, est31 <est31@protonmail.com>,
Gary Guo <gary@garyguo.net>, Miguel Ojeda <ojeda@kernel.org>
Subject: [PATCH 6.12 341/414] rust: compile libcore with edition 2024 for 1.87+
Date: Mon, 23 Jun 2025 15:07:58 +0200 [thread overview]
Message-ID: <20250623130650.505998853@linuxfoundation.org> (raw)
In-Reply-To: <20250623130642.015559452@linuxfoundation.org>
6.12-stable review patch. If anyone has any objections, please let me know.
------------------
From: Gary Guo <gary@garyguo.net>
commit f4daa80d6be7d3c55ca72a8e560afc4e21f886aa upstream.
Rust 1.87 (released on 2025-05-15) compiles core library with edition
2024 instead of 2021 [1]. Ensure that the edition matches libcore's
expectation to avoid potential breakage.
[ J3m3 reported in Zulip [2] that the `rust-analyzer` target was
broken after this patch -- indeed, we need to avoid `core-cfgs`
since those are passed to the `rust-analyzer` target.
So, instead, I tweaked the patch to create a new `core-edition`
variable and explicitly mention the `--edition` flag instead of
reusing `core-cfg`s.
In addition, pass a new argument using this new variable to
`generate_rust_analyzer.py` so that we set the right edition there.
By the way, for future reference: the `filter-out` change is needed
for Rust < 1.87, since otherwise we would skip the `--edition=2021`
we just added, ending up with no edition flag, and thus the compiler
would default to the 2015 one.
[2] https://rust-for-linux.zulipchat.com/#narrow/channel/291565/topic/x/near/520206547
- Miguel ]
Cc: stable@vger.kernel.org # Needed in 6.12.y and later (Rust is pinned in older LTSs).
Link: https://github.com/rust-lang/rust/pull/138162 [1]
Reported-by: est31 <est31@protonmail.com>
Closes: https://github.com/Rust-for-Linux/linux/issues/1163
Signed-off-by: Gary Guo <gary@garyguo.net>
Link: https://lore.kernel.org/r/20250517085600.2857460-1-gary@garyguo.net
Signed-off-by: Miguel Ojeda <ojeda@kernel.org>
[ Solved conflicts for 6.12.y backport. - Miguel ]
Signed-off-by: Miguel Ojeda <ojeda@kernel.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
---
rust/Makefile | 14 ++++++++------
scripts/generate_rust_analyzer.py | 13 ++++++++-----
2 files changed, 16 insertions(+), 11 deletions(-)
--- a/rust/Makefile
+++ b/rust/Makefile
@@ -53,6 +53,8 @@ endif
core-cfgs = \
--cfg no_fp_fmt_parse
+core-edition := $(if $(call rustc-min-version,108700),2024,2021)
+
quiet_cmd_rustdoc = RUSTDOC $(if $(rustdoc_host),H, ) $<
cmd_rustdoc = \
OBJTREE=$(abspath $(objtree)) \
@@ -95,8 +97,8 @@ rustdoc-macros: $(src)/macros/lib.rs FOR
# Starting with Rust 1.82.0, skipping `-Wrustdoc::unescaped_backticks` should
# not be needed -- see https://github.com/rust-lang/rust/pull/128307.
-rustdoc-core: private skip_flags = -Wrustdoc::unescaped_backticks
-rustdoc-core: private rustc_target_flags = $(core-cfgs)
+rustdoc-core: private skip_flags = --edition=2021 -Wrustdoc::unescaped_backticks
+rustdoc-core: private rustc_target_flags = --edition=$(core-edition) $(core-cfgs)
rustdoc-core: $(RUST_LIB_SRC)/core/src/lib.rs FORCE
+$(call if_changed,rustdoc)
@@ -372,7 +374,7 @@ quiet_cmd_rustc_library = $(if $(skip_cl
cmd_rustc_library = \
OBJTREE=$(abspath $(objtree)) \
$(if $(skip_clippy),$(RUSTC),$(RUSTC_OR_CLIPPY)) \
- $(filter-out $(skip_flags),$(rust_flags) $(rustc_target_flags)) \
+ $(filter-out $(skip_flags),$(rust_flags)) $(rustc_target_flags) \
--emit=dep-info=$(depfile) --emit=obj=$@ \
--emit=metadata=$(dir $@)$(patsubst %.o,lib%.rmeta,$(notdir $@)) \
--crate-type rlib -L$(objtree)/$(obj) \
@@ -383,7 +385,7 @@ quiet_cmd_rustc_library = $(if $(skip_cl
rust-analyzer:
$(Q)$(srctree)/scripts/generate_rust_analyzer.py \
- --cfgs='core=$(core-cfgs)' \
+ --cfgs='core=$(core-cfgs)' $(core-edition) \
$(realpath $(srctree)) $(realpath $(objtree)) \
$(rustc_sysroot) $(RUST_LIB_SRC) $(KBUILD_EXTMOD) > \
$(if $(KBUILD_EXTMOD),$(extmod_prefix),$(objtree))/rust-project.json
@@ -407,9 +409,9 @@ define rule_rustc_library
endef
$(obj)/core.o: private skip_clippy = 1
-$(obj)/core.o: private skip_flags = -Wunreachable_pub
+$(obj)/core.o: private skip_flags = --edition=2021 -Wunreachable_pub
$(obj)/core.o: private rustc_objcopy = $(foreach sym,$(redirect-intrinsics),--redefine-sym $(sym)=__rust$(sym))
-$(obj)/core.o: private rustc_target_flags = $(core-cfgs)
+$(obj)/core.o: private rustc_target_flags = --edition=$(core-edition) $(core-cfgs)
$(obj)/core.o: $(RUST_LIB_SRC)/core/src/lib.rs \
$(wildcard $(objtree)/include/config/RUSTC_VERSION_TEXT) FORCE
+$(call if_changed_rule,rustc_library)
--- a/scripts/generate_rust_analyzer.py
+++ b/scripts/generate_rust_analyzer.py
@@ -18,7 +18,7 @@ def args_crates_cfgs(cfgs):
return crates_cfgs
-def generate_crates(srctree, objtree, sysroot_src, external_src, cfgs):
+def generate_crates(srctree, objtree, sysroot_src, external_src, cfgs, core_edition):
# Generate the configuration list.
cfg = []
with open(objtree / "include" / "generated" / "rustc_cfg") as fd:
@@ -34,7 +34,7 @@ def generate_crates(srctree, objtree, sy
crates_indexes = {}
crates_cfgs = args_crates_cfgs(cfgs)
- def append_crate(display_name, root_module, deps, cfg=[], is_workspace_member=True, is_proc_macro=False):
+ def append_crate(display_name, root_module, deps, cfg=[], is_workspace_member=True, is_proc_macro=False, edition="2021"):
crates_indexes[display_name] = len(crates)
crates.append({
"display_name": display_name,
@@ -43,7 +43,7 @@ def generate_crates(srctree, objtree, sy
"is_proc_macro": is_proc_macro,
"deps": [{"crate": crates_indexes[dep], "name": dep} for dep in deps],
"cfg": cfg,
- "edition": "2021",
+ "edition": edition,
"env": {
"RUST_MODFILE": "This is only for rust-analyzer"
}
@@ -53,6 +53,7 @@ def generate_crates(srctree, objtree, sy
display_name,
deps,
cfg=[],
+ edition="2021",
):
append_crate(
display_name,
@@ -60,12 +61,13 @@ def generate_crates(srctree, objtree, sy
deps,
cfg,
is_workspace_member=False,
+ edition=edition,
)
# NB: sysroot crates reexport items from one another so setting up our transitive dependencies
# here is important for ensuring that rust-analyzer can resolve symbols. The sources of truth
# for this dependency graph are `(sysroot_src / crate / "Cargo.toml" for crate in crates)`.
- append_sysroot_crate("core", [], cfg=crates_cfgs.get("core", []))
+ append_sysroot_crate("core", [], cfg=crates_cfgs.get("core", []), edition=core_edition)
append_sysroot_crate("alloc", ["core"])
append_sysroot_crate("std", ["alloc", "core"])
append_sysroot_crate("proc_macro", ["core", "std"])
@@ -155,6 +157,7 @@ def main():
parser = argparse.ArgumentParser()
parser.add_argument('--verbose', '-v', action='store_true')
parser.add_argument('--cfgs', action='append', default=[])
+ parser.add_argument("core_edition")
parser.add_argument("srctree", type=pathlib.Path)
parser.add_argument("objtree", type=pathlib.Path)
parser.add_argument("sysroot", type=pathlib.Path)
@@ -171,7 +174,7 @@ def main():
assert args.sysroot in args.sysroot_src.parents
rust_project = {
- "crates": generate_crates(args.srctree, args.objtree, args.sysroot_src, args.exttree, args.cfgs),
+ "crates": generate_crates(args.srctree, args.objtree, args.sysroot_src, args.exttree, args.cfgs, args.core_edition),
"sysroot": str(args.sysroot),
}
next prev parent reply other threads:[~2025-06-23 22:20 UTC|newest]
Thread overview: 418+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-06-23 13:02 [PATCH 6.12 000/414] 6.12.35-rc1 review Greg Kroah-Hartman
2025-06-23 13:02 ` [PATCH 6.12 001/414] configfs: Do not override creating attribute file failure in populate_attrs() Greg Kroah-Hartman
2025-06-23 13:02 ` [PATCH 6.12 002/414] crypto: marvell/cesa - Do not chain submitted requests Greg Kroah-Hartman
2025-06-23 13:02 ` [PATCH 6.12 003/414] gfs2: move msleep to sleepable context Greg Kroah-Hartman
2025-06-23 13:02 ` [PATCH 6.12 004/414] crypto: qat - add shutdown handler to qat_c3xxx Greg Kroah-Hartman
2025-06-23 13:02 ` [PATCH 6.12 005/414] crypto: qat - add shutdown handler to qat_420xx Greg Kroah-Hartman
2025-06-23 13:02 ` [PATCH 6.12 006/414] crypto: qat - add shutdown handler to qat_4xxx Greg Kroah-Hartman
2025-06-23 13:02 ` [PATCH 6.12 007/414] crypto: qat - add shutdown handler to qat_c62x Greg Kroah-Hartman
2025-06-23 13:02 ` [PATCH 6.12 008/414] crypto: qat - add shutdown handler to qat_dh895xcc Greg Kroah-Hartman
2025-06-23 13:02 ` [PATCH 6.12 009/414] ASoC: qcom: sdm845: Add error handling in sdm845_slim_snd_hw_params() Greg Kroah-Hartman
2025-06-23 13:02 ` [PATCH 6.12 010/414] ASoC: meson: meson-card-utils: use of_property_present() for DT parsing Greg Kroah-Hartman
2025-06-23 13:02 ` [PATCH 6.12 011/414] ASoC: amd: sof_amd_sdw: Fix unlikely uninitialized variable use in create_sdw_dailinks() Greg Kroah-Hartman
2025-06-23 13:02 ` [PATCH 6.12 012/414] io_uring: account drain memory to cgroup Greg Kroah-Hartman
2025-06-23 13:02 ` [PATCH 6.12 013/414] io_uring/kbuf: account ring io_buffer_list memory Greg Kroah-Hartman
2025-06-23 13:02 ` [PATCH 6.12 014/414] powerpc/pseries/msi: Avoid reading PCI device registers in reduced power states Greg Kroah-Hartman
2025-06-23 13:02 ` [PATCH 6.12 015/414] s390/pci: Remove redundant bus removal and disable from zpci_release_device() Greg Kroah-Hartman
2025-06-23 13:02 ` [PATCH 6.12 016/414] s390/pci: Prevent self deletion in disable_slot() Greg Kroah-Hartman
2025-06-23 13:02 ` [PATCH 6.12 017/414] s390/pci: Allow re-add of a reserved but not yet removed device Greg Kroah-Hartman
2025-06-23 13:02 ` [PATCH 6.12 018/414] s390/pci: Serialize device addition and removal Greg Kroah-Hartman
2025-06-23 13:02 ` [PATCH 6.12 019/414] regulator: max20086: Fix MAX200086 chip id Greg Kroah-Hartman
2025-06-23 13:02 ` [PATCH 6.12 020/414] regulator: max20086: Change enable gpio to optional Greg Kroah-Hartman
2025-06-23 13:02 ` [PATCH 6.12 021/414] net/mlx5_core: Add error handling inmlx5_query_nic_vport_qkey_viol_cntr() Greg Kroah-Hartman
2025-06-23 13:02 ` [PATCH 6.12 022/414] net/mlx5: Add error handling in mlx5_query_nic_vport_node_guid() Greg Kroah-Hartman
2025-06-23 13:02 ` [PATCH 6.12 023/414] wifi: p54: prevent buffer-overflow in p54_rx_eeprom_readback() Greg Kroah-Hartman
2025-06-23 13:02 ` [PATCH 6.12 024/414] wifi: mt76: mt7925: fix host interrupt register initialization Greg Kroah-Hartman
2025-06-23 13:02 ` [PATCH 6.12 025/414] wifi: ath11k: fix rx completion meta data corruption Greg Kroah-Hartman
2025-06-23 13:02 ` [PATCH 6.12 026/414] wifi: rtw88: usb: Upload the firmware in bigger chunks Greg Kroah-Hartman
2025-06-23 13:02 ` [PATCH 6.12 027/414] wifi: ath11k: fix ring-buffer corruption Greg Kroah-Hartman
2025-06-23 13:02 ` [PATCH 6.12 028/414] NFSD: unregister filesystem in case genl_register_family() fails Greg Kroah-Hartman
2025-06-23 13:02 ` [PATCH 6.12 029/414] NFSD: fix race between nfsd registration and exports_proc Greg Kroah-Hartman
2025-06-23 13:02 ` [PATCH 6.12 030/414] NFSD: Implement FATTR4_CLONE_BLKSIZE attribute Greg Kroah-Hartman
2025-06-23 13:02 ` [PATCH 6.12 031/414] nfsd: nfsd4_spo_must_allow() must check this is a v4 compound request Greg Kroah-Hartman
2025-06-23 13:02 ` [PATCH 6.12 032/414] nfsd: Initialize ssc before laundromat_work to prevent NULL dereference Greg Kroah-Hartman
2025-06-23 13:02 ` [PATCH 6.12 033/414] SUNRPC: Prevent hang on NFS mount with xprtsec=[m]tls Greg Kroah-Hartman
2025-06-23 13:02 ` [PATCH 6.12 034/414] NFSv4: Dont check for OPEN feature support in v4.1 Greg Kroah-Hartman
2025-06-23 13:02 ` [PATCH 6.12 035/414] fs/nfs/read: fix double-unlock bug in nfs_return_empty_folio() Greg Kroah-Hartman
2025-06-23 13:02 ` [PATCH 6.12 036/414] wifi: ath12k: fix ring-buffer corruption Greg Kroah-Hartman
2025-06-23 13:02 ` [PATCH 6.12 037/414] jbd2: fix data-race and null-ptr-deref in jbd2_journal_dirty_metadata() Greg Kroah-Hartman
2025-06-23 13:02 ` [PATCH 6.12 038/414] svcrdma: Unregister the device if svc_rdma_accept() fails Greg Kroah-Hartman
2025-06-23 13:02 ` [PATCH 6.12 039/414] wifi: rtw88: usb: Reduce control message timeout to 500 ms Greg Kroah-Hartman
2025-06-23 13:02 ` [PATCH 6.12 040/414] wifi: rtlwifi: disable ASPM for RTL8723BE with subsystem ID 11ad:1723 Greg Kroah-Hartman
2025-06-23 13:02 ` [PATCH 6.12 041/414] media: ov8856: suppress probe deferral errors Greg Kroah-Hartman
2025-06-23 13:02 ` [PATCH 6.12 042/414] media: ov5675: " Greg Kroah-Hartman
2025-06-23 13:03 ` [PATCH 6.12 043/414] media: imx335: Use correct register width for HNUM Greg Kroah-Hartman
2025-06-23 13:03 ` [PATCH 6.12 044/414] media: nxp: imx8-isi: better handle the m2m usage_count Greg Kroah-Hartman
2025-06-23 13:03 ` [PATCH 6.12 045/414] media: i2c: ds90ub913: Fix returned fmt from .set_fmt() Greg Kroah-Hartman
2025-06-23 13:03 ` [PATCH 6.12 046/414] media: ccs-pll: Start VT pre-PLL multiplier search from correct value Greg Kroah-Hartman
2025-06-23 13:03 ` [PATCH 6.12 047/414] media: ov2740: Move pm-runtime cleanup on probe-errors to proper place Greg Kroah-Hartman
2025-06-23 13:03 ` [PATCH 6.12 048/414] media: ccs-pll: Start OP pre-PLL multiplier search from correct value Greg Kroah-Hartman
2025-06-23 13:03 ` [PATCH 6.12 049/414] media: ccs-pll: Correct the upper limit of maximum op_pre_pll_clk_div Greg Kroah-Hartman
2025-06-23 13:03 ` [PATCH 6.12 050/414] media: ccs-pll: Check for too high VT PLL multiplier in dual PLL case Greg Kroah-Hartman
2025-06-23 13:03 ` [PATCH 6.12 051/414] media: cxusb: no longer judge rbuf when the write fails Greg Kroah-Hartman
2025-06-23 13:03 ` [PATCH 6.12 052/414] media: davinci: vpif: Fix memory leak in probe error path Greg Kroah-Hartman
2025-06-23 13:03 ` [PATCH 6.12 053/414] media: gspca: Add error handling for stv06xx_read_sensor() Greg Kroah-Hartman
2025-06-23 13:03 ` [PATCH 6.12 054/414] media: i2c: imx335: Fix frame size enumeration Greg Kroah-Hartman
2025-06-23 13:03 ` [PATCH 6.12 055/414] media: imagination: fix a potential memory leak in e5010_probe() Greg Kroah-Hartman
2025-06-23 13:03 ` [PATCH 6.12 056/414] media: intel/ipu6: Fix dma mask for non-secure mode Greg Kroah-Hartman
2025-06-23 13:03 ` [PATCH 6.12 057/414] media: ipu6: Remove workaround for Meteor Lake ES2 Greg Kroah-Hartman
2025-06-23 13:03 ` [PATCH 6.12 058/414] media: mediatek: vcodec: Correct vsi_core framebuffer size Greg Kroah-Hartman
2025-06-23 13:03 ` [PATCH 6.12 059/414] media: omap3isp: use sgtable-based scatterlist wrappers Greg Kroah-Hartman
2025-06-23 13:03 ` [PATCH 6.12 060/414] media: v4l2-dev: fix error handling in __video_register_device() Greg Kroah-Hartman
2025-06-23 13:03 ` [PATCH 6.12 061/414] media: venus: Fix probe error handling Greg Kroah-Hartman
2025-06-23 13:03 ` [PATCH 6.12 062/414] media: videobuf2: use sgtable-based scatterlist wrappers Greg Kroah-Hartman
2025-06-23 13:03 ` [PATCH 6.12 063/414] media: vidtv: Terminating the subsequent process of initialization failure Greg Kroah-Hartman
2025-06-23 13:03 ` [PATCH 6.12 064/414] media: vivid: Change the siize of the composing Greg Kroah-Hartman
2025-06-23 13:03 ` [PATCH 6.12 065/414] media: imx-jpeg: Drop the first error frames Greg Kroah-Hartman
2025-06-23 13:03 ` [PATCH 6.12 066/414] media: imx-jpeg: Move mxc_jpeg_free_slot_data() ahead Greg Kroah-Hartman
2025-06-23 13:03 ` [PATCH 6.12 067/414] media: imx-jpeg: Reset slot data pointers when freed Greg Kroah-Hartman
2025-06-23 13:03 ` [PATCH 6.12 068/414] media: imx-jpeg: Cleanup after an allocation error Greg Kroah-Hartman
2025-06-23 13:03 ` [PATCH 6.12 069/414] media: uvcvideo: Return the number of processed controls Greg Kroah-Hartman
2025-06-23 13:03 ` [PATCH 6.12 070/414] media: uvcvideo: Send control events for partial succeeds Greg Kroah-Hartman
2025-06-23 13:03 ` [PATCH 6.12 071/414] media: uvcvideo: Fix deferred probing error Greg Kroah-Hartman
2025-06-23 13:03 ` [PATCH 6.12 072/414] arm64/mm: Close theoretical race where stale TLB entry remains valid Greg Kroah-Hartman
2025-06-23 13:03 ` [PATCH 6.12 073/414] ARM: 9447/1: arm/memremap: fix arch_memremap_can_ram_remap() Greg Kroah-Hartman
2025-06-23 13:03 ` [PATCH 6.12 074/414] ARM: omap: pmic-cpcap: do not mess around without CPCAP or OMAP4 Greg Kroah-Hartman
2025-06-23 13:03 ` [PATCH 6.12 075/414] ASoC: codecs: wcd9375: Fix double free of regulator supplies Greg Kroah-Hartman
2025-06-23 13:03 ` [PATCH 6.12 076/414] ASoC: codecs: wcd937x: Drop unused buck_supply Greg Kroah-Hartman
2025-06-23 13:03 ` [PATCH 6.12 077/414] block: use plug request list tail for one-shot backmerge attempt Greg Kroah-Hartman
2025-06-23 13:03 ` [PATCH 6.12 078/414] block: Clear BIO_EMULATES_ZONE_APPEND flag on BIO completion Greg Kroah-Hartman
2025-06-23 13:03 ` [PATCH 6.12 079/414] bus: mhi: ep: Update read pointer only after buffer is written Greg Kroah-Hartman
2025-06-23 13:03 ` [PATCH 6.12 080/414] bus: mhi: host: Fix conflict between power_up and SYSERR Greg Kroah-Hartman
2025-06-23 13:03 ` [PATCH 6.12 081/414] can: kvaser_pciefd: refine error prone echo_skb_max handling logic Greg Kroah-Hartman
2025-06-23 13:03 ` [PATCH 6.12 082/414] can: tcan4x5x: fix power regulator retrieval during probe Greg Kroah-Hartman
2025-06-23 13:03 ` [PATCH 6.12 083/414] ceph: avoid kernel BUG for encrypted inode with unaligned file size Greg Kroah-Hartman
2025-06-23 13:03 ` [PATCH 6.12 084/414] ceph: set superblock s_magic for IMA fsmagic matching Greg Kroah-Hartman
2025-06-23 13:03 ` [PATCH 6.12 085/414] cgroup,freezer: fix incomplete freezing when attaching tasks Greg Kroah-Hartman
2025-06-23 13:03 ` [PATCH 6.12 086/414] bus: firewall: Fix missing static inline annotations for stubs Greg Kroah-Hartman
2025-06-23 13:03 ` [PATCH 6.12 087/414] ata: pata_via: Force PIO for ATAPI devices on VT6415/VT6330 Greg Kroah-Hartman
2025-06-23 13:03 ` [PATCH 6.12 088/414] ata: ahci: Disallow LPM for ASUSPRO-D840SA motherboard Greg Kroah-Hartman
2025-06-23 13:03 ` [PATCH 6.12 089/414] ata: ahci: Disallow LPM for Asus B550-F motherboard Greg Kroah-Hartman
2025-06-23 13:03 ` [PATCH 6.12 090/414] bus: fsl-mc: do not add a device-link for the UAPI used DPMCP device Greg Kroah-Hartman
2025-06-23 13:03 ` [PATCH 6.12 091/414] bus: fsl-mc: fix GET/SET_TAILDROP command ids Greg Kroah-Hartman
2025-06-23 13:03 ` [PATCH 6.12 092/414] ext4: inline: fix len overflow in ext4_prepare_inline_data Greg Kroah-Hartman
2025-06-23 13:03 ` [PATCH 6.12 093/414] ext4: fix calculation of credits for extent tree modification Greg Kroah-Hartman
2025-06-23 13:03 ` [PATCH 6.12 094/414] ext4: factor out ext4_get_maxbytes() Greg Kroah-Hartman
2025-06-23 13:03 ` [PATCH 6.12 095/414] ext4: ensure i_size is smaller than maxbytes Greg Kroah-Hartman
2025-06-23 13:03 ` [PATCH 6.12 096/414] ext4: only dirty folios when data journaling regular files Greg Kroah-Hartman
2025-06-23 13:03 ` [PATCH 6.12 097/414] Input: ims-pcu - check record size in ims_pcu_flash_firmware() Greg Kroah-Hartman
2025-06-23 13:03 ` [PATCH 6.12 098/414] Input: gpio-keys - fix possible concurrent access in gpio_keys_irq_timer() Greg Kroah-Hartman
2025-06-23 13:03 ` [PATCH 6.12 099/414] f2fs: fix to do sanity check on ino and xnid Greg Kroah-Hartman
2025-06-23 13:03 ` [PATCH 6.12 100/414] f2fs: prevent kernel warning due to negative i_nlink from corrupted image Greg Kroah-Hartman
2025-06-23 13:03 ` [PATCH 6.12 101/414] f2fs: fix to do sanity check on sit_bitmap_size Greg Kroah-Hartman
2025-06-23 13:03 ` [PATCH 6.12 102/414] hwmon: (ftsteutates) Fix TOCTOU race in fts_read() Greg Kroah-Hartman
2025-06-23 13:04 ` [PATCH 6.12 103/414] NFC: nci: uart: Set tty->disc_data only in success path Greg Kroah-Hartman
2025-06-23 13:04 ` [PATCH 6.12 104/414] net/sched: fix use-after-free in taprio_dev_notifier Greg Kroah-Hartman
2025-06-23 13:04 ` [PATCH 6.12 105/414] net: ftgmac100: select FIXED_PHY Greg Kroah-Hartman
2025-06-23 13:04 ` [PATCH 6.12 106/414] iommu/vt-d: Restore context entry setup order for aliased devices Greg Kroah-Hartman
2025-06-23 13:04 ` [PATCH 6.12 107/414] fbdev: Fix do_register_framebuffer to prevent null-ptr-deref in fb_videomode_to_var Greg Kroah-Hartman
2025-06-23 13:04 ` [PATCH 6.12 108/414] EDAC/altera: Use correct write width with the INTTEST register Greg Kroah-Hartman
2025-06-23 13:04 ` [PATCH 6.12 109/414] fbdev: Fix fb_set_var to prevent null-ptr-deref in fb_videomode_to_var Greg Kroah-Hartman
2025-06-23 13:04 ` [PATCH 6.12 110/414] parisc/unaligned: Fix hex output to show 8 hex chars Greg Kroah-Hartman
2025-06-23 13:04 ` [PATCH 6.12 111/414] vgacon: Add check for vc_origin address range in vgacon_scroll() Greg Kroah-Hartman
2025-06-23 13:04 ` [PATCH 6.12 112/414] parisc: fix building with gcc-15 Greg Kroah-Hartman
2025-06-23 13:04 ` [PATCH 6.12 113/414] clk: meson-g12a: add missing fclk_div2 to spicc Greg Kroah-Hartman
2025-06-23 13:04 ` [PATCH 6.12 115/414] watchdog: fix watchdog may detect false positive of softlockup Greg Kroah-Hartman
2025-06-23 13:04 ` [PATCH 6.12 116/414] RDMA/iwcm: Fix use-after-free of work objects after cm_id destruction Greg Kroah-Hartman
2025-06-23 13:04 ` [PATCH 6.12 117/414] mm: fix ratelimit_pages update error in dirty_ratio_handler() Greg Kroah-Hartman
2025-06-23 13:04 ` [PATCH 6.12 118/414] soc: qcom: pmic_glink_altmode: fix spurious DP hotplug events Greg Kroah-Hartman
2025-06-23 13:04 ` [PATCH 6.12 119/414] configfs-tsm-report: Fix NULL dereference of tsm_ops Greg Kroah-Hartman
2025-06-23 13:04 ` [PATCH 6.12 120/414] firmware: arm_scmi: Ensure that the message-id supports fastchannel Greg Kroah-Hartman
2025-06-23 13:04 ` [PATCH 6.12 121/414] mtd: rawnand: sunxi: Add randomizer configuration in sunxi_nfc_hw_ecc_write_chunk Greg Kroah-Hartman
2025-06-23 13:04 ` [PATCH 6.12 122/414] mtd: nand: sunxi: Add randomizer configuration before randomizer enable Greg Kroah-Hartman
2025-06-23 13:04 ` [PATCH 6.12 123/414] KVM: SVM: Clear current_vmcb during vCPU free for all *possible* CPUs Greg Kroah-Hartman
2025-06-23 13:04 ` [PATCH 6.12 124/414] KVM: VMX: Flush shadow VMCS on emergency reboot Greg Kroah-Hartman
2025-06-23 13:04 ` [PATCH 6.12 125/414] dm-mirror: fix a tiny race condition Greg Kroah-Hartman
2025-06-23 13:04 ` [PATCH 6.12 126/414] dm-verity: fix a memory leak if some arguments are specified multiple times Greg Kroah-Hartman
2025-06-23 13:04 ` [PATCH 6.12 127/414] mtd: rawnand: qcom: Fix read len for onfi param page Greg Kroah-Hartman
2025-06-23 13:04 ` [PATCH 6.12 128/414] ftrace: Fix UAF when lookup kallsym after ftrace disabled Greg Kroah-Hartman
2025-06-23 13:04 ` [PATCH 6.12 129/414] dm: lock limits when reading them Greg Kroah-Hartman
2025-06-23 13:04 ` [PATCH 6.12 130/414] phy: fsl-imx8mq-usb: fix phy_tx_vboost_level_from_property() Greg Kroah-Hartman
2025-06-23 13:04 ` [PATCH 6.12 131/414] net: ch9200: fix uninitialised access during mii_nway_restart Greg Kroah-Hartman
2025-06-23 13:04 ` [PATCH 6.12 132/414] KVM: s390: rename PROT_NONE to PROT_TYPE_DUMMY Greg Kroah-Hartman
2025-06-23 13:04 ` [PATCH 6.12 133/414] sysfb: Fix screen_info type check for VGA Greg Kroah-Hartman
2025-06-23 13:04 ` [PATCH 6.12 134/414] video: screen_info: Relocate framebuffers behind PCI bridges Greg Kroah-Hartman
2025-06-23 13:04 ` [PATCH 6.12 135/414] pwm: axi-pwmgen: fix missing separate external clock Greg Kroah-Hartman
2025-06-23 13:04 ` [PATCH 6.12 136/414] staging: iio: ad5933: Correct settling cycles encoding per datasheet Greg Kroah-Hartman
2025-06-23 13:04 ` [PATCH 6.12 137/414] mips: Add -std= flag specified in KBUILD_CFLAGS to vdso CFLAGS Greg Kroah-Hartman
2025-06-23 13:04 ` [PATCH 6.12 138/414] ovl: Fix nested backing file paths Greg Kroah-Hartman
2025-06-23 13:04 ` [PATCH 6.12 139/414] regulator: max14577: Add error check for max14577_read_reg() Greg Kroah-Hartman
2025-06-23 13:04 ` [PATCH 6.12 140/414] remoteproc: core: Cleanup acquired resources when rproc_handle_resources() fails in rproc_attach() Greg Kroah-Hartman
2025-06-23 13:04 ` [PATCH 6.12 141/414] remoteproc: core: Release rproc->clean_table after rproc_attach() fails Greg Kroah-Hartman
2025-06-23 13:04 ` [PATCH 6.12 142/414] remoteproc: k3-m4: Dont assert reset in detach routine Greg Kroah-Hartman
2025-06-23 13:04 ` [PATCH 6.12 143/414] cifs: reset connections for all channels when reconnect requested Greg Kroah-Hartman
2025-06-23 13:04 ` [PATCH 6.12 144/414] cifs: update dstaddr whenever channel iface is updated Greg Kroah-Hartman
2025-06-23 13:04 ` [PATCH 6.12 145/414] cifs: dns resolution is needed only for primary channel Greg Kroah-Hartman
2025-06-23 13:04 ` [PATCH 6.12 146/414] smb: client: add NULL check in automount_fullpath Greg Kroah-Hartman
2025-06-23 13:04 ` [PATCH 6.12 147/414] Drivers: hv: Allocate interrupt and monitor pages aligned to system page boundary Greg Kroah-Hartman
2025-06-23 13:04 ` [PATCH 6.12 148/414] uio_hv_generic: Use correct size for interrupt and monitor pages Greg Kroah-Hartman
2025-06-23 13:04 ` [PATCH 6.12 149/414] uio_hv_generic: Align ring size to system page Greg Kroah-Hartman
2025-06-23 13:04 ` [PATCH 6.12 150/414] PCI: cadence-ep: Correct PBA offset in .set_msix() callback Greg Kroah-Hartman
2025-06-23 13:04 ` [PATCH 6.12 151/414] PCI: dwc: ep: " Greg Kroah-Hartman
2025-06-23 13:04 ` [PATCH 6.12 152/414] PCI: Add ACS quirk for Loongson PCIe Greg Kroah-Hartman
2025-06-23 13:04 ` [PATCH 6.12 153/414] PCI: Fix lock symmetry in pci_slot_unlock() Greg Kroah-Hartman
2025-06-23 13:04 ` [PATCH 6.12 154/414] PCI: dw-rockchip: Remove PCIE_L0S_ENTRY check from rockchip_pcie_link_up() Greg Kroah-Hartman
2025-06-23 13:04 ` [PATCH 6.12 155/414] PCI: dw-rockchip: Fix PHY function call sequence in rockchip_pcie_phy_deinit() Greg Kroah-Hartman
2025-06-23 13:04 ` [PATCH 6.12 156/414] iio: accel: fxls8962af: Fix temperature scan element sign Greg Kroah-Hartman
2025-06-23 13:04 ` [PATCH 6.12 157/414] accel/ivpu: Improve buffer object logging Greg Kroah-Hartman
2025-06-23 13:04 ` [PATCH 6.12 158/414] accel/ivpu: Use firmware names from upstream repo Greg Kroah-Hartman
2025-06-23 13:04 ` [PATCH 6.12 159/414] accel/ivpu: Use dma_resv_lock() instead of a custom mutex Greg Kroah-Hartman
2025-06-23 13:04 ` [PATCH 6.12 160/414] accel/ivpu: Fix warning in ivpu_gem_bo_free() Greg Kroah-Hartman
2025-06-23 13:04 ` [PATCH 6.12 161/414] dummycon: Trigger redraw when switching consoles with deferred takeover Greg Kroah-Hartman
2025-06-23 13:04 ` [PATCH 6.12 162/414] mm/hugetlb: fix huge_pmd_unshare() vs GUP-fast race Greg Kroah-Hartman
2025-06-23 13:05 ` [PATCH 6.12 163/414] iio: imu: inv_icm42600: Fix temperature calculation Greg Kroah-Hartman
2025-06-23 13:05 ` [PATCH 6.12 164/414] iio: adc: ad7944: mask high bits on direct read Greg Kroah-Hartman
2025-06-23 13:05 ` [PATCH 6.12 165/414] iio: adc: ti-ads1298: Kconfig: add kfifo dependency to fix module build Greg Kroah-Hartman
2025-06-23 13:05 ` [PATCH 6.12 166/414] iio: adc: ad7606_spi: fix reg write value mask Greg Kroah-Hartman
2025-06-23 13:05 ` [PATCH 6.12 167/414] ACPICA: fix acpi operand cache leak in dswstate.c Greg Kroah-Hartman
2025-06-23 13:05 ` [PATCH 6.12 168/414] ASoC: amd: yc: Add quirk for Lenovo Yoga Pro 7 14ASP9 Greg Kroah-Hartman
2025-06-23 13:05 ` [PATCH 6.12 169/414] clocksource: Fix the CPUs choice in the watchdog per CPU verification Greg Kroah-Hartman
2025-06-23 13:05 ` [PATCH 6.12 170/414] power: supply: collie: Fix wakeup source leaks on device unbind Greg Kroah-Hartman
2025-06-23 13:05 ` [PATCH 6.12 171/414] mmc: Add quirk to disable DDR50 tuning Greg Kroah-Hartman
2025-06-23 13:05 ` [PATCH 6.12 172/414] ACPICA: Avoid sequence overread in call to strncmp() Greg Kroah-Hartman
2025-06-23 13:05 ` [PATCH 6.12 173/414] mmc: sdhci-esdhc-imx: Save tuning value when card stays powered in suspend Greg Kroah-Hartman
2025-06-23 13:05 ` [PATCH 6.12 174/414] ASoC: tas2770: Power cycle amp on ISENSE/VSENSE change Greg Kroah-Hartman
2025-06-23 13:05 ` [PATCH 6.12 175/414] ASoC: intel/sdw_utils: Assign initial value in asoc_sdw_rt_amp_spk_rtd_init() Greg Kroah-Hartman
2025-06-23 13:05 ` [PATCH 6.12 176/414] ACPI: bus: Bail out if acpi_kobj registration fails Greg Kroah-Hartman
2025-06-23 13:05 ` [PATCH 6.12 177/414] ACPI: Add missing prototype for non CONFIG_SUSPEND/CONFIG_X86 case Greg Kroah-Hartman
2025-06-23 13:05 ` [PATCH 6.12 178/414] ACPICA: fix acpi parse and parseext cache leaks Greg Kroah-Hartman
2025-06-23 13:05 ` [PATCH 6.12 179/414] ACPICA: Apply pack(1) to union aml_resource Greg Kroah-Hartman
2025-06-23 13:05 ` [PATCH 6.12 180/414] ALSA: hda: cs35l41: Fix swapped l/r audio channels for Acer Helios laptops Greg Kroah-Hartman
2025-06-23 13:05 ` [PATCH 6.12 181/414] power: supply: bq27xxx: Retrieve again when busy Greg Kroah-Hartman
2025-06-23 13:05 ` [PATCH 6.12 182/414] pmdomain: core: Reset genpd->states to avoid freeing invalid data Greg Kroah-Hartman
2025-06-23 13:05 ` [PATCH 6.12 183/414] ACPICA: utilities: Fix overflow check in vsnprintf() Greg Kroah-Hartman
2025-06-23 13:05 ` [PATCH 6.12 184/414] platform-msi: Add msi_remove_device_irq_domain() in platform_device_msi_free_irqs_all() Greg Kroah-Hartman
2025-06-23 13:05 ` [PATCH 6.12 185/414] ASoC: tegra210_ahub: Add check to of_device_get_match_data() Greg Kroah-Hartman
2025-06-23 13:05 ` [PATCH 6.12 186/414] Make cc-option work correctly for the -Wno-xyzzy pattern Greg Kroah-Hartman
2025-06-23 13:05 ` [PATCH 6.12 187/414] gpiolib: of: Add polarity quirk for s5m8767 Greg Kroah-Hartman
2025-06-23 13:05 ` [PATCH 6.12 188/414] PM: runtime: fix denying of auto suspend in pm_suspend_timer_fn() Greg Kroah-Hartman
2025-06-23 13:05 ` [PATCH 6.12 189/414] power: supply: max17040: adjust thermal channel scaling Greg Kroah-Hartman
2025-06-23 13:05 ` [PATCH 6.12 190/414] ACPI: battery: negate current when discharging Greg Kroah-Hartman
2025-06-23 13:05 ` [PATCH 6.12 191/414] net: macb: Check return value of dma_set_mask_and_coherent() Greg Kroah-Hartman
2025-06-23 13:05 ` [PATCH 6.12 192/414] net: lan743x: Modify the EEPROM and OTP size for PCI1xxxx devices Greg Kroah-Hartman
2025-06-23 13:05 ` [PATCH 6.12 193/414] tipc: use kfree_sensitive() for aead cleanup Greg Kroah-Hartman
2025-06-23 13:05 ` [PATCH 6.12 194/414] f2fs: use vmalloc instead of kvmalloc in .init_{,de}compress_ctx Greg Kroah-Hartman
2025-06-23 13:05 ` [PATCH 6.12 195/414] bpf: Check rcu_read_lock_trace_held() in bpf_map_lookup_percpu_elem() Greg Kroah-Hartman
2025-06-23 13:05 ` [PATCH 6.12 196/414] Bluetooth: btusb: Add new VID/PID 13d3/3584 for MT7922 Greg Kroah-Hartman
2025-06-23 13:05 ` [PATCH 6.12 197/414] i2c: designware: Invoke runtime suspend on quick slave re-registration Greg Kroah-Hartman
2025-06-23 13:05 ` [PATCH 6.12 198/414] wifi: mt76: mt7996: drop fragments with multicast or broadcast RA Greg Kroah-Hartman
2025-06-23 13:05 ` [PATCH 6.12 199/414] emulex/benet: correct command version selection in be_cmd_get_stats() Greg Kroah-Hartman
2025-06-23 13:05 ` [PATCH 6.12 200/414] Bluetooth: btusb: Add new VID/PID 13d3/3630 for MT7925 Greg Kroah-Hartman
2025-06-23 13:05 ` [PATCH 6.12 201/414] wifi: mt76: mt76x2: Add support for LiteOn WN4516R,WN4519R Greg Kroah-Hartman
2025-06-23 13:05 ` [PATCH 6.12 202/414] wifi: mt76: mt7921: add 160 MHz AP for mt7922 device Greg Kroah-Hartman
2025-06-23 13:05 ` [PATCH 6.12 203/414] wifi: mt76: mt7925: introduce thermal protection Greg Kroah-Hartman
2025-06-23 13:05 ` [PATCH 6.12 204/414] wifi: mac80211: validate SCAN_FLAG_AP in scan request during MLO Greg Kroah-Hartman
2025-06-23 13:05 ` [PATCH 6.12 205/414] sctp: Do not wake readers in __sctp_write_space() Greg Kroah-Hartman
2025-06-23 13:05 ` [PATCH 6.12 206/414] libbpf/btf: Fix string handling to support multi-split BTF Greg Kroah-Hartman
2025-06-23 13:05 ` [PATCH 6.12 207/414] cpufreq: scmi: Skip SCMI devices that arent used by the CPUs Greg Kroah-Hartman
2025-06-23 13:05 ` [PATCH 6.12 208/414] i2c: tegra: check msg length in SMBUS block read Greg Kroah-Hartman
2025-06-23 13:05 ` [PATCH 6.12 209/414] i2c: npcm: Add clock toggle recovery Greg Kroah-Hartman
2025-06-23 13:05 ` [PATCH 6.12 210/414] clk: qcom: gcc-x1e80100: Set FORCE MEM CORE for UFS clocks Greg Kroah-Hartman
2025-06-23 13:05 ` [PATCH 6.12 211/414] net: dlink: add synchronization for stats update Greg Kroah-Hartman
2025-06-23 13:05 ` [PATCH 6.12 212/414] wifi: ath12k: fix macro definition HAL_RX_MSDU_PKT_LENGTH_GET Greg Kroah-Hartman
2025-06-23 13:05 ` [PATCH 6.12 213/414] wifi: ath12k: fix a possible dead lock caused by ab->base_lock Greg Kroah-Hartman
2025-06-23 13:05 ` [PATCH 6.12 214/414] wifi: ath11k: Fix QMI memory reuse logic Greg Kroah-Hartman
2025-06-23 13:05 ` [PATCH 6.12 215/414] iommu/amd: Allow matching ACPI HID devices without matching UIDs Greg Kroah-Hartman
2025-06-23 13:05 ` [PATCH 6.12 216/414] wifi: rtw89: leave idle mode when setting WEP encryption for AP mode Greg Kroah-Hartman
2025-06-23 13:05 ` [PATCH 6.12 217/414] tcp: always seek for minimal rtt in tcp_rcv_rtt_update() Greg Kroah-Hartman
2025-06-23 13:05 ` [PATCH 6.12 218/414] tcp: remove zero TCP TS samples for autotuning Greg Kroah-Hartman
2025-06-23 13:05 ` [PATCH 6.12 219/414] tcp: fix initial tp->rcvq_space.space value for passive TS enabled flows Greg Kroah-Hartman
2025-06-23 13:05 ` [PATCH 6.12 220/414] tcp: add receive queue awareness in tcp_rcv_space_adjust() Greg Kroah-Hartman
2025-06-23 13:05 ` [PATCH 6.12 221/414] x86/sgx: Prevent attempts to reclaim poisoned pages Greg Kroah-Hartman
2025-06-23 13:05 ` [PATCH 6.12 222/414] ipv4/route: Use this_cpu_inc() for stats on PREEMPT_RT Greg Kroah-Hartman
2025-06-23 13:06 ` [PATCH 6.12 223/414] net: page_pool: Dont recycle into cache " Greg Kroah-Hartman
2025-06-23 13:06 ` [PATCH 6.12 224/414] xfrm: validate assignment of maximal possible SEQ number Greg Kroah-Hartman
2025-06-23 13:06 ` [PATCH 6.12 225/414] net: atlantic: generate software timestamp just before the doorbell Greg Kroah-Hartman
2025-06-23 13:06 ` [PATCH 6.12 226/414] pinctrl: armada-37xx: propagate error from armada_37xx_pmx_set_by_name() Greg Kroah-Hartman
2025-06-23 13:06 ` [PATCH 6.12 227/414] pinctrl: armada-37xx: propagate error from armada_37xx_gpio_get_direction() Greg Kroah-Hartman
2025-06-23 13:06 ` [PATCH 6.12 228/414] bpf: Pass the same orig_call value to trampoline functions Greg Kroah-Hartman
2025-06-23 13:06 ` [PATCH 6.12 229/414] net: stmmac: generate software timestamp just before the doorbell Greg Kroah-Hartman
2025-06-23 13:06 ` [PATCH 6.12 230/414] pinctrl: armada-37xx: propagate error from armada_37xx_pmx_gpio_set_direction() Greg Kroah-Hartman
2025-06-23 13:06 ` [PATCH 6.12 231/414] libbpf: Check bpf_map_skeleton link for NULL Greg Kroah-Hartman
2025-06-23 13:06 ` [PATCH 6.12 232/414] pinctrl: armada-37xx: propagate error from armada_37xx_gpio_get() Greg Kroah-Hartman
2025-06-23 13:06 ` [PATCH 6.12 233/414] net: mlx4: add SOF_TIMESTAMPING_TX_SOFTWARE flag when getting ts info Greg Kroah-Hartman
2025-06-23 13:06 ` [PATCH 6.12 234/414] net: vertexcom: mse102x: Return code for mse102x_rx_pkt_spi Greg Kroah-Hartman
2025-06-23 13:06 ` [PATCH 6.12 235/414] wireless: purelifi: plfxlc: fix memory leak in plfxlc_usb_wreq_asyn() Greg Kroah-Hartman
2025-06-23 13:06 ` [PATCH 6.12 236/414] wifi: mac80211: do not offer a mesh path if forwarding is disabled Greg Kroah-Hartman
2025-06-23 13:06 ` [PATCH 6.12 237/414] bpftool: Fix cgroup command to only show cgroup bpf programs Greg Kroah-Hartman
2025-06-23 13:06 ` [PATCH 6.12 238/414] clk: rockchip: rk3036: mark ddrphy as critical Greg Kroah-Hartman
2025-06-23 13:06 ` [PATCH 6.12 239/414] hid-asus: check ROG Ally MCU version and warn Greg Kroah-Hartman
2025-06-23 13:06 ` [PATCH 6.12 240/414] wifi: iwlwifi: mvm: fix beacon CCK flag Greg Kroah-Hartman
2025-06-23 13:06 ` [PATCH 6.12 241/414] f2fs: fix to bail out in get_new_segment() Greg Kroah-Hartman
2025-06-23 13:06 ` [PATCH 6.12 242/414] netfilter: nft_set_pipapo: clamp maximum map bucket size to INT_MAX Greg Kroah-Hartman
2025-06-23 13:06 ` [PATCH 6.12 243/414] libbpf: Add identical pointer detection to btf_dedup_is_equiv() Greg Kroah-Hartman
2025-06-23 13:06 ` [PATCH 6.12 245/414] scsi: smartpqi: Add new PCI IDs Greg Kroah-Hartman
2025-06-23 13:06 ` [PATCH 6.12 246/414] iommu/amd: Ensure GA log notifier callbacks finish running before module unload Greg Kroah-Hartman
2025-06-23 13:06 ` [PATCH 6.12 247/414] wifi: iwlwifi: pcie: make sure to lock rxq->read Greg Kroah-Hartman
2025-06-23 13:06 ` [PATCH 6.12 248/414] wifi: rtw89: 8922a: fix TX fail with wrong VCO setting Greg Kroah-Hartman
2025-06-23 13:06 ` [PATCH 6.12 249/414] wifi: mac80211_hwsim: Prevent tsf from setting if beacon is disabled Greg Kroah-Hartman
2025-06-23 13:06 ` [PATCH 6.12 250/414] netdevsim: Mark NAPI ID on skb in nsim_rcv Greg Kroah-Hartman
2025-06-23 13:06 ` [PATCH 6.12 251/414] net/mlx5: HWS, Fix IP version decision Greg Kroah-Hartman
2025-06-23 13:06 ` [PATCH 6.12 252/414] bpf: Use proper type to calculate bpf_raw_tp_null_args.mask index Greg Kroah-Hartman
2025-06-23 13:06 ` [PATCH 6.12 253/414] wifi: mac80211: VLAN traffic in multicast path Greg Kroah-Hartman
2025-06-23 13:06 ` [PATCH 6.12 254/414] Revert "mac80211: Dynamically set CoDel parameters per station" Greg Kroah-Hartman
2025-06-23 13:06 ` [PATCH 6.12 255/414] wifi: iwlwifi: Add missing MODULE_FIRMWARE for Qu-c0-jf-b0 Greg Kroah-Hartman
2025-06-23 13:06 ` [PATCH 6.12 256/414] net: bridge: mcast: update multicast contex when vlan state is changed Greg Kroah-Hartman
2025-06-23 13:06 ` [PATCH 6.12 257/414] net: bridge: mcast: re-implement br_multicast_{enable, disable}_port functions Greg Kroah-Hartman
2025-06-23 13:06 ` [PATCH 6.12 258/414] vxlan: Do not treat dst cache initialization errors as fatal Greg Kroah-Hartman
2025-06-23 13:06 ` [PATCH 6.12 259/414] bnxt_en: Remove unused field "ref_count" in struct bnxt_ulp Greg Kroah-Hartman
2025-06-23 13:06 ` [PATCH 6.12 260/414] wifi: ath12k: using msdu end descriptor to check for rx multicast packets Greg Kroah-Hartman
2025-06-23 13:06 ` [PATCH 6.12 261/414] net: ethernet: ti: am65-cpsw: handle -EPROBE_DEFER Greg Kroah-Hartman
2025-06-23 13:06 ` [PATCH 6.12 262/414] software node: Correct a OOB check in software_node_get_reference_args() Greg Kroah-Hartman
2025-06-23 13:06 ` [PATCH 6.12 263/414] isofs: fix Y2038 and Y2156 issues in Rock Ridge TF entry Greg Kroah-Hartman
2025-06-23 13:06 ` [PATCH 6.12 264/414] pinctrl: mcp23s08: Reset all pins to input at probe Greg Kroah-Hartman
2025-06-23 13:06 ` [PATCH 6.12 265/414] wifi: ath12k: fix failed to set mhi state error during reboot with hardware grouping Greg Kroah-Hartman
2025-06-23 13:06 ` [PATCH 6.12 266/414] scsi: lpfc: Use memcpy() for BIOS version Greg Kroah-Hartman
2025-06-23 13:06 ` [PATCH 6.12 267/414] sock: Correct error checking condition for (assign|release)_proto_idx() Greg Kroah-Hartman
2025-06-23 13:06 ` [PATCH 6.12 268/414] i40e: fix MMIO write access to an invalid page in i40e_clear_hw Greg Kroah-Hartman
2025-06-23 13:06 ` [PATCH 6.12 269/414] ixgbe: Fix unreachable retry logic in combined and byte I2C write functions Greg Kroah-Hartman
2025-06-23 13:06 ` [PATCH 6.12 270/414] RDMA/hns: initialize db in update_srq_db() Greg Kroah-Hartman
2025-06-23 13:06 ` [PATCH 6.12 271/414] ice: fix check for existing switch rule Greg Kroah-Hartman
2025-06-23 13:06 ` [PATCH 6.12 272/414] usbnet: asix AX88772: leave the carrier control to phylink Greg Kroah-Hartman
2025-06-23 13:06 ` [PATCH 6.12 273/414] f2fs: fix to set atomic write status more clear Greg Kroah-Hartman
2025-06-23 13:06 ` [PATCH 6.12 274/414] bpf, sockmap: Fix data lost during EAGAIN retries Greg Kroah-Hartman
2025-06-23 13:06 ` [PATCH 6.12 275/414] net: ethernet: cortina: Use TOE/TSO on all TCP Greg Kroah-Hartman
2025-06-23 13:06 ` [PATCH 6.12 276/414] octeontx2-pf: Add error log forcn10k_map_unmap_rq_policer() Greg Kroah-Hartman
2025-06-23 13:06 ` [PATCH 6.12 277/414] wifi: ath11k: determine PM policy based on machine model Greg Kroah-Hartman
2025-06-23 13:06 ` [PATCH 6.12 278/414] wifi: ath12k: fix link valid field initialization in the monitor Rx Greg Kroah-Hartman
2025-06-23 13:06 ` [PATCH 6.12 279/414] wifi: ath12k: fix incorrect CE addresses Greg Kroah-Hartman
2025-06-23 13:06 ` [PATCH 6.12 280/414] wifi: ath12k: Pass correct values of center freq1 and center freq2 for 160 MHz Greg Kroah-Hartman
2025-06-23 13:06 ` [PATCH 6.12 281/414] net/mlx5: HWS, Harden IP version definer checks Greg Kroah-Hartman
2025-06-23 13:06 ` [PATCH 6.12 282/414] fbcon: Make sure modelist not set on unregistered console Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 6.12 283/414] watchdog: da9052_wdt: respect TWDMIN Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 6.12 284/414] bus: fsl-mc: increase MC_CMD_COMPLETION_TIMEOUT_MS value Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 6.12 285/414] ARM: OMAP2+: Fix l4ls clk domain handling in STANDBY Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 6.12 286/414] tee: Prevent size calculation wraparound on 32-bit kernels Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 6.12 287/414] Revert "bus: ti-sysc: Probe for l4_wkup and l4_cfg interconnect devices first" Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 6.12 288/414] fs/xattr.c: fix simple_xattr_list() Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 6.12 289/414] platform/x86/amd: pmc: Clear metrics table at start of cycle Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 6.12 290/414] platform/x86/amd: pmf: Prevent amd_pmf_tee_deinit() from running twice Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 6.12 291/414] platform/x86: dell_rbu: Fix list usage Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 6.12 292/414] platform/x86: dell_rbu: Stop overwriting data buffer Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 6.12 293/414] powerpc/vdso: Fix build of VDSO32 with pcrel Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 6.12 294/414] powerpc/eeh: Fix missing PE bridge reconfiguration during VFIO EEH recovery Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 6.12 295/414] io_uring/kbuf: dont truncate end buffer for multiple buffer peeks Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 6.12 296/414] io_uring: fix task leak issue in io_wq_create() Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 6.12 297/414] drivers/rapidio/rio_cm.c: prevent possible heap overwrite Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 6.12 298/414] platform/loongarch: laptop: Get brightness setting from EC on probe Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 6.12 299/414] platform/loongarch: laptop: Unregister generic_sub_drivers on exit Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 6.12 300/414] platform/loongarch: laptop: Add backlight power control support Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 6.12 301/414] LoongArch: vDSO: Correctly use asm parameters in syscall wrappers Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 6.12 302/414] LoongArch: Avoid using $r0/$r1 as "mask" for csrxchg Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 6.12 303/414] LoongArch: Fix panic caused by NULL-PMD in huge_pte_offset() Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 6.12 304/414] jffs2: check that raw node were preallocated before writing summary Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 6.12 305/414] jffs2: check jffs2_prealloc_raw_node_refs() result in few other places Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 6.12 306/414] cifs: deal with the channel loading lag while picking channels Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 6.12 307/414] cifs: serialize other channels when query server interfaces is pending Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 6.12 308/414] cifs: do not disable interface polling on failure Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 6.12 309/414] smb: improve directory cache reuse for readdir operations Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 6.12 310/414] scsi: storvsc: Increase the timeouts to storvsc_timeout Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 6.12 311/414] scsi: s390: zfcp: Ensure synchronous unit_add Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 6.12 312/414] nvme: always punt polled uring_cmd end_io work to task_work Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 6.12 313/414] net_sched: sch_sfq: reject invalid perturb period Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 6.12 314/414] net: clear the dst when changing skb protocol Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 6.12 315/414] mm: close theoretical race where stale TLB entries could linger Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 6.12 316/414] udmabuf: use sgtable-based scatterlist wrappers Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 6.12 317/414] x86/virt/tdx: Avoid indirect calls to TDX assembly functions Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 6.12 318/414] selftests/x86: Add a test to detect infinite SIGTRAP handler loop Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 6.12 319/414] ksmbd: fix null pointer dereference in destroy_previous_session Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 6.12 320/414] platform/x86: ideapad-laptop: use usleep_range() for EC polling Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 6.12 321/414] selinux: fix selinux_xfrm_alloc_user() to set correct ctx_len Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 6.12 322/414] platform/x86/intel-uncore-freq: Fail module load when plat_info is NULL Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 6.12 323/414] sched_ext, sched/core: Dont call scx_group_set_weight() prematurely from sched_create_group() Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 6.12 324/414] atm: Revert atm_account_tx() if copy_from_iter_full() fails Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 6.12 325/414] wifi: rtw89: phy: add dummy C2H event handler for report of TAS power Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 6.12 326/414] cpufreq/amd-pstate: Add missing NULL ptr check in amd_pstate_update Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 6.12 327/414] Input: sparcspkr - avoid unannotated fall-through Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 6.12 328/414] wifi: ath12k: Clear affinity hint before calling ath12k_pci_free_irq() in error path Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 6.12 329/414] wifi: cfg80211: init wiphy_work before allocating rfkill fails Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 6.12 330/414] arm64: Restrict pagetable teardown to avoid false warning Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 6.12 331/414] ALSA: usb-audio: Rename ALSA kcontrol PCM and PCM1 for the KTMicro sound card Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 6.12 332/414] ALSA: hda/intel: Add Thinkpad E15 to PM deny list Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 6.12 333/414] ALSA: hda/realtek - Add mute LED support for HP Victus 16-s1xxx and HP Victus 15-fa1xxx Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 6.12 334/414] ALSA: hda/realtek: enable headset mic on Latitude 5420 Rugged Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 6.12 335/414] ALSA: hda/realtek: Fix built-in mic on ASUS VivoBook X513EA Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 6.12 336/414] ALSA: hda/realtek: Add quirk for Asus GU605C Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 6.12 337/414] iio: accel: fxls8962af: Fix temperature calculation Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 6.12 338/414] mm/hugetlb: unshare page tables during VMA split, not before Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 6.12 339/414] drm/amdgpu: read back register after written for VCN v4.0.5 Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 6.12 340/414] kbuild: rust: add rustc-min-version support function Greg Kroah-Hartman
2025-06-23 13:07 ` Greg Kroah-Hartman [this message]
2025-06-23 13:07 ` [PATCH 6.12 342/414] net: Fix checksum update for ILA adj-transport Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 6.12 343/414] bpf: Fix L4 csum update on IPv6 in CHECKSUM_COMPLETE Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 6.12 344/414] erofs: remove unused trace event erofs_destroy_inode Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 6.12 345/414] nfsd: use threads array as-is in netlink interface Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 6.12 346/414] sunrpc: handle SVC_GARBAGE during svc auth processing as auth error Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 6.12 347/414] drm/v3d: Avoid NULL pointer dereference in `v3d_job_update_stats()` Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 6.12 348/414] Kunit to check the longest symbol length Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 6.12 349/414] x86/tools: Drop duplicate unlikely() definition in insn_decoder_test.c Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 6.12 350/414] ipv6: remove leftover ip6 cookie initializer Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 6.12 351/414] ipv6: replace ipcm6_init calls with ipcm6_init_sk Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 6.12 352/414] smb: fix secondary channel creation issue with kerberos by populating hostname when adding channels Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 6.12 353/414] drm/msm/disp: Correct porch timing for SDM845 Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 6.12 354/414] drm/msm/dsi/dsi_phy_10nm: Fix missing initial VCO rate Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 6.12 355/414] drm/msm: Fix CP_RESET_CONTEXT_STATE bitfield names Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 6.12 356/414] drm/msm/a7xx: Call CP_RESET_CONTEXT_STATE Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 6.12 357/414] drm/ssd130x: fix ssd132x_clear_screen() columns Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 6.12 358/414] ionic: Prevent driver/fw getting out of sync on devcmd(s) Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 6.12 359/414] drm/nouveau/bl: increase buffer size to avoid truncate warning Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 6.12 360/414] drm/i915/pmu: Fix build error with GCOV and AutoFDO enabled Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 6.12 361/414] hwmon: (occ) Rework attribute registration for stack usage Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 6.12 362/414] hwmon: (occ) fix unaligned accesses Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 6.12 363/414] hwmon: (ltc4282) avoid repeated register write Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 6.12 364/414] pldmfw: Select CRC32 when PLDMFW is selected Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 6.12 365/414] aoe: clean device rq_list in aoedev_downdev() Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 6.12 366/414] io_uring/sqpoll: dont put task_struct on tctx setup failure Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 6.12 367/414] net: ice: Perform accurate aRFS flow match Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 6.12 368/414] ice: fix eswitch code memory leak in reset scenario Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 6.12 369/414] e1000e: set fixed clock frequency indication for Nahum 11 and Nahum 13 Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 6.12 370/414] workqueue: Initialize wq_isolated_cpumask in workqueue_init_early() Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 6.12 371/414] ksmbd: add free_transport ops in ksmbd connection Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 6.12 372/414] net: netmem: fix skb_ensure_writable with unreadable skbs Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 6.12 373/414] bnxt_en: Fix double invocation of bnxt_ulp_stop()/bnxt_ulp_start() Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 6.12 374/414] eth: bnxt: fix out-of-range access of vnic_info array Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 6.12 375/414] bnxt_en: Add a helper function to configure MRU and RSS Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 6.12 376/414] bnxt_en: Update MRU and RSS table of RSS contexts on queue reset Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 6.12 377/414] ptp: fix breakage after ptp_vclock_in_use() rework Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 6.12 378/414] ptp: allow reading of currently dialed frequency to succeed on free-running clocks Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 6.12 379/414] wifi: carl9170: do not ping device which has failed to load firmware Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 6.12 380/414] mpls: Use rcu_dereference_rtnl() in mpls_route_input_rcu() Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 6.12 381/414] atm: atmtcp: Free invalid length skb in atmtcp_c_send() Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 6.12 382/414] tcp: fix tcp_packet_delayed() for tcp_is_non_sack_preventing_reopen() behavior Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 6.12 383/414] tipc: fix null-ptr-deref when acquiring remote ip of ethernet bearer Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 6.12 384/414] tcp: fix passive TFO socket having invalid NAPI ID Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 6.12 385/414] eth: fbnic: avoid double free when failing to DMA-map FW msg Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 6.12 386/414] net: lan743x: fix potential out-of-bounds write in lan743x_ptp_io_event_clock_get() Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 6.12 387/414] ublk: santizize the arguments from userspace when adding a device Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 6.12 388/414] drm/xe: Wire up device shutdown handler Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 6.12 389/414] drm/xe/gt: Update handling of xe_force_wake_get return Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 6.12 390/414] drm/xe/bmg: Update Wa_16023588340 Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 6.12 391/414] calipso: Fix null-ptr-deref in calipso_req_{set,del}attr() Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 6.12 392/414] mlxbf_gige: return EPROBE_DEFER if PHY IRQ is not available Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 6.12 393/414] net: atm: add lec_mutex Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 6.12 394/414] net: atm: fix /proc/net/atm/lec handling Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 6.12 395/414] EDAC/amd64: Correct number of UMCs for family 19h models 70h-7fh Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 6.12 396/414] dt-bindings: i2c: nvidia,tegra20-i2c: Specify the required properties Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 6.12 397/414] smb: Log an error when close_all_cached_dirs fails Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 6.12 398/414] serial: sh-sci: Clean sci_ports[0] after at earlycon exit Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 6.12 399/414] serial: sh-sci: Increment the runtime usage counter for the earlycon device Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 6.12 400/414] smb: client: fix first command failure during re-negotiation Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 6.12 401/414] smb: client: fix max_sge overflow in smb_extract_folioq_to_rdma() Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 6.12 402/414] s390/pci: Fix __pcilg_mio_inuser() inline assembly Greg Kroah-Hartman
2025-06-23 13:09 ` [PATCH 6.12 403/414] perf: Fix sample vs do_exit() Greg Kroah-Hartman
2025-06-23 13:09 ` [PATCH 6.12 404/414] perf: Fix cgroup state vs ERROR Greg Kroah-Hartman
2025-06-23 13:09 ` [PATCH 6.12 405/414] perf/core: Fix WARN in perf_cgroup_switch() Greg Kroah-Hartman
2025-06-23 13:09 ` [PATCH 6.12 406/414] arm64/ptrace: Fix stack-out-of-bounds read in regs_get_kernel_stack_nth() Greg Kroah-Hartman
2025-06-23 13:09 ` [PATCH 6.12 407/414] scsi: elx: efct: Fix memory leak in efct_hw_parse_filter() Greg Kroah-Hartman
2025-06-23 13:09 ` [PATCH 6.12 408/414] RISC-V: KVM: Fix the size parameter check in SBI SFENCE calls Greg Kroah-Hartman
2025-06-23 13:09 ` [PATCH 6.12 409/414] RISC-V: KVM: Dont treat SBI HFENCE calls as NOPs Greg Kroah-Hartman
2025-06-23 13:09 ` [PATCH 6.12 410/414] gpio: pca953x: fix wrong error probe return value Greg Kroah-Hartman
2025-06-23 13:09 ` [PATCH 6.12 411/414] perf evsel: Missed close() when probing hybrid core PMUs Greg Kroah-Hartman
2025-06-23 13:09 ` [PATCH 6.12 412/414] perf test: Directory file descriptor leak Greg Kroah-Hartman
2025-06-23 13:09 ` [PATCH 6.12 413/414] gpio: mlxbf3: only get IRQ for device instance 0 Greg Kroah-Hartman
2025-06-23 13:09 ` [PATCH 6.12 414/414] cifs: Remove duplicate fattr->cf_dtype assignment from wsl_to_fattr() function Greg Kroah-Hartman
2025-06-23 18:23 ` [PATCH 6.12 000/414] 6.12.35-rc1 review Harshit Mogalapalli
2025-06-23 19:46 ` Peter Schneider
2025-06-23 21:16 ` Naresh Kamboju
2025-06-23 22:31 ` Florian Fainelli
2025-06-24 8:14 ` Ron Economos
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20250623130650.505998853@linuxfoundation.org \
--to=gregkh@linuxfoundation.org \
--cc=est31@protonmail.com \
--cc=gary@garyguo.net \
--cc=ojeda@kernel.org \
--cc=patches@lists.linux.dev \
--cc=stable@vger.kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox