From: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
To: stable@vger.kernel.org
Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>,
patches@lists.linux.dev,
Maciej Wieczor-Retman <maciej.wieczor-retman@intel.com>,
Andrey Konovalov <andreyknvl@gmail.com>,
Alexander Potapenko <glider@google.com>,
Andrey Ryabinin <ryabinin.a.a@gmail.com>,
Danilo Krummrich <dakr@kernel.org>,
Dmitriy Vyukov <dvyukov@google.com>,
Jiayuan Chen <jiayuan.chen@linux.dev>,
Kees Cook <kees@kernel.org>, Marco Elver <elver@google.com>,
"Uladzislau Rezki (Sony)" <urezki@gmail.com>,
Vincenzo Frascino <vincenzo.frascino@arm.com>,
Andrew Morton <akpm@linux-foundation.org>
Subject: [PATCH 6.12 438/567] kasan: unpoison vms[area] addresses with a common tag
Date: Tue, 6 Jan 2026 18:03:40 +0100 [thread overview]
Message-ID: <20260106170507.555281768@linuxfoundation.org> (raw)
In-Reply-To: <20260106170451.332875001@linuxfoundation.org>
6.12-stable review patch. If anyone has any objections, please let me know.
------------------
From: Maciej Wieczor-Retman <maciej.wieczor-retman@intel.com>
commit 6a0e5b333842cf65d6f4e4f0a2a4386504802515 upstream.
A KASAN tag mismatch, possibly causing a kernel panic, can be observed on
systems with a tag-based KASAN enabled and with multiple NUMA nodes. It
was reported on arm64 and reproduced on x86. It can be explained in the
following points:
1. There can be more than one virtual memory chunk.
2. Chunk's base address has a tag.
3. The base address points at the first chunk and thus inherits
the tag of the first chunk.
4. The subsequent chunks will be accessed with the tag from the
first chunk.
5. Thus, the subsequent chunks need to have their tag set to
match that of the first chunk.
Use the new vmalloc flag that disables random tag assignment in
__kasan_unpoison_vmalloc() - pass the same random tag to all the
vm_structs by tagging the pointers before they go inside
__kasan_unpoison_vmalloc(). Assigning a common tag resolves the pcpu
chunk address mismatch.
[akpm@linux-foundation.org: use WARN_ON_ONCE(), per Andrey]
Link: https://lkml.kernel.org/r/CA+fCnZeuGdKSEm11oGT6FS71_vGq1vjq-xY36kxVdFvwmag2ZQ@mail.gmail.com
[maciej.wieczor-retman@intel.com: remove unneeded pr_warn()]
Link: https://lkml.kernel.org/r/919897daaaa3c982a27762a2ee038769ad033991.1764945396.git.m.wieczorretman@pm.me
Link: https://lkml.kernel.org/r/873821114a9f722ffb5d6702b94782e902883fdf.1764874575.git.m.wieczorretman@pm.me
Fixes: 1d96320f8d53 ("kasan, vmalloc: add vmalloc tagging for SW_TAGS")
Signed-off-by: Maciej Wieczor-Retman <maciej.wieczor-retman@intel.com>
Reviewed-by: Andrey Konovalov <andreyknvl@gmail.com>
Cc: Alexander Potapenko <glider@google.com>
Cc: Andrey Ryabinin <ryabinin.a.a@gmail.com>
Cc: Danilo Krummrich <dakr@kernel.org>
Cc: Dmitriy Vyukov <dvyukov@google.com>
Cc: Jiayuan Chen <jiayuan.chen@linux.dev>
Cc: Kees Cook <kees@kernel.org>
Cc: Marco Elver <elver@google.com>
Cc: "Uladzislau Rezki (Sony)" <urezki@gmail.com>
Cc: Vincenzo Frascino <vincenzo.frascino@arm.com>
Cc: <stable@vger.kernel.org> [6.1+]
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
---
mm/kasan/common.c | 21 ++++++++++++++++++---
1 file changed, 18 insertions(+), 3 deletions(-)
--- a/mm/kasan/common.c
+++ b/mm/kasan/common.c
@@ -568,11 +568,26 @@ void __kasan_unpoison_vmap_areas(struct
unsigned long size;
void *addr;
int area;
+ u8 tag;
- for (area = 0 ; area < nr_vms ; area++) {
+ /*
+ * If KASAN_VMALLOC_KEEP_TAG was set at this point, all vms[] pointers
+ * would be unpoisoned with the KASAN_TAG_KERNEL which would disable
+ * KASAN checks down the line.
+ */
+ if (WARN_ON_ONCE(flags & KASAN_VMALLOC_KEEP_TAG))
+ return;
+
+ size = vms[0]->size;
+ addr = vms[0]->addr;
+ vms[0]->addr = __kasan_unpoison_vmalloc(addr, size, flags);
+ tag = get_tag(vms[0]->addr);
+
+ for (area = 1 ; area < nr_vms ; area++) {
size = vms[area]->size;
- addr = vms[area]->addr;
- vms[area]->addr = __kasan_unpoison_vmalloc(addr, size, flags);
+ addr = set_tag(vms[area]->addr, tag);
+ vms[area]->addr =
+ __kasan_unpoison_vmalloc(addr, size, flags | KASAN_VMALLOC_KEEP_TAG);
}
}
#endif
next prev parent reply other threads:[~2026-01-06 17:38 UTC|newest]
Thread overview: 587+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-01-06 16:56 [PATCH 6.12 000/567] 6.12.64-rc1 review Greg Kroah-Hartman
2026-01-06 16:56 ` [PATCH 6.12 001/567] btrfs: do not skip logging new dentries when logging a new name Greg Kroah-Hartman
2026-01-06 16:56 ` [PATCH 6.12 002/567] btrfs: fix a potential path leak in print_data_reloc_error() Greg Kroah-Hartman
2026-01-06 16:56 ` [PATCH 6.12 003/567] bpf, arm64: Do not audit capability check in do_jit() Greg Kroah-Hartman
2026-01-06 16:56 ` [PATCH 6.12 004/567] btrfs: fix memory leak of fs_devices in degraded seed device path Greg Kroah-Hartman
2026-01-06 16:56 ` [PATCH 6.12 005/567] shmem: fix recovery on rename failures Greg Kroah-Hartman
2026-01-06 16:56 ` [PATCH 6.12 006/567] iomap: adjust read range correctly for non-block-aligned positions Greg Kroah-Hartman
2026-01-06 16:56 ` [PATCH 6.12 007/567] iomap: account for unaligned end offsets when truncating read range Greg Kroah-Hartman
2026-01-06 16:56 ` [PATCH 6.12 008/567] scripts/faddr2line: Fix "Argument list too long" error Greg Kroah-Hartman
2026-01-06 16:56 ` [PATCH 6.12 009/567] perf/x86/amd: Check event before enable to avoid GPF Greg Kroah-Hartman
2026-01-06 16:56 ` [PATCH 6.12 010/567] sched/deadline: only set free_cpus for online runqueues Greg Kroah-Hartman
2026-01-06 16:56 ` [PATCH 6.12 011/567] sched/fair: Revert max_newidle_lb_cost bump Greg Kroah-Hartman
2026-01-06 16:56 ` [PATCH 6.12 012/567] x86/ptrace: Always inline trivial accessors Greg Kroah-Hartman
2026-01-06 16:56 ` [PATCH 6.12 013/567] ACPICA: Avoid walking the Namespace if start_node is NULL Greg Kroah-Hartman
2026-01-06 16:56 ` [PATCH 6.12 014/567] ACPI: property: Use ACPI functions in acpi_graph_get_next_endpoint() only Greg Kroah-Hartman
2026-01-06 16:56 ` [PATCH 6.12 015/567] cpufreq: dt-platdev: Add JH7110S SOC to the allowlist Greg Kroah-Hartman
2026-01-06 16:56 ` [PATCH 6.12 016/567] ACPI: fan: Workaround for 64-bit firmware bug Greg Kroah-Hartman
2026-01-06 16:56 ` [PATCH 6.12 017/567] cpufreq: s5pv210: fix refcount leak Greg Kroah-Hartman
2026-01-06 16:56 ` [PATCH 6.12 018/567] cpuidle: menu: Use residency threshold in polling state override decisions Greg Kroah-Hartman
2026-01-06 16:56 ` [PATCH 6.12 019/567] livepatch: Match old_sympos 0 and 1 in klp_find_func() Greg Kroah-Hartman
2026-01-06 16:56 ` [PATCH 6.12 020/567] fs/ntfs3: Support timestamps prior to epoch Greg Kroah-Hartman
2026-01-06 16:56 ` [PATCH 6.12 021/567] kbuild: Use objtree for module signing key path Greg Kroah-Hartman
2026-01-06 16:56 ` [PATCH 6.12 022/567] ntfs: set dummy blocksize to read boot_block when mounting Greg Kroah-Hartman
2026-01-06 16:56 ` [PATCH 6.12 023/567] hfsplus: fix volume corruption issue for generic/070 Greg Kroah-Hartman
2026-01-06 16:56 ` [PATCH 6.12 024/567] hfsplus: fix missing hfs_bnode_get() in __hfs_bnode_create Greg Kroah-Hartman
2026-01-06 16:56 ` [PATCH 6.12 025/567] hfsplus: Verify inode mode when loading from disk Greg Kroah-Hartman
2026-01-06 16:56 ` [PATCH 6.12 026/567] hfsplus: fix volume corruption issue for generic/073 Greg Kroah-Hartman
2026-01-06 16:56 ` [PATCH 6.12 027/567] fs/ntfs3: check for shutdown in fsync Greg Kroah-Hartman
2026-01-06 16:56 ` [PATCH 6.12 028/567] wifi: rtl8xxxu: Fix HT40 channel config for RTL8192CU, RTL8723AU Greg Kroah-Hartman
2026-01-06 16:56 ` [PATCH 6.12 029/567] wifi: cfg80211: stop radar detection in cfg80211_leave() Greg Kroah-Hartman
2026-01-06 16:56 ` [PATCH 6.12 030/567] wifi: cfg80211: use cfg80211_leave() in iftype change Greg Kroah-Hartman
2026-01-06 16:56 ` [PATCH 6.12 031/567] wifi: mt76: mt792x: fix wifi init fail by setting MCU_RUNNING after CLC load Greg Kroah-Hartman
2026-01-06 16:56 ` [PATCH 6.12 032/567] wifi: brcmfmac: Add DMI nvram filename quirk for Acer A1 840 tablet Greg Kroah-Hartman
2026-01-06 16:56 ` [PATCH 6.12 033/567] btrfs: scrub: always update btrfs_scrub_progress::last_physical Greg Kroah-Hartman
2026-01-06 16:56 ` [PATCH 6.12 034/567] gfs2: fix remote evict for read-only filesystems Greg Kroah-Hartman
2026-01-06 16:56 ` [PATCH 6.12 035/567] gfs2: Fix "gfs2: Switch to wait_event in gfs2_quotad" Greg Kroah-Hartman
2026-01-06 16:56 ` [PATCH 6.12 036/567] smb/server: fix return value of smb2_ioctl() Greg Kroah-Hartman
2026-01-06 16:56 ` [PATCH 6.12 037/567] ksmbd: fix use-after-free in ksmbd_tree_connect_put under concurrency Greg Kroah-Hartman
2026-01-06 16:57 ` [PATCH 6.12 038/567] ksmbd: vfs: fix race on m_flags in vfs_cache Greg Kroah-Hartman
2026-01-06 16:57 ` [PATCH 6.12 039/567] Bluetooth: btusb: Add new VID/PID 2b89/6275 for RTL8761BUV Greg Kroah-Hartman
2026-01-06 16:57 ` [PATCH 6.12 040/567] Bluetooth: btusb: MT7922: Add VID/PID 0489/e170 Greg Kroah-Hartman
2026-01-06 16:57 ` [PATCH 6.12 041/567] Bluetooth: btusb: MT7920: Add VID/PID 0489/e135 Greg Kroah-Hartman
2026-01-06 16:57 ` [PATCH 6.12 042/567] Bluetooth: btusb: Add new VID/PID 13d3/3533 for RTL8821CE Greg Kroah-Hartman
2026-01-06 16:57 ` [PATCH 6.12 043/567] Bluetooth: btusb: Add new VID/PID 0x0489/0xE12F for RTL8852BE-VT Greg Kroah-Hartman
2026-01-06 16:57 ` [PATCH 6.12 044/567] gfs2: Fix use of bio_chain Greg Kroah-Hartman
2026-01-06 16:57 ` [PATCH 6.12 045/567] net: fec: ERR007885 Workaround for XDP TX path Greg Kroah-Hartman
2026-01-06 16:57 ` [PATCH 6.12 046/567] netrom: Fix memory leak in nr_sendmsg() Greg Kroah-Hartman
2026-01-06 16:57 ` [PATCH 6.12 047/567] net/sched: ets: Always remove class from active list before deleting in ets_qdisc_change Greg Kroah-Hartman
2026-01-06 16:57 ` [PATCH 6.12 048/567] ipvlan: Ignore PACKET_LOOPBACK in handle_mode_l2() Greg Kroah-Hartman
2026-01-06 16:57 ` [PATCH 6.12 049/567] mlxsw: spectrum_router: Fix possible neighbour reference count leak Greg Kroah-Hartman
2026-01-06 16:57 ` [PATCH 6.12 050/567] mlxsw: spectrum_router: Fix neighbour use-after-free Greg Kroah-Hartman
2026-01-06 16:57 ` [PATCH 6.12 051/567] mlxsw: spectrum_mr: Fix use-after-free when updating multicast route stats Greg Kroah-Hartman
2026-01-06 16:57 ` [PATCH 6.12 052/567] bnxt_en: Fix XDP_TX path Greg Kroah-Hartman
2026-01-06 16:57 ` [PATCH 6.12 053/567] net: openvswitch: fix middle attribute validation in push_nsh() action Greg Kroah-Hartman
2026-01-06 16:57 ` [PATCH 6.12 054/567] broadcom: b44: prevent uninitialized value usage Greg Kroah-Hartman
2026-01-06 16:57 ` [PATCH 6.12 055/567] netfilter: nf_conncount: fix leaked ct in error paths Greg Kroah-Hartman
2026-01-06 16:57 ` [PATCH 6.12 056/567] ipvs: fix ipv4 null-ptr-deref in route error path Greg Kroah-Hartman
2026-01-06 16:57 ` [PATCH 6.12 057/567] caif: fix integer underflow in cffrml_receive() Greg Kroah-Hartman
2026-01-06 16:57 ` [PATCH 6.12 058/567] net/sched: ets: Remove drr class from the active list if it changes to strict Greg Kroah-Hartman
2026-01-06 16:57 ` [PATCH 6.12 059/567] nfc: pn533: Fix error code in pn533_acr122_poweron_rdr() Greg Kroah-Hartman
2026-01-06 16:57 ` [PATCH 6.12 060/567] netfilter: nf_nat: remove bogus direction check Greg Kroah-Hartman
2026-01-06 16:57 ` [PATCH 6.12 061/567] netfilter: nf_tables: remove redundant chain validation on register store Greg Kroah-Hartman
2026-01-06 16:57 ` [PATCH 6.12 062/567] selftests: netfilter: packetdrill: avoid failure on HZ=100 kernel Greg Kroah-Hartman
2026-01-06 16:57 ` [PATCH 6.12 063/567] iommufd/selftest: Add coverage for reporting max_pasid_log2 via IOMMU_HW_INFO Greg Kroah-Hartman
2026-01-06 16:57 ` [PATCH 6.12 064/567] iommufd/selftest: Update hw_info coverage for an input data_type Greg Kroah-Hartman
2026-01-06 16:57 ` [PATCH 6.12 065/567] iommufd/selftest: Make it clearer to gcc that the access is not out of bounds Greg Kroah-Hartman
2026-01-06 16:57 ` [PATCH 6.12 066/567] iommufd/selftest: Check for overflow in IOMMU_TEST_OP_ADD_RESERVED Greg Kroah-Hartman
2026-01-06 16:57 ` [PATCH 6.12 067/567] ethtool: Avoid overflowing userspace buffer on stats query Greg Kroah-Hartman
2026-01-06 16:57 ` [PATCH 6.12 068/567] net/mlx5: fw reset, clear reset requested on drain_fw_reset Greg Kroah-Hartman
2026-01-06 16:57 ` [PATCH 6.12 069/567] net/mlx5: Drain firmware reset in shutdown callback Greg Kroah-Hartman
2026-01-06 16:57 ` [PATCH 6.12 070/567] net/mlx5: fw_tracer, Validate format string parameters Greg Kroah-Hartman
2026-01-06 16:57 ` [PATCH 6.12 071/567] net/mlx5: fw_tracer, Handle escaped percent properly Greg Kroah-Hartman
2026-01-06 16:57 ` [PATCH 6.12 072/567] net/mlx5: Serialize firmware reset with devlink Greg Kroah-Hartman
2026-01-06 16:57 ` [PATCH 6.12 073/567] net/handshake: duplicate handshake cancellations leak socket Greg Kroah-Hartman
2026-01-06 16:57 ` [PATCH 6.12 074/567] net: enetc: do not transmit redirected XDP frames when the link is down Greg Kroah-Hartman
2026-01-06 16:57 ` [PATCH 6.12 075/567] net: hns3: using the num_tqps in the vf driver to apply for resources Greg Kroah-Hartman
2026-01-06 16:57 ` [PATCH 6.12 076/567] net: hns3: using the num_tqps to check whether tqp_index is out of range when vf get ring info from mbx Greg Kroah-Hartman
2026-01-06 16:57 ` [PATCH 6.12 077/567] net: hns3: add VLAN id validation before using Greg Kroah-Hartman
2026-01-06 16:57 ` [PATCH 6.12 078/567] hwmon: (dell-smm) Limit fan multiplier to avoid overflow Greg Kroah-Hartman
2026-01-06 16:57 ` [PATCH 6.12 079/567] hwmon: (ibmpex) fix use-after-free in high/low store Greg Kroah-Hartman
2026-01-06 16:57 ` [PATCH 6.12 080/567] hwmon: (tmp401) fix overflow caused by default conversion rate value Greg Kroah-Hartman
2026-01-06 16:57 ` [PATCH 6.12 081/567] drm/me/gsc: mei interrupt top half should be in irq disabled context Greg Kroah-Hartman
2026-01-06 16:57 ` [PATCH 6.12 082/567] drm/xe: Restore engine registers before restarting schedulers after GT reset Greg Kroah-Hartman
2026-01-06 16:57 ` [PATCH 6.12 083/567] MIPS: Fix a reference leak bug in ip22_check_gio() Greg Kroah-Hartman
2026-01-06 16:57 ` [PATCH 6.12 084/567] drm/panel: sony-td4353-jdi: Enable prepare_prev_first Greg Kroah-Hartman
2026-01-06 16:57 ` [PATCH 6.12 085/567] x86/xen: Move Xen upcall handler Greg Kroah-Hartman
2026-01-06 16:57 ` [PATCH 6.12 086/567] x86/xen: Fix sparse warning in enlighten_pv.c Greg Kroah-Hartman
2026-01-06 16:57 ` [PATCH 6.12 087/567] arm64: kdump: Fix elfcorehdr overlap caused by reserved memory processing reorder Greg Kroah-Hartman
2026-01-06 16:57 ` [PATCH 6.12 088/567] spi: cadence-quadspi: Fix clock disable on probe failure path Greg Kroah-Hartman
2026-01-06 16:57 ` [PATCH 6.12 089/567] block: rnbd-clt: Fix leaked ID in init_dev() Greg Kroah-Hartman
2026-01-06 16:57 ` [PATCH 6.12 090/567] drm/xe: Limit num_syncs to prevent oversized allocations Greg Kroah-Hartman
2026-01-06 16:57 ` [PATCH 6.12 091/567] drm/xe/oa: " Greg Kroah-Hartman
2026-01-06 16:57 ` [PATCH 6.12 092/567] hwmon: (ltc4282): Fix reset_history file permissions Greg Kroah-Hartman
2026-01-06 16:57 ` [PATCH 6.12 093/567] ksmbd: skip lock-range check on equal size to avoid size==0 underflow Greg Kroah-Hartman
2026-01-06 16:57 ` [PATCH 6.12 094/567] ksmbd: Fix refcount leak when invalid session is found on session lookup Greg Kroah-Hartman
2026-01-06 16:57 ` [PATCH 6.12 095/567] ksmbd: fix buffer validation by including null terminator size in EA length Greg Kroah-Hartman
2026-01-06 16:57 ` [PATCH 6.12 096/567] HID: input: map HID_GD_Z to ABS_DISTANCE for stylus/pen Greg Kroah-Hartman
2026-01-06 16:57 ` [PATCH 6.12 097/567] Input: ti_am335x_tsc - fix off-by-one error in wire_order validation Greg Kroah-Hartman
2026-01-06 16:58 ` [PATCH 6.12 098/567] Input: lkkbd - disable pending work before freeing device Greg Kroah-Hartman
2026-01-06 16:58 ` [PATCH 6.12 099/567] Input: alps - fix use-after-free bugs caused by dev3_register_work Greg Kroah-Hartman
2026-01-06 16:58 ` [PATCH 6.12 100/567] Input: i8042 - add TUXEDO InfinityBook Max Gen10 AMD to i8042 quirk table Greg Kroah-Hartman
2026-01-06 16:58 ` [PATCH 6.12 101/567] xfs: dont leak a locked dquot when xfs_dquot_attach_buf fails Greg Kroah-Hartman
2026-01-06 16:58 ` [PATCH 6.12 102/567] can: gs_usb: gs_can_open(): fix error handling Greg Kroah-Hartman
2026-01-06 16:58 ` [PATCH 6.12 103/567] soc/tegra: fuse: Do not register SoC device on ACPI boot Greg Kroah-Hartman
2026-01-06 16:58 ` [PATCH 6.12 104/567] ACPI: PCC: Fix race condition by removing static qualifier Greg Kroah-Hartman
2026-01-06 16:58 ` [PATCH 6.12 105/567] ACPI: CPPC: Fix missing PCC check for guaranteed_perf Greg Kroah-Hartman
2026-01-06 16:58 ` [PATCH 6.12 106/567] spi: fsl-cpm: Check length parity before switching to 16 bit mode Greg Kroah-Hartman
2026-01-06 16:58 ` [PATCH 6.12 107/567] mmc: sdhci-esdhc-imx: add alternate ARCH_S32 dependency to Kconfig Greg Kroah-Hartman
2026-01-06 16:58 ` [PATCH 6.12 108/567] mmc: sdhci-of-arasan: Increase CD stable timeout to 2 seconds Greg Kroah-Hartman
2026-01-06 16:58 ` [PATCH 6.12 109/567] dt-bindings: mmc: sdhci-of-aspeed: Switch ref to sdhci-common.yaml Greg Kroah-Hartman
2026-01-06 16:58 ` [PATCH 6.12 110/567] net/hsr: fix NULL pointer dereference in prp_get_untagged_frame() Greg Kroah-Hartman
2026-01-06 16:58 ` [PATCH 6.12 111/567] x86/fpu: Fix FPU state core dump truncation on CPUs with no extended xfeatures Greg Kroah-Hartman
2026-01-06 16:58 ` [PATCH 6.12 112/567] ALSA: vxpocket: Fix resource leak in vxpocket_probe error path Greg Kroah-Hartman
2026-01-06 16:58 ` [PATCH 6.12 113/567] ALSA: pcmcia: Fix resource leak in snd_pdacf_probe " Greg Kroah-Hartman
2026-01-06 16:58 ` [PATCH 6.12 114/567] ALSA: usb-mixer: us16x08: validate meter packet indices Greg Kroah-Hartman
2026-01-06 16:58 ` [PATCH 6.12 115/567] ASoC: ak4458: remove the reset operation in probe and remove Greg Kroah-Hartman
2026-01-06 16:58 ` [PATCH 6.12 116/567] nfsd: update percpu_ref to manage references on nfsd_net Greg Kroah-Hartman
2026-01-06 16:58 ` [PATCH 6.12 117/567] nfsd: rename nfsd_serv_ prefixed methods and variables with nfsd_net_ Greg Kroah-Hartman
2026-01-06 16:58 ` [PATCH 6.12 118/567] nfsd: fix memory leak in nfsd_create_serv error paths Greg Kroah-Hartman
2026-01-06 16:58 ` [PATCH 6.12 119/567] ipmi: Fix the race between __scan_channels() and deliver_response() Greg Kroah-Hartman
2026-01-06 16:58 ` [PATCH 6.12 120/567] ipmi: Fix __scan_channels() failing to rescan channels Greg Kroah-Hartman
2026-01-06 16:58 ` [PATCH 6.12 121/567] scsi: ufs: host: mediatek: Fix shutdown/suspend race condition Greg Kroah-Hartman
2026-01-06 16:58 ` [PATCH 6.12 122/567] firmware: imx: scu-irq: Init workqueue before request mbox channel Greg Kroah-Hartman
2026-01-06 16:58 ` [PATCH 6.12 123/567] ti-sysc: allow OMAP2 and OMAP4 timers to be reserved on AM33xx Greg Kroah-Hartman
2026-01-06 16:58 ` [PATCH 6.12 124/567] scsi: smartpqi: Add support for Hurray Data new controller PCI device Greg Kroah-Hartman
2026-01-06 16:58 ` [PATCH 6.12 125/567] clk: mvebu: cp110 add CLK_IGNORE_UNUSED to pcie_x10, pcie_x11 & pcie_x4 Greg Kroah-Hartman
2026-01-06 16:58 ` [PATCH 6.12 126/567] powerpc/addnote: Fix overflow on 32-bit builds Greg Kroah-Hartman
2026-01-06 16:58 ` [PATCH 6.12 127/567] scsi: qla2xxx: Fix lost interrupts with qlini_mode=disabled Greg Kroah-Hartman
2026-01-06 16:58 ` [PATCH 6.12 128/567] scsi: qla2xxx: Fix initiator mode with qlini_mode=exclusive Greg Kroah-Hartman
2026-01-06 16:58 ` [PATCH 6.12 129/567] scsi: qla2xxx: Use reinit_completion on mbx_intr_comp Greg Kroah-Hartman
2026-01-06 16:58 ` [PATCH 6.12 130/567] fuse: Always flush the page cache before FOPEN_DIRECT_IO write Greg Kroah-Hartman
2026-01-06 16:58 ` [PATCH 6.12 131/567] fuse: Invalidate the page cache after " Greg Kroah-Hartman
2026-01-06 16:58 ` [PATCH 6.12 132/567] via_wdt: fix critical boot hang due to unnamed resource allocation Greg Kroah-Hartman
2026-01-06 16:58 ` [PATCH 6.12 133/567] reset: fix BIT macro reference Greg Kroah-Hartman
2026-01-06 16:58 ` [PATCH 6.12 134/567] exfat: fix remount failure in different process environments Greg Kroah-Hartman
2026-01-06 16:58 ` [PATCH 6.12 135/567] exfat: zero out post-EOF page cache on file extension Greg Kroah-Hartman
2026-01-06 16:58 ` [PATCH 6.12 136/567] usbip: Fix locking bug in RT-enabled kernels Greg Kroah-Hartman
2026-01-06 16:58 ` [PATCH 6.12 137/567] usb: typec: ucsi: Handle incorrect num_connectors capability Greg Kroah-Hartman
2026-01-06 16:58 ` [PATCH 6.12 138/567] iio: adc: ti_am335x_adc: Limit step_avg to valid range for gcc complains Greg Kroah-Hartman
2026-01-06 16:58 ` [PATCH 6.12 139/567] usb: xhci: limit run_graceperiod for only usb 3.0 devices Greg Kroah-Hartman
2026-01-06 16:58 ` [PATCH 6.12 140/567] usb: usb-storage: No additional quirks need to be added to the EL-R12 optical drive Greg Kroah-Hartman
2026-01-06 16:58 ` [PATCH 6.12 141/567] serial: sprd: Return -EPROBE_DEFER when uart clock is not ready Greg Kroah-Hartman
2026-01-06 16:58 ` [PATCH 6.12 142/567] libperf cpumap: Fix perf_cpu_map__max for an empty/NULL map Greg Kroah-Hartman
2026-01-06 16:58 ` [PATCH 6.12 143/567] clk: qcom: dispcc-sm7150: Fix dispcc_mdss_pclk0_clk_src Greg Kroah-Hartman
2026-01-06 16:58 ` [PATCH 6.12 144/567] i2c: designware: Disable SMBus interrupts to prevent storms from mis-configured firmware Greg Kroah-Hartman
2026-01-06 16:58 ` [PATCH 6.12 145/567] nvme-fc: dont hold rport lock when putting ctrl Greg Kroah-Hartman
2026-01-06 16:58 ` [PATCH 6.12 146/567] nvme-fabrics: add ENOKEY to no retry criteria for authentication failures Greg Kroah-Hartman
2026-01-06 16:58 ` [PATCH 6.12 147/567] platform/x86/intel/hid: Add Dell Pro Rugged 10/12 tablet to VGBS DMI quirks Greg Kroah-Hartman
2026-01-06 16:58 ` [PATCH 6.12 148/567] MIPS: ftrace: Fix memory corruption when kernel is located beyond 32 bits Greg Kroah-Hartman
2026-01-06 16:58 ` [PATCH 6.12 149/567] scsi: scsi_debug: Fix atomic write enable module param description Greg Kroah-Hartman
2026-01-06 16:58 ` [PATCH 6.12 150/567] block: rnbd-clt: Fix signedness bug in init_dev() Greg Kroah-Hartman
2026-01-06 16:58 ` [PATCH 6.12 151/567] vhost/vsock: improve RCU read sections around vhost_vsock_get() Greg Kroah-Hartman
2026-01-06 16:58 ` [PATCH 6.12 152/567] cifs: Fix memory and information leak in smb3_reconfigure() Greg Kroah-Hartman
2026-01-06 16:58 ` [PATCH 6.12 153/567] KEYS: trusted: Fix a memory leak in tpm2_load_cmd Greg Kroah-Hartman
2026-01-06 16:58 ` [PATCH 6.12 154/567] io_uring: fix filename leak in __io_openat_prep() Greg Kroah-Hartman
2026-01-06 16:58 ` [PATCH 6.12 155/567] x86/mce: Do not clear banks poll bit in mce_poll_banks on AMD SMCA systems Greg Kroah-Hartman
2026-01-06 16:58 ` [PATCH 6.12 156/567] mmc: sdhci-msm: Avoid early clock doubling during HS400 transition Greg Kroah-Hartman
2026-01-06 16:58 ` [PATCH 6.12 157/567] perf: arm_cspmu: fix error handling in arm_cspmu_impl_unregister() Greg Kroah-Hartman
2026-01-06 16:59 ` [PATCH 6.12 158/567] lib/crypto: x86/blake2s: Fix 32-bit arg treated as 64-bit Greg Kroah-Hartman
2026-01-06 16:59 ` [PATCH 6.12 159/567] s390/dasd: Fix gendisk parent after copy pair swap Greg Kroah-Hartman
2026-01-06 16:59 ` [PATCH 6.12 160/567] wifi: mt76: Fix DTS power-limits on little endian systems Greg Kroah-Hartman
2026-01-06 16:59 ` [PATCH 6.12 161/567] block: rate-limit capacity change info log Greg Kroah-Hartman
2026-01-06 16:59 ` [PATCH 6.12 162/567] floppy: fix for PAGE_SIZE != 4KB Greg Kroah-Hartman
2026-01-06 16:59 ` [PATCH 6.12 163/567] kallsyms: Fix wrong "big" kernel symbol type read from procfs Greg Kroah-Hartman
2026-01-06 16:59 ` [PATCH 6.12 164/567] fs/ntfs3: fix mount failure for sparse runs in run_unpack() Greg Kroah-Hartman
2026-01-06 16:59 ` [PATCH 6.12 165/567] ktest.pl: Fix uninitialized var in config-bisect.pl Greg Kroah-Hartman
2026-01-06 16:59 ` [PATCH 6.12 166/567] tpm: Cap the number of PCR banks Greg Kroah-Hartman
2026-01-06 16:59 ` [PATCH 6.12 167/567] ext4: fix string copying in parse_apply_sb_mount_options() Greg Kroah-Hartman
2026-01-06 16:59 ` [PATCH 6.12 168/567] ext4: xattr: fix null pointer deref in ext4_raw_inode() Greg Kroah-Hartman
2026-01-06 16:59 ` [PATCH 6.12 169/567] ext4: clear i_state_flags when alloc inode Greg Kroah-Hartman
2026-01-06 16:59 ` [PATCH 6.12 170/567] ext4: fix incorrect group number assertion in mb_check_buddy Greg Kroah-Hartman
2026-01-06 16:59 ` [PATCH 6.12 171/567] ext4: align max orphan file size with e2fsprogs limit Greg Kroah-Hartman
2026-01-06 16:59 ` [PATCH 6.12 172/567] jbd2: use a per-journal lock_class_key for jbd2_trans_commit_key Greg Kroah-Hartman
2026-01-06 16:59 ` [PATCH 6.12 173/567] jbd2: use a weaker annotation in journal handling Greg Kroah-Hartman
2026-01-06 16:59 ` [PATCH 6.12 174/567] media: v4l2-mem2mem: Fix outdated documentation Greg Kroah-Hartman
2026-01-06 16:59 ` [PATCH 6.12 175/567] selftests: mptcp: pm: ensure unknown flags are ignored Greg Kroah-Hartman
2026-01-06 16:59 ` [PATCH 6.12 176/567] mptcp: schedule rtx timer only after pushing data Greg Kroah-Hartman
2026-01-06 16:59 ` [PATCH 6.12 177/567] mptcp: avoid deadlock on fallback while reinjecting Greg Kroah-Hartman
2026-01-06 16:59 ` [PATCH 6.12 178/567] usb: usb-storage: Maintain minimal modifications to the bcdDevice range Greg Kroah-Hartman
2026-01-06 16:59 ` [PATCH 6.12 179/567] media: dvb-usb: dtv5100: fix out-of-bounds in dtv5100_i2c_msg() Greg Kroah-Hartman
2026-01-06 16:59 ` [PATCH 6.12 180/567] media: pvrusb2: Fix incorrect variable used in trace message Greg Kroah-Hartman
2026-01-06 16:59 ` [PATCH 6.12 181/567] phy: broadcom: bcm63xx-usbh: fix section mismatches Greg Kroah-Hartman
2026-01-06 16:59 ` [PATCH 6.12 182/567] usb: ohci-nxp: fix device leak on probe failure Greg Kroah-Hartman
2026-01-06 16:59 ` [PATCH 6.12 183/567] usb: typec: altmodes/displayport: Drop the device reference in dp_altmode_probe() Greg Kroah-Hartman
2026-01-06 16:59 ` [PATCH 6.12 184/567] USB: lpc32xx_udc: Fix error handling in probe Greg Kroah-Hartman
2026-01-06 16:59 ` [PATCH 6.12 185/567] usb: phy: fsl-usb: Fix use-after-free in delayed work during device removal Greg Kroah-Hartman
2026-01-06 16:59 ` [PATCH 6.12 186/567] usb: phy: isp1301: fix non-OF device reference imbalance Greg Kroah-Hartman
2026-01-06 16:59 ` [PATCH 6.12 187/567] usb: gadget: lpc32xx_udc: fix clock imbalance in error path Greg Kroah-Hartman
2026-01-06 16:59 ` [PATCH 6.12 188/567] usb: dwc3: of-simple: fix clock resource leak in dwc3_of_simple_probe Greg Kroah-Hartman
2026-01-06 16:59 ` [PATCH 6.12 189/567] usb: dwc3: keep susphy enabled during exit to avoid controller faults Greg Kroah-Hartman
2026-01-06 16:59 ` [PATCH 6.12 190/567] usb: renesas_usbhs: Fix a resource leak in usbhs_pipe_malloc() Greg Kroah-Hartman
2026-01-06 16:59 ` [PATCH 6.12 191/567] char: applicom: fix NULL pointer dereference in ac_ioctl Greg Kroah-Hartman
2026-01-06 16:59 ` [PATCH 6.12 192/567] intel_th: Fix error handling in intel_th_output_open Greg Kroah-Hartman
2026-01-06 16:59 ` [PATCH 6.12 193/567] mei: gsc: add dependency on Xe driver Greg Kroah-Hartman
2026-01-06 16:59 ` [PATCH 6.12 194/567] serial: sh-sci: Check that the DMA cookie is valid Greg Kroah-Hartman
2026-01-06 16:59 ` [PATCH 6.12 195/567] cpuidle: governors: teo: Drop misguided target residency check Greg Kroah-Hartman
2026-01-06 16:59 ` [PATCH 6.12 196/567] cpufreq: nforce2: fix reference count leak in nforce2 Greg Kroah-Hartman
2026-01-06 16:59 ` [PATCH 6.12 197/567] scsi: Revert "scsi: qla2xxx: Perform lockless command completion in abort path" Greg Kroah-Hartman
2026-01-06 16:59 ` [PATCH 6.12 198/567] scsi: aic94xx: fix use-after-free in device removal path Greg Kroah-Hartman
2026-01-06 16:59 ` [PATCH 6.12 199/567] NFSD: use correct reservation type in nfsd4_scsi_fence_client Greg Kroah-Hartman
2026-01-06 16:59 ` [PATCH 6.12 200/567] scsi: target: Reset t_task_cdb pointer in error case Greg Kroah-Hartman
2026-01-06 16:59 ` [PATCH 6.12 201/567] scsi: mpi3mr: Read missing IOCFacts flag for reply queue full overflow Greg Kroah-Hartman
2026-01-06 16:59 ` [PATCH 6.12 202/567] scsi: ufs: core: Add ufshcd_update_evt_hist() for UFS suspend error Greg Kroah-Hartman
2026-01-06 16:59 ` [PATCH 6.12 203/567] f2fs: ensure node page reads complete before f2fs_put_super() finishes Greg Kroah-Hartman
2026-01-06 16:59 ` [PATCH 6.12 204/567] f2fs: fix to avoid potential deadlock Greg Kroah-Hartman
2026-01-06 16:59 ` [PATCH 6.12 205/567] f2fs: fix to avoid updating zero-sized extent in extent cache Greg Kroah-Hartman
2026-01-06 16:59 ` [PATCH 6.12 206/567] f2fs: invalidate dentry cache on failed whiteout creation Greg Kroah-Hartman
2026-01-06 16:59 ` [PATCH 6.12 207/567] f2fs: fix age extent cache insertion skip on counter overflow Greg Kroah-Hartman
2026-01-06 16:59 ` [PATCH 6.12 208/567] f2fs: fix uninitialized one_time_gc in victim_sel_policy Greg Kroah-Hartman
2026-01-06 16:59 ` [PATCH 6.12 209/567] f2fs: fix return value of f2fs_recover_fsync_data() Greg Kroah-Hartman
2026-01-06 16:59 ` [PATCH 6.12 210/567] tools/testing/nvdimm: Use per-DIMM device handle Greg Kroah-Hartman
2026-01-06 16:59 ` [PATCH 6.12 211/567] KVM: Disallow toggling KVM_MEM_GUEST_MEMFD on an existing memslot Greg Kroah-Hartman
2026-01-06 16:59 ` [PATCH 6.12 212/567] media: vidtv: initialize local pointers upon transfer of memory ownership Greg Kroah-Hartman
2026-01-06 16:59 ` [PATCH 6.12 213/567] ocfs2: fix kernel BUG in ocfs2_find_victim_chain Greg Kroah-Hartman
2026-01-06 16:59 ` [PATCH 6.12 214/567] KVM: x86: Dont clear async #PF queue when CR0.PG is disabled (e.g. on #SMI) Greg Kroah-Hartman
2026-01-06 16:59 ` [PATCH 6.12 215/567] platform/chrome: cros_ec_ishtp: Fix UAF after unbinding driver Greg Kroah-Hartman
2026-01-06 16:59 ` [PATCH 6.12 216/567] scs: fix a wrong parameter in __scs_magic Greg Kroah-Hartman
2026-01-06 16:59 ` [PATCH 6.12 217/567] parisc: Do not reprogram affinitiy on ASP chip Greg Kroah-Hartman
2026-01-06 17:00 ` [PATCH 6.12 218/567] libceph: make decode_pool() more resilient against corrupted osdmaps Greg Kroah-Hartman
2026-01-06 17:00 ` [PATCH 6.12 219/567] powerpc: Add reloc_offset() to font bitmap pointer used for bootx_printf() Greg Kroah-Hartman
2026-01-06 17:00 ` [PATCH 6.12 220/567] KVM: x86: WARN if hrtimer callback for periodic APIC timer fires with period=0 Greg Kroah-Hartman
2026-01-06 17:00 ` [PATCH 6.12 221/567] KVM: x86: Explicitly set new periodic hrtimer expiration in apic_timer_fn() Greg Kroah-Hartman
2026-01-06 17:00 ` [PATCH 6.12 222/567] KVM: x86: Fix VM hard lockup after prolonged inactivity with periodic HV timer Greg Kroah-Hartman
2026-01-06 17:00 ` [PATCH 6.12 223/567] KVM: nSVM: Avoid incorrect injection of SVM_EXIT_CR0_SEL_WRITE Greg Kroah-Hartman
2026-01-06 17:00 ` [PATCH 6.12 224/567] KVM: SVM: Mark VMCB_NPT as dirty on nested VMRUN Greg Kroah-Hartman
2026-01-06 17:00 ` [PATCH 6.12 225/567] KVM: nSVM: Propagate SVM_EXIT_CR0_SEL_WRITE correctly for LMSW emulation Greg Kroah-Hartman
2026-01-06 17:00 ` [PATCH 6.12 226/567] KVM: SVM: Mark VMCB_PERM_MAP as dirty on nested VMRUN Greg Kroah-Hartman
2026-01-06 17:00 ` [PATCH 6.12 227/567] KVM: nVMX: Immediately refresh APICv controls as needed on nested VM-Exit Greg Kroah-Hartman
2026-01-06 17:00 ` [PATCH 6.12 228/567] KVM: nSVM: Set exit_code_hi to -1 when synthesizing SVM_EXIT_ERR (failed VMRUN) Greg Kroah-Hartman
2026-01-06 17:00 ` [PATCH 6.12 229/567] KVM: nSVM: Clear exit_code_hi in VMCB when synthesizing nested VM-Exits Greg Kroah-Hartman
2026-01-06 17:00 ` [PATCH 6.12 230/567] xfs: fix a memory leak in xfs_buf_item_init() Greg Kroah-Hartman
2026-01-06 17:00 ` [PATCH 6.12 231/567] xfs: fix stupid compiler warning Greg Kroah-Hartman
2026-01-06 17:00 ` [PATCH 6.12 232/567] xfs: fix a UAF problem in xattr repair Greg Kroah-Hartman
2026-01-06 17:00 ` [PATCH 6.12 233/567] tracing: Do not register unsupported perf events Greg Kroah-Hartman
2026-01-06 17:00 ` [PATCH 6.12 234/567] PM: runtime: Do not clear needs_force_resume with enabled runtime PM Greg Kroah-Hartman
2026-01-06 17:00 ` [PATCH 6.12 235/567] r8169: fix RTL8117 Wake-on-Lan in DASH mode Greg Kroah-Hartman
2026-01-06 17:00 ` [PATCH 6.12 236/567] net: phy: marvell-88q2xxx: Fix clamped value in mv88q2xxx_hwmon_write Greg Kroah-Hartman
2026-01-06 17:00 ` [PATCH 6.12 237/567] fsnotify: do not generate ACCESS/MODIFY events on child for special files Greg Kroah-Hartman
2026-01-06 17:00 ` [PATCH 6.12 238/567] net/handshake: restore destructor on submit failure Greg Kroah-Hartman
2026-01-06 17:00 ` [PATCH 6.12 239/567] NFSD: Clear SECLABEL in the suppattr_exclcreat bitmap Greg Kroah-Hartman
2026-01-06 17:00 ` [PATCH 6.12 240/567] NFSD: NFSv4 file creation neglects setting ACL Greg Kroah-Hartman
2026-01-06 17:00 ` [PATCH 6.12 241/567] nfsd: Mark variable __maybe_unused to avoid W=1 build break Greg Kroah-Hartman
2026-01-06 17:00 ` [PATCH 6.12 242/567] svcrdma: return 0 on success from svc_rdma_copy_inline_range Greg Kroah-Hartman
2026-01-06 17:00 ` [PATCH 6.12 243/567] svcrdma: use rc_pageoff for memcpy byte offset Greg Kroah-Hartman
2026-01-06 17:00 ` [PATCH 6.12 244/567] SUNRPC: svcauth_gss: avoid NULL deref on zero length gss_token in gss_read_proxy_verf Greg Kroah-Hartman
2026-01-06 17:00 ` [PATCH 6.12 245/567] powerpc/kexec: Enable SMT before waking offline CPUs Greg Kroah-Hartman
2026-01-06 17:00 ` [PATCH 6.12 246/567] btrfs: dont log conflicting inode if its a dir moved in the current transaction Greg Kroah-Hartman
2026-01-06 17:00 ` [PATCH 6.12 247/567] s390/ipl: Clear SBP flag when bootprog is set Greg Kroah-Hartman
2026-01-06 17:00 ` [PATCH 6.12 248/567] gpio: regmap: Fix memleak in error path in gpio_regmap_register() Greg Kroah-Hartman
2026-01-06 17:00 ` [PATCH 6.12 249/567] io_uring/poll: correctly handle io_poll_add() return value on update Greg Kroah-Hartman
2026-01-06 17:00 ` [PATCH 6.12 250/567] io_uring: fix min_wait wakeups for SQPOLL Greg Kroah-Hartman
2026-01-06 17:00 ` [PATCH 6.12 251/567] Revert "drm/amd/display: Fix pbn to kbps Conversion" Greg Kroah-Hartman
2026-01-06 17:00 ` [PATCH 6.12 252/567] drm/amd/display: Use GFP_ATOMIC in dc_create_plane_state() Greg Kroah-Hartman
2026-01-06 17:00 ` [PATCH 6.12 253/567] drm/amd/display: Fix scratch registers offsets for DCN35 Greg Kroah-Hartman
2026-01-06 17:00 ` [PATCH 6.12 254/567] drm/amd/display: Fix scratch registers offsets for DCN351 Greg Kroah-Hartman
2026-01-06 17:00 ` [PATCH 6.12 255/567] drm/displayid: pass iter to drm_find_displayid_extension() Greg Kroah-Hartman
2026-01-06 17:00 ` [PATCH 6.12 256/567] ALSA: hda: cs35l41: Fix NULL pointer dereference in cs35l41_hda_read_acpi() Greg Kroah-Hartman
2026-01-06 17:00 ` [PATCH 6.12 257/567] ALSA: wavefront: Use guard() for spin locks Greg Kroah-Hartman
2026-01-06 17:00 ` [PATCH 6.12 258/567] ALSA: wavefront: Clear substream pointers on close Greg Kroah-Hartman
2026-01-06 17:00 ` [PATCH 6.12 259/567] pinctrl: renesas: rzg2l: Fix ISEL restore on resume Greg Kroah-Hartman
2026-01-06 17:00 ` [PATCH 6.12 260/567] hsr: hold rcu and dev lock for hsr_get_port_ndev Greg Kroah-Hartman
2026-01-06 17:00 ` [PATCH 6.12 261/567] sched/rt: Fix race in push_rt_task Greg Kroah-Hartman
2026-01-06 17:00 ` [PATCH 6.12 262/567] KVM: arm64: Initialize HCR_EL2.E2H early Greg Kroah-Hartman
2026-01-06 17:00 ` [PATCH 6.12 263/567] KVM: arm64: Initialize SCTLR_EL1 in __kvm_hyp_init_cpu() Greg Kroah-Hartman
2026-01-06 17:00 ` [PATCH 6.12 264/567] arm64: Revamp HCR_EL2.E2H RES1 detection Greg Kroah-Hartman
2026-01-06 17:00 ` [PATCH 6.12 265/567] dt-bindings: PCI: qcom,pcie-sc7280: Add missing required power-domains and resets Greg Kroah-Hartman
2026-01-06 17:00 ` [PATCH 6.12 266/567] dt-bindings: PCI: qcom,pcie-sc8280xp: " Greg Kroah-Hartman
2026-01-06 17:00 ` [PATCH 6.12 267/567] dt-bindings: PCI: qcom,pcie-sm8150: " Greg Kroah-Hartman
2026-01-06 17:00 ` [PATCH 6.12 268/567] dt-bindings: PCI: qcom,pcie-sm8250: " Greg Kroah-Hartman
2026-01-06 17:00 ` [PATCH 6.12 269/567] dt-bindings: PCI: qcom,pcie-sm8350: " Greg Kroah-Hartman
2026-01-06 17:00 ` [PATCH 6.12 270/567] dt-bindings: PCI: qcom,pcie-sm8450: " Greg Kroah-Hartman
2026-01-06 17:00 ` [PATCH 6.12 271/567] dt-bindings: PCI: qcom,pcie-sm8550: " Greg Kroah-Hartman
2026-01-06 17:00 ` [PATCH 6.12 272/567] crypto: af_alg - zero initialize memory allocated via sock_kmalloc Greg Kroah-Hartman
2026-01-06 17:00 ` [PATCH 6.12 273/567] crypto: caam - Add check for kcalloc() in test_len() Greg Kroah-Hartman
2026-01-06 17:00 ` [PATCH 6.12 274/567] amba: tegra-ahb: Fix device leak on SMMU enable Greg Kroah-Hartman
2026-01-06 17:00 ` [PATCH 6.12 275/567] virtio: vdpa: Fix reference count leak in octep_sriov_enable() Greg Kroah-Hartman
2026-01-06 17:00 ` [PATCH 6.12 276/567] tracing: Fix fixed array of synthetic event Greg Kroah-Hartman
2026-01-06 17:00 ` [PATCH 6.12 277/567] soc: samsung: exynos-pmu: fix device leak on regmap lookup Greg Kroah-Hartman
2026-01-06 17:01 ` [PATCH 6.12 278/567] soc: qcom: pbs: fix device leak on lookup Greg Kroah-Hartman
2026-01-06 17:01 ` [PATCH 6.12 279/567] soc: qcom: ocmem: " Greg Kroah-Hartman
2026-01-06 17:01 ` [PATCH 6.12 280/567] soc: apple: mailbox: " Greg Kroah-Hartman
2026-01-06 17:01 ` [PATCH 6.12 281/567] soc: amlogic: canvas: " Greg Kroah-Hartman
2026-01-06 17:01 ` [PATCH 6.12 282/567] rpmsg: glink: fix rpmsg device leak Greg Kroah-Hartman
2026-01-06 17:01 ` [PATCH 6.12 283/567] platform/x86: intel: chtwc_int33fe: dont dereference swnode args Greg Kroah-Hartman
2026-01-06 17:01 ` [PATCH 6.12 284/567] i2c: amd-mp2: fix reference leak in MP2 PCI device Greg Kroah-Hartman
2026-01-06 17:01 ` [PATCH 6.12 285/567] interconnect: qcom: sdx75: Drop QPIC interconnect and BCM nodes Greg Kroah-Hartman
2026-01-06 17:01 ` [PATCH 6.12 286/567] hwmon: (max16065) Use local variable to avoid TOCTOU Greg Kroah-Hartman
2026-01-06 17:01 ` [PATCH 6.12 287/567] hwmon: (max6697) fix regmap leak on probe failure Greg Kroah-Hartman
2026-01-06 17:01 ` [PATCH 6.12 288/567] hwmon: (w83791d) Convert macros to functions to avoid TOCTOU Greg Kroah-Hartman
2026-01-06 17:01 ` [PATCH 6.12 289/567] hwmon: (w83l786ng) " Greg Kroah-Hartman
2026-01-06 17:01 ` [PATCH 6.12 290/567] ARM: dts: microchip: sama5d2: fix spi flexcom fifo size to 32 Greg Kroah-Hartman
2026-01-06 17:01 ` [PATCH 6.12 291/567] x86/msi: Make irq_retrigger() functional for posted MSI Greg Kroah-Hartman
2026-01-06 17:01 ` [PATCH 6.12 292/567] iommu/mediatek: fix use-after-free on probe deferral Greg Kroah-Hartman
2026-01-06 17:01 ` [PATCH 6.12 293/567] fuse: fix readahead reclaim deadlock Greg Kroah-Hartman
2026-01-06 17:01 ` [PATCH 6.12 294/567] wifi: rtw88: limit indirect IO under powered off for RTL8822CS Greg Kroah-Hartman
2026-01-06 17:01 ` [PATCH 6.12 295/567] wifi: rtlwifi: 8192cu: fix tid out of range in rtl92cu_tx_fill_desc() Greg Kroah-Hartman
2026-01-06 17:01 ` [PATCH 6.12 296/567] wifi: cfg80211: sme: store capped length in __cfg80211_connect_result() Greg Kroah-Hartman
2026-01-06 17:01 ` [PATCH 6.12 297/567] wifi: mac80211: do not use old MBSSID elements Greg Kroah-Hartman
2026-01-06 17:01 ` [PATCH 6.12 298/567] i40e: fix scheduling in set_rx_mode Greg Kroah-Hartman
2026-01-06 17:01 ` [PATCH 6.12 299/567] i40e: validate ring_len parameter against hardware-specific values Greg Kroah-Hartman
2026-01-06 17:01 ` [PATCH 6.12 300/567] iavf: fix off-by-one issues in iavf_config_rss_reg() Greg Kroah-Hartman
2026-01-06 17:01 ` [PATCH 6.12 301/567] idpf: reduce mbx_task schedule delay to 300us Greg Kroah-Hartman
2026-01-06 17:01 ` [PATCH 6.12 302/567] crypto: seqiv - Do not use req->iv after crypto_aead_encrypt Greg Kroah-Hartman
2026-01-06 17:01 ` [PATCH 6.12 303/567] Bluetooth: btusb: revert use of devm_kzalloc in btusb Greg Kroah-Hartman
2026-01-06 17:01 ` [PATCH 6.12 304/567] net: mdio: aspeed: add dummy read to avoid read-after-write issue Greg Kroah-Hartman
2026-01-06 17:01 ` [PATCH 6.12 305/567] net: openvswitch: Avoid needlessly taking the RTNL on vport destroy Greg Kroah-Hartman
2026-01-06 17:01 ` [PATCH 6.12 306/567] ip6_gre: make ip6gre_header() robust Greg Kroah-Hartman
2026-01-06 17:01 ` [PATCH 6.12 307/567] platform/mellanox: mlxbf-pmc: Remove trailing whitespaces from event names Greg Kroah-Hartman
2026-01-06 17:01 ` [PATCH 6.12 308/567] platform/x86: msi-laptop: add missing sysfs_remove_group() Greg Kroah-Hartman
2026-01-06 17:01 ` [PATCH 6.12 309/567] platform/x86: ibm_rtl: fix EBDA signature search pointer arithmetic Greg Kroah-Hartman
2026-01-06 17:01 ` [PATCH 6.12 310/567] team: fix check for port enabled in team_queue_override_port_prio_changed() Greg Kroah-Hartman
2026-01-06 17:01 ` [PATCH 6.12 311/567] net: dsa: fix missing put_device() in dsa_tree_find_first_conduit() Greg Kroah-Hartman
2026-01-06 17:01 ` [PATCH 6.12 312/567] amd-xgbe: reset retries and mode on RX adapt failures Greg Kroah-Hartman
2026-01-06 17:01 ` [PATCH 6.12 313/567] net: usb: rtl8150: fix memory leak on usb_submit_urb() failure Greg Kroah-Hartman
2026-01-06 17:01 ` [PATCH 6.12 314/567] selftests: net: fix "buffer overflow detected" for tap.c Greg Kroah-Hartman
2026-01-06 17:01 ` [PATCH 6.12 315/567] smc91x: fix broken irq-context in PREEMPT_RT Greg Kroah-Hartman
2026-01-06 17:01 ` [PATCH 6.12 316/567] genalloc.h: fix htmldocs warning Greg Kroah-Hartman
2026-01-06 17:01 ` [PATCH 6.12 317/567] firewire: nosy: Fix dma_free_coherent() size Greg Kroah-Hartman
2026-01-06 17:01 ` [PATCH 6.12 318/567] net: dsa: b53: skip multicast entries for fdb_dump() Greg Kroah-Hartman
2026-01-06 17:01 ` [PATCH 6.12 319/567] kbuild: fix compilation of dtb specified on command-line without make rule Greg Kroah-Hartman
2026-01-06 17:01 ` [PATCH 6.12 320/567] net: usb: asix: validate PHY address before use Greg Kroah-Hartman
2026-01-06 17:01 ` [PATCH 6.12 321/567] net: bridge: Describe @tunnel_hash member in net_bridge_vlan_group struct Greg Kroah-Hartman
2026-01-06 17:01 ` [PATCH 6.12 322/567] vfio/pds: Fix memory leak in pds_vfio_dirty_enable() Greg Kroah-Hartman
2026-01-06 17:01 ` [PATCH 6.12 323/567] platform/x86: hp-bioscfg: Fix out-of-bounds array access in ACPI package parsing Greg Kroah-Hartman
2026-01-06 17:01 ` [PATCH 6.12 324/567] octeontx2-pf: fix "UBSAN: shift-out-of-bounds error" Greg Kroah-Hartman
2026-01-06 17:01 ` [PATCH 6.12 325/567] net: stmmac: fix the crash issue for zero copy XDP_TX action Greg Kroah-Hartman
2026-01-06 17:01 ` [PATCH 6.12 326/567] ipv6: BUG() in pskb_expand_head() as part of calipso_skbuff_setattr() Greg Kroah-Hartman
2026-01-06 17:01 ` [PATCH 6.12 327/567] ipv4: Fix reference count leak when using error routes with nexthop objects Greg Kroah-Hartman
2026-01-06 17:01 ` [PATCH 6.12 328/567] net: rose: fix invalid array index in rose_kill_by_device() Greg Kroah-Hartman
2026-01-06 17:01 ` [PATCH 6.12 329/567] ipv6: fix a BUG in rt6_get_pcpu_route() under PREEMPT_RT Greg Kroah-Hartman
2026-01-06 17:01 ` [PATCH 6.12 330/567] RDMA/irdma: avoid invalid read in irdma_net_event Greg Kroah-Hartman
2026-01-06 17:01 ` [PATCH 6.12 331/567] RDMA/efa: Remove possible negative shift Greg Kroah-Hartman
2026-01-06 17:01 ` [PATCH 6.12 332/567] RDMA/core: Fix logic error in ib_get_gids_from_rdma_hdr() Greg Kroah-Hartman
2026-01-06 17:01 ` [PATCH 6.12 333/567] RDMA/bnxt_re: Fix incorrect BAR check in bnxt_qplib_map_creq_db() Greg Kroah-Hartman
2026-01-06 17:01 ` [PATCH 6.12 334/567] RDMA/core: always drop device refcount in ib_del_sub_device_and_put() Greg Kroah-Hartman
2026-01-06 17:01 ` [PATCH 6.12 335/567] RDMA/bnxt_re: Fix IB_SEND_IP_CSUM handling in post_send Greg Kroah-Hartman
2026-01-06 17:01 ` [PATCH 6.12 336/567] RDMA/bnxt_re: Fix to use correct page size for PDE table Greg Kroah-Hartman
2026-01-06 17:01 ` [PATCH 6.12 337/567] md: Fix static checker warning in analyze_sbs Greg Kroah-Hartman
2026-01-06 17:02 ` [PATCH 6.12 338/567] md/raid5: fix possible null-pointer dereferences in raid5_store_group_thread_cnt() Greg Kroah-Hartman
2026-01-06 17:02 ` [PATCH 6.12 339/567] ksmbd: Fix memory leak in get_file_all_info() Greg Kroah-Hartman
2026-01-06 17:02 ` [PATCH 6.12 340/567] RDMA/rtrs: Fix clt_path::max_pages_per_mr calculation Greg Kroah-Hartman
2026-01-06 17:02 ` [PATCH 6.12 341/567] RDMA/bnxt_re: fix dma_free_coherent() pointer Greg Kroah-Hartman
2026-01-06 17:02 ` [PATCH 6.12 342/567] blk-mq: skip CPU offline notify on unmapped hctx Greg Kroah-Hartman
2026-01-06 17:02 ` [PATCH 6.12 343/567] selftests/ftrace: traceonoff_triggers: strip off names Greg Kroah-Hartman
2026-01-06 17:02 ` [PATCH 6.12 344/567] ntfs: Do not overwrite uptodate pages Greg Kroah-Hartman
2026-01-06 17:02 ` [PATCH 6.12 345/567] ASoC: codecs: wcd939x: fix regmap leak on probe failure Greg Kroah-Hartman
2026-01-06 17:02 ` [PATCH 6.12 346/567] ASoC: stm32: sai: fix device leak on probe Greg Kroah-Hartman
2026-01-06 17:02 ` [PATCH 6.12 347/567] ASoC: stm32: sai: fix clk prepare imbalance on probe failure Greg Kroah-Hartman
2026-01-06 17:02 ` [PATCH 6.12 348/567] ASoC: stm32: sai: fix OF node leak on probe Greg Kroah-Hartman
2026-01-06 17:02 ` [PATCH 6.12 349/567] ASoC: codecs: lpass-tx-macro: fix SM6115 support Greg Kroah-Hartman
2026-01-06 17:02 ` [PATCH 6.12 350/567] ASoC: qcom: q6apm-dai: set flags to reflect correct operation of appl_ptr Greg Kroah-Hartman
2026-01-06 17:02 ` [PATCH 6.12 351/567] ASoC: qcom: q6asm-dai: perform correct state check before closing Greg Kroah-Hartman
2026-01-06 17:02 ` [PATCH 6.12 352/567] ASoC: qcom: q6adm: the the copp device only during last instance Greg Kroah-Hartman
2026-01-06 17:02 ` [PATCH 6.12 353/567] ASoC: qcom: qdsp6: q6asm-dai: set 10 ms period and buffer alignment Greg Kroah-Hartman
2026-01-06 17:02 ` [PATCH 6.12 354/567] iommu/amd: Fix pci_segment memleak in alloc_pci_segment() Greg Kroah-Hartman
2026-01-06 17:02 ` [PATCH 6.12 355/567] iommu/amd: Propagate the error code returned by __modify_irte_ga() in modify_irte_ga() Greg Kroah-Hartman
2026-01-06 17:02 ` [PATCH 6.12 356/567] iommu/apple-dart: fix device leak on of_xlate() Greg Kroah-Hartman
2026-01-06 17:02 ` [PATCH 6.12 357/567] iommu/exynos: " Greg Kroah-Hartman
2026-01-06 17:02 ` [PATCH 6.12 358/567] iommu/ipmmu-vmsa: " Greg Kroah-Hartman
2026-01-06 17:02 ` [PATCH 6.12 359/567] iommu/mediatek-v1: fix device leak on probe_device() Greg Kroah-Hartman
2026-01-06 17:02 ` [PATCH 6.12 360/567] iommu/mediatek-v1: fix device leaks on probe() Greg Kroah-Hartman
2026-01-06 17:02 ` [PATCH 6.12 361/567] iommu/mediatek: fix device leak on of_xlate() Greg Kroah-Hartman
2026-01-06 17:02 ` [PATCH 6.12 362/567] iommu/omap: fix device leaks on probe_device() Greg Kroah-Hartman
2026-01-06 17:02 ` [PATCH 6.12 363/567] iommu/qcom: fix device leak on of_xlate() Greg Kroah-Hartman
2026-01-06 17:02 ` [PATCH 6.12 364/567] iommu/sun50i: " Greg Kroah-Hartman
2026-01-06 17:02 ` [PATCH 6.12 365/567] iommu/tegra: fix device leak on probe_device() Greg Kroah-Hartman
2026-01-06 17:02 ` [PATCH 6.12 366/567] iommu: disable SVA when CONFIG_X86 is set Greg Kroah-Hartman
2026-01-06 17:02 ` [PATCH 6.12 367/567] HID: logitech-dj: Remove duplicate error logging Greg Kroah-Hartman
2026-01-06 17:02 ` [PATCH 6.12 368/567] fgraph: Initialize ftrace_ops->private for function graph ops Greg Kroah-Hartman
2026-01-06 17:02 ` [PATCH 6.12 369/567] fgraph: Check ftrace_pids_enabled on registration for early filtering Greg Kroah-Hartman
2026-01-06 17:02 ` [PATCH 6.12 370/567] PCI/PM: Reinstate clearing state_saved in legacy and !PM codepaths Greg Kroah-Hartman
2026-01-06 17:02 ` [PATCH 6.12 371/567] arm64: dts: ti: k3-j721e-sk: Fix pinmux for pin Y1 used by power regulator Greg Kroah-Hartman
2026-01-06 17:02 ` [PATCH 6.12 372/567] powerpc, mm: Fix mprotect on book3s 32-bit Greg Kroah-Hartman
2026-01-06 17:02 ` [PATCH 6.12 373/567] powerpc/64s/slb: Fix SLB multihit issue during SLB preload Greg Kroah-Hartman
2026-01-06 17:02 ` [PATCH 6.12 374/567] leds: leds-cros_ec: Skip LEDs without color components Greg Kroah-Hartman
2026-01-06 17:02 ` [PATCH 6.12 375/567] leds: leds-lp50xx: Allow LED 0 to be added to module bank Greg Kroah-Hartman
2026-01-06 17:02 ` [PATCH 6.12 376/567] leds: leds-lp50xx: LP5009 supports 3 modules for a total of 9 LEDs Greg Kroah-Hartman
2026-01-06 17:02 ` [PATCH 6.12 377/567] leds: leds-lp50xx: Enable chip before any communication Greg Kroah-Hartman
2026-01-06 17:02 ` [PATCH 6.12 378/567] block: Clear BLK_ZONE_WPLUG_PLUGGED when aborting plugged BIOs Greg Kroah-Hartman
2026-01-06 17:02 ` [PATCH 6.12 379/567] clk: samsung: exynos-clkout: Assign .num before accessing .hws Greg Kroah-Hartman
2026-01-06 17:02 ` [PATCH 6.12 380/567] mfd: altera-sysmgr: Fix device leak on sysmgr regmap lookup Greg Kroah-Hartman
2026-01-06 17:02 ` [PATCH 6.12 381/567] mfd: max77620: Fix potential IRQ chip conflict when probing two devices Greg Kroah-Hartman
2026-01-06 17:02 ` [PATCH 6.12 382/567] media: rc: st_rc: Fix reset control resource leak Greg Kroah-Hartman
2026-01-06 17:02 ` [PATCH 6.12 383/567] media: verisilicon: Fix CPU stalls on G2 bus error Greg Kroah-Hartman
2026-01-06 17:02 ` [PATCH 6.12 384/567] mtd: mtdpart: ignore error -ENOENT from parsers on subpartitions Greg Kroah-Hartman
2026-01-06 17:02 ` [PATCH 6.12 385/567] mtd: spi-nor: winbond: Add support for W25Q01NWxxIQ chips Greg Kroah-Hartman
2026-01-06 17:02 ` [PATCH 6.12 386/567] mtd: spi-nor: winbond: Add support for W25Q01NWxxIM chips Greg Kroah-Hartman
2026-01-06 17:02 ` [PATCH 6.12 387/567] mtd: spi-nor: winbond: Add support for W25Q02NWxxIM chips Greg Kroah-Hartman
2026-01-06 17:02 ` [PATCH 6.12 388/567] mtd: spi-nor: winbond: Add support for W25H512NWxxAM chips Greg Kroah-Hartman
2026-01-06 17:02 ` [PATCH 6.12 389/567] mtd: spi-nor: winbond: Add support for W25H01NWxxAM chips Greg Kroah-Hartman
2026-01-06 17:02 ` [PATCH 6.12 390/567] mtd: spi-nor: winbond: Add support for W25H02NWxxAM chips Greg Kroah-Hartman
2026-01-06 17:02 ` [PATCH 6.12 391/567] parisc: entry.S: fix space adjustment on interruption for 64-bit userspace Greg Kroah-Hartman
2026-01-06 17:02 ` [PATCH 6.12 392/567] parisc: entry: set W bit for !compat tasks in syscall_restore_rfi() Greg Kroah-Hartman
2026-01-06 17:02 ` [PATCH 6.12 393/567] perf/x86/amd/uncore: Fix the return value of amd_uncore_df_event_init() on error Greg Kroah-Hartman
2026-01-06 17:02 ` [PATCH 6.12 394/567] powerpc/pseries/cmm: call balloon_devinfo_init() also without CONFIG_BALLOON_COMPACTION Greg Kroah-Hartman
2026-01-06 17:02 ` [PATCH 6.12 395/567] media: adv7842: Avoid possible out-of-bounds array accesses in adv7842_cp_log_status() Greg Kroah-Hartman
2026-01-06 17:02 ` [PATCH 6.12 396/567] firmware: stratix10-svc: Add mutex in stratix10 memory management Greg Kroah-Hartman
2026-01-06 17:02 ` [PATCH 6.12 397/567] dm-ebs: Mark full buffer dirty even on partial write Greg Kroah-Hartman
2026-01-06 17:03 ` [PATCH 6.12 398/567] dm-bufio: align write boundary on physical block size Greg Kroah-Hartman
2026-01-06 17:03 ` [PATCH 6.12 399/567] fbdev: gbefb: fix to use physical address instead of dma address Greg Kroah-Hartman
2026-01-06 17:03 ` [PATCH 6.12 400/567] fbdev: pxafb: Fix multiple clamped values in pxafb_adjust_timing Greg Kroah-Hartman
2026-01-06 17:03 ` [PATCH 6.12 401/567] fbdev: tcx.c fix mem_map to correct smem_start offset Greg Kroah-Hartman
2026-01-06 17:03 ` [PATCH 6.12 402/567] media: cec: Fix debugfs leak on bus_register() failure Greg Kroah-Hartman
2026-01-06 17:03 ` [PATCH 6.12 403/567] media: msp3400: Avoid possible out-of-bounds array accesses in msp3400c_thread() Greg Kroah-Hartman
2026-01-06 17:03 ` [PATCH 6.12 404/567] media: platform: mtk-mdp3: fix device leaks at probe Greg Kroah-Hartman
2026-01-06 17:03 ` [PATCH 6.12 405/567] media: renesas: rcar_drif: fix device node reference leak in rcar_drif_bond_enabled Greg Kroah-Hartman
2026-01-06 17:03 ` [PATCH 6.12 406/567] media: samsung: exynos4-is: fix potential ABBA deadlock on init Greg Kroah-Hartman
2026-01-06 17:03 ` [PATCH 6.12 407/567] media: TDA1997x: Remove redundant cancel_delayed_work in probe Greg Kroah-Hartman
2026-01-06 17:03 ` [PATCH 6.12 408/567] media: verisilicon: Protect G2 HEVC decoder against invalid DPB index Greg Kroah-Hartman
2026-01-06 17:03 ` [PATCH 6.12 409/567] media: videobuf2: Fix device reference leak in vb2_dc_alloc error path Greg Kroah-Hartman
2026-01-06 17:03 ` [PATCH 6.12 410/567] media: vpif_capture: fix section mismatch Greg Kroah-Hartman
2026-01-06 17:03 ` [PATCH 6.12 411/567] media: vpif_display: " Greg Kroah-Hartman
2026-01-06 17:03 ` [PATCH 6.12 412/567] media: amphion: Cancel message work before releasing the VPU core Greg Kroah-Hartman
2026-01-06 17:03 ` [PATCH 6.12 413/567] media: i2c: ADV7604: Remove redundant cancel_delayed_work in probe Greg Kroah-Hartman
2026-01-06 17:03 ` [PATCH 6.12 414/567] media: i2c: adv7842: " Greg Kroah-Hartman
2026-01-06 17:03 ` [PATCH 6.12 415/567] media: mediatek: vcodec: Fix a reference leak in mtk_vcodec_fw_vpu_init() Greg Kroah-Hartman
2026-01-06 17:03 ` [PATCH 6.12 416/567] LoongArch: Add new PCI ID for pci_fixup_vgadev() Greg Kroah-Hartman
2026-01-06 17:03 ` [PATCH 6.12 417/567] LoongArch: Correct the calculation logic of thread_count Greg Kroah-Hartman
2026-01-06 17:03 ` [PATCH 6.12 418/567] LoongArch: Fix build errors for CONFIG_RANDSTRUCT Greg Kroah-Hartman
2026-01-06 17:03 ` [PATCH 6.12 419/567] LoongArch: Use __pmd()/__pte() for swap entry conversions Greg Kroah-Hartman
2026-01-06 17:03 ` [PATCH 6.12 420/567] LoongArch: Use unsigned long for _end and _text Greg Kroah-Hartman
2026-01-06 17:03 ` [PATCH 6.12 421/567] mm/damon/tests/sysfs-kunit: handle alloc failures on damon_sysfs_test_add_targets() Greg Kroah-Hartman
2026-01-06 17:03 ` [PATCH 6.12 422/567] mm/damon/tests/vaddr-kunit: handle alloc failures in damon_test_split_evenly_fail() Greg Kroah-Hartman
2026-01-06 17:03 ` [PATCH 6.12 423/567] mm/damon/tests/vaddr-kunit: handle alloc failures on damon_test_split_evenly_succ() Greg Kroah-Hartman
2026-01-06 17:03 ` [PATCH 6.12 424/567] mm/damon/tests/core-kunit: handle alloc failures on damon_test_split_at() Greg Kroah-Hartman
2026-01-06 17:03 ` [PATCH 6.12 425/567] mm/damon/tests/core-kunit: handle allocation failures in damon_test_regions() Greg Kroah-Hartman
2026-01-06 17:03 ` [PATCH 6.12 426/567] mm/damon/tests/core-kunit: handle memory failure from damon_test_target() Greg Kroah-Hartman
2026-01-06 17:03 ` [PATCH 6.12 427/567] mm/damon/tests/core-kunit: handle memory alloc failure from damon_test_aggregate() Greg Kroah-Hartman
2026-01-06 17:03 ` [PATCH 6.12 428/567] mm/damon/tests/core-kunit: handle alloc failures on dasmon_test_merge_regions_of() Greg Kroah-Hartman
2026-01-06 17:03 ` [PATCH 6.12 429/567] mm/damon/tests/core-kunit: handle alloc failures on damon_test_merge_two() Greg Kroah-Hartman
2026-01-06 17:03 ` [PATCH 6.12 430/567] mm/damon/tests/core-kunit: handle alloc failures in damon_test_set_regions() Greg Kroah-Hartman
2026-01-06 17:03 ` [PATCH 6.12 431/567] mm/damon/tests/core-kunit: handle alloc failures in damon_test_update_monitoring_result() Greg Kroah-Hartman
2026-01-06 17:03 ` [PATCH 6.12 432/567] mm/damon/tests/core-kunit: handle alloc failures in damon_test_ops_registration() Greg Kroah-Hartman
2026-01-06 17:03 ` [PATCH 6.12 433/567] mm/damon/tests/core-kunit: handle alloc failure on damon_test_set_attrs() Greg Kroah-Hartman
2026-01-06 17:03 ` [PATCH 6.12 434/567] pmdomain: imx: Fix reference count leak in imx_gpc_probe() Greg Kroah-Hartman
2026-01-06 17:03 ` [PATCH 6.12 435/567] compiler_types.h: add "auto" as a macro for "__auto_type" Greg Kroah-Hartman
2026-01-06 17:03 ` [PATCH 6.12 436/567] mm/kasan: fix incorrect unpoisoning in vrealloc for KASAN Greg Kroah-Hartman
2026-01-06 17:03 ` [PATCH 6.12 437/567] kasan: refactor pcpu kasan vmalloc unpoison Greg Kroah-Hartman
2026-01-06 17:03 ` Greg Kroah-Hartman [this message]
2026-01-06 17:03 ` [PATCH 6.12 439/567] lockd: fix vfs_test_lock() calls Greg Kroah-Hartman
2026-01-06 17:03 ` [PATCH 6.12 440/567] idr: fix idr_alloc() returning an ID out of range Greg Kroah-Hartman
2026-01-06 17:03 ` [PATCH 6.12 441/567] mm/page_owner: fix memory leak in page_owner_stack_fops->release() Greg Kroah-Hartman
2026-01-06 17:03 ` [PATCH 6.12 442/567] x86/microcode/AMD: Fix Entrysign revision check for Zen5/Strix Halo Greg Kroah-Hartman
2026-01-06 17:03 ` [PATCH 6.12 443/567] tools/mm/page_owner_sort: fix timestamp comparison for stable sorting Greg Kroah-Hartman
2026-01-06 17:03 ` [PATCH 6.12 444/567] samples/ftrace: Adjust LoongArch register restore order in direct calls Greg Kroah-Hartman
2026-01-06 17:03 ` [PATCH 6.12 445/567] RDMA/core: Check for the presence of LS_NLA_TYPE_DGID correctly Greg Kroah-Hartman
2026-01-06 17:03 ` [PATCH 6.12 446/567] RDMA/cm: Fix leaking the multicast GID table reference Greg Kroah-Hartman
2026-01-06 17:03 ` [PATCH 6.12 447/567] e1000: fix OOB in e1000_tbi_should_accept() Greg Kroah-Hartman
2026-01-06 17:03 ` [PATCH 6.12 448/567] fjes: Add missing iounmap in fjes_hw_init() Greg Kroah-Hartman
2026-01-06 17:03 ` [PATCH 6.12 449/567] LoongArch: Refactor register restoration in ftrace_common_return Greg Kroah-Hartman
2026-01-06 17:03 ` [PATCH 6.12 450/567] LoongArch: BPF: Zero-extend bpf_tail_call() index Greg Kroah-Hartman
2026-01-06 17:03 ` [PATCH 6.12 451/567] LoongArch: BPF: Sign extend kfunc call arguments Greg Kroah-Hartman
2026-01-06 17:03 ` [PATCH 6.12 452/567] nfsd: Drop the client reference in client_states_open() Greg Kroah-Hartman
2026-01-06 17:03 ` [PATCH 6.12 453/567] net: usb: sr9700: fix incorrect command used to write single register Greg Kroah-Hartman
2026-01-06 17:03 ` [PATCH 6.12 454/567] net: nfc: fix deadlock between nfc_unregister_device and rfkill_fop_write Greg Kroah-Hartman
2026-01-06 17:03 ` [PATCH 6.12 455/567] net: macb: Relocate mog_init_rings() callback from macb_mac_link_up() to macb_open() Greg Kroah-Hartman
2026-01-06 17:03 ` [PATCH 6.12 456/567] Revert "drm/amd: Skip power ungate during suspend for VPE" Greg Kroah-Hartman
2026-01-06 17:03 ` [PATCH 6.12 457/567] drm/amdgpu/gmc12: add amdgpu_vm_handle_fault() handling Greg Kroah-Hartman
2026-01-06 17:04 ` [PATCH 6.12 458/567] drm/amdgpu: add missing lock to amdgpu_ttm_access_memory_sdma Greg Kroah-Hartman
2026-01-06 17:04 ` [PATCH 6.12 459/567] drm/amdgpu/gmc11: add amdgpu_vm_handle_fault() handling Greg Kroah-Hartman
2026-01-06 17:04 ` [PATCH 6.12 460/567] drm/msm/a6xx: Fix out of bound IO access in a6xx_get_gmu_registers Greg Kroah-Hartman
2026-01-06 17:04 ` [PATCH 6.12 461/567] drm/buddy: Optimize free block management with RB tree Greg Kroah-Hartman
2026-01-06 17:04 ` [PATCH 6.12 462/567] drm/buddy: Separate clear and dirty free block trees Greg Kroah-Hartman
2026-01-06 17:04 ` [PATCH 6.12 463/567] drm/gma500: Remove unused helper psb_fbdev_fb_setcolreg() Greg Kroah-Hartman
2026-01-06 17:04 ` [PATCH 6.12 464/567] drm/edid: add DRM_EDID_IDENT_INIT() to initialize struct drm_edid_ident Greg Kroah-Hartman
2026-01-06 17:04 ` [PATCH 6.12 465/567] drm/xe/oa: Fix potential UAF in xe_oa_add_config_ioctl() Greg Kroah-Hartman
2026-01-06 17:04 ` [PATCH 6.12 466/567] drm/mediatek: Fix device node reference leak in mtk_dp_dt_parse() Greg Kroah-Hartman
2026-01-06 17:04 ` [PATCH 6.12 467/567] drm/mediatek: Fix probe resource leaks Greg Kroah-Hartman
2026-01-06 17:04 ` [PATCH 6.12 468/567] drm/mediatek: Fix probe memory leak Greg Kroah-Hartman
2026-01-06 17:04 ` [PATCH 6.12 469/567] drm/mediatek: Fix probe device leaks Greg Kroah-Hartman
2026-01-06 17:04 ` [PATCH 6.12 470/567] drm/amdkfd: Export the cwsr_size and ctl_stack_size to userspace Greg Kroah-Hartman
2026-01-06 17:04 ` [PATCH 6.12 471/567] drm/amdkfd: bump minimum vgpr size for gfx1151 Greg Kroah-Hartman
2026-01-06 17:04 ` [PATCH 6.12 472/567] drm/amdkfd: Trap handler support for expert scheduling mode Greg Kroah-Hartman
2026-01-06 17:04 ` [PATCH 6.12 473/567] drm/i915: Fix format string truncation warning Greg Kroah-Hartman
2026-01-06 17:04 ` [PATCH 6.12 474/567] drm/ttm: Avoid NULL pointer deref for evicted BOs Greg Kroah-Hartman
2026-01-06 17:04 ` [PATCH 6.12 475/567] drm/mgag200: Fix big-endian support Greg Kroah-Hartman
2026-01-06 17:04 ` [PATCH 6.12 476/567] drm/xe/bo: Dont include the CCS metadata in the dma-buf sg-table Greg Kroah-Hartman
2026-01-06 17:04 ` [PATCH 6.12 477/567] drm/xe/oa: Disallow 0 OA property values Greg Kroah-Hartman
2026-01-06 17:04 ` [PATCH 6.12 478/567] drm/xe: Adjust long-running workload timeslices to reasonable values Greg Kroah-Hartman
2026-01-06 17:04 ` [PATCH 6.12 479/567] drm/xe: Use usleep_range for accurate long-running workload timeslicing Greg Kroah-Hartman
2026-01-06 17:04 ` [PATCH 6.12 480/567] drm/xe: Drop preempt-fences when destroying imported dma-bufs Greg Kroah-Hartman
2026-01-06 17:04 ` [PATCH 6.12 481/567] drm/msm/dpu: Add missing NULL pointer check for pingpong interface Greg Kroah-Hartman
2026-01-06 17:04 ` [PATCH 6.12 482/567] drm/i915/gem: Zero-initialize the eb.vma array in i915_gem_do_execbuffer Greg Kroah-Hartman
2026-01-06 17:04 ` [PATCH 6.12 483/567] drm/nouveau/dispnv50: Dont call drm_atomic_get_crtc_state() in prepare_fb Greg Kroah-Hartman
2026-01-06 17:04 ` [PATCH 6.12 484/567] drm/imagination: Disallow exporting of PM/FW protected objects Greg Kroah-Hartman
2026-01-06 17:04 ` [PATCH 6.12 485/567] lib/crypto: riscv/chacha: Avoid s0/fp register Greg Kroah-Hartman
2026-01-06 17:04 ` [PATCH 6.12 486/567] gfs2: fix freeze error handling Greg Kroah-Hartman
2026-01-06 17:04 ` [PATCH 6.12 487/567] btrfs: dont rewrite ret from inode_permission Greg Kroah-Hartman
2026-01-06 17:04 ` [PATCH 6.12 488/567] sched/eevdf: Fix min_vruntime vs avg_vruntime Greg Kroah-Hartman
2026-01-06 17:04 ` [PATCH 6.12 489/567] erofs: fix unexpected EIO under memory pressure Greg Kroah-Hartman
2026-01-06 17:04 ` [PATCH 6.12 490/567] sched_ext: Fix incorrect sched_class settings for per-cpu migration tasks Greg Kroah-Hartman
2026-01-06 17:04 ` [PATCH 6.12 491/567] jbd2: fix the inconsistency between checksum and data in memory for journal sb Greg Kroah-Hartman
2026-01-06 17:04 ` [PATCH 6.12 492/567] tty: introduce and use tty_port_tty_vhangup() helper Greg Kroah-Hartman
2026-01-06 17:04 ` [PATCH 6.12 493/567] xhci: dbgtty: fix device unregister: fixup Greg Kroah-Hartman
2026-01-07 0:04 ` Łukasz Bartosik
2026-01-08 9:12 ` Greg Kroah-Hartman
2026-01-08 9:45 ` Łukasz Bartosik
2026-01-06 17:04 ` [PATCH 6.12 494/567] f2fs: fix to detect recoverable inode during dryrun of find_fsync_dnodes() Greg Kroah-Hartman
2026-01-06 17:04 ` [PATCH 6.12 495/567] f2fs: use global inline_xattr_slab instead of per-sb slab cache Greg Kroah-Hartman
2026-01-06 17:04 ` [PATCH 6.12 496/567] f2fs: drop inode from the donation list when the last file is closed Greg Kroah-Hartman
2026-01-06 17:04 ` [PATCH 6.12 497/567] f2fs: fix to avoid updating compression context during writeback Greg Kroah-Hartman
2026-01-06 17:04 ` [PATCH 6.12 498/567] serial: core: fix OF node leak Greg Kroah-Hartman
2026-01-06 17:04 ` [PATCH 6.12 499/567] serial: core: Restore sysfs fwnode information Greg Kroah-Hartman
2026-01-06 17:04 ` [PATCH 6.12 500/567] mptcp: pm: ignore unknown endpoint flags Greg Kroah-Hartman
2026-01-06 17:04 ` [PATCH 6.12 501/567] mm/ksm: fix exec/fork inheritance support for prctl Greg Kroah-Hartman
2026-01-06 17:04 ` [PATCH 6.12 502/567] svcrdma: bound check rq_pages index in inline path Greg Kroah-Hartman
2026-01-06 17:04 ` [PATCH 6.12 503/567] ARM: dts: microchip: sama7g5: fix uart fifo size to 32 Greg Kroah-Hartman
2026-01-06 17:04 ` [PATCH 6.12 504/567] block: freeze queue when updating zone resources Greg Kroah-Hartman
2026-01-06 17:04 ` [PATCH 6.12 505/567] tpm2-sessions: Fix tpm2_read_public range checks Greg Kroah-Hartman
2026-01-06 17:04 ` [PATCH 6.12 506/567] sched_ext: Factor out local_dsq_post_enq() from dispatch_enqueue() Greg Kroah-Hartman
2026-01-06 17:04 ` [PATCH 6.12 507/567] sched_ext: Fix missing post-enqueue handling in move_local_task_to_local_dsq() Greg Kroah-Hartman
2026-01-06 17:04 ` [PATCH 6.12 508/567] drm/displayid: add quirk to ignore DisplayID checksum errors Greg Kroah-Hartman
2026-01-06 17:04 ` [PATCH 6.12 509/567] hrtimers: Introduce hrtimer_update_function() Greg Kroah-Hartman
2026-01-06 17:04 ` [PATCH 6.12 510/567] serial: xilinx_uartps: Use helper function hrtimer_update_function() Greg Kroah-Hartman
2026-01-06 17:04 ` [PATCH 6.12 511/567] serial: xilinx_uartps: fix rs485 delay_rts_after_send Greg Kroah-Hartman
2026-01-06 17:04 ` [PATCH 6.12 512/567] f2fs: clear SBI_POR_DOING before initing inmem curseg Greg Kroah-Hartman
2026-01-06 17:04 ` [PATCH 6.12 513/567] f2fs: add timeout in f2fs_enable_checkpoint() Greg Kroah-Hartman
2026-01-06 17:04 ` [PATCH 6.12 514/567] f2fs: dump more information for f2fs_{enable,disable}_checkpoint() Greg Kroah-Hartman
2026-01-06 17:04 ` [PATCH 6.12 515/567] f2fs: fix to propagate error from f2fs_enable_checkpoint() Greg Kroah-Hartman
2026-01-06 17:04 ` [PATCH 6.12 516/567] gpiolib: acpi: Switch to use enum in acpi_gpio_in_ignore_list() Greg Kroah-Hartman
2026-01-06 17:04 ` [PATCH 6.12 517/567] gpiolib: acpi: Handle deferred list via new API Greg Kroah-Hartman
2026-01-06 17:05 ` [PATCH 6.12 518/567] gpiolib: acpi: Add acpi_gpio_need_run_edge_events_on_boot() getter Greg Kroah-Hartman
2026-01-06 17:05 ` [PATCH 6.12 519/567] gpiolib: acpi: Move quirks to a separate file Greg Kroah-Hartman
2026-02-10 16:06 ` Ben Hutchings
2026-02-11 11:36 ` Greg Kroah-Hartman
2026-01-06 17:05 ` [PATCH 6.12 520/567] gpiolib: acpi: Add a quirk for Acer Nitro V15 Greg Kroah-Hartman
2026-01-06 17:05 ` [PATCH 6.12 521/567] gpiolib: acpi: Add quirk for ASUS ProArt PX13 Greg Kroah-Hartman
2026-01-06 17:05 ` [PATCH 6.12 522/567] gpiolib: acpi: Add quirk for Dell Precision 7780 Greg Kroah-Hartman
2026-01-06 17:05 ` [PATCH 6.12 523/567] netfilter: nft_ct: add seqadj extension for natted connections Greg Kroah-Hartman
2026-01-06 17:05 ` [PATCH 6.12 524/567] md/raid10: wait barrier before returning discard request with REQ_NOWAIT Greg Kroah-Hartman
2026-01-06 17:05 ` [PATCH 6.12 525/567] drm/panthor: Flush shmem writes before mapping buffers CPU-uncached Greg Kroah-Hartman
2026-01-06 17:05 ` [PATCH 6.12 526/567] net: ipv6: ioam6: use consistent dst names Greg Kroah-Hartman
2026-01-06 17:05 ` [PATCH 6.12 527/567] ipv6: adopt dst_dev() helper Greg Kroah-Hartman
2026-01-06 17:05 ` [PATCH 6.12 528/567] net: use dst_dev_rcu() in sk_setup_caps() Greg Kroah-Hartman
2026-01-06 17:05 ` [PATCH 6.12 529/567] usbnet: Fix using smp_processor_id() in preemptible code warnings Greg Kroah-Hartman
2026-01-06 17:05 ` [PATCH 6.12 530/567] serial: core: Fix serial device initialization Greg Kroah-Hartman
2026-01-06 17:05 ` [PATCH 6.12 531/567] tty: fix tty_port_tty_*hangup() kernel-doc Greg Kroah-Hartman
2026-01-06 17:05 ` [PATCH 6.12 532/567] x86/microcode/AMD: Select which microcode patch to load Greg Kroah-Hartman
2026-01-06 17:05 ` [PATCH 6.12 533/567] media: i2c: imx219: Fix 1920x1080 mode to use 1:1 pixel aspect ratio Greg Kroah-Hartman
2026-01-06 17:05 ` [PATCH 6.12 534/567] wifi: mt76: mt7925: fix the unfinished command of regd_notifier before suspend Greg Kroah-Hartman
2026-01-06 17:05 ` [PATCH 6.12 535/567] wifi: mt76: mt7925: fix CLC command timeout when suspend/resume Greg Kroah-Hartman
2026-01-06 17:05 ` [PATCH 6.12 536/567] wifi: mt76: mt7925: add handler to hif suspend/resume event Greg Kroah-Hartman
2026-01-06 17:05 ` [PATCH 6.12 537/567] idpf: add support for SW triggered interrupts Greg Kroah-Hartman
2026-01-06 17:05 ` [PATCH 6.12 538/567] idpf: trigger SW interrupt when exiting wb_on_itr mode Greg Kroah-Hartman
2026-01-06 17:05 ` [PATCH 6.12 539/567] idpf: add support for Tx refillqs in flow scheduling mode Greg Kroah-Hartman
2026-01-06 17:05 ` [PATCH 6.12 540/567] idpf: improve when to set RE bit logic Greg Kroah-Hartman
2026-01-06 17:05 ` [PATCH 6.12 541/567] idpf: simplify and fix splitq Tx packet rollback error path Greg Kroah-Hartman
2026-01-06 17:05 ` [PATCH 6.12 542/567] idpf: replace flow scheduling buffer ring with buffer pool Greg Kroah-Hartman
2026-01-06 17:05 ` [PATCH 6.12 543/567] idpf: stop Tx if there are insufficient buffer resources Greg Kroah-Hartman
2026-01-06 17:05 ` [PATCH 6.12 544/567] idpf: remove obsolete stashing code Greg Kroah-Hartman
2026-01-06 17:05 ` [PATCH 6.12 545/567] hrtimers: Make hrtimer_update_function() less expensive Greg Kroah-Hartman
2026-01-06 17:05 ` [PATCH 6.12 546/567] gve: defer interrupt enabling until NAPI registration Greg Kroah-Hartman
2026-01-06 17:05 ` [PATCH 6.12 547/567] ASoC: renesas: rz-ssi: Fix channel swap issue in full duplex mode Greg Kroah-Hartman
2026-01-06 17:05 ` [PATCH 6.12 548/567] block: handle zone management operations completions Greg Kroah-Hartman
2026-01-06 17:05 ` [PATCH 6.12 549/567] soundwire: stream: extend sdw_alloc_stream() to take type parameter Greg Kroah-Hartman
2026-01-06 17:05 ` [PATCH 6.12 550/567] ASoC: qcom: sdw: fix memory leak for sdw_stream_runtime Greg Kroah-Hartman
2026-01-06 17:05 ` [PATCH 6.12 551/567] ASoC: renesas: rz-ssi: Fix rz_ssi_priv::hw_params_cache::sample_width Greg Kroah-Hartman
2026-01-06 17:05 ` [PATCH 6.12 552/567] PCI: brcmstb: Reuse pcie_cfg_data structure Greg Kroah-Hartman
2026-01-06 17:05 ` [PATCH 6.12 553/567] PCI: brcmstb: Set MLW based on "num-lanes" DT property if present Greg Kroah-Hartman
2026-01-06 17:05 ` [PATCH 6.12 554/567] PCI: brcmstb: Fix disabling L0s capability Greg Kroah-Hartman
2026-01-06 17:05 ` [PATCH 6.12 555/567] mm/balloon_compaction: we cannot have isolated pages in the balloon list Greg Kroah-Hartman
2026-01-06 17:05 ` [PATCH 6.12 556/567] mm/balloon_compaction: convert balloon_page_delete() to balloon_page_finalize() Greg Kroah-Hartman
2026-01-06 17:05 ` [PATCH 6.12 557/567] powerpc/pseries/cmm: adjust BALLOON_MIGRATE when migrating pages Greg Kroah-Hartman
2026-01-06 17:05 ` [PATCH 6.12 558/567] media: mediatek: vcodec: Use spinlock for context list protection lock Greg Kroah-Hartman
2026-01-06 17:05 ` [PATCH 6.12 559/567] media: amphion: Add a frame flush mode for decoder Greg Kroah-Hartman
2026-01-06 17:05 ` [PATCH 6.12 560/567] media: amphion: Make some vpu_v4l2 functions static Greg Kroah-Hartman
2026-01-06 17:05 ` [PATCH 6.12 561/567] media: amphion: Remove vpu_vb_is_codecconfig Greg Kroah-Hartman
2026-01-06 17:05 ` [PATCH 6.12 562/567] vfio/pci: Disable qword access to the PCI ROM bar Greg Kroah-Hartman
2026-01-06 17:05 ` [PATCH 6.12 563/567] mm/damon/tests/core-kunit: handle alloc failures on damon_test_split_regions_of() Greg Kroah-Hartman
2026-01-06 17:05 ` [PATCH 6.12 564/567] mm/damon/tests/core-kunit: handle alloc failres in damon_test_new_filter() Greg Kroah-Hartman
2026-01-06 17:05 ` [PATCH 6.12 565/567] mm/damon/tests/vaddr-kunit: handle alloc failures on damon_do_test_apply_three_regions() Greg Kroah-Hartman
2026-01-06 17:05 ` [PATCH 6.12 566/567] iomap: allocate s_dio_done_wq for async reads as well Greg Kroah-Hartman
2026-01-06 17:05 ` [PATCH 6.12 567/567] block: fix NULL pointer dereference in blk_zone_reset_all_bio_endio() Greg Kroah-Hartman
2026-01-06 19:22 ` [PATCH 6.12 000/567] 6.12.64-rc1 review Brett A C Sheffield
2026-01-06 22:00 ` Pavel Machek
2026-01-06 22:56 ` Shuah Khan
2026-01-07 0:08 ` Peter Schneider
2026-01-07 0:35 ` Florian Fainelli
2026-01-07 10:28 ` Ron Economos
2026-01-07 11:49 ` Mark Brown
2026-01-07 11:53 ` Francesco Dolcini
2026-01-07 12:32 ` Jeffrin Thalakkottoor
2026-01-07 13:44 ` Harshit Mogalapalli
2026-01-07 15:26 ` Miguel Ojeda
2026-01-07 20:05 ` Brett Mastbergen
2026-01-07 20:13 ` Jon Hunter
2026-01-07 20:43 ` Hardik Garg
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=20260106170507.555281768@linuxfoundation.org \
--to=gregkh@linuxfoundation.org \
--cc=akpm@linux-foundation.org \
--cc=andreyknvl@gmail.com \
--cc=dakr@kernel.org \
--cc=dvyukov@google.com \
--cc=elver@google.com \
--cc=glider@google.com \
--cc=jiayuan.chen@linux.dev \
--cc=kees@kernel.org \
--cc=maciej.wieczor-retman@intel.com \
--cc=patches@lists.linux.dev \
--cc=ryabinin.a.a@gmail.com \
--cc=stable@vger.kernel.org \
--cc=urezki@gmail.com \
--cc=vincenzo.frascino@arm.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