From: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
To: stable@vger.kernel.org
Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>,
patches@lists.linux.dev,
syzbot+45212e9d87a98c3f5b42@syzkaller.appspotmail.com,
Dmitry Vyukov <dvyukov@google.com>,
Johannes Thumshirn <johannes.thumshirn@wdc.com>,
Qu Wenruo <wqu@suse.com>, Filipe Manana <fdmanana@suse.com>,
David Sterba <dsterba@suse.com>, Sasha Levin <sashal@kernel.org>
Subject: [PATCH 6.6 002/273] btrfs: fix use-after-free when attempting to join an aborted transaction
Date: Thu, 13 Feb 2025 15:26:14 +0100 [thread overview]
Message-ID: <20250213142407.456235386@linuxfoundation.org> (raw)
In-Reply-To: <20250213142407.354217048@linuxfoundation.org>
6.6-stable review patch. If anyone has any objections, please let me know.
------------------
From: Filipe Manana <fdmanana@suse.com>
[ Upstream commit e2f0943cf37305dbdeaf9846e3c941451bcdef63 ]
When we are trying to join the current transaction and if it's aborted,
we read its 'aborted' field after unlocking fs_info->trans_lock and
without holding any extra reference count on it. This means that a
concurrent task that is aborting the transaction may free the transaction
before we read its 'aborted' field, leading to a use-after-free.
Fix this by reading the 'aborted' field while holding fs_info->trans_lock
since any freeing task must first acquire that lock and set
fs_info->running_transaction to NULL before freeing the transaction.
This was reported by syzbot and Dmitry with the following stack traces
from KASAN:
==================================================================
BUG: KASAN: slab-use-after-free in join_transaction+0xd9b/0xda0 fs/btrfs/transaction.c:278
Read of size 4 at addr ffff888011839024 by task kworker/u4:9/1128
CPU: 0 UID: 0 PID: 1128 Comm: kworker/u4:9 Not tainted 6.13.0-rc7-syzkaller-00019-gc45323b7560e #0
Hardware name: QEMU Standard PC (Q35 + ICH9, 2009), BIOS 1.16.3-debian-1.16.3-2~bpo12+1 04/01/2014
Workqueue: events_unbound btrfs_async_reclaim_data_space
Call Trace:
<TASK>
__dump_stack lib/dump_stack.c:94 [inline]
dump_stack_lvl+0x241/0x360 lib/dump_stack.c:120
print_address_description mm/kasan/report.c:378 [inline]
print_report+0x169/0x550 mm/kasan/report.c:489
kasan_report+0x143/0x180 mm/kasan/report.c:602
join_transaction+0xd9b/0xda0 fs/btrfs/transaction.c:278
start_transaction+0xaf8/0x1670 fs/btrfs/transaction.c:697
flush_space+0x448/0xcf0 fs/btrfs/space-info.c:803
btrfs_async_reclaim_data_space+0x159/0x510 fs/btrfs/space-info.c:1321
process_one_work kernel/workqueue.c:3236 [inline]
process_scheduled_works+0xa66/0x1840 kernel/workqueue.c:3317
worker_thread+0x870/0xd30 kernel/workqueue.c:3398
kthread+0x2f0/0x390 kernel/kthread.c:389
ret_from_fork+0x4b/0x80 arch/x86/kernel/process.c:147
ret_from_fork_asm+0x1a/0x30 arch/x86/entry/entry_64.S:244
</TASK>
Allocated by task 5315:
kasan_save_stack mm/kasan/common.c:47 [inline]
kasan_save_track+0x3f/0x80 mm/kasan/common.c:68
poison_kmalloc_redzone mm/kasan/common.c:377 [inline]
__kasan_kmalloc+0x98/0xb0 mm/kasan/common.c:394
kasan_kmalloc include/linux/kasan.h:260 [inline]
__kmalloc_cache_noprof+0x243/0x390 mm/slub.c:4329
kmalloc_noprof include/linux/slab.h:901 [inline]
join_transaction+0x144/0xda0 fs/btrfs/transaction.c:308
start_transaction+0xaf8/0x1670 fs/btrfs/transaction.c:697
btrfs_create_common+0x1b2/0x2e0 fs/btrfs/inode.c:6572
lookup_open fs/namei.c:3649 [inline]
open_last_lookups fs/namei.c:3748 [inline]
path_openat+0x1c03/0x3590 fs/namei.c:3984
do_filp_open+0x27f/0x4e0 fs/namei.c:4014
do_sys_openat2+0x13e/0x1d0 fs/open.c:1402
do_sys_open fs/open.c:1417 [inline]
__do_sys_creat fs/open.c:1495 [inline]
__se_sys_creat fs/open.c:1489 [inline]
__x64_sys_creat+0x123/0x170 fs/open.c:1489
do_syscall_x64 arch/x86/entry/common.c:52 [inline]
do_syscall_64+0xf3/0x230 arch/x86/entry/common.c:83
entry_SYSCALL_64_after_hwframe+0x77/0x7f
Freed by task 5336:
kasan_save_stack mm/kasan/common.c:47 [inline]
kasan_save_track+0x3f/0x80 mm/kasan/common.c:68
kasan_save_free_info+0x40/0x50 mm/kasan/generic.c:582
poison_slab_object mm/kasan/common.c:247 [inline]
__kasan_slab_free+0x59/0x70 mm/kasan/common.c:264
kasan_slab_free include/linux/kasan.h:233 [inline]
slab_free_hook mm/slub.c:2353 [inline]
slab_free mm/slub.c:4613 [inline]
kfree+0x196/0x430 mm/slub.c:4761
cleanup_transaction fs/btrfs/transaction.c:2063 [inline]
btrfs_commit_transaction+0x2c97/0x3720 fs/btrfs/transaction.c:2598
insert_balance_item+0x1284/0x20b0 fs/btrfs/volumes.c:3757
btrfs_balance+0x992/0x10c0 fs/btrfs/volumes.c:4633
btrfs_ioctl_balance+0x493/0x7c0 fs/btrfs/ioctl.c:3670
vfs_ioctl fs/ioctl.c:51 [inline]
__do_sys_ioctl fs/ioctl.c:906 [inline]
__se_sys_ioctl+0xf5/0x170 fs/ioctl.c:892
do_syscall_x64 arch/x86/entry/common.c:52 [inline]
do_syscall_64+0xf3/0x230 arch/x86/entry/common.c:83
entry_SYSCALL_64_after_hwframe+0x77/0x7f
The buggy address belongs to the object at ffff888011839000
which belongs to the cache kmalloc-2k of size 2048
The buggy address is located 36 bytes inside of
freed 2048-byte region [ffff888011839000, ffff888011839800)
The buggy address belongs to the physical page:
page: refcount:1 mapcount:0 mapping:0000000000000000 index:0x0 pfn:0x11838
head: order:3 mapcount:0 entire_mapcount:0 nr_pages_mapped:0 pincount:0
flags: 0xfff00000000040(head|node=0|zone=1|lastcpupid=0x7ff)
page_type: f5(slab)
raw: 00fff00000000040 ffff88801ac42000 ffffea0000493400 dead000000000002
raw: 0000000000000000 0000000000080008 00000001f5000000 0000000000000000
head: 00fff00000000040 ffff88801ac42000 ffffea0000493400 dead000000000002
head: 0000000000000000 0000000000080008 00000001f5000000 0000000000000000
head: 00fff00000000003 ffffea0000460e01 ffffffffffffffff 0000000000000000
head: 0000000000000008 0000000000000000 00000000ffffffff 0000000000000000
page dumped because: kasan: bad access detected
page_owner tracks the page as allocated
page last allocated via order 3, migratetype Unmovable, gfp_mask 0xd20c0(__GFP_IO|__GFP_FS|__GFP_NOWARN|__GFP_NORETRY|__GFP_COMP|__GFP_NOMEMALLOC), pid 57, tgid 57 (kworker/0:2), ts 67248182943, free_ts 67229742023
set_page_owner include/linux/page_owner.h:32 [inline]
post_alloc_hook+0x1f3/0x230 mm/page_alloc.c:1558
prep_new_page mm/page_alloc.c:1566 [inline]
get_page_from_freelist+0x365c/0x37a0 mm/page_alloc.c:3476
__alloc_pages_noprof+0x292/0x710 mm/page_alloc.c:4753
alloc_pages_mpol_noprof+0x3e1/0x780 mm/mempolicy.c:2269
alloc_slab_page+0x6a/0x110 mm/slub.c:2423
allocate_slab+0x5a/0x2b0 mm/slub.c:2589
new_slab mm/slub.c:2642 [inline]
___slab_alloc+0xc27/0x14a0 mm/slub.c:3830
__slab_alloc+0x58/0xa0 mm/slub.c:3920
__slab_alloc_node mm/slub.c:3995 [inline]
slab_alloc_node mm/slub.c:4156 [inline]
__do_kmalloc_node mm/slub.c:4297 [inline]
__kmalloc_node_track_caller_noprof+0x2e9/0x4c0 mm/slub.c:4317
kmalloc_reserve+0x111/0x2a0 net/core/skbuff.c:609
__alloc_skb+0x1f3/0x440 net/core/skbuff.c:678
alloc_skb include/linux/skbuff.h:1323 [inline]
alloc_skb_with_frags+0xc3/0x820 net/core/skbuff.c:6612
sock_alloc_send_pskb+0x91a/0xa60 net/core/sock.c:2884
sock_alloc_send_skb include/net/sock.h:1803 [inline]
mld_newpack+0x1c3/0xaf0 net/ipv6/mcast.c:1747
add_grhead net/ipv6/mcast.c:1850 [inline]
add_grec+0x1492/0x19a0 net/ipv6/mcast.c:1988
mld_send_cr net/ipv6/mcast.c:2114 [inline]
mld_ifc_work+0x691/0xd90 net/ipv6/mcast.c:2651
page last free pid 5300 tgid 5300 stack trace:
reset_page_owner include/linux/page_owner.h:25 [inline]
free_pages_prepare mm/page_alloc.c:1127 [inline]
free_unref_page+0xd3f/0x1010 mm/page_alloc.c:2659
__slab_free+0x2c2/0x380 mm/slub.c:4524
qlink_free mm/kasan/quarantine.c:163 [inline]
qlist_free_all+0x9a/0x140 mm/kasan/quarantine.c:179
kasan_quarantine_reduce+0x14f/0x170 mm/kasan/quarantine.c:286
__kasan_slab_alloc+0x23/0x80 mm/kasan/common.c:329
kasan_slab_alloc include/linux/kasan.h:250 [inline]
slab_post_alloc_hook mm/slub.c:4119 [inline]
slab_alloc_node mm/slub.c:4168 [inline]
__do_kmalloc_node mm/slub.c:4297 [inline]
__kmalloc_noprof+0x236/0x4c0 mm/slub.c:4310
kmalloc_noprof include/linux/slab.h:905 [inline]
kzalloc_noprof include/linux/slab.h:1037 [inline]
fib_create_info+0xc14/0x25b0 net/ipv4/fib_semantics.c:1435
fib_table_insert+0x1f6/0x1f20 net/ipv4/fib_trie.c:1231
fib_magic+0x3d8/0x620 net/ipv4/fib_frontend.c:1112
fib_add_ifaddr+0x40c/0x5e0 net/ipv4/fib_frontend.c:1156
fib_netdev_event+0x375/0x490 net/ipv4/fib_frontend.c:1494
notifier_call_chain+0x1a5/0x3f0 kernel/notifier.c:85
__dev_notify_flags+0x207/0x400
dev_change_flags+0xf0/0x1a0 net/core/dev.c:9045
do_setlink+0xc90/0x4210 net/core/rtnetlink.c:3109
rtnl_changelink net/core/rtnetlink.c:3723 [inline]
__rtnl_newlink net/core/rtnetlink.c:3875 [inline]
rtnl_newlink+0x1bb6/0x2210 net/core/rtnetlink.c:4012
Memory state around the buggy address:
ffff888011838f00: fc fc fc fc fc fc fc fc fc fc fc fc fc fc fc fc
ffff888011838f80: fc fc fc fc fc fc fc fc fc fc fc fc fc fc fc fc
>ffff888011839000: fa fb fb fb fb fb fb fb fb fb fb fb fb fb fb fb
^
ffff888011839080: fb fb fb fb fb fb fb fb fb fb fb fb fb fb fb fb
ffff888011839100: fb fb fb fb fb fb fb fb fb fb fb fb fb fb fb fb
==================================================================
Reported-by: syzbot+45212e9d87a98c3f5b42@syzkaller.appspotmail.com
Link: https://lore.kernel.org/linux-btrfs/678e7da5.050a0220.303755.007c.GAE@google.com/
Reported-by: Dmitry Vyukov <dvyukov@google.com>
Link: https://lore.kernel.org/linux-btrfs/CACT4Y+ZFBdo7pT8L2AzM=vegZwjp-wNkVJZQf0Ta3vZqtExaSw@mail.gmail.com/
Fixes: 871383be592b ("btrfs: add missing unlocks to transaction abort paths")
Reviewed-by: Johannes Thumshirn <johannes.thumshirn@wdc.com>
Reviewed-by: Qu Wenruo <wqu@suse.com>
Signed-off-by: Filipe Manana <fdmanana@suse.com>
Reviewed-by: David Sterba <dsterba@suse.com>
Signed-off-by: David Sterba <dsterba@suse.com>
Signed-off-by: Sasha Levin <sashal@kernel.org>
---
fs/btrfs/transaction.c | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/fs/btrfs/transaction.c b/fs/btrfs/transaction.c
index 0548072c642fb..aa03db69a0164 100644
--- a/fs/btrfs/transaction.c
+++ b/fs/btrfs/transaction.c
@@ -278,8 +278,10 @@ static noinline int join_transaction(struct btrfs_fs_info *fs_info,
cur_trans = fs_info->running_transaction;
if (cur_trans) {
if (TRANS_ABORTED(cur_trans)) {
+ const int abort_error = cur_trans->aborted;
+
spin_unlock(&fs_info->trans_lock);
- return cur_trans->aborted;
+ return abort_error;
}
if (btrfs_blocked_trans_types[cur_trans->state] & type) {
spin_unlock(&fs_info->trans_lock);
--
2.39.5
next prev parent reply other threads:[~2025-02-13 15:21 UTC|newest]
Thread overview: 286+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-02-13 14:26 [PATCH 6.6 000/273] 6.6.78-rc1 review Greg Kroah-Hartman
2025-02-13 14:26 ` [PATCH 6.6 001/273] btrfs: fix assertion failure when splitting ordered extent after transaction abort Greg Kroah-Hartman
2025-02-13 14:26 ` Greg Kroah-Hartman [this message]
2025-02-13 14:26 ` [PATCH 6.6 003/273] arm64/mm: Ensure adequate HUGE_MAX_HSTATE Greg Kroah-Hartman
2025-02-13 14:26 ` [PATCH 6.6 004/273] exec: fix up /proc/pid/comm in the execveat(AT_EMPTY_PATH) case Greg Kroah-Hartman
2025-02-13 14:26 ` [PATCH 6.6 005/273] s390/stackleak: Use exrl instead of ex in __stackleak_poison() Greg Kroah-Hartman
2025-02-13 14:26 ` [PATCH 6.6 006/273] btrfs: fix data race when accessing the inodes disk_i_size at btrfs_drop_extents() Greg Kroah-Hartman
2025-02-13 14:26 ` [PATCH 6.6 007/273] btrfs: convert BUG_ON in btrfs_reloc_cow_block() to proper error handling Greg Kroah-Hartman
2025-02-13 14:26 ` [PATCH 6.6 008/273] sched: Dont try to catch up excess steal time Greg Kroah-Hartman
2025-02-13 14:26 ` [PATCH 6.6 009/273] lockdep: Fix upper limit for LOCKDEP_*_BITS configs Greg Kroah-Hartman
2025-02-13 14:26 ` [PATCH 6.6 010/273] x86/amd_nb: Restrict init function to AMD-based systems Greg Kroah-Hartman
2025-02-13 14:26 ` [PATCH 6.6 011/273] drm/virtio: New fence for every plane update Greg Kroah-Hartman
2025-02-13 14:26 ` [PATCH 6.6 012/273] printk: Fix signed integer overflow when defining LOG_BUF_LEN_MAX Greg Kroah-Hartman
2025-02-13 14:26 ` [PATCH 6.6 013/273] drm/connector: add mutex to protect ELD from concurrent access Greg Kroah-Hartman
2025-02-13 14:26 ` [PATCH 6.6 014/273] drm/bridge: anx7625: use eld_mutex to protect access to connector->eld Greg Kroah-Hartman
2025-02-13 14:26 ` [PATCH 6.6 015/273] drm/bridge: ite-it66121: " Greg Kroah-Hartman
2025-02-13 14:26 ` [PATCH 6.6 016/273] drm/amd/display: " Greg Kroah-Hartman
2025-02-13 14:26 ` [PATCH 6.6 017/273] drm/exynos: hdmi: " Greg Kroah-Hartman
2025-02-13 14:26 ` [PATCH 6.6 018/273] drm/radeon: " Greg Kroah-Hartman
2025-02-13 14:26 ` [PATCH 6.6 019/273] drm/sti: hdmi: " Greg Kroah-Hartman
2025-02-13 14:26 ` [PATCH 6.6 020/273] drm/vc4: " Greg Kroah-Hartman
2025-02-13 14:26 ` [PATCH 6.6 021/273] drm/amd/display: Fix Mode Cutoff in DSC Passthrough to DP2.1 Monitor Greg Kroah-Hartman
2025-02-13 14:26 ` [PATCH 6.6 022/273] drm/bridge: it6505: Change definition MAX_HDCP_DOWN_STREAM_COUNT Greg Kroah-Hartman
2025-02-13 14:26 ` [PATCH 6.6 023/273] drm/bridge: it6505: fix HDCP Bstatus check Greg Kroah-Hartman
2025-02-13 14:26 ` [PATCH 6.6 024/273] drm/bridge: it6505: fix HDCP encryption when R0 ready Greg Kroah-Hartman
2025-02-13 14:26 ` [PATCH 6.6 025/273] drm/bridge: it6505: fix HDCP CTS compare V matching Greg Kroah-Hartman
2025-02-13 14:26 ` [PATCH 6.6 026/273] drm/bridge: it6505: fix HDCP CTS KSV list wait timer Greg Kroah-Hartman
2025-02-13 14:26 ` [PATCH 6.6 027/273] safesetid: check size of policy writes Greg Kroah-Hartman
2025-02-13 14:26 ` [PATCH 6.6 028/273] wifi: rtw89: add crystal_cap check to avoid setting as overflow value Greg Kroah-Hartman
2025-02-13 14:26 ` [PATCH 6.6 029/273] tun: fix group permission check Greg Kroah-Hartman
2025-02-13 14:26 ` [PATCH 6.6 030/273] mmc: core: Respect quirk_max_rate for non-UHS SDIO card Greg Kroah-Hartman
2025-02-13 14:26 ` [PATCH 6.6 031/273] wifi: brcmsmac: add gain range check to wlc_phy_iqcal_gainparams_nphy() Greg Kroah-Hartman
2025-02-13 14:26 ` [PATCH 6.6 032/273] tomoyo: dont emit warning in tomoyo_write_control() Greg Kroah-Hartman
2025-02-13 14:26 ` [PATCH 6.6 033/273] mfd: lpc_ich: Add another Gemini Lake ISA bridge PCI device-id Greg Kroah-Hartman
2025-02-13 14:26 ` [PATCH 6.6 034/273] clk: qcom: Make GCC_8150 depend on QCOM_GDSC Greg Kroah-Hartman
2025-02-13 14:26 ` [PATCH 6.6 035/273] HID: Wacom: Add PCI Wacom device support Greg Kroah-Hartman
2025-02-13 14:26 ` [PATCH 6.6 036/273] net/mlx5: use do_aux_work for PHC overflow checks Greg Kroah-Hartman
2025-02-13 14:26 ` [PATCH 6.6 037/273] wifi: brcmfmac: Check the return value of of_property_read_string_index() Greg Kroah-Hartman
2025-02-13 14:26 ` [PATCH 6.6 038/273] wifi: iwlwifi: avoid memory leak Greg Kroah-Hartman
2025-02-13 14:26 ` [PATCH 6.6 039/273] i2c: Force ELAN06FA touchpad I2C bus freq to 100KHz Greg Kroah-Hartman
2025-02-13 14:26 ` [PATCH 6.6 040/273] APEI: GHES: Have GHES honor the panic= setting Greg Kroah-Hartman
2025-02-13 14:26 ` [PATCH 6.6 041/273] Bluetooth: MGMT: Fix slab-use-after-free Read in mgmt_remove_adv_monitor_sync Greg Kroah-Hartman
2025-02-13 14:26 ` [PATCH 6.6 042/273] net: wwan: iosm: Fix hibernation by re-binding the driver around it Greg Kroah-Hartman
2025-02-13 14:26 ` [PATCH 6.6 043/273] mmc: sdhci-msm: Correctly set the load for the regulator Greg Kroah-Hartman
2025-02-13 14:26 ` [PATCH 6.6 044/273] tipc: re-order conditions in tipc_crypto_key_rcv() Greg Kroah-Hartman
2025-02-13 14:26 ` [PATCH 6.6 045/273] selftests/net/ipsec: Fix Null pointer dereference in rtattr_pack() Greg Kroah-Hartman
2025-02-13 14:26 ` [PATCH 6.6 046/273] x86/kexec: Allocate PGD for x86_64 transition page tables separately Greg Kroah-Hartman
2025-02-13 14:26 ` [PATCH 6.6 047/273] iommu/arm-smmu-qcom: add sdm670 adreno iommu compatible Greg Kroah-Hartman
2025-02-13 14:27 ` [PATCH 6.6 048/273] iommu/arm-smmu-v3: Clean up more on probe failure Greg Kroah-Hartman
2025-02-13 14:27 ` [PATCH 6.6 049/273] platform/x86: int3472: Check for adev == NULL Greg Kroah-Hartman
2025-02-13 14:27 ` [PATCH 6.6 050/273] ASoC: soc-pcm: dont use soc_pcm_ret() on .prepare callback Greg Kroah-Hartman
2025-02-13 14:27 ` [PATCH 6.6 051/273] ASoC: amd: Add ACPI dependency to fix build error Greg Kroah-Hartman
2025-02-13 14:27 ` [PATCH 6.6 052/273] Input: allocate keycode for phone linking Greg Kroah-Hartman
2025-02-13 14:27 ` [PATCH 6.6 053/273] platform/x86: acer-wmi: Ignore AC events Greg Kroah-Hartman
2025-02-13 14:27 ` [PATCH 6.6 054/273] KVM: PPC: e500: Mark "struct page" dirty in kvmppc_e500_shadow_map() Greg Kroah-Hartman
2025-02-13 14:27 ` [PATCH 6.6 055/273] KVM: PPC: e500: Mark "struct page" pfn accessed before dropping mmu_lock Greg Kroah-Hartman
2025-02-13 14:27 ` [PATCH 6.6 056/273] KVM: PPC: e500: Use __kvm_faultin_pfn() to handle page faults Greg Kroah-Hartman
2025-02-13 14:27 ` [PATCH 6.6 057/273] KVM: e500: always restore irqs Greg Kroah-Hartman
2025-02-13 14:27 ` [PATCH 6.6 058/273] net/ncsi: Add NC-SI 1.2 Get MC MAC Address command Greg Kroah-Hartman
2025-02-13 14:27 ` [PATCH 6.6 059/273] net/ncsi: fix locking in Get MAC Address handling Greg Kroah-Hartman
2025-02-13 14:27 ` [PATCH 6.6 060/273] nvme: handle connectivity loss in nvme_set_queue_count Greg Kroah-Hartman
2025-02-13 14:27 ` [PATCH 6.6 061/273] firmware: iscsi_ibft: fix ISCSI_IBFT Kconfig entry Greg Kroah-Hartman
2025-02-13 14:27 ` [PATCH 6.6 062/273] gpu: drm_dp_cec: fix broken CEC adapter properties check Greg Kroah-Hartman
2025-02-13 14:27 ` [PATCH 6.6 063/273] ice: put Rx buffers after being done with current frame Greg Kroah-Hartman
2025-02-13 14:27 ` [PATCH 6.6 064/273] nvme-fc: use ctrl state getter Greg Kroah-Hartman
2025-02-13 14:27 ` [PATCH 6.6 065/273] net: bcmgenet: Correct overlaying of PHY and MAC Wake-on-LAN Greg Kroah-Hartman
2025-02-13 14:27 ` [PATCH 6.6 066/273] ice: Add check for devm_kzalloc() Greg Kroah-Hartman
2025-02-13 14:27 ` [PATCH 6.6 067/273] vmxnet3: Fix tx queue race condition with XDP Greg Kroah-Hartman
2025-02-13 14:27 ` [PATCH 6.6 068/273] tg3: Disable tg3 PCIe AER on system reboot Greg Kroah-Hartman
2025-02-13 14:27 ` [PATCH 6.6 069/273] udp: gso: do not drop small packets when PMTU reduces Greg Kroah-Hartman
2025-02-13 14:27 ` [PATCH 6.6 070/273] rxrpc: Fix the rxrpc_connection attend queue handling Greg Kroah-Hartman
2025-02-13 14:27 ` [PATCH 6.6 071/273] gpio: pca953x: Improve interrupt support Greg Kroah-Hartman
2025-02-13 14:27 ` [PATCH 6.6 072/273] net: atlantic: fix warning during hot unplug Greg Kroah-Hartman
2025-02-13 14:27 ` [PATCH 6.6 073/273] net: rose: lock the socket in rose_bind() Greg Kroah-Hartman
2025-02-13 14:27 ` [PATCH 6.6 074/273] x86/xen: fix xen_hypercall_hvm() to not clobber %rbx Greg Kroah-Hartman
2025-02-13 14:27 ` [PATCH 6.6 075/273] x86/xen: add FRAME_END to xen_hypercall_hvm() Greg Kroah-Hartman
2025-02-13 14:27 ` [PATCH 6.6 076/273] ACPI: property: Fix return value for nval == 0 in acpi_data_prop_read() Greg Kroah-Hartman
2025-02-13 14:27 ` [PATCH 6.6 077/273] netem: Update sch->q.qlen before qdisc_tree_reduce_backlog() Greg Kroah-Hartman
2025-02-13 14:27 ` [PATCH 6.6 078/273] tun: revert fix group permission check Greg Kroah-Hartman
2025-02-13 14:27 ` [PATCH 6.6 079/273] net: sched: Fix truncation of offloaded action statistics Greg Kroah-Hartman
2025-02-13 14:27 ` [PATCH 6.6 080/273] rxrpc: Fix call state set to not include the SERVER_SECURING state Greg Kroah-Hartman
2025-02-13 14:27 ` [PATCH 6.6 081/273] cpufreq: s3c64xx: Fix compilation warning Greg Kroah-Hartman
2025-02-13 14:27 ` [PATCH 6.6 082/273] leds: lp8860: Write full EEPROM, not only half of it Greg Kroah-Hartman
2025-02-13 14:27 ` [PATCH 6.6 083/273] ALSA: hda/realtek: Enable Mute LED on HP Laptop 14s-fq1xxx Greg Kroah-Hartman
2025-02-13 14:27 ` [PATCH 6.6 084/273] drm/modeset: Handle tiled displays in pan_display_atomic Greg Kroah-Hartman
2025-02-13 14:27 ` [PATCH 6.6 085/273] smb: client: fix order of arguments of tracepoints Greg Kroah-Hartman
2025-02-13 14:27 ` [PATCH 6.6 086/273] smb: client: change lease epoch type from unsigned int to __u16 Greg Kroah-Hartman
2025-02-13 14:27 ` [PATCH 6.6 087/273] s390/futex: Fix FUTEX_OP_ANDN implementation Greg Kroah-Hartman
2025-02-13 14:27 ` [PATCH 6.6 088/273] m68k: vga: Fix I/O defines Greg Kroah-Hartman
2025-02-13 14:27 ` [PATCH 6.6 089/273] fs/proc: do_task_stat: Fix ESP not readable during coredump Greg Kroah-Hartman
2025-02-13 14:27 ` [PATCH 6.6 090/273] binfmt_flat: Fix integer overflow bug on 32 bit systems Greg Kroah-Hartman
2025-02-13 14:27 ` [PATCH 6.6 091/273] KVM: arm64: timer: Always evaluate the need for a soft timer Greg Kroah-Hartman
2025-02-13 14:27 ` [PATCH 6.6 092/273] drm/rockchip: cdn-dp: Use drm_connector_helper_hpd_irq_event() Greg Kroah-Hartman
2025-02-13 14:27 ` Greg Kroah-Hartman
2025-02-13 14:27 ` [PATCH 6.6 093/273] arm64: dts: rockchip: increase gmac rx_delay on rk3399-puma Greg Kroah-Hartman
2025-02-13 14:27 ` [PATCH 6.6 094/273] KVM: Explicitly verify target vCPU is online in kvm_get_vcpu() Greg Kroah-Hartman
2025-02-13 14:27 ` [PATCH 6.6 095/273] KVM: s390: vsie: fix some corner-cases when grabbing vsie pages Greg Kroah-Hartman
2025-02-13 14:27 ` [PATCH 6.6 096/273] ksmbd: fix integer overflows on 32 bit systems Greg Kroah-Hartman
2025-02-13 14:27 ` [PATCH 6.6 097/273] drm/amd/pm: Mark MM activity as unsupported Greg Kroah-Hartman
2025-02-13 14:27 ` [PATCH 6.6 098/273] drm/amdkfd: only flush the validate MES contex Greg Kroah-Hartman
2025-02-13 14:27 ` [PATCH 6.6 099/273] Revert "drm/amd/display: Use HW lock mgr for PSR1" Greg Kroah-Hartman
2025-02-13 14:27 ` [PATCH 6.6 100/273] drm/i915/guc: Debug print LRC state entries only if the context is pinned Greg Kroah-Hartman
2025-02-13 14:27 ` [PATCH 6.6 101/273] drm/i915: Fix page cleanup on DMA remap failure Greg Kroah-Hartman
2025-02-13 14:27 ` [PATCH 6.6 102/273] drm/komeda: Add check for komeda_get_layer_fourcc_list() Greg Kroah-Hartman
2025-02-13 14:27 ` [PATCH 6.6 103/273] drm/i915: Drop 64bpp YUV formats from ICL+ SDR planes Greg Kroah-Hartman
2025-02-13 14:27 ` [PATCH 6.6 104/273] Bluetooth: L2CAP: handle NULL sock pointer in l2cap_sock_alloc Greg Kroah-Hartman
2025-02-13 14:27 ` [PATCH 6.6 105/273] Bluetooth: L2CAP: accept zero as a special value for MTU auto-selection Greg Kroah-Hartman
2025-02-13 14:27 ` [PATCH 6.6 106/273] clk: sunxi-ng: a100: enable MMC clock reparenting Greg Kroah-Hartman
2025-02-13 14:27 ` [PATCH 6.6 107/273] media: i2c: ds90ub960: Fix UB9702 refclk register access Greg Kroah-Hartman
2025-02-13 14:28 ` [PATCH 6.6 108/273] clk: qcom: clk-alpha-pll: fix alpha mode configuration Greg Kroah-Hartman
2025-02-13 14:28 ` [PATCH 6.6 109/273] clk: qcom: gcc-sm8550: Do not turn off PCIe GDSCs during gdsc_disable() Greg Kroah-Hartman
2025-02-13 14:28 ` [PATCH 6.6 110/273] clk: qcom: gcc-sm6350: Add missing parent_map for two clocks Greg Kroah-Hartman
2025-02-13 14:28 ` [PATCH 6.6 111/273] clk: qcom: dispcc-sm6350: Add missing parent_map for a clock Greg Kroah-Hartman
2025-02-13 14:28 ` [PATCH 6.6 112/273] clk: qcom: gcc-mdm9607: Fix cmd_rcgr offset for blsp1_uart6 rcg Greg Kroah-Hartman
2025-02-13 14:28 ` [PATCH 6.6 113/273] clk: qcom: clk-rpmh: prevent integer overflow in recalc_rate Greg Kroah-Hartman
2025-02-13 14:28 ` [PATCH 6.6 114/273] clk: mediatek: mt2701-vdec: fix conversion to mtk_clk_simple_probe Greg Kroah-Hartman
2025-02-13 14:28 ` [PATCH 6.6 115/273] clk: mediatek: mt2701-aud: " Greg Kroah-Hartman
2025-02-13 14:28 ` [PATCH 6.6 116/273] clk: mediatek: mt2701-bdp: add missing dummy clk Greg Kroah-Hartman
2025-02-13 14:28 ` [PATCH 6.6 117/273] clk: mediatek: mt2701-img: " Greg Kroah-Hartman
2025-02-13 14:28 ` [PATCH 6.6 118/273] clk: mediatek: mt2701-mm: " Greg Kroah-Hartman
2025-02-13 14:28 ` [PATCH 6.6 119/273] blk-cgroup: Fix class @block_classs subsystem refcount leakage Greg Kroah-Hartman
2025-02-13 14:28 ` [PATCH 6.6 120/273] efi: libstub: Use -std=gnu11 to fix build with GCC 15 Greg Kroah-Hartman
2025-02-13 14:28 ` [PATCH 6.6 121/273] perf bench: Fix undefined behavior in cmpworker() Greg Kroah-Hartman
2025-02-13 14:28 ` [PATCH 6.6 122/273] scsi: ufs: core: Fix the HIGH/LOW_TEMP Bit Definitions Greg Kroah-Hartman
2025-02-13 14:28 ` [PATCH 6.6 123/273] of: Correct child specifier used as input of the 2nd nexus node Greg Kroah-Hartman
2025-02-13 14:28 ` [PATCH 6.6 124/273] of: Fix of_find_node_opts_by_path() handling of alias+path+options Greg Kroah-Hartman
2025-02-13 14:28 ` [PATCH 6.6 125/273] of: reserved-memory: Fix using wrong number of cells to get property alignment Greg Kroah-Hartman
2025-02-13 14:28 ` [PATCH 6.6 126/273] HID: hid-sensor-hub: dont use stale platform-data on remove Greg Kroah-Hartman
2025-02-13 14:28 ` [PATCH 6.6 127/273] wifi: rtlwifi: rtl8821ae: Fix media status report Greg Kroah-Hartman
2025-02-13 14:28 ` [PATCH 6.6 128/273] wifi: brcmfmac: fix NULL pointer dereference in brcmf_txfinalize() Greg Kroah-Hartman
2025-02-13 14:28 ` [PATCH 6.6 129/273] wifi: mt76: mt7921u: Add VID/PID for TP-Link TXE50UH Greg Kroah-Hartman
2025-02-13 14:28 ` [PATCH 6.6 130/273] wifi: rtw88: sdio: Fix disconnection after beacon loss Greg Kroah-Hartman
2025-02-13 14:28 ` [PATCH 6.6 131/273] wifi: mt76: mt7915: add module param to select 5 GHz or 6 GHz on MT7916 Greg Kroah-Hartman
2025-02-13 14:28 ` [PATCH 6.6 132/273] usb: gadget: f_tcm: Translate error to sense Greg Kroah-Hartman
2025-02-13 14:28 ` [PATCH 6.6 133/273] usb: gadget: f_tcm: Decrement command ref count on cleanup Greg Kroah-Hartman
2025-02-13 14:28 ` [PATCH 6.6 134/273] usb: gadget: f_tcm: ep_autoconfig with fullspeed endpoint Greg Kroah-Hartman
2025-02-13 14:28 ` [PATCH 6.6 135/273] usb: gadget: f_tcm: Dont prepare BOT write request twice Greg Kroah-Hartman
2025-02-13 14:28 ` [PATCH 6.6 136/273] usbnet: ipheth: fix possible overflow in DPE length check Greg Kroah-Hartman
2025-02-13 14:28 ` [PATCH 6.6 137/273] usbnet: ipheth: use static NDP16 location in URB Greg Kroah-Hartman
2025-02-13 14:28 ` [PATCH 6.6 138/273] usbnet: ipheth: check that DPE points past NCM header Greg Kroah-Hartman
2025-02-13 14:28 ` [PATCH 6.6 139/273] usbnet: ipheth: refactor NCM datagram loop Greg Kroah-Hartman
2025-02-13 14:28 ` [PATCH 6.6 140/273] usbnet: ipheth: break up NCM header size computation Greg Kroah-Hartman
2025-02-13 14:28 ` [PATCH 6.6 141/273] usbnet: ipheth: fix DPE OoB read Greg Kroah-Hartman
2025-02-13 14:28 ` [PATCH 6.6 142/273] usbnet: ipheth: document scope of NCM implementation Greg Kroah-Hartman
2025-02-13 14:28 ` [PATCH 6.6 143/273] ASoC: acp: Support microphone from Lenovo Go S Greg Kroah-Hartman
2025-02-13 14:28 ` [PATCH 6.6 144/273] soc: qcom: socinfo: Avoid out of bounds read of serial number Greg Kroah-Hartman
2025-02-13 14:28 ` [PATCH 6.6 145/273] serial: sh-sci: Drop __initdata macro for port_cfg Greg Kroah-Hartman
2025-02-13 14:28 ` [PATCH 6.6 146/273] serial: sh-sci: Do not probe the serial port if its slot in sci_ports[] is in use Greg Kroah-Hartman
2025-02-13 14:28 ` [PATCH 6.6 147/273] MIPS: Loongson64: remove ROM Size unit in boardinfo Greg Kroah-Hartman
2025-02-13 14:28 ` [PATCH 6.6 148/273] LoongArch: Extend the maximum number of watchpoints Greg Kroah-Hartman
2025-02-13 14:28 ` [PATCH 6.6 149/273] powerpc/pseries/eeh: Fix get PE state translation Greg Kroah-Hartman
2025-02-13 14:28 ` [PATCH 6.6 150/273] dm-crypt: dont update io->sector after kcryptd_crypt_write_io_submit() Greg Kroah-Hartman
2025-02-13 14:28 ` [PATCH 6.6 151/273] dm-crypt: track tag_offset in convert_context Greg Kroah-Hartman
2025-02-13 14:28 ` [PATCH 6.6 152/273] mips/math-emu: fix emulation of the prefx instruction Greg Kroah-Hartman
2025-02-13 14:28 ` [PATCH 6.6 153/273] block: dont revert iter for -EIOCBQUEUED Greg Kroah-Hartman
2025-02-13 14:28 ` [PATCH 6.6 154/273] Revert "media: uvcvideo: Require entities to have a non-zero unique ID" Greg Kroah-Hartman
2025-02-13 14:28 ` [PATCH 6.6 155/273] ALSA: hda/realtek: Enable headset mic on Positivo C6400 Greg Kroah-Hartman
2025-02-13 14:28 ` [PATCH 6.6 156/273] ALSA: hda: Fix headset detection failure due to unstable sort Greg Kroah-Hartman
2025-02-13 14:28 ` [PATCH 6.6 157/273] arm64: tegra: Fix Tegra234 PCIe interrupt-map Greg Kroah-Hartman
2025-02-13 14:28 ` [PATCH 6.6 158/273] PCI: Avoid putting some root ports into D3 on TUXEDO Sirius Gen1 Greg Kroah-Hartman
2025-02-13 14:28 ` [PATCH 6.6 159/273] PCI: endpoint: Finish virtual EP removal in pci_epf_remove_vepf() Greg Kroah-Hartman
2025-02-13 14:28 ` [PATCH 6.6 160/273] nvme-pci: Add TUXEDO InfinityFlex to Samsung sleep quirk Greg Kroah-Hartman
2025-02-13 14:28 ` [PATCH 6.6 161/273] nvme-pci: Add TUXEDO IBP Gen9 " Greg Kroah-Hartman
2025-02-13 14:28 ` [PATCH 6.6 162/273] scsi: st: Dont set pos_unknown just after device recognition Greg Kroah-Hartman
2025-02-13 14:28 ` [PATCH 6.6 163/273] scsi: qla2xxx: Move FCE Trace buffer allocation to user control Greg Kroah-Hartman
2025-02-13 14:28 ` [PATCH 6.6 164/273] scsi: ufs: qcom: Fix crypto key eviction Greg Kroah-Hartman
2025-02-13 14:28 ` [PATCH 6.6 165/273] scsi: storvsc: Set correct data length for sending SCSI command without payload Greg Kroah-Hartman
2025-02-13 14:28 ` [PATCH 6.6 166/273] kbuild: Move -Wenum-enum-conversion to W=2 Greg Kroah-Hartman
2025-02-13 14:28 ` [PATCH 6.6 167/273] rust: init: use explicit ABI to clean warning in future compilers Greg Kroah-Hartman
2025-02-13 14:29 ` [PATCH 6.6 168/273] x86/boot: Use -std=gnu11 to fix build with GCC 15 Greg Kroah-Hartman
2025-02-13 14:29 ` [PATCH 6.6 169/273] ubi: Add a check for ubi_num Greg Kroah-Hartman
2025-02-13 14:29 ` [PATCH 6.6 170/273] ARM: dts: dra7: Add bus_dma_limit for l4 cfg bus Greg Kroah-Hartman
2025-02-13 14:29 ` [PATCH 6.6 171/273] ARM: dts: ti/omap: gta04: fix pm issues caused by spi module Greg Kroah-Hartman
2025-02-13 14:29 ` [PATCH 6.6 172/273] arm64: dts: qcom: sm6115: Fix MPSS memory length Greg Kroah-Hartman
2025-02-13 14:29 ` [PATCH 6.6 173/273] arm64: dts: qcom: sm6115: Fix CDSP " Greg Kroah-Hartman
2025-02-13 14:29 ` [PATCH 6.6 174/273] arm64: dts: qcom: sm6115: Fix ADSP memory base and length Greg Kroah-Hartman
2025-02-13 14:29 ` [PATCH 6.6 175/273] arm64: dts: qcom: sm6350: Fix ADSP memory length Greg Kroah-Hartman
2025-02-13 14:29 ` [PATCH 6.6 176/273] arm64: dts: qcom: sm6350: Fix MPSS " Greg Kroah-Hartman
2025-02-13 14:29 ` [PATCH 6.6 177/273] arm64: dts: qcom: sm6350: Fix uart1 interconnect path Greg Kroah-Hartman
2025-02-13 14:29 ` [PATCH 6.6 178/273] arm64: dts: qcom: sm6375: Fix ADSP memory length Greg Kroah-Hartman
2025-02-13 14:29 ` [PATCH 6.6 179/273] arm64: dts: qcom: sm6375: Fix CDSP memory base and length Greg Kroah-Hartman
2025-02-13 14:29 ` [PATCH 6.6 180/273] arm64: dts: qcom: sm6375: Fix MPSS " Greg Kroah-Hartman
2025-02-13 14:29 ` [PATCH 6.6 181/273] arm64: dts: qcom: sm8350: Fix ADSP " Greg Kroah-Hartman
2025-02-13 14:29 ` [PATCH 6.6 182/273] arm64: dts: qcom: sm8350: Fix CDSP " Greg Kroah-Hartman
2025-02-13 14:29 ` [PATCH 6.6 183/273] arm64: dts: qcom: sm8350: Fix MPSS memory length Greg Kroah-Hartman
2025-02-13 14:29 ` [PATCH 6.6 184/273] arm64: dts: qcom: sm8450: Fix CDSP " Greg Kroah-Hartman
2025-02-13 14:29 ` [PATCH 6.6 185/273] arm64: dts: qcom: sm8450: Fix MPSS " Greg Kroah-Hartman
2025-02-13 14:29 ` [PATCH 6.6 186/273] arm64: dts: qcom: sm8550: Fix CDSP " Greg Kroah-Hartman
2025-02-13 14:29 ` [PATCH 6.6 187/273] arm64: dts: qcom: sm8550: Fix MPSS " Greg Kroah-Hartman
2025-02-13 14:29 ` [PATCH 6.6 188/273] arm64: dts: qcom: sm8550: correct MDSS interconnects Greg Kroah-Hartman
2025-02-13 14:29 ` [PATCH 6.6 189/273] crypto: qce - fix priority to be less than ARMv8 CE Greg Kroah-Hartman
2025-02-13 14:29 ` [PATCH 6.6 190/273] arm64: tegra: Fix typo in Tegra234 dce-fabric compatible Greg Kroah-Hartman
2025-02-13 14:29 ` [PATCH 6.6 191/273] arm64: tegra: Disable Tegra234 sce-fabric node Greg Kroah-Hartman
2025-02-13 14:29 ` [PATCH 6.6 192/273] pwm: microchip-core: fix incorrect comparison with max period Greg Kroah-Hartman
2025-02-13 14:29 ` [PATCH 6.6 193/273] xfs: Propagate errors from xfs_reflink_cancel_cow_range in xfs_dax_write_iomap_end Greg Kroah-Hartman
2025-02-13 14:29 ` [PATCH 6.6 194/273] xfs: Add error handling for xfs_reflink_cancel_cow_range Greg Kroah-Hartman
2025-02-13 14:29 ` [PATCH 6.6 195/273] ACPI: PRM: Remove unnecessary strict handler address checks Greg Kroah-Hartman
2025-02-13 14:29 ` [PATCH 6.6 196/273] tpm: Change to kvalloc() in eventlog/acpi.c Greg Kroah-Hartman
2025-02-13 14:29 ` [PATCH 6.6 197/273] rv: Reset per-task monitors also for idle tasks Greg Kroah-Hartman
2025-02-13 14:29 ` [PATCH 6.6 198/273] kfence: skip __GFP_THISNODE allocations on NUMA systems Greg Kroah-Hartman
2025-02-13 14:29 ` [PATCH 6.6 199/273] media: ccs: Clean up parsed CCS static data on parse failure Greg Kroah-Hartman
2025-02-13 14:29 ` [PATCH 6.6 200/273] iio: light: as73211: fix channel handling in only-color triggered buffer Greg Kroah-Hartman
2025-02-13 14:29 ` [PATCH 6.6 201/273] soc: mediatek: mtk-devapc: Fix leaking IO map on error paths Greg Kroah-Hartman
2025-02-13 14:29 ` [PATCH 6.6 202/273] soc: qcom: smem_state: fix missing of_node_put in error path Greg Kroah-Hartman
2025-02-13 14:29 ` [PATCH 6.6 203/273] media: mmp: Bring back registration of the device Greg Kroah-Hartman
2025-02-13 14:29 ` [PATCH 6.6 204/273] media: mc: fix endpoint iteration Greg Kroah-Hartman
2025-02-13 14:29 ` [PATCH 6.6 205/273] media: imx296: Add standby delay during probe Greg Kroah-Hartman
2025-02-13 14:29 ` [PATCH 6.6 206/273] media: ov5640: fix get_light_freq on auto Greg Kroah-Hartman
2025-02-13 14:29 ` [PATCH 6.6 207/273] media: ccs: Fix CCS static data parsing for large block sizes Greg Kroah-Hartman
2025-02-13 14:29 ` [PATCH 6.6 208/273] media: ccs: Fix cleanup order in ccs_probe() Greg Kroah-Hartman
2025-02-13 14:29 ` [PATCH 6.6 209/273] media: i2c: ds90ub9x3: Fix extra fwnode_handle_put() Greg Kroah-Hartman
2025-02-13 14:29 ` [PATCH 6.6 210/273] media: i2c: ds90ub960: Fix use of non-existing registers on UB9702 Greg Kroah-Hartman
2025-02-13 14:29 ` [PATCH 6.6 211/273] media: i2c: ds90ub960: Fix UB9702 VC map Greg Kroah-Hartman
2025-02-13 14:29 ` [PATCH 6.6 212/273] media: i2c: ds90ub960: Fix logging SP & EQ status only for UB9702 Greg Kroah-Hartman
2025-02-13 14:29 ` [PATCH 6.6 213/273] media: uvcvideo: Fix crash during unbind if gpio unit is in use Greg Kroah-Hartman
2025-02-13 14:29 ` [PATCH 6.6 214/273] media: uvcvideo: Fix event flags in uvc_ctrl_send_events Greg Kroah-Hartman
2025-02-13 14:29 ` [PATCH 6.6 215/273] media: uvcvideo: Support partial control reads Greg Kroah-Hartman
2025-02-13 14:29 ` [PATCH 6.6 216/273] media: uvcvideo: Remove redundant NULL assignment Greg Kroah-Hartman
2025-02-13 14:29 ` [PATCH 6.6 217/273] mm: kmemleak: fix upper boundary check for physical address objects Greg Kroah-Hartman
2025-02-13 14:29 ` [PATCH 6.6 218/273] ata: libata-sff: Ensure that we cannot write outside the allocated buffer Greg Kroah-Hartman
2025-02-13 14:29 ` [PATCH 6.6 219/273] crypto: qce - fix goto jump in error path Greg Kroah-Hartman
2025-02-13 14:29 ` [PATCH 6.6 220/273] crypto: qce - unregister previously registered algos " Greg Kroah-Hartman
2025-02-13 14:29 ` [PATCH 6.6 221/273] nvmem: qcom-spmi-sdam: Set size in struct nvmem_config Greg Kroah-Hartman
2025-02-13 14:29 ` [PATCH 6.6 222/273] nvmem: core: improve range check for nvmem_cell_write() Greg Kroah-Hartman
2025-02-13 14:29 ` [PATCH 6.6 223/273] nvmem: imx-ocotp-ele: simplify read beyond device check Greg Kroah-Hartman
2025-02-13 14:29 ` [PATCH 6.6 224/273] nvmem: imx-ocotp-ele: fix reading from non zero offset Greg Kroah-Hartman
2025-02-13 14:29 ` [PATCH 6.6 225/273] nvmem: imx-ocotp-ele: set word length to 1 Greg Kroah-Hartman
2025-02-13 14:29 ` [PATCH 6.6 226/273] io_uring: fix multishots with selected buffers Greg Kroah-Hartman
2025-02-13 14:29 ` [PATCH 6.6 227/273] io_uring/net: dont retry connect operation on EPOLLERR Greg Kroah-Hartman
2025-02-13 14:30 ` [PATCH 6.6 228/273] io_uring: fix io_req_prep_async with provided buffers Greg Kroah-Hartman
2025-02-13 14:30 ` [PATCH 6.6 229/273] io_uring/rw: commit provided buffer state on async Greg Kroah-Hartman
2025-02-13 14:30 ` [PATCH 6.6 230/273] vfio/platform: check the bounds of read/write syscalls Greg Kroah-Hartman
2025-02-13 14:30 ` [PATCH 6.6 231/273] selftests: mptcp: connect: -f: no reconnect Greg Kroah-Hartman
2025-02-13 14:30 ` [PATCH 6.6 232/273] pnfs/flexfiles: retry getting layout segment for reads Greg Kroah-Hartman
2025-02-13 14:30 ` [PATCH 6.6 233/273] ocfs2: fix incorrect CPU endianness conversion causing mount failure Greg Kroah-Hartman
2025-02-13 14:30 ` [PATCH 6.6 234/273] ocfs2: handle a symlink read error correctly Greg Kroah-Hartman
2025-02-13 14:30 ` [PATCH 6.6 235/273] nilfs2: fix possible int overflows in nilfs_fiemap() Greg Kroah-Hartman
2025-02-13 14:30 ` [PATCH 6.6 236/273] mailbox: tegra-hsp: Clear mailbox before using message Greg Kroah-Hartman
2025-02-13 14:30 ` [PATCH 6.6 237/273] NFC: nci: Add bounds checking in nci_hci_create_pipe() Greg Kroah-Hartman
2025-02-13 14:30 ` [PATCH 6.6 238/273] i3c: master: Fix missing ret assignment in set_speed() Greg Kroah-Hartman
2025-02-13 14:30 ` [PATCH 6.6 239/273] irqchip/apple-aic: Only handle PMC interrupt as FIQ when configured so Greg Kroah-Hartman
2025-02-13 14:30 ` [PATCH 6.6 240/273] mtd: onenand: Fix uninitialized retlen in do_otp_read() Greg Kroah-Hartman
2025-02-13 14:30 ` [PATCH 6.6 241/273] misc: misc_minor_alloc to use ida for all dynamic/misc dynamic minors Greg Kroah-Hartman
2025-02-13 14:30 ` [PATCH 6.6 242/273] misc: fastrpc: Deregister device nodes properly in error scenarios Greg Kroah-Hartman
2025-02-13 14:30 ` [PATCH 6.6 243/273] misc: fastrpc: Fix registered buffer page address Greg Kroah-Hartman
2025-02-13 14:30 ` [PATCH 6.6 244/273] misc: fastrpc: Fix copy buffer page size Greg Kroah-Hartman
2025-02-13 14:30 ` [PATCH 6.6 245/273] net/ncsi: wait for the last response to Deselect Package before configuring channel Greg Kroah-Hartman
2025-02-13 14:30 ` [PATCH 6.6 246/273] net: phy: c45-tjaxx: add delay between MDIO write and read in soft_reset Greg Kroah-Hartman
2025-02-13 14:30 ` [PATCH 6.6 247/273] maple_tree: simplify split calculation Greg Kroah-Hartman
2025-02-13 14:30 ` [PATCH 6.6 248/273] scripts/gdb: fix aarch64 userspace detection in get_current_task Greg Kroah-Hartman
2025-02-13 14:30 ` [PATCH 6.6 249/273] tracing/osnoise: Fix resetting of tracepoints Greg Kroah-Hartman
2025-02-13 14:30 ` [PATCH 6.6 250/273] rtla/osnoise: Distinguish missing workload option Greg Kroah-Hartman
2025-02-13 14:30 ` [PATCH 6.6 251/273] rtla/timerlat_hist: Set OSNOISE_WORKLOAD for kernel threads Greg Kroah-Hartman
2025-02-13 14:30 ` [PATCH 6.6 252/273] rtla/timerlat_top: " Greg Kroah-Hartman
2025-02-13 14:30 ` [PATCH 6.6 253/273] rtla: Add trace_instance_stop Greg Kroah-Hartman
2025-02-13 14:30 ` [PATCH 6.6 254/273] rtla/timerlat_hist: Stop timerlat tracer on signal Greg Kroah-Hartman
2025-02-13 14:30 ` [PATCH 6.6 255/273] rtla/timerlat_top: " Greg Kroah-Hartman
2025-02-13 14:30 ` [PATCH 6.6 256/273] pinctrl: samsung: fix fwnode refcount cleanup if platform_get_irq_optional() fails Greg Kroah-Hartman
2025-02-13 14:30 ` [PATCH 6.6 257/273] ptp: Ensure info->enable callback is always set Greg Kroah-Hartman
2025-02-13 14:30 ` [PATCH 6.6 258/273] rtc: zynqmp: Fix optional clock name property Greg Kroah-Hartman
2025-02-13 14:30 ` [PATCH 6.6 259/273] MIPS: ftrace: Declare ftrace_get_parent_ra_addr() as static Greg Kroah-Hartman
2025-02-13 14:30 ` [PATCH 6.6 260/273] spi: atmel-quadspi: Create `atmel_qspi_ops` to support newer SoC families Greg Kroah-Hartman
2025-02-13 14:30 ` [PATCH 6.6 261/273] spi: atmel-qspi: Memory barriers after memory-mapped I/O Greg Kroah-Hartman
2025-02-13 14:30 ` [PATCH 6.6 262/273] net/ncsi: use dev_set_mac_address() for Get MC MAC Address handling Greg Kroah-Hartman
2025-02-13 14:30 ` [PATCH 6.6 263/273] ocfs2: check dir i_size in ocfs2_find_entry Greg Kroah-Hartman
2025-02-13 14:30 ` [PATCH 6.6 264/273] Revert "btrfs: avoid monopolizing a core when activating a swap file" Greg Kroah-Hartman
2025-02-13 14:30 ` [PATCH 6.6 265/273] btrfs: avoid monopolizing a core when activating a swap file Greg Kroah-Hartman
2025-02-13 14:30 ` [PATCH 6.6 266/273] cachefiles: Fix NULL pointer dereference in object->file Greg Kroah-Hartman
2025-02-13 14:30 ` [PATCH 6.6 267/273] mptcp: pm: only set fullmesh for subflow endp Greg Kroah-Hartman
2025-02-13 14:30 ` [PATCH 6.6 268/273] mptcp: prevent excessive coalescing on receive Greg Kroah-Hartman
2025-02-13 14:30 ` [PATCH 6.6 269/273] selftests: mptcp: join: fix AF_INET6 variable Greg Kroah-Hartman
2025-02-13 14:30 ` [PATCH 6.6 270/273] x86/mm/ident_map: Use gbpages only where full GB page should be mapped Greg Kroah-Hartman
2025-02-13 14:30 ` [PATCH 6.6 271/273] tty: xilinx_uartps: split sysrq handling Greg Kroah-Hartman
2025-02-13 14:30 ` [PATCH 6.6 272/273] KVM: x86: Make x2APIC ID 100% readonly Greg Kroah-Hartman
2025-02-13 14:30 ` [PATCH 6.6 273/273] KVM: x86: Re-split x2APIC ICR into ICR+ICR2 for AMD (x2AVIC) Greg Kroah-Hartman
2025-02-13 18:41 ` [PATCH 6.6 000/273] 6.6.78-rc1 review SeongJae Park
2025-02-13 19:47 ` Florian Fainelli
2025-02-14 0:00 ` Mark Brown
2025-02-14 0:47 ` [PATCH 6.6] " Hardik Garg
2025-02-14 0:47 ` [PATCH 6.6 000/273] " Peter Schneider
2025-02-14 6:25 ` Ron Economos
2025-02-14 9:45 ` Jon Hunter
2025-02-14 10:14 ` Harshit Mogalapalli
2025-02-14 10:26 ` Achill Gilgenast
2025-02-15 12:12 ` Naresh Kamboju
2025-02-17 5:18 ` Miguel Ojeda
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=20250213142407.456235386@linuxfoundation.org \
--to=gregkh@linuxfoundation.org \
--cc=dsterba@suse.com \
--cc=dvyukov@google.com \
--cc=fdmanana@suse.com \
--cc=johannes.thumshirn@wdc.com \
--cc=patches@lists.linux.dev \
--cc=sashal@kernel.org \
--cc=stable@vger.kernel.org \
--cc=syzbot+45212e9d87a98c3f5b42@syzkaller.appspotmail.com \
--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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.