From: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
To: stable@vger.kernel.org
Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>,
patches@lists.linux.dev, Filipe Manana <fdmanana@suse.com>,
Qu Wenruo <wqu@suse.com>, David Sterba <dsterba@suse.com>
Subject: [PATCH 6.1 256/482] btrfs: do not allow relocation of partially dropped subvolumes
Date: Tue, 26 Aug 2025 13:08:29 +0200 [thread overview]
Message-ID: <20250826110937.092594773@linuxfoundation.org> (raw)
In-Reply-To: <20250826110930.769259449@linuxfoundation.org>
6.1-stable review patch. If anyone has any objections, please let me know.
------------------
From: Qu Wenruo <wqu@suse.com>
commit 4289b494ac553e74e86fed1c66b2bf9530bc1082 upstream.
[BUG]
There is an internal report that balance triggered transaction abort,
with the following call trace:
item 85 key (594509824 169 0) itemoff 12599 itemsize 33
extent refs 1 gen 197740 flags 2
ref#0: tree block backref root 7
item 86 key (594558976 169 0) itemoff 12566 itemsize 33
extent refs 1 gen 197522 flags 2
ref#0: tree block backref root 7
...
BTRFS error (device loop0): extent item not found for insert, bytenr 594526208 num_bytes 16384 parent 449921024 root_objectid 934 owner 1 offset 0
BTRFS error (device loop0): failed to run delayed ref for logical 594526208 num_bytes 16384 type 182 action 1 ref_mod 1: -117
------------[ cut here ]------------
BTRFS: Transaction aborted (error -117)
WARNING: CPU: 1 PID: 6963 at ../fs/btrfs/extent-tree.c:2168 btrfs_run_delayed_refs+0xfa/0x110 [btrfs]
And btrfs check doesn't report anything wrong related to the extent
tree.
[CAUSE]
The cause is a little complex, firstly the extent tree indeed doesn't
have the backref for 594526208.
The extent tree only have the following two backrefs around that bytenr
on-disk:
item 65 key (594509824 METADATA_ITEM 0) itemoff 13880 itemsize 33
refs 1 gen 197740 flags TREE_BLOCK
tree block skinny level 0
(176 0x7) tree block backref root CSUM_TREE
item 66 key (594558976 METADATA_ITEM 0) itemoff 13847 itemsize 33
refs 1 gen 197522 flags TREE_BLOCK
tree block skinny level 0
(176 0x7) tree block backref root CSUM_TREE
But the such missing backref item is not an corruption on disk, as the
offending delayed ref belongs to subvolume 934, and that subvolume is
being dropped:
item 0 key (934 ROOT_ITEM 198229) itemoff 15844 itemsize 439
generation 198229 root_dirid 256 bytenr 10741039104 byte_limit 0 bytes_used 345571328
last_snapshot 198229 flags 0x1000000000001(RDONLY) refs 0
drop_progress key (206324 EXTENT_DATA 2711650304) drop_level 2
level 2 generation_v2 198229
And that offending tree block 594526208 is inside the dropped range of
that subvolume. That explains why there is no backref item for that
bytenr and why btrfs check is not reporting anything wrong.
But this also shows another problem, as btrfs will do all the orphan
subvolume cleanup at a read-write mount.
So half-dropped subvolume should not exist after an RW mount, and
balance itself is also exclusive to subvolume cleanup, meaning we
shouldn't hit a subvolume half-dropped during relocation.
The root cause is, there is no orphan item for this subvolume.
In fact there are 5 subvolumes from around 2021 that have the same
problem.
It looks like the original report has some older kernels running, and
caused those zombie subvolumes.
Thankfully upstream commit 8d488a8c7ba2 ("btrfs: fix subvolume/snapshot
deletion not triggered on mount") has long fixed the bug.
[ENHANCEMENT]
For repairing such old fs, btrfs-progs will be enhanced.
Considering how delayed the problem will show up (at run delayed ref
time) and at that time we have to abort transaction already, it is too
late.
Instead here we reject any half-dropped subvolume for reloc tree at the
earliest time, preventing confusion and extra time wasted on debugging
similar bugs.
CC: stable@vger.kernel.org # 5.15+
Reviewed-by: Filipe Manana <fdmanana@suse.com>
Signed-off-by: Qu Wenruo <wqu@suse.com>
Signed-off-by: David Sterba <dsterba@suse.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
---
fs/btrfs/relocation.c | 19 +++++++++++++++++++
1 file changed, 19 insertions(+)
--- a/fs/btrfs/relocation.c
+++ b/fs/btrfs/relocation.c
@@ -751,6 +751,25 @@ static struct btrfs_root *create_reloc_r
if (root->root_key.objectid == objectid) {
u64 commit_root_gen;
+ /*
+ * Relocation will wait for cleaner thread, and any half-dropped
+ * subvolume will be fully cleaned up at mount time.
+ * So here we shouldn't hit a subvolume with non-zero drop_progress.
+ *
+ * If this isn't the case, error out since it can make us attempt to
+ * drop references for extents that were already dropped before.
+ */
+ if (unlikely(btrfs_disk_key_objectid(&root->root_item.drop_progress))) {
+ struct btrfs_key cpu_key;
+
+ btrfs_disk_key_to_cpu(&cpu_key, &root->root_item.drop_progress);
+ btrfs_err(fs_info,
+ "cannot relocate partially dropped subvolume %llu, drop progress key (%llu %u %llu)",
+ objectid, cpu_key.objectid, cpu_key.type, cpu_key.offset);
+ ret = -EUCLEAN;
+ goto fail;
+ }
+
/* called by btrfs_init_reloc_root */
ret = btrfs_copy_root(trans, root, root->commit_root, &eb,
BTRFS_TREE_RELOC_OBJECTID);
next prev parent reply other threads:[~2025-08-26 13:27 UTC|newest]
Thread overview: 492+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-08-26 11:04 [PATCH 6.1 000/482] 6.1.149-rc1 review Greg Kroah-Hartman
2025-08-26 11:04 ` [PATCH 6.1 001/482] io_uring: dont use int for ABI Greg Kroah-Hartman
2025-08-26 11:04 ` [PATCH 6.1 002/482] ALSA: usb-audio: Validate UAC3 power domain descriptors, too Greg Kroah-Hartman
2025-08-26 11:04 ` [PATCH 6.1 003/482] ALSA: usb-audio: Validate UAC3 cluster segment descriptors Greg Kroah-Hartman
2025-08-26 11:04 ` [PATCH 6.1 004/482] ALSA: hda/realtek: Fix headset mic on HONOR BRB-X Greg Kroah-Hartman
2025-08-26 11:04 ` [PATCH 6.1 005/482] ALSA: hda/realtek: Add Framework Laptop 13 (AMD Ryzen AI 300) to quirks Greg Kroah-Hartman
2025-08-26 11:04 ` [PATCH 6.1 006/482] smb3: fix for slab out of bounds on mount to ksmbd Greg Kroah-Hartman
2025-08-26 11:04 ` [PATCH 6.1 007/482] smb: client: remove redundant lstrp update in negotiate protocol Greg Kroah-Hartman
2025-08-26 11:04 ` [PATCH 6.1 008/482] gpio: virtio: Fix config space reading Greg Kroah-Hartman
2025-08-26 11:04 ` [PATCH 6.1 009/482] gpio: mlxbf2: use platform_get_irq_optional() Greg Kroah-Hartman
2025-08-26 11:04 ` [PATCH 6.1 010/482] netlink: avoid infinite retry looping in netlink_unicast() Greg Kroah-Hartman
2025-08-26 11:04 ` [PATCH 6.1 011/482] net: phy: micrel: fix KSZ8081/KSZ8091 cable test Greg Kroah-Hartman
2025-08-26 11:04 ` [PATCH 6.1 012/482] net: gianfar: fix device leak when querying time stamp info Greg Kroah-Hartman
2025-08-26 11:04 ` [PATCH 6.1 013/482] net: mtk_eth_soc: fix device leak at probe Greg Kroah-Hartman
2025-08-26 11:04 ` [PATCH 6.1 014/482] net: dpaa: fix device leak when querying time stamp info Greg Kroah-Hartman
2025-08-26 11:04 ` [PATCH 6.1 015/482] net: usb: asix_devices: add phy_mask for ax88772 mdio bus Greg Kroah-Hartman
2025-08-26 11:04 ` [PATCH 6.1 016/482] nfsd: handle get_client_locked() failure in nfsd4_setclientid_confirm() Greg Kroah-Hartman
2025-08-26 11:04 ` [PATCH 6.1 017/482] NFSD: detect mismatch of file handle and delegation stateid in OPEN op Greg Kroah-Hartman
2025-08-26 11:04 ` [PATCH 6.1 018/482] NFS: Fix the setting of capabilities when automounting a new filesystem Greg Kroah-Hartman
2025-08-26 11:04 ` [PATCH 6.1 019/482] PCI: Extend isolated function probing to LoongArch Greg Kroah-Hartman
2025-08-26 11:04 ` [PATCH 6.1 020/482] LoongArch: BPF: Fix jump offset calculation in tailcall Greg Kroah-Hartman
2025-08-26 11:04 ` [PATCH 6.1 021/482] sunvdc: Balance device refcount in vdc_port_mpgroup_check Greg Kroah-Hartman
2025-08-26 11:04 ` [PATCH 6.1 022/482] fs: Prevent file descriptor table allocations exceeding INT_MAX Greg Kroah-Hartman
2025-08-26 11:04 ` [PATCH 6.1 023/482] eventpoll: Fix semi-unbounded recursion Greg Kroah-Hartman
2025-08-26 11:04 ` [PATCH 6.1 024/482] Documentation: ACPI: Fix parent device references Greg Kroah-Hartman
2025-08-26 11:04 ` [PATCH 6.1 025/482] ACPI: processor: perflib: Fix initial _PPC limit application Greg Kroah-Hartman
2025-08-26 11:04 ` [PATCH 6.1 026/482] ACPI: processor: perflib: Move problematic pr->performance check Greg Kroah-Hartman
2025-08-26 11:04 ` [PATCH 6.1 027/482] KVM: SVM: Set RFLAGS.IF=1 in C code, to get VMRUN out of the STI shadow Greg Kroah-Hartman
2025-08-26 11:04 ` [PATCH 6.1 028/482] KVM: x86: Re-split x2APIC ICR into ICR+ICR2 for AMD (x2AVIC) Greg Kroah-Hartman
2025-08-26 11:04 ` [PATCH 6.1 029/482] KVM: x86: Plumb in the vCPU to kvm_x86_ops.hwapic_isr_update() Greg Kroah-Hartman
2025-08-26 11:04 ` [PATCH 6.1 030/482] KVM: nVMX: Defer SVI update to vmcs01 on EOI when L2 is active w/o VID Greg Kroah-Hartman
2025-08-26 11:04 ` [PATCH 6.1 031/482] KVM: x86: Snapshot the hosts DEBUGCTL in common x86 Greg Kroah-Hartman
2025-08-26 11:04 ` [PATCH 6.1 032/482] KVM: x86: Snapshot the hosts DEBUGCTL after disabling IRQs Greg Kroah-Hartman
2025-08-26 11:04 ` [PATCH 6.1 033/482] KVM: x86/pmu: Gate all "unimplemented MSR" prints on report_ignored_msrs Greg Kroah-Hartman
2025-08-26 11:04 ` [PATCH 6.1 034/482] KVM: x86: Plumb "force_immediate_exit" into kvm_entry() tracepoint Greg Kroah-Hartman
2025-08-26 11:04 ` [PATCH 6.1 035/482] KVM: VMX: Re-enter guest in fastpath for "spurious" preemption timer exits Greg Kroah-Hartman
2025-08-26 11:04 ` [PATCH 6.1 036/482] KVM: VMX: Handle forced exit due to preemption timer in fastpath Greg Kroah-Hartman
2025-08-26 11:04 ` [PATCH 6.1 037/482] KVM: x86: Move handling of is_guest_mode() into fastpath exit handlers Greg Kroah-Hartman
2025-08-26 11:04 ` [PATCH 6.1 038/482] KVM: VMX: Handle KVM-induced preemption timer exits in fastpath for L2 Greg Kroah-Hartman
2025-08-26 11:04 ` [PATCH 6.1 039/482] KVM: x86: Fully defer to vendor code to decide how to force immediate exit Greg Kroah-Hartman
2025-08-26 11:04 ` [PATCH 6.1 040/482] KVM: x86: Convert vcpu_run()s immediate exit param into a generic bitmap Greg Kroah-Hartman
2025-08-26 11:04 ` [PATCH 6.1 041/482] KVM: x86: Drop kvm_x86_ops.set_dr6() in favor of a new KVM_RUN flag Greg Kroah-Hartman
2025-08-26 11:04 ` [PATCH 6.1 042/482] KVM: VMX: Allow guest to set DEBUGCTL.RTM_DEBUG if RTM is supported Greg Kroah-Hartman
2025-08-26 11:04 ` [PATCH 6.1 043/482] KVM: VMX: Extract checking of guests DEBUGCTL into helper Greg Kroah-Hartman
2025-08-26 11:04 ` [PATCH 6.1 044/482] KVM: nVMX: Check vmcs12->guest_ia32_debugctl on nested VM-Enter Greg Kroah-Hartman
2025-08-26 11:04 ` [PATCH 6.1 045/482] KVM: VMX: Wrap all accesses to IA32_DEBUGCTL with getter/setter APIs Greg Kroah-Hartman
2025-08-26 11:04 ` [PATCH 6.1 046/482] KVM: VMX: Preserve hosts DEBUGCTLMSR_FREEZE_IN_SMM while running the guest Greg Kroah-Hartman
2025-08-26 11:05 ` [PATCH 6.1 047/482] udp: also consider secpath when evaluating ipsec use for checksumming Greg Kroah-Hartman
2025-08-26 11:05 ` [PATCH 6.1 048/482] netfilter: ctnetlink: fix refcount leak on table dump Greg Kroah-Hartman
2025-08-26 11:05 ` [PATCH 6.1 049/482] hfs: fix slab-out-of-bounds in hfs_bnode_read() Greg Kroah-Hartman
2025-08-26 11:05 ` [PATCH 6.1 050/482] hfsplus: fix slab-out-of-bounds in hfsplus_bnode_read() Greg Kroah-Hartman
2025-08-26 11:05 ` [PATCH 6.1 051/482] hfsplus: fix slab-out-of-bounds read in hfsplus_uni2asc() Greg Kroah-Hartman
2025-08-26 11:05 ` [PATCH 6.1 052/482] hfsplus: dont use BUG_ON() in hfsplus_create_attributes_file() Greg Kroah-Hartman
2025-08-26 11:05 ` [PATCH 6.1 053/482] arm64: Handle KCOV __init vs inline mismatches Greg Kroah-Hartman
2025-08-26 11:05 ` [PATCH 6.1 054/482] smb/server: avoid deadlock when linking with ReplaceIfExists Greg Kroah-Hartman
2025-08-26 11:05 ` [PATCH 6.1 055/482] udf: Verify partition map count Greg Kroah-Hartman
2025-08-26 11:05 ` [PATCH 6.1 056/482] drbd: add missing kref_get in handle_write_conflicts Greg Kroah-Hartman
2025-08-26 11:05 ` [PATCH 6.1 057/482] hfs: fix not erasing deleted b-tree node issue Greg Kroah-Hartman
2025-08-26 11:05 ` [PATCH 6.1 058/482] better lockdep annotations for simple_recursive_removal() Greg Kroah-Hartman
2025-08-26 11:05 ` [PATCH 6.1 059/482] ata: libata-sata: Disallow changing LPM state if not supported Greg Kroah-Hartman
2025-08-26 11:05 ` [PATCH 6.1 060/482] fs/ntfs3: Add sanity check for file name Greg Kroah-Hartman
2025-08-26 11:05 ` [PATCH 6.1 061/482] fs/ntfs3: correctly create symlink for relative path Greg Kroah-Hartman
2025-08-26 11:05 ` [PATCH 6.1 062/482] ext2: Handle fiemap on empty files to prevent EINVAL Greg Kroah-Hartman
2025-08-26 11:05 ` [PATCH 6.1 063/482] fix locking in efi_secret_unlink() Greg Kroah-Hartman
2025-08-26 11:05 ` [PATCH 6.1 064/482] securityfs: dont pin dentries twice, once is enough Greg Kroah-Hartman
2025-08-26 11:05 ` [PATCH 6.1 065/482] usb: xhci: print xhci->xhc_state when queue_command failed Greg Kroah-Hartman
2025-08-26 11:05 ` [PATCH 6.1 066/482] cpufreq: CPPC: Mark driver with NEED_UPDATE_LIMITS flag Greg Kroah-Hartman
2025-08-26 11:05 ` [PATCH 6.1 067/482] selftests/futex: Define SYS_futex on 32-bit architectures with 64-bit time_t Greg Kroah-Hartman
2025-08-26 11:05 ` [PATCH 6.1 068/482] usb: typec: ucsi: psy: Set current max to 100mA for BC 1.2 and Default Greg Kroah-Hartman
2025-08-26 11:05 ` [PATCH 6.1 069/482] usb: xhci: Avoid showing warnings for dying controller Greg Kroah-Hartman
2025-08-26 11:05 ` [PATCH 6.1 070/482] usb: xhci: Set avg_trb_len = 8 for EP0 during Address Device Command Greg Kroah-Hartman
2025-08-26 11:05 ` [PATCH 6.1 071/482] usb: xhci: Avoid showing errors during surprise removal Greg Kroah-Hartman
2025-08-26 11:05 ` [PATCH 6.1 072/482] remoteproc: imx_rproc: skip clock enable when M-core is managed by the SCU Greg Kroah-Hartman
2025-08-26 11:05 ` [PATCH 6.1 073/482] gpio: wcd934x: check the return value of regmap_update_bits() Greg Kroah-Hartman
2025-08-26 11:05 ` [PATCH 6.1 074/482] cpufreq: Exit governor when failed to start old governor Greg Kroah-Hartman
2025-08-26 11:05 ` [PATCH 6.1 075/482] ARM: rockchip: fix kernel hang during smp initialization Greg Kroah-Hartman
2025-08-26 11:05 ` [PATCH 6.1 076/482] PM / devfreq: governor: Replace sscanf() with kstrtoul() in set_freq_store() Greg Kroah-Hartman
2025-08-26 11:05 ` [PATCH 6.1 077/482] EDAC/synopsys: Clear the ECC counters on init Greg Kroah-Hartman
2025-08-26 11:05 ` [PATCH 6.1 078/482] ASoC: soc-dapm: set bias_level if snd_soc_dapm_set_bias_level() was successed Greg Kroah-Hartman
2025-08-26 11:05 ` [PATCH 6.1 079/482] thermal/drivers/qcom-spmi-temp-alarm: Enable stage 2 shutdown when required Greg Kroah-Hartman
2025-08-26 11:05 ` [PATCH 6.1 080/482] tools/nolibc: define time_t in terms of __kernel_old_time_t Greg Kroah-Hartman
2025-08-26 11:05 ` [PATCH 6.1 081/482] iio: adc: ad_sigma_delta: dont overallocate scan buffer Greg Kroah-Hartman
2025-08-26 11:05 ` [PATCH 6.1 082/482] gpio: tps65912: check the return value of regmap_update_bits() Greg Kroah-Hartman
2025-08-26 11:05 ` [PATCH 6.1 083/482] ARM: tegra: Use I/O memcpy to write to IRAM Greg Kroah-Hartman
2025-08-26 11:05 ` [PATCH 6.1 084/482] tools/build: Fix s390(x) cross-compilation with clang Greg Kroah-Hartman
2025-08-26 11:05 ` [PATCH 6.1 085/482] selftests: tracing: Use mutex_unlock for testing glob filter Greg Kroah-Hartman
2025-08-26 11:05 ` [PATCH 6.1 086/482] ACPI: PRM: Reduce unnecessary printing to avoid user confusion Greg Kroah-Hartman
2025-08-26 11:05 ` [PATCH 6.1 087/482] PM: runtime: Clear power.needs_force_resume in pm_runtime_reinit() Greg Kroah-Hartman
2025-08-26 11:05 ` [PATCH 6.1 088/482] thermal: sysfs: Return ENODATA instead of EAGAIN for reads Greg Kroah-Hartman
2025-08-26 11:05 ` [PATCH 6.1 089/482] PM: sleep: console: Fix the black screen issue Greg Kroah-Hartman
2025-08-26 11:05 ` [PATCH 6.1 090/482] ACPI: processor: fix acpi_object initialization Greg Kroah-Hartman
2025-08-26 11:05 ` [PATCH 6.1 091/482] mmc: sdhci-msm: Ensure SD card power isnt ON when card removed Greg Kroah-Hartman
2025-08-26 11:05 ` [PATCH 6.1 092/482] ACPI: APEI: GHES: add TAINT_MACHINE_CHECK on GHES panic path Greg Kroah-Hartman
2025-08-26 11:05 ` [PATCH 6.1 093/482] pps: clients: gpio: fix interrupt handling order in remove path Greg Kroah-Hartman
2025-08-26 11:05 ` [PATCH 6.1 094/482] reset: brcmstb: Enable reset drivers for ARCH_BCM2835 Greg Kroah-Hartman
2025-08-26 11:05 ` [PATCH 6.1 095/482] mei: bus: Check for still connected devices in mei_cl_bus_dev_release() Greg Kroah-Hartman
2025-08-26 11:05 ` [PATCH 6.1 096/482] mmc: rtsx_usb_sdmmc: Fix error-path in sd_set_power_mode() Greg Kroah-Hartman
2025-08-26 11:05 ` [PATCH 6.1 097/482] ALSA: hda: Handle the jack polling always via a work Greg Kroah-Hartman
2025-08-26 11:05 ` [PATCH 6.1 098/482] ALSA: hda: Disable jack polling at shutdown Greg Kroah-Hartman
2025-08-26 11:05 ` [PATCH 6.1 099/482] x86/bugs: Avoid warning when overriding return thunk Greg Kroah-Hartman
2025-08-26 11:05 ` [PATCH 6.1 100/482] ASoC: hdac_hdmi: Rate limit logging on connection and disconnection Greg Kroah-Hartman
2025-08-26 11:05 ` [PATCH 6.1 101/482] ALSA: intel8x0: Fix incorrect codec index usage in mixer for ICH4 Greg Kroah-Hartman
2025-08-26 11:05 ` [PATCH 6.1 102/482] ASoC: core: Check for rtd == NULL in snd_soc_remove_pcm_runtime() Greg Kroah-Hartman
2025-08-26 11:05 ` [PATCH 6.1 103/482] usb: typec: intel_pmc_mux: Defer probe if SCU IPC isnt present Greg Kroah-Hartman
2025-08-26 11:05 ` [PATCH 6.1 104/482] usb: core: usb_submit_urb: downgrade type check Greg Kroah-Hartman
2025-08-26 11:05 ` [PATCH 6.1 105/482] pm: cpupower: Fix the snapshot-order of tsc,mperf, clock in mperf_stop() Greg Kroah-Hartman
2025-08-26 11:05 ` [PATCH 6.1 106/482] platform/x86: thinkpad_acpi: Handle KCOV __init vs inline mismatches Greg Kroah-Hartman
2025-08-26 11:06 ` [PATCH 6.1 107/482] platform/chrome: cros_ec_typec: Defer probe on missing EC parent Greg Kroah-Hartman
2025-08-26 11:06 ` [PATCH 6.1 108/482] ALSA: hda/ca0132: Fix buffer overflow in add_tuning_control Greg Kroah-Hartman
2025-08-26 11:06 ` [PATCH 6.1 109/482] ALSA: pcm: Rewrite recalculate_boundary() to avoid costly loop Greg Kroah-Hartman
2025-08-26 11:06 ` [PATCH 6.1 110/482] ALSA: usb-audio: Avoid precedence issues in mixer_quirks macros Greg Kroah-Hartman
2025-08-26 11:06 ` [PATCH 6.1 111/482] iio: adc: ad7768-1: Ensure SYNC_IN pulse minimum timing requirement Greg Kroah-Hartman
2025-08-26 11:06 ` [PATCH 6.1 112/482] ASoC: codecs: rt5640: Retry DEVICE_ID verification Greg Kroah-Hartman
2025-08-26 11:06 ` [PATCH 6.1 113/482] xen/netfront: Fix TX response spurious interrupts Greg Kroah-Hartman
2025-08-26 11:06 ` [PATCH 6.1 114/482] net: usb: cdc-ncm: check for filtering capability Greg Kroah-Hartman
2025-08-26 11:06 ` [PATCH 6.1 115/482] ktest.pl: Prevent recursion of default variable options Greg Kroah-Hartman
2025-08-26 11:06 ` [PATCH 6.1 116/482] wifi: cfg80211: reject HTC bit for management frames Greg Kroah-Hartman
2025-08-26 11:06 ` [PATCH 6.1 117/482] s390/time: Use monotonic clock in get_cycles() Greg Kroah-Hartman
2025-08-26 11:06 ` [PATCH 6.1 118/482] be2net: Use correct byte order and format string for TCP seq and ack_seq Greg Kroah-Hartman
2025-08-26 11:06 ` [PATCH 6.1 119/482] wifi: rtw89: Lower the timeout in rtw89_fw_read_c2h_reg() for USB Greg Kroah-Hartman
2025-08-26 11:06 ` [PATCH 6.1 120/482] et131x: Add missing check after DMA map Greg Kroah-Hartman
2025-08-26 11:06 ` [PATCH 6.1 121/482] net: ag71xx: " Greg Kroah-Hartman
2025-08-26 11:06 ` [PATCH 6.1 122/482] net/mlx5e: Properly access RCU protected qdisc_sleeping variable Greg Kroah-Hartman
2025-08-26 11:06 ` [PATCH 6.1 123/482] arm64: Mark kernel as tainted on SAE and SError panic Greg Kroah-Hartman
2025-08-26 11:06 ` [PATCH 6.1 124/482] rcu: Protect ->defer_qs_iw_pending from data race Greg Kroah-Hartman
2025-08-26 11:06 ` [PATCH 6.1 125/482] net: mctp: Prevent duplicate binds Greg Kroah-Hartman
2025-08-26 11:06 ` [PATCH 6.1 126/482] wifi: cfg80211: Fix interface type validation Greg Kroah-Hartman
2025-08-26 11:06 ` [PATCH 6.1 127/482] net: ipv4: fix incorrect MTU in broadcast routes Greg Kroah-Hartman
2025-08-26 11:06 ` [PATCH 6.1 128/482] net: thunderx: Fix format-truncation warning in bgx_acpi_match_id() Greg Kroah-Hartman
2025-08-26 11:06 ` [PATCH 6.1 129/482] um: Re-evaluate thread flags repeatedly Greg Kroah-Hartman
2025-08-26 11:06 ` [PATCH 6.1 130/482] wifi: iwlwifi: mvm: fix scan request validation Greg Kroah-Hartman
2025-08-26 11:06 ` [PATCH 6.1 131/482] s390/stp: Remove udelay from stp_sync_clock() Greg Kroah-Hartman
2025-08-26 11:06 ` [PATCH 6.1 132/482] sched/fair: Bump sd->max_newidle_lb_cost when newidle balance fails Greg Kroah-Hartman
2025-08-26 11:06 ` [PATCH 6.1 133/482] wifi: mac80211: dont complete management TX on SAE commit Greg Kroah-Hartman
2025-08-26 11:06 ` [PATCH 6.1 134/482] (powerpc/512) Fix possible `dma_unmap_single()` on uninitialized pointer Greg Kroah-Hartman
2025-08-26 11:06 ` [PATCH 6.1 135/482] ipv6: mcast: Check inet6_dev->dead under idev->mc_lock in __ipv6_dev_mc_inc() Greg Kroah-Hartman
2025-08-26 11:06 ` [PATCH 6.1 136/482] drm/msm: use trylock for debugfs Greg Kroah-Hartman
2025-08-26 11:06 ` [PATCH 6.1 137/482] wifi: rtw89: Fix rtw89_mac_power_switch() for USB Greg Kroah-Hartman
2025-08-26 11:06 ` [PATCH 6.1 138/482] wifi: rtw89: Disable deep power saving for USB/SDIO Greg Kroah-Hartman
2025-08-26 11:06 ` [PATCH 6.1 139/482] kselftest/arm64: Specify SVE data when testing VL set in sve-ptrace Greg Kroah-Hartman
2025-08-26 11:06 ` [PATCH 6.1 140/482] net: thunderbolt: Enable end-to-end flow control also in transmit Greg Kroah-Hartman
2025-08-26 11:06 ` [PATCH 6.1 141/482] net: thunderbolt: Fix the parameter passing of tb_xdomain_enable_paths()/tb_xdomain_disable_paths() Greg Kroah-Hartman
2025-08-26 11:06 ` [PATCH 6.1 142/482] net: atlantic: add set_power to fw_ops for atl2 to fix wol Greg Kroah-Hartman
2025-08-26 11:06 ` [PATCH 6.1 143/482] net: fec: allow disable coalescing Greg Kroah-Hartman
2025-08-26 11:06 ` [PATCH 6.1 144/482] drm/amd/display: Separate set_gsl from set_gsl_source_select Greg Kroah-Hartman
2025-08-26 11:06 ` [PATCH 6.1 145/482] wifi: iwlwifi: dvm: fix potential overflow in rs_fill_link_cmd() Greg Kroah-Hartman
2025-08-26 11:06 ` [PATCH 6.1 146/482] wifi: iwlwifi: fw: Fix possible memory leak in iwl_fw_dbg_collect Greg Kroah-Hartman
2025-08-26 11:06 ` [PATCH 6.1 147/482] drm/amd/display: Fix failed to blank crtc! Greg Kroah-Hartman
2025-08-26 11:06 ` [PATCH 6.1 148/482] wifi: mac80211: update radar_required in channel context after channel switch Greg Kroah-Hartman
2025-08-26 11:06 ` [PATCH 6.1 149/482] wifi: rtlwifi: fix possible skb memory leak in `_rtl_pci_rx_interrupt()` Greg Kroah-Hartman
2025-08-26 11:06 ` [PATCH 6.1 150/482] powerpc: floppy: Add missing checks after DMA map Greg Kroah-Hartman
2025-08-26 11:06 ` [PATCH 6.1 151/482] netmem: fix skb_frag_address_safe with unreadable skbs Greg Kroah-Hartman
2025-08-26 11:06 ` [PATCH 6.1 152/482] wifi: iwlegacy: Check rate_idx range after addition Greg Kroah-Hartman
2025-08-26 11:06 ` [PATCH 6.1 153/482] neighbour: add support for NUD_PERMANENT proxy entries Greg Kroah-Hartman
2025-08-26 11:06 ` [PATCH 6.1 154/482] dpaa_eth: dont use fixed_phy_change_carrier Greg Kroah-Hartman
2025-08-26 11:06 ` [PATCH 6.1 155/482] drm/amd: Allow printing VanGogh OD SCLK levels without setting dpm to manual Greg Kroah-Hartman
2025-08-26 11:06 ` [PATCH 6.1 156/482] net: vlan: Replace BUG() with WARN_ON_ONCE() in vlan_dev_* stubs Greg Kroah-Hartman
2025-08-26 11:06 ` [PATCH 6.1 157/482] gve: Return error for unknown admin queue command Greg Kroah-Hartman
2025-08-26 11:06 ` [PATCH 6.1 158/482] net: dsa: b53: fix b53_imp_vlan_setup for BCM5325 Greg Kroah-Hartman
2025-08-26 11:06 ` [PATCH 6.1 159/482] net: dsa: b53: prevent GMII_PORT_OVERRIDE_CTRL access on BCM5325 Greg Kroah-Hartman
2025-08-26 11:06 ` [PATCH 6.1 160/482] net: dsa: b53: prevent DIS_LEARNING " Greg Kroah-Hartman
2025-08-26 11:06 ` [PATCH 6.1 161/482] net: dsa: b53: prevent SWITCH_CTRL " Greg Kroah-Hartman
2025-08-26 11:06 ` [PATCH 6.1 162/482] ptp: Use ratelimite for freerun error message Greg Kroah-Hartman
2025-08-26 11:06 ` [PATCH 6.1 163/482] wifi: rtlwifi: fix possible skb memory leak in _rtl_pci_init_one_rxdesc() Greg Kroah-Hartman
2025-08-26 11:06 ` [PATCH 6.1 164/482] ionic: clean dbpage in de-init Greg Kroah-Hartman
2025-08-26 11:06 ` [PATCH 6.1 165/482] net: ncsi: Fix buffer overflow in fetching version id Greg Kroah-Hartman
2025-08-26 11:06 ` [PATCH 6.1 166/482] drm/ttm: Should to return the evict error Greg Kroah-Hartman
2025-08-26 11:07 ` [PATCH 6.1 167/482] uapi: in6: restore visibility of most IPv6 socket options Greg Kroah-Hartman
2025-08-26 11:07 ` [PATCH 6.1 168/482] selftests/bpf: Fix a user_ringbuf failure with arm64 64KB page size Greg Kroah-Hartman
2025-08-26 11:07 ` [PATCH 6.1 169/482] drm/ttm: Respect the shrinker core free target Greg Kroah-Hartman
2025-08-26 11:07 ` [PATCH 6.1 170/482] net: dsa: b53: fix IP_MULTICAST_CTRL on BCM5325 Greg Kroah-Hartman
2025-08-26 11:07 ` [PATCH 6.1 171/482] vsock/virtio: Resize receive buffers so that each SKB fits in a 4K page Greg Kroah-Hartman
2025-08-26 11:07 ` [PATCH 6.1 172/482] vhost: fail early when __vhost_add_used() fails Greg Kroah-Hartman
2025-08-26 11:07 ` [PATCH 6.1 173/482] drm/amd/display: Only finalize atomic_obj if it was initialized Greg Kroah-Hartman
2025-08-26 11:07 ` [PATCH 6.1 174/482] watchdog: sbsa: Adjust keepalive timeout to avoid MediaTek WS0 race condition Greg Kroah-Hartman
2025-08-26 11:07 ` [PATCH 6.1 175/482] cifs: Fix calling CIFSFindFirst() for root path without msearch Greg Kroah-Hartman
2025-08-26 11:07 ` [PATCH 6.1 176/482] fbdev: fix potential buffer overflow in do_register_framebuffer() Greg Kroah-Hartman
2025-08-26 11:07 ` [PATCH 6.1 177/482] crypto: hisilicon/hpre - fix dma unmap sequence Greg Kroah-Hartman
2025-08-26 11:07 ` [PATCH 6.1 178/482] ext4: do not BUG when INLINE_DATA_FL lacks system.data xattr Greg Kroah-Hartman
2025-08-26 11:07 ` [PATCH 6.1 179/482] scsi: libiscsi: Initialize iscsi_conn->dd_data only if memory is allocated Greg Kroah-Hartman
2025-08-26 11:07 ` [PATCH 6.1 180/482] fs/orangefs: use snprintf() instead of sprintf() Greg Kroah-Hartman
2025-08-26 11:07 ` [PATCH 6.1 181/482] watchdog: dw_wdt: Fix default timeout Greg Kroah-Hartman
2025-08-26 11:07 ` [PATCH 6.1 182/482] hwmon: (emc2305) Set initial PWM minimum value during probe based on thermal state Greg Kroah-Hartman
2025-08-26 11:07 ` [PATCH 6.1 183/482] MIPS: vpe-mt: add missing prototypes for vpe_{alloc,start,stop,free} Greg Kroah-Hartman
2025-08-26 11:07 ` [PATCH 6.1 184/482] watchdog: iTCO_wdt: Report error if timeout configuration fails Greg Kroah-Hartman
2025-08-26 11:07 ` [PATCH 6.1 185/482] scsi: bfa: Double-free fix Greg Kroah-Hartman
2025-08-26 11:07 ` [PATCH 6.1 186/482] jfs: truncate good inode pages when hard link is 0 Greg Kroah-Hartman
2025-08-26 11:07 ` [PATCH 6.1 187/482] jfs: Regular file corruption check Greg Kroah-Hartman
2025-08-26 11:07 ` [PATCH 6.1 188/482] jfs: upper bound check of tree index in dbAllocAG Greg Kroah-Hartman
2025-08-26 11:07 ` [PATCH 6.1 189/482] MIPS: Dont crash in stack_top() for tasks without ABI or vDSO Greg Kroah-Hartman
2025-08-26 11:07 ` [PATCH 6.1 190/482] MIPS: lantiq: falcon: sysctrl: fix request memory check logic Greg Kroah-Hartman
2025-08-26 11:07 ` [PATCH 6.1 191/482] media: v4l2-common: Reduce warnings about missing V4L2_CID_LINK_FREQ control Greg Kroah-Hartman
2025-08-26 11:07 ` [PATCH 6.1 192/482] leds: leds-lp50xx: Handle reg to get correct multi_index Greg Kroah-Hartman
2025-08-26 11:07 ` [PATCH 6.1 193/482] dmaengine: stm32-dma: configure next sg only if there are more than 2 sgs Greg Kroah-Hartman
2025-08-26 11:07 ` [PATCH 6.1 194/482] RDMA: hfi1: fix possible divide-by-zero in find_hw_thread_mask() Greg Kroah-Hartman
2025-08-26 11:07 ` [PATCH 6.1 195/482] RDMA/core: reduce stack using in nldev_stat_get_doit() Greg Kroah-Hartman
2025-08-26 11:07 ` [PATCH 6.1 196/482] scsi: lpfc: Check for hdwq null ptr when cleaning up lpfc_vport structure Greg Kroah-Hartman
2025-08-26 11:07 ` [PATCH 6.1 197/482] scsi: mpt3sas: Correctly handle ATA device errors Greg Kroah-Hartman
2025-08-26 11:07 ` [PATCH 6.1 198/482] scsi: mpi3mr: " Greg Kroah-Hartman
2025-08-26 11:07 ` [PATCH 6.1 199/482] pinctrl: stm32: Manage irq affinity settings Greg Kroah-Hartman
2025-08-26 11:07 ` [PATCH 6.1 200/482] media: tc358743: Check I2C succeeded during probe Greg Kroah-Hartman
2025-08-26 11:07 ` [PATCH 6.1 201/482] media: tc358743: Return an appropriate colorspace from tc358743_set_fmt Greg Kroah-Hartman
2025-08-26 11:07 ` [PATCH 6.1 202/482] media: tc358743: Increase FIFO trigger level to 374 Greg Kroah-Hartman
2025-08-26 11:07 ` [PATCH 6.1 203/482] media: usb: hdpvr: disable zero-length read messages Greg Kroah-Hartman
2025-08-26 11:07 ` [PATCH 6.1 204/482] media: dvb-frontends: dib7090p: fix null-ptr-deref in dib7090p_rw_on_apb() Greg Kroah-Hartman
2025-08-26 11:07 ` [PATCH 6.1 205/482] media: dvb-frontends: w7090p: fix null-ptr-deref in w7090p_tuner_write_serpar and w7090p_tuner_read_serpar Greg Kroah-Hartman
2025-08-26 11:07 ` [PATCH 6.1 206/482] media: uvcvideo: Fix bandwidth issue for Alcor camera Greg Kroah-Hartman
2025-08-26 11:07 ` [PATCH 6.1 207/482] crypto: octeontx2 - add timeout for load_fvc completion poll Greg Kroah-Hartman
2025-08-26 11:07 ` [PATCH 6.1 208/482] md: dm-zoned-target: Initialize return variable r to avoid uninitialized use Greg Kroah-Hartman
2025-08-26 11:07 ` [PATCH 6.1 209/482] module: Prevent silent truncation of module name in delete_module(2) Greg Kroah-Hartman
2025-08-26 11:07 ` [PATCH 6.1 210/482] i3c: add missing include to internal header Greg Kroah-Hartman
2025-08-26 11:07 ` [PATCH 6.1 211/482] rtc: ds1307: handle oscillator stop flag (OSF) for ds1341 Greg Kroah-Hartman
2025-08-26 11:07 ` [PATCH 6.1 212/482] i3c: dont fail if GETHDRCAP is unsupported Greg Kroah-Hartman
2025-08-26 11:07 ` [PATCH 6.1 213/482] i3c: master: Initialize ret in i3c_i2c_notifier_call() Greg Kroah-Hartman
2025-08-26 11:07 ` [PATCH 6.1 214/482] dm-mpath: dont print the "loaded" message if registering fails Greg Kroah-Hartman
2025-08-26 11:07 ` [PATCH 6.1 215/482] dm-table: fix checking for rq stackable devices Greg Kroah-Hartman
2025-08-26 11:07 ` [PATCH 6.1 216/482] apparmor: use the condition in AA_BUG_FMT even with debug disabled Greg Kroah-Hartman
2025-08-26 11:07 ` [PATCH 6.1 217/482] i2c: Force DLL0945 touchpad i2c freq to 100khz Greg Kroah-Hartman
2025-08-26 11:07 ` [PATCH 6.1 218/482] kconfig: lxdialog: replace strcpy() with strncpy() in inputbox.c Greg Kroah-Hartman
2025-08-26 11:07 ` [PATCH 6.1 219/482] vfio/type1: conditional rescheduling while pinning Greg Kroah-Hartman
2025-08-26 11:07 ` [PATCH 6.1 220/482] kconfig: nconf: Ensure null termination where strncpy is used Greg Kroah-Hartman
2025-08-26 11:07 ` [PATCH 6.1 221/482] scsi: Fix sas_user_scan() to handle wildcard and multi-channel scans Greg Kroah-Hartman
2025-08-26 11:07 ` [PATCH 6.1 222/482] scsi: target: core: Generate correct identifiers for PR OUT transport IDs Greg Kroah-Hartman
2025-08-26 11:07 ` [PATCH 6.1 223/482] scsi: aacraid: Stop using PCI_IRQ_AFFINITY Greg Kroah-Hartman
2025-08-26 11:07 ` [PATCH 6.1 224/482] vfio/mlx5: fix possible overflow in tracking max message size Greg Kroah-Hartman
2025-08-26 11:07 ` [PATCH 6.1 225/482] ipmi: Use dev_warn_ratelimited() for incorrect message warnings Greg Kroah-Hartman
2025-08-26 11:07 ` [PATCH 6.1 226/482] kconfig: gconf: avoid hardcoding model2 in on_treeview2_cursor_changed() Greg Kroah-Hartman
2025-08-26 11:08 ` [PATCH 6.1 227/482] kconfig: gconf: fix potential memory leak in renderer_edited() Greg Kroah-Hartman
2025-08-26 11:08 ` [PATCH 6.1 228/482] kconfig: lxdialog: fix space to (de)select options Greg Kroah-Hartman
2025-08-26 11:08 ` [PATCH 6.1 229/482] ipmi: Fix strcpy source and destination the same Greg Kroah-Hartman
2025-08-26 11:08 ` [PATCH 6.1 230/482] net: phy: smsc: add proper reset flags for LAN8710A Greg Kroah-Hartman
2025-08-26 11:08 ` [PATCH 6.1 231/482] ASoC: Intel: avs: Fix uninitialized pointer error in probe() Greg Kroah-Hartman
2025-08-26 11:08 ` [PATCH 6.1 232/482] block: avoid possible overflow for chunk_sectors check in blk_stack_limits() Greg Kroah-Hartman
2025-08-26 11:08 ` [PATCH 6.1 233/482] pNFS: Fix stripe mapping in block/scsi layout Greg Kroah-Hartman
2025-08-26 11:08 ` [PATCH 6.1 234/482] pNFS: Fix disk addr range check " Greg Kroah-Hartman
2025-08-26 11:08 ` [PATCH 6.1 235/482] pNFS: Handle RPC size limit for layoutcommits Greg Kroah-Hartman
2025-08-26 11:08 ` [PATCH 6.1 236/482] pNFS: Fix uninited ptr deref in block/scsi layout Greg Kroah-Hartman
2025-08-26 11:08 ` [PATCH 6.1 237/482] rtc: ds1307: remove clear of oscillator stop flag (OSF) in probe Greg Kroah-Hartman
2025-08-26 11:08 ` [PATCH 6.1 238/482] scsi: lpfc: Remove redundant assignment to avoid memory leak Greg Kroah-Hartman
2025-08-26 11:08 ` [PATCH 6.1 239/482] ASoC: soc-dai.c: add missing flag check at snd_soc_pcm_dai_probe() Greg Kroah-Hartman
2025-08-26 11:08 ` [PATCH 6.1 240/482] ASoC: soc-dai.h: merge DAI call back functions into ops Greg Kroah-Hartman
2025-08-26 11:08 ` [PATCH 6.1 241/482] ASoC: fsl: " Greg Kroah-Hartman
2025-08-26 11:08 ` [PATCH 6.1 242/482] ASoC: fsl_sai: replace regmap_write with regmap_update_bits Greg Kroah-Hartman
2025-08-26 11:08 ` [PATCH 6.1 243/482] drm/amdgpu: fix incorrect vm flags to map bo Greg Kroah-Hartman
2025-08-26 11:08 ` [PATCH 6.1 244/482] ext4: fix zombie groups in average fragment size lists Greg Kroah-Hartman
2025-08-26 11:08 ` [PATCH 6.1 245/482] ext4: fix largest free orders lists corruption on mb_optimize_scan switch Greg Kroah-Hartman
2025-08-26 11:08 ` [PATCH 6.1 246/482] usb: core: config: Prevent OOB read in SS endpoint companion parsing Greg Kroah-Hartman
2025-08-26 11:08 ` [PATCH 6.1 247/482] misc: rtsx: usb: Ensure mmc child device is active when card is present Greg Kroah-Hartman
2025-08-26 11:08 ` [PATCH 6.1 248/482] usb: typec: ucsi: Update power_supply on power role change Greg Kroah-Hartman
2025-08-26 11:08 ` [PATCH 6.1 249/482] comedi: fix race between polling and detaching Greg Kroah-Hartman
2025-08-26 11:08 ` [PATCH 6.1 250/482] thunderbolt: Fix copy+paste error in match_service_id() Greg Kroah-Hartman
2025-08-26 11:08 ` [PATCH 6.1 251/482] cdc-acm: fix race between initial clearing halt and open Greg Kroah-Hartman
2025-08-26 11:08 ` [PATCH 6.1 252/482] btrfs: zoned: use filesystem size not disk size for reclaim decision Greg Kroah-Hartman
2025-08-26 11:08 ` [PATCH 6.1 253/482] btrfs: abort transaction during log replay if walk_log_tree() failed Greg Kroah-Hartman
2025-08-26 11:08 ` [PATCH 6.1 254/482] btrfs: zoned: do not remove unwritten non-data block group Greg Kroah-Hartman
2025-08-26 11:08 ` [PATCH 6.1 255/482] btrfs: fix log tree replay failure due to file with 0 links and extents Greg Kroah-Hartman
2025-08-26 11:08 ` Greg Kroah-Hartman [this message]
2025-08-26 11:08 ` [PATCH 6.1 257/482] fbdev: Fix vmalloc out-of-bounds write in fast_imageblit Greg Kroah-Hartman
2025-08-26 11:08 ` [PATCH 6.1 258/482] hv_netvsc: Fix panic during namespace deletion with VF Greg Kroah-Hartman
2025-08-26 11:08 ` [PATCH 6.1 259/482] parisc: Makefile: fix a typo in palo.conf Greg Kroah-Hartman
2025-08-26 11:08 ` [PATCH 6.1 260/482] mm/kmemleak: avoid soft lockup in __kmemleak_do_cleanup() Greg Kroah-Hartman
2025-08-26 11:08 ` [PATCH 6.1 261/482] mm/kmemleak: avoid deadlock by moving pr_warn() outside kmemleak_lock Greg Kroah-Hartman
2025-08-26 11:08 ` [PATCH 6.1 262/482] media: uvcvideo: Fix 1-byte out-of-bounds read in uvc_parse_format() Greg Kroah-Hartman
2025-08-26 11:08 ` [PATCH 6.1 263/482] media: uvcvideo: Do not mark valid metadata as invalid Greg Kroah-Hartman
2025-08-26 11:08 ` [PATCH 6.1 264/482] tools/nolibc: fix spelling of FD_SETBITMASK in FD_* macros Greg Kroah-Hartman
2025-08-26 11:08 ` [PATCH 6.1 265/482] HID: magicmouse: avoid setting up battery timer when not needed Greg Kroah-Hartman
2025-08-26 11:08 ` [PATCH 6.1 266/482] HID: apple: avoid setting up battery timer for devices without battery Greg Kroah-Hartman
2025-08-26 11:08 ` [PATCH 6.1 267/482] serial: 8250: fix panic due to PSLVERR Greg Kroah-Hartman
2025-08-26 11:08 ` [PATCH 6.1 268/482] cpufreq: armada-8k: Fix off by one in armada_8k_cpufreq_free_table() Greg Kroah-Hartman
2025-08-26 11:08 ` [PATCH 6.1 269/482] m68k: Fix lost column on framebuffer debug console Greg Kroah-Hartman
2025-08-26 11:08 ` [PATCH 6.1 270/482] usb: atm: cxacru: Merge cxacru_upload_firmware() into cxacru_heavy_init() Greg Kroah-Hartman
2025-08-26 11:08 ` [PATCH 6.1 271/482] usb: gadget: udc: renesas_usb3: fix device leak at unbind Greg Kroah-Hartman
2025-08-26 11:08 ` [PATCH 6.1 272/482] usb: dwc3: meson-g12a: fix device leaks " Greg Kroah-Hartman
2025-08-26 11:08 ` [PATCH 6.1 273/482] bus: mhi: host: Fix endianness of BHI vector table Greg Kroah-Hartman
2025-08-26 11:08 ` [PATCH 6.1 274/482] bus: mhi: host: Detect events pointing to unexpected TREs Greg Kroah-Hartman
2025-08-26 11:08 ` [PATCH 6.1 275/482] vt: keyboard: Dont process Unicode characters in K_OFF mode Greg Kroah-Hartman
2025-08-26 11:08 ` [PATCH 6.1 276/482] vt: defkeymap: Map keycodes above 127 to K_HOLE Greg Kroah-Hartman
2025-08-26 11:08 ` [PATCH 6.1 277/482] lib/crypto: mips/chacha: Fix clang build and remove unneeded byteswap Greg Kroah-Hartman
2025-08-26 11:08 ` [PATCH 6.1 278/482] Revert "vgacon: Add check for vc_origin address range in vgacon_scroll()" Greg Kroah-Hartman
2025-08-26 11:08 ` [PATCH 6.1 279/482] ksmbd: extend the connection limiting mechanism to support IPv6 Greg Kroah-Hartman
2025-08-26 11:08 ` [PATCH 6.1 280/482] ext4: check fast symlink for ea_inode correctly Greg Kroah-Hartman
2025-08-26 11:08 ` [PATCH 6.1 281/482] ext4: fix fsmap end of range reporting with bigalloc Greg Kroah-Hartman
2025-08-26 11:08 ` [PATCH 6.1 282/482] ext4: fix reserved gdt blocks handling in fsmap Greg Kroah-Hartman
2025-08-26 11:08 ` [PATCH 6.1 283/482] ext4: dont try to clear the orphan_present feature block device is r/o Greg Kroah-Hartman
2025-08-26 11:08 ` [PATCH 6.1 284/482] ext4: use kmalloc_array() for array space allocation Greg Kroah-Hartman
2025-08-26 11:08 ` [PATCH 6.1 285/482] ext4: fix hole length calculation overflow in non-extent inodes Greg Kroah-Hartman
2025-08-26 11:08 ` [PATCH 6.1 286/482] dt-bindings: display: sprd,sharkl3-dpu: Fix missing clocks constraints Greg Kroah-Hartman
2025-08-26 11:09 ` [PATCH 6.1 287/482] dt-bindings: display: sprd,sharkl3-dsi-host: " Greg Kroah-Hartman
2025-08-26 11:09 ` [PATCH 6.1 288/482] scsi: mpi3mr: Fix race between config read submit and interrupt completion Greg Kroah-Hartman
2025-08-26 11:09 ` [PATCH 6.1 289/482] ata: libata-scsi: Fix ata_to_sense_error() status handling Greg Kroah-Hartman
2025-08-26 11:09 ` [PATCH 6.1 290/482] scsi: ufs: ufs-pci: Fix hibernate state transition for Intel MTL-like host controllers Greg Kroah-Hartman
2025-08-26 11:09 ` [PATCH 6.1 291/482] scsi: ufs: ufs-pci: Fix default runtime and system PM levels Greg Kroah-Hartman
2025-08-26 11:09 ` [PATCH 6.1 292/482] zynq_fpga: use sgtable-based scatterlist wrappers Greg Kroah-Hartman
2025-08-26 11:09 ` [PATCH 6.1 293/482] iio: imu: bno055: fix OOB access of hw_xlate array Greg Kroah-Hartman
2025-08-26 11:09 ` [PATCH 6.1 294/482] iio: adc: ad_sigma_delta: change to buffer predisable Greg Kroah-Hartman
2025-08-26 11:09 ` [PATCH 6.1 295/482] wifi: brcmsmac: Remove const from tbl_ptr parameter in wlc_lcnphy_common_read_table() Greg Kroah-Hartman
2025-08-26 11:09 ` [PATCH 6.1 296/482] wifi: ath11k: fix dest ring-buffer corruption Greg Kroah-Hartman
2025-08-26 11:09 ` [PATCH 6.1 297/482] wifi: ath11k: fix source " Greg Kroah-Hartman
2025-08-26 11:09 ` [PATCH 6.1 298/482] wifi: ath11k: fix dest ring-buffer corruption when ring is full Greg Kroah-Hartman
2025-08-26 11:09 ` [PATCH 6.1 299/482] pwm: imx-tpm: Reset counter if CMOD is 0 Greg Kroah-Hartman
2025-08-26 11:09 ` [PATCH 6.1 300/482] pwm: mediatek: Handle hardware enable and clock enable separately Greg Kroah-Hartman
2025-08-26 11:09 ` [PATCH 6.1 301/482] pwm: mediatek: Fix duty and period setting Greg Kroah-Hartman
2025-08-26 11:09 ` [PATCH 6.1 302/482] hwmon: (gsc-hwmon) fix fan pwm setpoint show functions Greg Kroah-Hartman
2025-08-26 11:09 ` [PATCH 6.1 303/482] mtd: spi-nor: Fix spi_nor_try_unlock_all() Greg Kroah-Hartman
2025-08-26 11:09 ` [PATCH 6.1 304/482] mtd: spinand: propagate spinand_wait() errors from spinand_write_page() Greg Kroah-Hartman
2025-08-26 11:09 ` [PATCH 6.1 305/482] mtd: rawnand: fsmc: Add missing check after DMA map Greg Kroah-Hartman
2025-08-26 11:09 ` [PATCH 6.1 306/482] mtd: rawnand: renesas: " Greg Kroah-Hartman
2025-08-26 11:09 ` [PATCH 6.1 307/482] PCI: endpoint: Fix configfs group list head handling Greg Kroah-Hartman
2025-08-26 11:09 ` [PATCH 6.1 308/482] PCI: endpoint: Fix configfs group removal on driver teardown Greg Kroah-Hartman
2025-08-26 11:09 ` [PATCH 6.1 309/482] vsock/virtio: Validate length in packet header before skb_put() Greg Kroah-Hartman
2025-08-26 11:09 ` [PATCH 6.1 310/482] vhost/vsock: Avoid allocating arbitrarily-sized SKBs Greg Kroah-Hartman
2025-08-26 11:09 ` [PATCH 6.1 311/482] jbd2: prevent softlockup in jbd2_log_do_checkpoint() Greg Kroah-Hartman
2025-08-26 11:09 ` [PATCH 6.1 312/482] soc/tegra: pmc: Ensure power-domains are in a known state Greg Kroah-Hartman
2025-08-26 11:09 ` [PATCH 6.1 313/482] parisc: Check region is readable by user in raw_copy_from_user() Greg Kroah-Hartman
2025-08-26 11:09 ` [PATCH 6.1 314/482] parisc: Makefile: explain that 64BIT requires both 32-bit and 64-bit compilers Greg Kroah-Hartman
2025-08-26 11:09 ` [PATCH 6.1 315/482] parisc: Revise __get_user() to probe user read access Greg Kroah-Hartman
2025-08-26 11:09 ` [PATCH 6.1 316/482] parisc: Revise gateway LWS calls " Greg Kroah-Hartman
2025-08-26 11:09 ` [PATCH 6.1 317/482] parisc: Try to fixup kernel exception in bad_area_nosemaphore path of do_page_fault() Greg Kroah-Hartman
2025-08-26 11:09 ` [PATCH 6.1 318/482] parisc: Update comments in make_insert_tlb Greg Kroah-Hartman
2025-08-26 11:09 ` [PATCH 6.1 319/482] media: gspca: Add bounds checking to firmware parser Greg Kroah-Hartman
2025-08-26 11:09 ` [PATCH 6.1 320/482] media: hi556: correct the test pattern configuration Greg Kroah-Hartman
2025-08-26 11:09 ` [PATCH 6.1 321/482] media: imx: fix a potential memory leak in imx_media_csc_scaler_device_init() Greg Kroah-Hartman
2025-08-26 11:09 ` [PATCH 6.1 322/482] media: vivid: fix wrong pixel_array control size Greg Kroah-Hartman
2025-08-26 11:09 ` [PATCH 6.1 323/482] media: v4l2-ctrls: Dont reset handlers error in v4l2_ctrl_handler_free() Greg Kroah-Hartman
2025-08-26 11:09 ` [PATCH 6.1 324/482] media: usbtv: Lock resolution while streaming Greg Kroah-Hartman
2025-08-26 11:09 ` [PATCH 6.1 325/482] media: rainshadow-cec: fix TOCTOU race condition in rain_interrupt() Greg Kroah-Hartman
2025-08-26 11:09 ` [PATCH 6.1 326/482] media: ov2659: Fix memory leaks in ov2659_probe() Greg Kroah-Hartman
2025-08-26 11:09 ` [PATCH 6.1 327/482] media: qcom: camss: cleanup media device allocated resource on error path Greg Kroah-Hartman
2025-08-26 11:09 ` [PATCH 6.1 328/482] media: venus: Add a check for packet size after reading from shared memory Greg Kroah-Hartman
2025-08-26 11:09 ` [PATCH 6.1 329/482] media: venus: hfi: explicitly release IRQ during teardown Greg Kroah-Hartman
2025-08-26 11:09 ` [PATCH 6.1 330/482] media: venus: protect against spurious interrupts during probe Greg Kroah-Hartman
2025-08-26 11:09 ` [PATCH 6.1 331/482] media: venus: vdec: Clamp param smaller than 1fps and bigger than 240 Greg Kroah-Hartman
2025-08-26 11:09 ` [PATCH 6.1 332/482] media: venus: venc: " Greg Kroah-Hartman
2025-08-26 11:09 ` [PATCH 6.1 333/482] drm/amd: Restore cached power limit during resume Greg Kroah-Hartman
2025-08-26 11:09 ` [PATCH 6.1 334/482] drm/amdgpu: Avoid extra evict-restore process Greg Kroah-Hartman
2025-08-26 11:09 ` [PATCH 6.1 335/482] drm/amdgpu: update mmhub 3.0.1 client id mappings Greg Kroah-Hartman
2025-08-26 11:09 ` [PATCH 6.1 336/482] drm/amdkfd: Destroy KFD debugfs after destroy KFD wq Greg Kroah-Hartman
2025-08-26 11:09 ` [PATCH 6.1 337/482] drm/amd/display: Dont overwrite dce60_clk_mgr Greg Kroah-Hartman
2025-08-26 11:09 ` [PATCH 6.1 338/482] net, hsr: reject HSR frame if skb cant hold tag Greg Kroah-Hartman
2025-08-26 11:09 ` [PATCH 6.1 339/482] ipv6: sr: Fix MAC comparison to be constant-time Greg Kroah-Hartman
2025-08-26 11:09 ` [PATCH 6.1 340/482] ACPI: pfr_update: Fix the driver update version check Greg Kroah-Hartman
2025-08-26 11:09 ` [PATCH 6.1 341/482] mptcp: drop skb if MPTCP skb extension allocation fails Greg Kroah-Hartman
2025-08-26 11:09 ` [PATCH 6.1 342/482] mptcp: pm: kernel: flush: do not reset ADD_ADDR limit Greg Kroah-Hartman
2025-08-26 11:09 ` [PATCH 6.1 343/482] f2fs: fix to do sanity check on ino and xnid Greg Kroah-Hartman
2025-08-26 11:09 ` [PATCH 6.1 344/482] iio: hid-sensor-prox: Restore lost scale assignments Greg Kroah-Hartman
2025-08-26 11:09 ` [PATCH 6.1 345/482] iio: hid-sensor-prox: Fix incorrect OFFSET calculation Greg Kroah-Hartman
2025-08-26 11:09 ` [PATCH 6.1 346/482] perf/x86/intel: Fix crash in icl_update_topdown_event() Greg Kroah-Hartman
2025-08-26 11:10 ` [PATCH 6.1 347/482] x86/mce/amd: Add default names for MCA banks and blocks Greg Kroah-Hartman
2025-08-26 11:10 ` [PATCH 6.1 348/482] net: add netdev_lockdep_set_classes() to virtual drivers Greg Kroah-Hartman
2025-08-26 11:10 ` [PATCH 6.1 349/482] btrfs: fix qgroup reservation leak on failure to allocate ordered extent Greg Kroah-Hartman
2025-08-26 11:10 ` [PATCH 6.1 350/482] ARM: 9448/1: Use an absolute path to unified.h in KBUILD_AFLAGS Greg Kroah-Hartman
2025-08-26 11:10 ` [PATCH 6.1 351/482] arm64/entry: Mask DAIF in cpu_switch_to(), call_on_irq_stack() Greg Kroah-Hartman
2025-08-26 11:10 ` [PATCH 6.1 352/482] drm/sched: Remove optimization that causes hang when killing dependent jobs Greg Kroah-Hartman
2025-08-26 11:10 ` [PATCH 6.1 353/482] net: enetc: fix device and OF node leak at probe Greg Kroah-Hartman
2025-08-26 11:10 ` [PATCH 6.1 354/482] fscrypt: Dont use problematic non-inline crypto engines Greg Kroah-Hartman
2025-08-26 11:10 ` [PATCH 6.1 355/482] block: reject invalid operation in submit_bio_noacct Greg Kroah-Hartman
2025-08-26 11:10 ` [PATCH 6.1 356/482] block: Make REQ_OP_ZONE_FINISH a write operation Greg Kroah-Hartman
2025-08-26 11:10 ` [PATCH 6.1 357/482] PCI/ACPI: Fix runtime PM ref imbalance on Hot-Plug Capable ports Greg Kroah-Hartman
2025-08-26 11:10 ` [PATCH 6.1 358/482] cifs: reset iface weights when we cannot find a candidate Greg Kroah-Hartman
2025-08-26 11:10 ` [PATCH 6.1 359/482] usb: typec: fusb302: cache PD RX state Greg Kroah-Hartman
2025-08-26 11:10 ` [PATCH 6.1 360/482] btrfs: qgroup: fix race between quota disable and quota rescan ioctl Greg Kroah-Hartman
2025-08-26 11:10 ` [PATCH 6.1 361/482] btrfs: abort transaction on unexpected eb generation at btrfs_copy_root() Greg Kroah-Hartman
2025-08-26 11:10 ` [PATCH 6.1 362/482] xfs: fully decouple XFS_IBULK* flags from XFS_IWALK* flags Greg Kroah-Hartman
2025-08-26 11:10 ` [PATCH 6.1 363/482] btrfs: send: use fallocate for hole punching with send stream v2 Greg Kroah-Hartman
2025-08-26 11:10 ` [PATCH 6.1 364/482] net_sched: sch_ets: implement lockless ets_dump() Greg Kroah-Hartman
2025-08-26 11:10 ` [PATCH 6.1 365/482] net/sched: ets: use old nbands while purging unused classes Greg Kroah-Hartman
2025-08-26 11:10 ` [PATCH 6.1 366/482] mm/ptdump: take the memory hotplug lock inside ptdump_walk_pgd() Greg Kroah-Hartman
2025-08-26 11:10 ` [PATCH 6.1 367/482] media: venus: Introduce accessors for remapped hfi_buffer_reqs members Greg Kroah-Hartman
2025-08-26 11:10 ` [PATCH 6.1 368/482] media: venus: Fix OOB read due to missing payload bound check Greg Kroah-Hartman
2025-08-26 11:10 ` [PATCH 6.1 369/482] usb: musb: omap2430: Convert to platform remove callback returning void Greg Kroah-Hartman
2025-08-26 11:10 ` [PATCH 6.1 370/482] usb: musb: omap2430: fix device leak at unbind Greg Kroah-Hartman
2025-08-26 11:10 ` [PATCH 6.1 371/482] platform/chrome: cros_ec: Use per-device lockdep key Greg Kroah-Hartman
2025-08-26 11:10 ` [PATCH 6.1 372/482] platform/chrome: cros_ec: remove unneeded label and if-condition Greg Kroah-Hartman
2025-08-26 11:10 ` [PATCH 6.1 373/482] platform/chrome: cros_ec: Unregister notifier in cros_ec_unregister() Greg Kroah-Hartman
2025-08-26 11:10 ` [PATCH 6.1 374/482] usb: dwc3: imx8mp: fix device leak at unbind Greg Kroah-Hartman
2025-08-26 11:10 ` [PATCH 6.1 375/482] ata: Fix SATA_MOBILE_LPM_POLICY description in Kconfig Greg Kroah-Hartman
2025-08-26 11:10 ` [PATCH 6.1 376/482] btrfs: populate otime when logging an inode item Greg Kroah-Hartman
2025-08-26 11:10 ` [PATCH 6.1 377/482] tls: separate no-async decryption request handling from async Greg Kroah-Hartman
2025-08-26 11:10 ` [PATCH 6.1 378/482] crypto: qat - fix ring to service map for QAT GEN4 Greg Kroah-Hartman
2025-08-26 11:10 ` [PATCH 6.1 379/482] arm64/cpufeatures/kvm: Add ARMv8.9 FEAT_ECBHB bits in ID_AA64MMFR1 register Greg Kroah-Hartman
2025-08-26 11:10 ` [PATCH 6.1 380/482] KVM: x86: Take irqfds.lock when adding/deleting IRQ bypass producer Greg Kroah-Hartman
2025-08-26 11:10 ` [PATCH 6.1 381/482] mptcp: make fallback action and fallback decision atomic Greg Kroah-Hartman
2025-08-26 11:10 ` [PATCH 6.1 382/482] mptcp: plug races between subflow fail and subflow creation Greg Kroah-Hartman
2025-08-26 11:10 ` [PATCH 6.1 383/482] mptcp: reset fallback status gracefully at disconnect() time Greg Kroah-Hartman
2025-08-26 11:10 ` [PATCH 6.1 384/482] mm: drop the assumption that VM_SHARED always implies writable Greg Kroah-Hartman
2025-08-26 11:10 ` [PATCH 6.1 385/482] mm: update memfd seal write check to include F_SEAL_WRITE Greg Kroah-Hartman
2025-08-26 11:10 ` [PATCH 6.1 386/482] mm: reinstate ability to map write-sealed memfd mappings read-only Greg Kroah-Hartman
2025-08-26 11:10 ` [PATCH 6.1 387/482] selftests/memfd: add test for mapping write-sealed memfd read-only Greg Kroah-Hartman
2025-08-26 11:10 ` [PATCH 6.1 388/482] Bluetooth: hci_sync: Fix UAF on hci_abort_conn_sync Greg Kroah-Hartman
2025-08-26 11:10 ` [PATCH 6.1 389/482] kbuild: userprogs: use correct linker when mixing clang and GNU ld Greg Kroah-Hartman
2025-08-26 11:10 ` [PATCH 6.1 390/482] x86/reboot: Harden virtualization hooks for emergency reboot Greg Kroah-Hartman
2025-08-26 11:10 ` [PATCH 6.1 391/482] x86/reboot: KVM: Handle VMXOFF in KVMs reboot callback Greg Kroah-Hartman
2025-08-26 11:10 ` [PATCH 6.1 392/482] KVM: VMX: Flush shadow VMCS on emergency reboot Greg Kroah-Hartman
2025-08-26 11:10 ` [PATCH 6.1 393/482] KVM: arm64: Fix kernel BUG() due to bad backport of FPSIMD/SVE/SME fix Greg Kroah-Hartman
2025-08-26 11:10 ` [PATCH 6.1 394/482] memstick: Fix deadlock by moving removing flag earlier Greg Kroah-Hartman
2025-08-26 11:10 ` [PATCH 6.1 395/482] mmc: sdhci-pci-gli: GL9763e: Rename the gli_set_gl9763e() for consistency Greg Kroah-Hartman
2025-08-26 11:10 ` [PATCH 6.1 396/482] squashfs: fix memory leak in squashfs_fill_super Greg Kroah-Hartman
2025-08-26 11:10 ` [PATCH 6.1 397/482] mm/debug_vm_pgtable: clear page table entries at destroy_args() Greg Kroah-Hartman
2025-08-26 11:10 ` [PATCH 6.1 398/482] ALSA: hda/realtek: Add support for HP EliteBook x360 830 G6 and EliteBook 830 G6 Greg Kroah-Hartman
2025-08-26 11:10 ` [PATCH 6.1 399/482] s390/sclp: Fix SCCB present check Greg Kroah-Hartman
2025-08-26 11:10 ` [PATCH 6.1 400/482] drm/amd/display: Avoid a NULL pointer dereference Greg Kroah-Hartman
2025-08-26 11:10 ` [PATCH 6.1 401/482] drm/amd/display: Fix fractional fb divider in set_pixel_clock_v3 Greg Kroah-Hartman
2025-08-26 11:10 ` [PATCH 6.1 402/482] drm/amd/display: Fix DP audio DTO1 clock source on DCE 6 Greg Kroah-Hartman
2025-08-26 11:10 ` [PATCH 6.1 403/482] drm/amd/display: Find first CRTC and its line time in dce110_fill_display_configs Greg Kroah-Hartman
2025-08-26 11:10 ` [PATCH 6.1 404/482] drm/amd/display: Fill display clock and vblank " Greg Kroah-Hartman
2025-08-26 11:10 ` [PATCH 6.1 405/482] smb: server: split ksmbd_rdma_stop_listening() out of ksmbd_rdma_destroy() Greg Kroah-Hartman
2025-08-26 11:10 ` [PATCH 6.1 406/482] fs/buffer: fix use-after-free when call bh_read() helper Greg Kroah-Hartman
2025-08-26 11:11 ` [PATCH 6.1 407/482] use uniform permission checks for all mount propagation changes Greg Kroah-Hartman
2025-08-26 11:11 ` [PATCH 6.1 408/482] fpga: zynq_fpga: Fix the wrong usage of dma_map_sgtable() Greg Kroah-Hartman
2025-08-26 11:11 ` [PATCH 6.1 409/482] ftrace: Also allocate and copy hash for reading of filter files Greg Kroah-Hartman
2025-08-26 11:11 ` [PATCH 6.1 410/482] iio: pressure: bmp280: Use IS_ERR() in bmp280_common_probe() Greg Kroah-Hartman
2025-08-26 11:11 ` [PATCH 6.1 411/482] iio: proximity: isl29501: fix buffered read on big-endian systems Greg Kroah-Hartman
2025-08-26 11:11 ` [PATCH 6.1 412/482] most: core: Drop device reference after usage in get_channel() Greg Kroah-Hartman
2025-08-26 11:11 ` [PATCH 6.1 413/482] usb: quirks: Add DELAY_INIT quick for another SanDisk 3.2Gen1 Flash Drive Greg Kroah-Hartman
2025-08-26 11:11 ` [PATCH 6.1 414/482] comedi: Make insn_rw_emulate_bits() do insn->n samples Greg Kroah-Hartman
2025-08-26 11:11 ` [PATCH 6.1 415/482] comedi: pcl726: Prevent invalid irq number Greg Kroah-Hartman
2025-08-26 11:11 ` [PATCH 6.1 416/482] comedi: Fix use of uninitialized memory in do_insn_ioctl() and do_insnlist_ioctl() Greg Kroah-Hartman
2025-08-26 11:11 ` [PATCH 6.1 417/482] usb: core: hcd: fix accessing unmapped memory in SINGLE_STEP_SET_FEATURE test Greg Kroah-Hartman
2025-08-26 11:11 ` [PATCH 6.1 418/482] usb: renesas-xhci: Fix External ROM access timeouts Greg Kroah-Hartman
2025-08-26 11:11 ` [PATCH 6.1 419/482] USB: storage: Add unusual-devs entry for Novatek NTK96550-based camera Greg Kroah-Hartman
2025-08-26 11:11 ` [PATCH 6.1 420/482] usb: storage: realtek_cr: Use correct byte order for bcs->Residue Greg Kroah-Hartman
2025-08-26 11:11 ` [PATCH 6.1 421/482] USB: storage: Ignore driver CD mode for Realtek multi-mode Wi-Fi dongles Greg Kroah-Hartman
2025-08-26 11:11 ` [PATCH 6.1 422/482] usb: dwc3: Ignore late xferNotReady event to prevent halt timeout Greg Kroah-Hartman
2025-08-26 11:11 ` [PATCH 6.1 423/482] usb: dwc3: Remove WARN_ON for device endpoint command timeouts Greg Kroah-Hartman
2025-08-26 11:11 ` [PATCH 6.1 424/482] arm64: dts: ti: k3-am62-main: Remove eMMC High Speed DDR support Greg Kroah-Hartman
2025-08-26 11:11 ` [PATCH 6.1 425/482] scsi: ufs: exynos: Fix programming of HCI_UTRL_NEXUS_TYPE Greg Kroah-Hartman
2025-08-26 11:11 ` [PATCH 6.1 426/482] ext4: preserve SB_I_VERSION on remount Greg Kroah-Hartman
2025-08-26 11:11 ` [PATCH 6.1 427/482] scsi: mpi3mr: Drop unnecessary volatile from __iomem pointers Greg Kroah-Hartman
2025-08-26 11:11 ` [PATCH 6.1 428/482] scsi: mpi3mr: Serialize admin queue BAR writes on 32-bit systems Greg Kroah-Hartman
2025-08-26 11:11 ` [PATCH 6.1 429/482] PCI: rockchip: Use standard PCIe definitions Greg Kroah-Hartman
2025-08-26 11:11 ` [PATCH 6.1 430/482] PCI: rockchip: Set Target Link Speed to 5.0 GT/s before retraining Greg Kroah-Hartman
2025-08-26 11:11 ` [PATCH 6.1 431/482] soc: qcom: mdt_loader: Enhance split binary detection Greg Kroah-Hartman
2025-08-26 11:11 ` [PATCH 6.1 432/482] soc: qcom: mdt_loader: Ensure we dont read past the ELF header Greg Kroah-Hartman
2025-08-26 11:11 ` [PATCH 6.1 433/482] f2fs: fix to call clear_page_private_reference in .{release,invalid}_folio Greg Kroah-Hartman
2025-08-26 11:11 ` [PATCH 6.1 434/482] f2fs: fix to avoid out-of-boundary access in dnode page Greg Kroah-Hartman
2025-08-26 11:11 ` [PATCH 6.1 435/482] mptcp: disable add_addr retransmission when timeout is 0 Greg Kroah-Hartman
2025-08-26 11:11 ` [PATCH 6.1 436/482] drm/dp: Change AUX DPCD probe address from DPCD_REV to LANE0_1_STATUS Greg Kroah-Hartman
2025-08-26 11:11 ` [PATCH 6.1 437/482] mmc: sdhci-pci-gli: Use PCI AER definitions, not hard-coded values Greg Kroah-Hartman
2025-08-26 11:11 ` [PATCH 6.1 438/482] mmc: sdhci-pci-gli: Add a new function to simplify the code Greg Kroah-Hartman
2025-08-26 11:11 ` [PATCH 6.1 439/482] mmc: sdhci-pci-gli: GL9763e: Mask the replay timer timeout of AER Greg Kroah-Hartman
2025-08-26 11:11 ` [PATCH 6.1 440/482] mm/memory-failure: fix infinite UCE for VM_PFNMAP pfn Greg Kroah-Hartman
2025-08-26 11:11 ` [PATCH 6.1 441/482] drm/amd/display: Dont overclock DCE 6 by 15% Greg Kroah-Hartman
2025-08-26 11:11 ` [PATCH 6.1 442/482] selftests: mptcp: pm: check flush doesnt reset limits Greg Kroah-Hartman
2025-08-26 11:11 ` [PATCH 6.1 443/482] wifi: mac80211: avoid lockdep checking when removing deflink Greg Kroah-Hartman
2025-08-26 11:11 ` [PATCH 6.1 444/482] wifi: mac80211: check basic rates validity in sta_link_apply_parameters Greg Kroah-Hartman
2025-08-26 11:11 ` [PATCH 6.1 445/482] tls: fix handling of zero-length records on the rx_list Greg Kroah-Hartman
2025-08-26 11:11 ` [PATCH 6.1 446/482] iio: imu: inv_icm42600: change invalid data error to -EBUSY Greg Kroah-Hartman
2025-08-26 11:11 ` [PATCH 6.1 447/482] tracing: Remove unneeded goto out logic Greg Kroah-Hartman
2025-08-26 11:11 ` [PATCH 6.1 448/482] tracing: Limit access to parser->buffer when trace_get_user failed Greg Kroah-Hartman
2025-08-26 11:11 ` [PATCH 6.1 449/482] iio: light: as73211: Ensure buffer holes are zeroed Greg Kroah-Hartman
2025-08-26 11:11 ` [PATCH 6.1 450/482] iio: temperature: maxim_thermocouple: use DMA-safe buffer for spi_read() Greg Kroah-Hartman
2025-08-26 11:11 ` [PATCH 6.1 451/482] compiler: remove __ADDRESSABLE_ASM{_STR,}() again Greg Kroah-Hartman
2025-08-26 11:11 ` [PATCH 6.1 452/482] x86/cpu/hygon: Add missing resctrl_cpu_detect() in bsp_init helper Greg Kroah-Hartman
2025-08-26 11:11 ` [PATCH 6.1 453/482] cgroup/cpuset: Use static_branch_enable_cpuslocked() on cpusets_insane_config_key Greg Kroah-Hartman
2025-08-26 11:11 ` [PATCH 6.1 454/482] iosys-map: Fix undefined behavior in iosys_map_clear() Greg Kroah-Hartman
2025-08-26 11:11 ` [PATCH 6.1 455/482] RDMA/erdma: Fix ignored return value of init_kernel_qp Greg Kroah-Hartman
2025-08-26 11:11 ` [PATCH 6.1 456/482] RDMA/bnxt_re: Fix to initialize the PBL array Greg Kroah-Hartman
2025-08-26 11:11 ` [PATCH 6.1 457/482] net: bridge: fix soft lockup in br_multicast_query_expired() Greg Kroah-Hartman
2025-08-26 11:11 ` [PATCH 6.1 458/482] scsi: qla4xxx: Prevent a potential error pointer dereference Greg Kroah-Hartman
2025-08-26 11:11 ` [PATCH 6.1 459/482] iommu/amd: Avoid stack buffer overflow from kernel cmdline Greg Kroah-Hartman
2025-08-26 11:11 ` [PATCH 6.1 460/482] Bluetooth: hci_conn: do return error from hci_enhanced_setup_sync() Greg Kroah-Hartman
2025-08-26 11:11 ` [PATCH 6.1 461/482] mlxsw: spectrum: Forward packets with an IPv4 link-local source IP Greg Kroah-Hartman
2025-08-26 11:11 ` [PATCH 6.1 462/482] drm/hisilicon/hibmc: fix the hibmc loaded failed bug Greg Kroah-Hartman
2025-08-26 11:11 ` [PATCH 6.1 463/482] ALSA: usb-audio: Fix size validation in convert_chmap_v3() Greg Kroah-Hartman
2025-08-26 11:11 ` [PATCH 6.1 464/482] drm/amd/display: Add null pointer check in mod_hdcp_hdcp1_create_session() Greg Kroah-Hartman
2025-08-26 11:11 ` [PATCH 6.1 465/482] net: gso: Forbid IPv6 TSO with extensions on devices with only IPV6_CSUM Greg Kroah-Hartman
2025-08-26 11:11 ` [PATCH 6.1 466/482] ipv6: sr: validate HMAC algorithm ID in seg6_hmac_info_add Greg Kroah-Hartman
2025-08-26 11:12 ` [PATCH 6.1 467/482] net: ethernet: mtk_ppe: add RCU lock around dev_fill_forward_path Greg Kroah-Hartman
2025-08-26 11:12 ` [PATCH 6.1 468/482] ppp: fix race conditions in ppp_fill_forward_path Greg Kroah-Hartman
2025-08-26 11:12 ` [PATCH 6.1 469/482] phy: mscc: Fix timestamping for vsc8584 Greg Kroah-Hartman
2025-08-26 11:12 ` [PATCH 6.1 470/482] net: usb: asix_devices: Fix PHY address mask in MDIO bus initialization Greg Kroah-Hartman
2025-08-26 11:12 ` [PATCH 6.1 471/482] gve: prevent ethtool ops after shutdown Greg Kroah-Hartman
2025-08-26 11:12 ` [PATCH 6.1 472/482] ixgbe: xsk: resolve the negative overflow of budget in ixgbe_xmit_zc Greg Kroah-Hartman
2025-08-26 11:12 ` [PATCH 6.1 473/482] igc: fix disabling L1.2 PCI-E link substate on I226 on init Greg Kroah-Hartman
2025-08-26 11:12 ` [PATCH 6.1 474/482] net/sched: Make cake_enqueue return NET_XMIT_CN when past buffer_limit Greg Kroah-Hartman
2025-08-26 11:12 ` [PATCH 6.1 475/482] net/sched: Remove unnecessary WARNING condition for empty child qdisc in htb_activate Greg Kroah-Hartman
2025-08-26 11:12 ` [PATCH 6.1 476/482] bonding: update LACP activity flag after setting lacp_active Greg Kroah-Hartman
2025-08-26 11:12 ` [PATCH 6.1 477/482] bonding: Add independent control state machine Greg Kroah-Hartman
2025-08-26 11:12 ` [PATCH 6.1 478/482] bonding: send LACPDUs periodically in passive mode after receiving partners LACPDU Greg Kroah-Hartman
2025-08-26 11:12 ` [PATCH 6.1 479/482] ALSA: usb-audio: Use correct sub-type for UAC3 feature unit validation Greg Kroah-Hartman
2025-08-26 11:12 ` [PATCH 6.1 480/482] s390/hypfs: Avoid unnecessary ioctl registration in debugfs Greg Kroah-Hartman
2025-08-26 11:12 ` [PATCH 6.1 481/482] s390/hypfs: Enable limited access during lockdown Greg Kroah-Hartman
2025-08-26 11:12 ` [PATCH 6.1 482/482] netfilter: nf_reject: dont leak dst refcount for loopback packets Greg Kroah-Hartman
2025-08-26 14:26 ` [PATCH 6.1 000/482] 6.1.149-rc1 review Miguel Ojeda
2025-08-26 17:38 ` Peter Schneider
2025-08-26 17:43 ` Jon Hunter
2025-08-26 17:45 ` Florian Fainelli
2025-08-26 17:54 ` Brett A C Sheffield
2025-08-27 9:21 ` [PATCH 6.1 000/482] " Ron Economos
2025-08-27 9:26 ` Anders Roxell
2025-08-27 11:18 ` Mark Brown
2025-08-29 6:20 ` Pavel Machek
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=20250826110937.092594773@linuxfoundation.org \
--to=gregkh@linuxfoundation.org \
--cc=dsterba@suse.com \
--cc=fdmanana@suse.com \
--cc=patches@lists.linux.dev \
--cc=stable@vger.kernel.org \
--cc=wqu@suse.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).