From: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
To: stable@vger.kernel.org
Cc: "Greg Kroah-Hartman" <gregkh@linuxfoundation.org>,
patches@lists.linux.dev, "Håkon Bugge" <haakon.bugge@oracle.com>,
"Somasundaram Krishnasamy" <somasundaram.krishnasamy@oracle.com>,
"Gerd Rausch" <gerd.rausch@oracle.com>,
"Allison Henderson" <achender@kernel.org>,
"Jakub Kicinski" <kuba@kernel.org>,
"Sasha Levin" <sashal@kernel.org>
Subject: [PATCH 7.0 0198/1146] net/rds: Optimize rds_ib_laddr_check
Date: Wed, 20 May 2026 18:07:28 +0200 [thread overview]
Message-ID: <20260520162152.754780951@linuxfoundation.org> (raw)
In-Reply-To: <20260520162148.390695140@linuxfoundation.org>
7.0-stable review patch. If anyone has any objections, please let me know.
------------------
From: Håkon Bugge <haakon.bugge@oracle.com>
[ Upstream commit 236f718ac885965fa886440b9898dfae185c9733 ]
rds_ib_laddr_check() creates a CM_ID and attempts to bind the address
in question to it. This in order to qualify the allegedly local
address as a usable IB/RoCE address.
In the field, ExaWatcher runs rds-ping to all ports in the fabric from
all local ports. This using all active ToS'es. In a full rack system,
we have 14 cell servers and eight db servers. Typically, 6 ToS'es are
used. This implies 528 rds-ping invocations per ExaWatcher's "RDSinfo"
interval.
Adding to this, each rds-ping invocation creates eight sockets and
binds the local address to them:
socket(AF_RDS, SOCK_SEQPACKET, 0) = 3
bind(3, {sa_family=AF_INET, sin_port=htons(0),
sin_addr=inet_addr("192.168.36.2")}, 16) = 0
socket(AF_RDS, SOCK_SEQPACKET, 0) = 4
bind(4, {sa_family=AF_INET, sin_port=htons(0),
sin_addr=inet_addr("192.168.36.2")}, 16) = 0
socket(AF_RDS, SOCK_SEQPACKET, 0) = 5
bind(5, {sa_family=AF_INET, sin_port=htons(0),
sin_addr=inet_addr("192.168.36.2")}, 16) = 0
socket(AF_RDS, SOCK_SEQPACKET, 0) = 6
bind(6, {sa_family=AF_INET, sin_port=htons(0),
sin_addr=inet_addr("192.168.36.2")}, 16) = 0
socket(AF_RDS, SOCK_SEQPACKET, 0) = 7
bind(7, {sa_family=AF_INET, sin_port=htons(0),
sin_addr=inet_addr("192.168.36.2")}, 16) = 0
socket(AF_RDS, SOCK_SEQPACKET, 0) = 8
bind(8, {sa_family=AF_INET, sin_port=htons(0),
sin_addr=inet_addr("192.168.36.2")}, 16) = 0
socket(AF_RDS, SOCK_SEQPACKET, 0) = 9
bind(9, {sa_family=AF_INET, sin_port=htons(0),
sin_addr=inet_addr("192.168.36.2")}, 16) = 0
socket(AF_RDS, SOCK_SEQPACKET, 0) = 10
bind(10, {sa_family=AF_INET, sin_port=htons(0),
sin_addr=inet_addr("192.168.36.2")}, 16) = 0
So, at every interval ExaWatcher executes rds-ping's, 4224 CM_IDs are
allocated, considering this full-rack system. After the a CM_ID has
been allocated, rdma_bind_addr() is called, with the port number being
zero. This implies that the CMA will attempt to search for an un-used
ephemeral port. Simplified, the algorithm is to start at a random
position in the available port space, and then if needed, iterate
until an un-used port is found.
The book-keeping of used ports uses the idr system, which again uses
slab to allocate new struct idr_layer's. The size is 2092 bytes and
slab tries to reduce the wasted space. Hence, it chooses an order:3
allocation, for which 15 idr_layer structs will fit and only 1388
bytes are wasted per the 32KiB order:3 chunk.
Although this order:3 allocation seems like a good space/speed
trade-off, it does not resonate well with how it used by the CMA. The
combination of the randomized starting point in the port space (which
has close to zero spatial locality) and the close proximity in time of
the 4224 invocations of the rds-ping's, creates a memory hog for
order:3 allocations.
These costly allocations may need reclaims and/or compaction. At
worst, they may fail and produce a stack trace such as (from uek4):
[<ffffffff811a72d5>] __inc_zone_page_state+0x35/0x40
[<ffffffff811c2e97>] page_add_file_rmap+0x57/0x60
[<ffffffffa37ca1df>] remove_migration_pte+0x3f/0x3c0 [ksplice_6cn872bt_vmlinux_new]
[<ffffffff811c3de8>] rmap_walk+0xd8/0x340
[<ffffffff811e8860>] remove_migration_ptes+0x40/0x50
[<ffffffff811ea83c>] migrate_pages+0x3ec/0x890
[<ffffffff811afa0d>] compact_zone+0x32d/0x9a0
[<ffffffff811b00ed>] compact_zone_order+0x6d/0x90
[<ffffffff811b03b2>] try_to_compact_pages+0x102/0x270
[<ffffffff81190e56>] __alloc_pages_direct_compact+0x46/0x100
[<ffffffff8119165b>] __alloc_pages_nodemask+0x74b/0xaa0
[<ffffffff811d8411>] alloc_pages_current+0x91/0x110
[<ffffffff811e3b0b>] new_slab+0x38b/0x480
[<ffffffffa41323c7>] __slab_alloc+0x3b7/0x4a0 [ksplice_s0dk66a8_vmlinux_new]
[<ffffffff811e42ab>] kmem_cache_alloc+0x1fb/0x250
[<ffffffff8131fdd6>] idr_layer_alloc+0x36/0x90
[<ffffffff8132029c>] idr_get_empty_slot+0x28c/0x3d0
[<ffffffff813204ad>] idr_alloc+0x4d/0xf0
[<ffffffffa051727d>] cma_alloc_port+0x4d/0xa0 [rdma_cm]
[<ffffffffa0517cbe>] rdma_bind_addr+0x2ae/0x5b0 [rdma_cm]
[<ffffffffa09d8083>] rds_ib_laddr_check+0x83/0x2c0 [ksplice_6l2xst5i_rds_rdma_new]
[<ffffffffa05f892b>] rds_trans_get_preferred+0x5b/0xa0 [rds]
[<ffffffffa05f09f2>] rds_bind+0x212/0x280 [rds]
[<ffffffff815b4016>] SYSC_bind+0xe6/0x120
[<ffffffff815b4d3e>] SyS_bind+0xe/0x10
[<ffffffff816b031a>] system_call_fastpath+0x18/0xd4
To avoid these excessive calls to rdma_bind_addr(), we optimize
rds_ib_laddr_check() by simply checking if the address in question has
been used before. The rds_rdma module keeps track of addresses
associated with IB devices, and the function rds_ib_get_device() is
used to determine if the address already has been qualified as a valid
local address. If not found, we call the legacy rds_ib_laddr_check(),
now renamed to rds_ib_laddr_check_cm().
Signed-off-by: Håkon Bugge <haakon.bugge@oracle.com>
Signed-off-by: Somasundaram Krishnasamy <somasundaram.krishnasamy@oracle.com>
Signed-off-by: Gerd Rausch <gerd.rausch@oracle.com>
Signed-off-by: Allison Henderson <achender@kernel.org>
Link: https://patch.msgid.link/20260408080420.540032-2-achender@kernel.org
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
Stable-dep-of: ebf71dd4aff4 ("net/rds: Restrict use of RDS/IB to the initial network namespace")
Signed-off-by: Sasha Levin <sashal@kernel.org>
---
net/rds/ib.c | 20 ++++++++++++++++++--
net/rds/ib.h | 1 +
net/rds/ib_rdma.c | 2 +-
3 files changed, 20 insertions(+), 3 deletions(-)
diff --git a/net/rds/ib.c b/net/rds/ib.c
index ac6affa33ce75..412ff61e74fac 100644
--- a/net/rds/ib.c
+++ b/net/rds/ib.c
@@ -401,8 +401,8 @@ static void rds6_ib_ic_info(struct socket *sock, unsigned int len,
* allowed to influence which paths have priority. We could call userspace
* asserting this policy "routing".
*/
-static int rds_ib_laddr_check(struct net *net, const struct in6_addr *addr,
- __u32 scope_id)
+static int rds_ib_laddr_check_cm(struct net *net, const struct in6_addr *addr,
+ __u32 scope_id)
{
int ret;
struct rdma_cm_id *cm_id;
@@ -487,6 +487,22 @@ static int rds_ib_laddr_check(struct net *net, const struct in6_addr *addr,
return ret;
}
+static int rds_ib_laddr_check(struct net *net, const struct in6_addr *addr,
+ __u32 scope_id)
+{
+ struct rds_ib_device *rds_ibdev = NULL;
+
+ if (ipv6_addr_v4mapped(addr)) {
+ rds_ibdev = rds_ib_get_device(addr->s6_addr32[3]);
+ if (rds_ibdev) {
+ rds_ib_dev_put(rds_ibdev);
+ return 0;
+ }
+ }
+
+ return rds_ib_laddr_check_cm(net, addr, scope_id);
+}
+
static void rds_ib_unregister_client(void)
{
ib_unregister_client(&rds_ib_client);
diff --git a/net/rds/ib.h b/net/rds/ib.h
index 8ef3178ed4d61..5ff346a1e8baa 100644
--- a/net/rds/ib.h
+++ b/net/rds/ib.h
@@ -381,6 +381,7 @@ void rds_ib_cm_connect_complete(struct rds_connection *conn,
__rds_ib_conn_error(conn, KERN_WARNING "RDS/IB: " fmt)
/* ib_rdma.c */
+struct rds_ib_device *rds_ib_get_device(__be32 ipaddr);
int rds_ib_update_ipaddr(struct rds_ib_device *rds_ibdev,
struct in6_addr *ipaddr);
void rds_ib_add_conn(struct rds_ib_device *rds_ibdev, struct rds_connection *conn);
diff --git a/net/rds/ib_rdma.c b/net/rds/ib_rdma.c
index 2cfec252eeac2..9594ea245f7fe 100644
--- a/net/rds/ib_rdma.c
+++ b/net/rds/ib_rdma.c
@@ -43,7 +43,7 @@ struct workqueue_struct *rds_ib_mr_wq;
static void rds_ib_odp_mr_worker(struct work_struct *work);
-static struct rds_ib_device *rds_ib_get_device(__be32 ipaddr)
+struct rds_ib_device *rds_ib_get_device(__be32 ipaddr)
{
struct rds_ib_device *rds_ibdev;
struct rds_ib_ipaddr *i_ipaddr;
--
2.53.0
next prev parent reply other threads:[~2026-05-20 16:34 UTC|newest]
Thread overview: 1157+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-05-20 16:04 [PATCH 7.0 0000/1146] 7.0.10-rc1 review Greg Kroah-Hartman
2026-05-20 16:04 ` [PATCH 7.0 0001/1146] blk-cgroup: wait for blkcg cleanup before initializing new disk Greg Kroah-Hartman
2026-05-20 16:04 ` [PATCH 7.0 0002/1146] md: suppress spurious superblock update error message for dm-raid Greg Kroah-Hartman
2026-05-20 16:04 ` [PATCH 7.0 0003/1146] fs/omfs: reject s_sys_blocksize smaller than OMFS_DIR_START Greg Kroah-Hartman
2026-05-20 16:04 ` [PATCH 7.0 0004/1146] fs/mbcache: cancel shrink work before destroying the cache Greg Kroah-Hartman
2026-05-20 16:04 ` [PATCH 7.0 0005/1146] md/raid1: fix the comparing region of interval tree Greg Kroah-Hartman
2026-05-20 16:04 ` [PATCH 7.0 0006/1146] fs: fix archiecture-specific compat_ftruncate64 Greg Kroah-Hartman
2026-05-20 16:04 ` [PATCH 7.0 0007/1146] drbd: Balance RCU calls in drbd_adm_dump_devices() Greg Kroah-Hartman
2026-05-20 16:04 ` [PATCH 7.0 0008/1146] loop: fix partition scan race between udev and loop_reread_partitions() Greg Kroah-Hartman
2026-05-20 16:04 ` [PATCH 7.0 0009/1146] block: fix zones_cond memory leak on zone revalidation error paths Greg Kroah-Hartman
2026-05-20 16:04 ` [PATCH 7.0 0010/1146] nilfs2: reject zero bd_oblocknr in nilfs_ioctl_mark_blocks_dirty() Greg Kroah-Hartman
2026-05-20 16:04 ` [PATCH 7.0 0011/1146] blk-cgroup: fix disk reference leak in blkcg_maybe_throttle_current() Greg Kroah-Hartman
2026-05-20 16:04 ` [PATCH 7.0 0012/1146] pstore/ram: fix resource leak when ioremap() fails Greg Kroah-Hartman
2026-05-20 16:04 ` [PATCH 7.0 0013/1146] erofs: verify metadata accesses for file-backed mounts Greg Kroah-Hartman
2026-05-20 16:04 ` [PATCH 7.0 0014/1146] erofs: include the trailing NUL in FS_IOC_GETFSLABEL Greg Kroah-Hartman
2026-05-20 16:04 ` [PATCH 7.0 0015/1146] md: fix array_state=clear sysfs deadlock Greg Kroah-Hartman
2026-05-20 16:04 ` [PATCH 7.0 0016/1146] ublk: reset per-IO canceled flag on each fetch Greg Kroah-Hartman
2026-05-20 16:04 ` [PATCH 7.0 0017/1146] blk-wbt: remove WARN_ON_ONCE from wbt_init_enable_default() Greg Kroah-Hartman
2026-05-20 16:04 ` [PATCH 7.0 0018/1146] erofs: handle 48-bit blocks/uniaddr for extra devices Greg Kroah-Hartman
2026-05-20 16:04 ` [PATCH 7.0 0019/1146] md: remove unused static md_wq workqueue Greg Kroah-Hartman
2026-05-20 16:04 ` [PATCH 7.0 0020/1146] md: wake raid456 reshape waiters before suspend Greg Kroah-Hartman
2026-05-20 16:04 ` [PATCH 7.0 0021/1146] dcache: permit dynamic_dname()s up to NAME_MAX Greg Kroah-Hartman
2026-05-20 16:04 ` [PATCH 7.0 0022/1146] btrfs: fix the inline compressed extent check in inode_need_compress() Greg Kroah-Hartman
2026-05-20 16:04 ` [PATCH 7.0 0023/1146] btrfs: fix deadlock between reflink and transaction commit when using flushoncommit Greg Kroah-Hartman
2026-05-20 16:04 ` [PATCH 7.0 0024/1146] btrfs: do not reject a valid running dev-replace Greg Kroah-Hartman
2026-05-20 16:04 ` [PATCH 7.0 0025/1146] OPP: debugfs: Use performance level if available to distinguish between rates Greg Kroah-Hartman
2026-05-20 16:04 ` [PATCH 7.0 0026/1146] OPP: Move break out of scoped_guard in dev_pm_opp_xlate_required_opp() Greg Kroah-Hartman
2026-05-20 16:04 ` [PATCH 7.0 0027/1146] ACPI: x86: cmos_rtc: Clean up address space handler driver Greg Kroah-Hartman
2026-05-20 16:04 ` [PATCH 7.0 0028/1146] ACPI: x86: cmos_rtc: Improve coordination with ACPI TAD driver Greg Kroah-Hartman
2026-05-20 16:04 ` [PATCH 7.0 0029/1146] devres: fix missing node debug info in devm_krealloc() Greg Kroah-Hartman
2026-05-20 16:04 ` [PATCH 7.0 0030/1146] thermal/drivers/spear: Fix error condition for reading st,thermal-flags Greg Kroah-Hartman
2026-05-20 16:04 ` [PATCH 7.0 0031/1146] debugfs: check for NULL pointer in debugfs_create_str() Greg Kroah-Hartman
2026-05-20 16:04 ` [PATCH 7.0 0032/1146] debugfs: fix placement of EXPORT_SYMBOL_GPL for debugfs_create_str() Greg Kroah-Hartman
2026-05-20 16:04 ` [PATCH 7.0 0033/1146] soundwire: debugfs: initialize firmware_file to empty string Greg Kroah-Hartman
2026-05-20 16:04 ` [PATCH 7.0 0034/1146] amd-pstate: Fix memory leak in amd_pstate_epp_cpu_init() Greg Kroah-Hartman
2026-05-20 16:04 ` [PATCH 7.0 0035/1146] amd-pstate: Update cppc_req_cached in fast_switch case Greg Kroah-Hartman
2026-05-20 16:04 ` [PATCH 7.0 0036/1146] cpufreq: Pass the policy to cpufreq_driver->adjust_perf() Greg Kroah-Hartman
2026-05-20 16:04 ` [PATCH 7.0 0037/1146] PCI: use generic driver_override infrastructure Greg Kroah-Hartman
2026-05-20 16:04 ` [PATCH 7.0 0038/1146] platform/wmi: " Greg Kroah-Hartman
2026-05-20 16:04 ` [PATCH 7.0 0039/1146] vdpa: " Greg Kroah-Hartman
2026-05-20 16:04 ` [PATCH 7.0 0040/1146] s390/cio: " Greg Kroah-Hartman
2026-05-20 16:04 ` [PATCH 7.0 0041/1146] s390/ap: " Greg Kroah-Hartman
2026-05-20 16:04 ` [PATCH 7.0 0042/1146] bus: fsl-mc: " Greg Kroah-Hartman
2026-05-20 16:04 ` [PATCH 7.0 0043/1146] locking/mutex: Rename mutex_init_lockep() Greg Kroah-Hartman
2026-05-20 16:04 ` [PATCH 7.0 0044/1146] locking/mutex: Fix wrong comment for CONFIG_DEBUG_LOCK_ALLOC Greg Kroah-Hartman
2026-05-20 16:04 ` [PATCH 7.0 0045/1146] irqchip/irq-pic32-evic: Address warning related to wrong printf() formatter Greg Kroah-Hartman
2026-05-20 16:04 ` [PATCH 7.0 0046/1146] hrtimer: Avoid pointless reprogramming in __hrtimer_start_range_ns() Greg Kroah-Hartman
2026-05-20 16:04 ` [PATCH 7.0 0047/1146] hrtimer: Reduce trace noise in hrtimer_start() Greg Kroah-Hartman
2026-05-20 16:04 ` [PATCH 7.0 0048/1146] locking: Fix rwlock and spinlock lock context annotations Greg Kroah-Hartman
2026-05-20 16:04 ` [PATCH 7.0 0049/1146] signal: Fix the lock_task_sighand() annotation Greg Kroah-Hartman
2026-05-20 16:05 ` [PATCH 7.0 0050/1146] ww-mutex: Fix the ww_acquire_ctx function annotations Greg Kroah-Hartman
2026-05-20 16:05 ` [PATCH 7.0 0051/1146] perf/amd/ibs: Account interrupt for discarded samples Greg Kroah-Hartman
2026-05-20 16:05 ` [PATCH 7.0 0052/1146] perf/amd/ibs: Preserve PhyAddrVal bit when clearing PhyAddr MSR Greg Kroah-Hartman
2026-05-20 16:05 ` [PATCH 7.0 0053/1146] perf/amd/ibs: Avoid calling perf_allow_kernel() from the IBS NMI handler Greg Kroah-Hartman
2026-05-20 16:05 ` [PATCH 7.0 0054/1146] x86/tdx: Fix the typo in TDX_ATTR_MIGRTABLE Greg Kroah-Hartman
2026-05-20 16:05 ` [PATCH 7.0 0055/1146] rust: sync: atomic: Remove bound `T: Sync` for `Atomic::from_ptr()` Greg Kroah-Hartman
2026-05-20 16:05 ` [PATCH 7.0 0056/1146] sparc64: vdso: Link with -z noexecstack Greg Kroah-Hartman
2026-05-20 16:05 ` [PATCH 7.0 0057/1146] scripts/gdb: timerlist: Adapt to move of tk_core Greg Kroah-Hartman
2026-05-20 16:05 ` [PATCH 7.0 0058/1146] locking: Fix rwlock support in <linux/spinlock_up.h> Greg Kroah-Hartman
2026-05-20 16:05 ` [PATCH 7.0 0059/1146] sched/topology: Compute sd_weight considering cpuset partitions Greg Kroah-Hartman
2026-05-20 16:05 ` [PATCH 7.0 0060/1146] x86/irqflags: Preemptively move include paravirt.h directive where it belongs Greg Kroah-Hartman
2026-05-20 16:05 ` [PATCH 7.0 0061/1146] sched/topology: Fix sched_domain_span() Greg Kroah-Hartman
2026-05-20 16:05 ` [PATCH 7.0 0062/1146] irqchip/renesas-rzg2l: Fix error path in rzg2l_irqc_common_probe() Greg Kroah-Hartman
2026-05-20 16:05 ` [PATCH 7.0 0063/1146] ASoC: Intel: avs: Check maximum valid CPUID leaf Greg Kroah-Hartman
2026-05-20 16:05 ` [PATCH 7.0 0064/1146] ASoC: Intel: avs: Include CPUID header at file scope Greg Kroah-Hartman
2026-05-20 16:05 ` [PATCH 7.0 0065/1146] x86/vdso: Clean up remnants of VDSO32_NOTE_MASK Greg Kroah-Hartman
2026-05-20 16:05 ` [PATCH 7.0 0066/1146] firmware: dmi: Correct an indexing error in dmi.h Greg Kroah-Hartman
2026-05-20 16:05 ` [PATCH 7.0 0067/1146] fs/resctrl: Report invalid domain ID when parsing io_alloc_cbm Greg Kroah-Hartman
2026-05-20 16:05 ` [PATCH 7.0 0068/1146] sched: Make class_schedulers avoid pushing current, and get rid of proxy_tag_curr() Greg Kroah-Hartman
2026-05-20 16:05 ` [PATCH 7.0 0069/1146] sched/rt: Skip group schedulable check with rt_group_sched=0 Greg Kroah-Hartman
2026-05-20 16:05 ` [PATCH 7.0 0070/1146] wifi: ath11k: fix memory leaks in beacon template setup Greg Kroah-Hartman
2026-05-20 16:05 ` [PATCH 7.0 0071/1146] wifi: mwifiex: Fix memory leak in mwifiex_11n_aggregate_pkt() Greg Kroah-Hartman
2026-05-20 16:05 ` [PATCH 7.0 0072/1146] wifi: rtlwifi: pci: fix possible use-after-free caused by unfinished irq_prepare_bcn_tasklet Greg Kroah-Hartman
2026-05-20 16:05 ` [PATCH 7.0 0073/1146] bpf: test_run: Fix the null pointer dereference issue in bpf_lwt_xmit_push_encap Greg Kroah-Hartman
2026-05-20 16:05 ` [PATCH 7.0 0074/1146] wifi: ath12k: account TX stats only when ACK/BA status is present Greg Kroah-Hartman
2026-05-20 16:05 ` [PATCH 7.0 0075/1146] wifi: ath12k: Fix legacy rate mapping for monitor mode capture Greg Kroah-Hartman
2026-05-20 16:05 ` [PATCH 7.0 0076/1146] selftests/bpf: Handle !CONFIG_SMC in bpf_smc.c Greg Kroah-Hartman
2026-05-20 16:05 ` [PATCH 7.0 0077/1146] wifi: ieee80211: fix definition of EHT-MCS 15 in MRU Greg Kroah-Hartman
2026-05-20 16:05 ` [PATCH 7.0 0078/1146] dpaa2: add independent dependencies for FSL_DPAA2_SWITCH Greg Kroah-Hartman
2026-05-20 16:05 ` [PATCH 7.0 0079/1146] dpaa2: compile dpaa2 even CONFIG_FSL_DPAA2_ETH=n Greg Kroah-Hartman
2026-05-20 16:05 ` [PATCH 7.0 0080/1146] s390/bpf: Zero-extend bpf prog return values and kfunc arguments Greg Kroah-Hartman
2026-05-20 16:05 ` [PATCH 7.0 0081/1146] powerpc/pgtable-frag: Fix bad page state in pte_frag_destroy Greg Kroah-Hartman
2026-05-20 16:05 ` [PATCH 7.0 0082/1146] powerpc/64s: Fix unmap race with PMD migration entries Greg Kroah-Hartman
2026-05-20 16:05 ` [PATCH 7.0 0083/1146] module: Fix freeing of charp module parameters when CONFIG_SYSFS=n Greg Kroah-Hartman
2026-05-20 16:05 ` [PATCH 7.0 0084/1146] wifi: libertas: use USB anchors for tracking in-flight URBs Greg Kroah-Hartman
2026-05-20 16:05 ` [PATCH 7.0 0085/1146] wifi: libertas: dont kill URBs in interrupt context Greg Kroah-Hartman
2026-05-20 16:05 ` [PATCH 7.0 0086/1146] bpf: Do not allow deleting local storage in NMI Greg Kroah-Hartman
2026-05-20 16:05 ` [PATCH 7.0 0087/1146] selftests/nolibc: fix test_file_stream() on musl libc Greg Kroah-Hartman
2026-05-20 16:05 ` [PATCH 7.0 0088/1146] selftests/nolibc: Fix build with host headers and libc Greg Kroah-Hartman
2026-05-20 16:05 ` [PATCH 7.0 0089/1146] tools/nolibc/printf: Change variables c to ch and tmpbuf[] to outbuf[] Greg Kroah-Hartman
2026-05-20 16:05 ` [PATCH 7.0 0090/1146] tools/nolibc/printf: Move snprintf length check to callback Greg Kroah-Hartman
2026-05-20 16:05 ` [PATCH 7.0 0091/1146] tools/nolibc: MIPS: fix clobbers of lo and hi registers on different ISAs Greg Kroah-Hartman
2026-05-20 16:05 ` [PATCH 7.0 0092/1146] tools/nolibc: avoid -Wundef warning for __STDC_VERSION__ Greg Kroah-Hartman
2026-05-20 16:05 ` [PATCH 7.0 0093/1146] wifi: mt76: mt7996: fix the behavior of radar detection Greg Kroah-Hartman
2026-05-20 16:05 ` [PATCH 7.0 0094/1146] wifi: mt76: mt7996: fix iface combination for different chipsets Greg Kroah-Hartman
2026-05-20 16:05 ` [PATCH 7.0 0095/1146] wifi: mt76: mt7996: Set mtxq->wcid just for primary link Greg Kroah-Hartman
2026-05-20 16:05 ` [PATCH 7.0 0096/1146] wifi: mt76: mt7996: Reset mtxq->idx if primary link is removed in mt7996_vif_link_remove() Greg Kroah-Hartman
2026-05-20 16:05 ` [PATCH 7.0 0097/1146] wifi: mt76: mt7996: Switch to the secondary link if the default one is removed Greg Kroah-Hartman
2026-05-20 16:05 ` [PATCH 7.0 0098/1146] wifi: mt76: mt7996: Clear wcid pointer in mt7996_mac_sta_deinit_link() Greg Kroah-Hartman
2026-05-20 16:05 ` [PATCH 7.0 0099/1146] wifi: mt76: mt7996: Reset ampdu_state state in case of failure in mt7996_tx_check_aggr() Greg Kroah-Hartman
2026-05-20 16:05 ` [PATCH 7.0 0100/1146] wifi: mt76: mt7921: Reset ampdu_state state in case of failure in mt76_connac2_tx_check_aggr() Greg Kroah-Hartman
2026-05-20 16:05 ` [PATCH 7.0 0101/1146] wifi: mt76: mt7925: Fix incorrect MLO mode in firmware control Greg Kroah-Hartman
2026-05-20 16:05 ` [PATCH 7.0 0102/1146] wifi: mt76: mt7615: fix use_cts_prot support Greg Kroah-Hartman
2026-05-20 16:05 ` [PATCH 7.0 0103/1146] wifi: mt76: mt7915: " Greg Kroah-Hartman
2026-05-20 16:05 ` [PATCH 7.0 0104/1146] wifi: mt76: mt7925: prevent NULL pointer dereference in mt7925_tx_check_aggr() Greg Kroah-Hartman
2026-05-20 16:05 ` [PATCH 7.0 0105/1146] wifi: mt76: mt7925: prevent NULL vif dereference in mt7925_mac_write_txwi Greg Kroah-Hartman
2026-05-20 16:05 ` [PATCH 7.0 0106/1146] wifi: mt76: mt7996: fix FCS error flag check in RX descriptor Greg Kroah-Hartman
2026-05-20 16:05 ` [PATCH 7.0 0107/1146] wifi: mt76: mt7921: Place upper limit on station AID Greg Kroah-Hartman
2026-05-20 16:05 ` [PATCH 7.0 0108/1146] wifi: mt76: Fix memory leak destroying device Greg Kroah-Hartman
2026-05-20 16:05 ` [PATCH 7.0 0109/1146] wifi: mt76: mt7996: Fix NPU stop procedure Greg Kroah-Hartman
2026-05-20 16:06 ` [PATCH 7.0 0110/1146] wifi: mt76: npu: Add missing rx_token_size initialization Greg Kroah-Hartman
2026-05-20 16:06 ` [PATCH 7.0 0111/1146] wifi: mt76: mt7925: drop puncturing handling from BSS change path Greg Kroah-Hartman
2026-05-20 16:06 ` [PATCH 7.0 0112/1146] wifi: mt76: mt7925: fix potential deadlock in mt7925_roc_abort_sync Greg Kroah-Hartman
2026-05-20 16:06 ` [PATCH 7.0 0113/1146] wifi: mt76: Fix memory leak after mt76_connac_mcu_alloc_sta_req() Greg Kroah-Hartman
2026-05-20 16:06 ` [PATCH 7.0 0114/1146] wifi: mt76: mt7925: fix tx power setting failure after chip reset Greg Kroah-Hartman
2026-05-20 16:06 ` [PATCH 7.0 0115/1146] wifi: mt76: mt7921: fix potential deadlock in mt7921_roc_abort_sync Greg Kroah-Hartman
2026-05-20 16:06 ` [PATCH 7.0 0116/1146] wifi: mt76: fix deadlock in remain-on-channel Greg Kroah-Hartman
2026-05-20 16:06 ` [PATCH 7.0 0117/1146] wifi: mt76: fix backoff fields and max_power calculation Greg Kroah-Hartman
2026-05-20 16:06 ` [PATCH 7.0 0118/1146] arm64: cpufeature: Make PMUVer and PerfMon unsigned Greg Kroah-Hartman
2026-05-20 16:06 ` [PATCH 7.0 0119/1146] bpf: Switch CONFIG_CFI_CLANG to CONFIG_CFI Greg Kroah-Hartman
2026-05-20 16:06 ` [PATCH 7.0 0120/1146] wifi: mt76: mt7996: fix wrong DMAD length when using MAC TXP Greg Kroah-Hartman
2026-05-20 16:06 ` [PATCH 7.0 0121/1146] wifi: mt76: mt7996: fix struct mt7996_mcu_uni_event Greg Kroah-Hartman
2026-05-20 16:06 ` [PATCH 7.0 0122/1146] wifi: mt76: mt7915: fix use-after-free bugs in mt7915_mac_dump_work() Greg Kroah-Hartman
2026-05-20 16:06 ` [PATCH 7.0 0123/1146] wifi: mt76: mt7996: fix use-after-free bugs in mt7996_mac_dump_work() Greg Kroah-Hartman
2026-05-20 16:06 ` [PATCH 7.0 0124/1146] wifi: mt76: mt7921: fix 6GHz regulatory update on connection Greg Kroah-Hartman
2026-05-20 16:06 ` [PATCH 7.0 0125/1146] wifi: mt76: mt7996: Add missing CHANCTX_STA_CSA property Greg Kroah-Hartman
2026-05-20 16:06 ` [PATCH 7.0 0126/1146] wifi: mt76: mt7996: Remove link pointer dependency in mt7996_mac_sta_remove_links() Greg Kroah-Hartman
2026-05-20 16:06 ` [PATCH 7.0 0127/1146] wifi: mt76: mt7996: Decrement sta counter removing the link in mt7996_mac_reset_sta_iter() Greg Kroah-Hartman
2026-05-20 16:06 ` [PATCH 7.0 0128/1146] wifi: mt76: fix multi-radio on-channel scanning Greg Kroah-Hartman
2026-05-20 16:06 ` [PATCH 7.0 0129/1146] wifi: mt76: support upgrading passive scans to active Greg Kroah-Hartman
2026-05-20 16:06 ` [PATCH 7.0 0130/1146] wifi: mt76: mt7996: fix RRO EMU configuration Greg Kroah-Hartman
2026-05-20 16:06 ` [PATCH 7.0 0131/1146] bpf: Fix refcount check in check_struct_ops_btf_id() Greg Kroah-Hartman
2026-05-20 16:06 ` [PATCH 7.0 0132/1146] selftests/bpf: Fix sockmap_multi_channels reliability Greg Kroah-Hartman
2026-05-20 16:06 ` [PATCH 7.0 0133/1146] bpf: Use RCU-safe iteration in dev_map_redirect_multi() SKB path Greg Kroah-Hartman
2026-05-20 16:06 ` [PATCH 7.0 0134/1146] bpf: Fix variable length stack write over spilled pointers Greg Kroah-Hartman
2026-05-20 16:06 ` [PATCH 7.0 0135/1146] arm_mpam: Ensure in_reset_state is false after applying configuration Greg Kroah-Hartman
2026-05-20 16:06 ` [PATCH 7.0 0136/1146] arm_mpam: Reset when feature configuration bit unset Greg Kroah-Hartman
2026-05-20 16:06 ` [PATCH 7.0 0137/1146] bpf,arc_jit: Fix missing newline in pr_err messages Greg Kroah-Hartman
2026-05-20 16:06 ` [PATCH 7.0 0138/1146] wifi: rtw89: phy: fix uninitialized variable access in rtw89_phy_cfo_set_crystal_cap() Greg Kroah-Hartman
2026-05-20 16:06 ` [PATCH 7.0 0139/1146] drivers/vfio_pci_core: Change PXD_ORDER check from switch case to if/else block Greg Kroah-Hartman
2026-05-20 16:06 ` [PATCH 7.0 0140/1146] r8152: fix incorrect register write to USB_UPHY_XTAL Greg Kroah-Hartman
2026-05-20 16:06 ` [PATCH 7.0 0141/1146] selftests/tracing: Fix to make --logdir option work again Greg Kroah-Hartman
2026-05-20 16:06 ` [PATCH 7.0 0142/1146] selftests/tracing: Fix to check awk supports non POSIX strtonum() Greg Kroah-Hartman
2026-05-20 16:06 ` [PATCH 7.0 0143/1146] powerpc/crash: fix backup region offset update to elfcorehdr Greg Kroah-Hartman
2026-05-20 16:06 ` [PATCH 7.0 0144/1146] powerpc/crash: Update backup region offset in elfcorehdr on memory hotplug Greg Kroah-Hartman
2026-05-20 16:06 ` [PATCH 7.0 0145/1146] selftests/powerpc: Suppress -Wmaybe-uninitialized with GCC 15 Greg Kroah-Hartman
2026-05-20 16:06 ` [PATCH 7.0 0146/1146] bpf: Fix abuse of kprobe_write_ctx via freplace Greg Kroah-Hartman
2026-05-20 16:06 ` [PATCH 7.0 0147/1146] macvlan: annotate data-races around port->bc_queue_len_used Greg Kroah-Hartman
2026-05-20 16:06 ` [PATCH 7.0 0148/1146] bpf: Use copy_map_value_locked() in alloc_htab_elem() for BPF_F_LOCK Greg Kroah-Hartman
2026-05-20 16:06 ` [PATCH 7.0 0149/1146] bpf: fix end-of-list detection in cgroup_storage_get_next_key() Greg Kroah-Hartman
2026-05-20 16:06 ` [PATCH 7.0 0150/1146] bpf: Fix stale offload->prog pointer after constant blinding Greg Kroah-Hartman
2026-05-20 16:06 ` [PATCH 7.0 0151/1146] net: ethernet: ti-cpsw:: rename soft_reset() function Greg Kroah-Hartman
2026-05-20 16:06 ` [PATCH 7.0 0152/1146] net: ethernet: ti-cpsw: fix linking built-in code to modules Greg Kroah-Hartman
2026-05-20 16:06 ` [PATCH 7.0 0153/1146] wifi: brcmfmac: Fix error pointer dereference Greg Kroah-Hartman
2026-05-20 16:06 ` [PATCH 7.0 0154/1146] wifi: mac80211: handle VHT EXT NSS in ieee80211_determine_our_sta_mode() Greg Kroah-Hartman
2026-05-20 16:06 ` [PATCH 7.0 0155/1146] bpf: Drop task_to_inode and inet_conn_established from lsm sleepable hooks Greg Kroah-Hartman
2026-05-20 16:06 ` [PATCH 7.0 0156/1146] bpf: reject negative CO-RE accessor indices in bpf_core_parse_spec() Greg Kroah-Hartman
2026-05-20 16:06 ` [PATCH 7.0 0157/1146] bpf: Prefer vmlinux symbols over module symbols for unqualified kprobes Greg Kroah-Hartman
2026-05-20 16:06 ` [PATCH 7.0 0158/1146] wifi: ath10k: fix station lookup failure during disconnect Greg Kroah-Hartman
2026-05-20 16:06 ` [PATCH 7.0 0159/1146] bpf: Fix linked reg delta tracking when src_reg == dst_reg Greg Kroah-Hartman
2026-05-20 16:06 ` [PATCH 7.0 0160/1146] net: dropreason: add SKB_DROP_REASON_RECURSION_LIMIT Greg Kroah-Hartman
2026-05-20 16:06 ` [PATCH 7.0 0161/1146] net: plumb drop reasons to __dev_queue_xmit() Greg Kroah-Hartman
2026-05-20 16:06 ` [PATCH 7.0 0162/1146] net: qdisc_pkt_len_segs_init() cleanup Greg Kroah-Hartman
2026-05-20 16:06 ` [PATCH 7.0 0163/1146] net: pull headers in qdisc_pkt_len_segs_init() Greg Kroah-Hartman
2026-05-20 16:06 ` [PATCH 7.0 0164/1146] arm64: entry: Dont preempt with SError or Debug masked Greg Kroah-Hartman
2026-05-20 16:06 ` [PATCH 7.0 0165/1146] ACPI: AGDI: fix missing newline in error message Greg Kroah-Hartman
2026-05-20 16:06 ` [PATCH 7.0 0166/1146] arm64: kexec: Remove duplicate allocation for trans_pgd Greg Kroah-Hartman
2026-05-20 16:06 ` [PATCH 7.0 0167/1146] bpf: Propagate error from visit_tailcall_insn Greg Kroah-Hartman
2026-05-20 16:06 ` [PATCH 7.0 0168/1146] bpf: Fix ld_{abs,ind} failure path analysis in subprogs Greg Kroah-Hartman
2026-05-20 16:06 ` [PATCH 7.0 0169/1146] bpf: Remove static qualifier from local subprog pointer Greg Kroah-Hartman
2026-05-20 16:07 ` [PATCH 7.0 0170/1146] mptcp: better mptcp-level RTT estimator Greg Kroah-Hartman
2026-05-20 16:07 ` [PATCH 7.0 0171/1146] bpf: Fix use-after-free in offloaded map/prog info fill Greg Kroah-Hartman
2026-05-20 16:07 ` [PATCH 7.0 0172/1146] macsec: Support VLAN-filtering lower devices Greg Kroah-Hartman
2026-05-20 16:07 ` [PATCH 7.0 0173/1146] net: bcmgenet: fix off-by-one in bcmgenet_put_txcb Greg Kroah-Hartman
2026-05-20 16:07 ` [PATCH 7.0 0174/1146] net: bcmgenet: fix leaking free_bds Greg Kroah-Hartman
2026-05-20 16:07 ` [PATCH 7.0 0175/1146] net: bcmgenet: fix racing timeout handler Greg Kroah-Hartman
2026-05-20 16:07 ` [PATCH 7.0 0176/1146] net: airoha: Add dma_rmb() and READ_ONCE() in airoha_qdma_rx_process() Greg Kroah-Hartman
2026-05-20 16:07 ` [PATCH 7.0 0177/1146] eth: fbnic: Use wake instead of start Greg Kroah-Hartman
2026-05-20 16:07 ` [PATCH 7.0 0178/1146] netfilter: xt_socket: enable defrag after all other checks Greg Kroah-Hartman
2026-05-20 16:07 ` [PATCH 7.0 0179/1146] netfilter: nft_fwd_netdev: check ttl/hl before forwarding Greg Kroah-Hartman
2026-05-20 16:07 ` [PATCH 7.0 0180/1146] bpf: fix mm lifecycle in open-coded task_vma iterator Greg Kroah-Hartman
2026-05-20 16:07 ` [PATCH 7.0 0181/1146] bpf: switch task_vma iterator from mmap_lock to per-VMA locks Greg Kroah-Hartman
2026-05-20 16:07 ` [PATCH 7.0 0182/1146] bpf: return VMA snapshot from task_vma iterator Greg Kroah-Hartman
2026-05-20 16:07 ` [PATCH 7.0 0183/1146] bpf: Fix RCU stall in bpf_fd_array_map_clear() Greg Kroah-Hartman
2026-05-20 16:07 ` [PATCH 7.0 0184/1146] net: hamradio: 6pack: fix uninit-value in sixpack_receive_buf Greg Kroah-Hartman
2026-05-20 16:07 ` [PATCH 7.0 0185/1146] net: airoha: Fix FE_PSE_BUF_SET configuration if PPE2 is available Greg Kroah-Hartman
2026-05-20 16:07 ` [PATCH 7.0 0186/1146] bpf: Enforce regsafe base id consistency for BPF_ADD_CONST scalars Greg Kroah-Hartman
2026-05-20 16:07 ` [PATCH 7.0 0187/1146] selftests/bpf: fix __jited_unpriv tag name Greg Kroah-Hartman
2026-05-20 16:07 ` [PATCH 7.0 0188/1146] net/sched: cls_fw: fix NULL dereference of "old" filters before change() Greg Kroah-Hartman
2026-05-20 16:07 ` [PATCH 7.0 0189/1146] net/sched: act_ct: Only release RCU read lock after ct_ft Greg Kroah-Hartman
2026-05-20 16:07 ` [PATCH 7.0 0190/1146] selftests: netfilter: nft_tproxy.sh: adjust to socat changes Greg Kroah-Hartman
2026-05-20 16:07 ` [PATCH 7.0 0191/1146] net: mana: Use pci_name() for debugfs directory naming Greg Kroah-Hartman
2026-05-20 16:07 ` [PATCH 7.0 0192/1146] net: mana: Move current_speed debugfs file to mana_init_port() Greg Kroah-Hartman
2026-05-20 16:07 ` [PATCH 7.0 0193/1146] net: airoha: Add missing RX_CPU_IDX() configuration in airoha_qdma_cleanup_rx_queue() Greg Kroah-Hartman
2026-05-20 16:07 ` [PATCH 7.0 0194/1146] net_sched: fix skb memory leak in deferred qdisc drops Greg Kroah-Hartman
2026-05-20 16:07 ` [PATCH 7.0 0195/1146] bpf: Fix same-register dst/src OOB read and pointer leak in sock_ops Greg Kroah-Hartman
2026-05-20 16:07 ` [PATCH 7.0 0196/1146] bpf: Allow instructions with arena source and non-arena dest registers Greg Kroah-Hartman
2026-05-20 16:07 ` [PATCH 7.0 0197/1146] selftests/bpf: Fix reg_bounds to match new tnum-based refinement Greg Kroah-Hartman
2026-05-20 16:07 ` Greg Kroah-Hartman [this message]
2026-05-20 16:07 ` [PATCH 7.0 0199/1146] net/rds: Restrict use of RDS/IB to the initial network namespace Greg Kroah-Hartman
2026-05-20 16:07 ` [PATCH 7.0 0200/1146] bpf: Fix OOB in pcpu_init_value Greg Kroah-Hartman
2026-05-20 16:07 ` [PATCH 7.0 0201/1146] ppp: require CAP_NET_ADMIN in target netns for unattached ioctls Greg Kroah-Hartman
2026-05-20 16:07 ` [PATCH 7.0 0202/1146] net: ipa: Fix programming of QTIME_TIMESTAMP_CFG Greg Kroah-Hartman
2026-05-20 16:07 ` [PATCH 7.0 0203/1146] net: ipa: Fix decoding EV_PER_EE for IPA v5.0+ Greg Kroah-Hartman
2026-05-20 16:07 ` [PATCH 7.0 0204/1146] dt-bindings: net: dsa: nxp,sja1105: make spi-cpol optional for sja1110 Greg Kroah-Hartman
2026-05-20 16:07 ` [PATCH 7.0 0205/1146] net: phy: fix a return path in get_phy_c45_ids() Greg Kroah-Hartman
2026-05-20 16:07 ` [PATCH 7.0 0206/1146] net/mlx5e: Fix features not applied during netdev registration Greg Kroah-Hartman
2026-05-20 16:07 ` [PATCH 7.0 0207/1146] net/mlx5e: IPsec, fix ASO poll timeout with read_poll_timeout_atomic() Greg Kroah-Hartman
2026-05-20 16:07 ` [PATCH 7.0 0208/1146] net: ethernet: mtk_eth_soc: initialize PPE per-tag-layer MTU registers Greg Kroah-Hartman
2026-05-20 16:07 ` [PATCH 7.0 0209/1146] net: fix skb_ext_total_length() BUILD_BUG_ON with CONFIG_GCOV_PROFILE_ALL Greg Kroah-Hartman
2026-05-20 16:07 ` [PATCH 7.0 0210/1146] bpf: reject short IPv4/IPv6 inputs in bpf_prog_test_run_skb Greg Kroah-Hartman
2026-05-20 16:07 ` [PATCH 7.0 0211/1146] Bluetooth: L2CAP: Fix printing wrong information if SDU length exceeds MTU Greg Kroah-Hartman
2026-05-20 16:07 ` [PATCH 7.0 0212/1146] Bluetooth: hci_ldisc: Clear HCI_UART_PROTO_INIT on error Greg Kroah-Hartman
2026-05-20 16:07 ` [PATCH 7.0 0213/1146] Bluetooth: fix locking in hci_conn_request_evt() with HCI_PROTO_DEFER Greg Kroah-Hartman
2026-05-20 16:07 ` [PATCH 7.0 0214/1146] Bluetooth: l2cap: Add missing chan lock in l2cap_ecred_reconf_rsp Greg Kroah-Hartman
2026-05-20 16:07 ` [PATCH 7.0 0215/1146] Bluetooth: SCO: check for codecs->num_codecs == 1 before assigning to sco_pi(sk)->codec Greg Kroah-Hartman
2026-05-20 16:07 ` [PATCH 7.0 0216/1146] net: phy: qcom: at803x: Use the correct bit to disable extended next page Greg Kroah-Hartman
2026-05-20 16:07 ` [PATCH 7.0 0217/1146] udp: Force compute_score to always inline Greg Kroah-Hartman
2026-05-20 16:07 ` [PATCH 7.0 0218/1146] tcp: Dont set treq->req_usec_ts in cookie_tcp_reqsk_init() Greg Kroah-Hartman
2026-05-20 16:07 ` [PATCH 7.0 0219/1146] sctp: fix missing encap_port propagation for GSO fragments Greg Kroah-Hartman
2026-05-20 16:07 ` [PATCH 7.0 0220/1146] sctp: disable BH before calling udp_tunnel_xmit_skb() Greg Kroah-Hartman
2026-05-20 16:07 ` [PATCH 7.0 0221/1146] selftests/namespaces: remove unused utils.h include from listns_efault_test Greg Kroah-Hartman
2026-05-20 16:07 ` [PATCH 7.0 0222/1146] net, bpf: fix null-ptr-deref in xdp_master_redirect() for down master Greg Kroah-Hartman
2026-05-20 16:07 ` [PATCH 7.0 0223/1146] net: airoha: Fix VIP configuration for AN7583 SoC Greg Kroah-Hartman
2026-05-20 16:07 ` [PATCH 7.0 0224/1146] net: airoha: Add missing PPE configurations in airoha_ppe_hw_init() Greg Kroah-Hartman
2026-05-20 16:07 ` [PATCH 7.0 0225/1146] drm/panel: ilitek-ili9882t: Select DRM_DISPLAY_DSC_HELPER Greg Kroah-Hartman
2026-05-20 16:07 ` [PATCH 7.0 0226/1146] selftests/futex: Fix incorrect result reporting of futex_requeue test item Greg Kroah-Hartman
2026-05-20 16:07 ` [PATCH 7.0 0227/1146] drm/komeda: fix integer overflow in AFBC framebuffer size check Greg Kroah-Hartman
2026-05-20 16:07 ` [PATCH 7.0 0228/1146] dma-fence: Fix sparse warnings due __rcu annotations Greg Kroah-Hartman
2026-05-20 16:07 ` [PATCH 7.0 0229/1146] drm/gpusvm: Fix unbalanced unlock in drm_gpusvm_scan_mm() Greg Kroah-Hartman
2026-05-20 16:08 ` [PATCH 7.0 0230/1146] drm/virtio: Allow importing prime buffers when 3D is enabled Greg Kroah-Hartman
2026-05-20 16:08 ` [PATCH 7.0 0231/1146] ASoC: soc-compress: use function to clear symmetric params Greg Kroah-Hartman
2026-05-20 16:08 ` [PATCH 7.0 0232/1146] PCI/TPH: Allow TPH enable for RCiEPs Greg Kroah-Hartman
2026-05-20 16:08 ` [PATCH 7.0 0233/1146] PCI: endpoint: pci-epf-vntb: Fix MSI doorbell IRQ unwind Greg Kroah-Hartman
2026-05-20 16:08 ` [PATCH 7.0 0234/1146] PCI: endpoint: pci-epf-test: Dont free doorbell IRQ unless requested Greg Kroah-Hartman
2026-05-20 16:08 ` [PATCH 7.0 0235/1146] PCI: endpoint: pci-ep-msi: Fix error unwind and prevent double alloc Greg Kroah-Hartman
2026-05-20 16:08 ` [PATCH 7.0 0236/1146] drm/sun4i: mixer: Fix layer init code Greg Kroah-Hartman
2026-05-20 16:08 ` [PATCH 7.0 0237/1146] drm/sun4i: backend: fix error pointer dereference Greg Kroah-Hartman
2026-05-20 16:08 ` [PATCH 7.0 0238/1146] drm/xe: Consolidate workaround entries for Wa_14019877138 Greg Kroah-Hartman
2026-05-20 16:08 ` [PATCH 7.0 0239/1146] drm/xe: Consolidate workaround entries for Wa_14019386621 Greg Kroah-Hartman
2026-05-20 16:08 ` [PATCH 7.0 0240/1146] drm/xe/xe2_hpg: Drop invalid workaround Wa_15010599737 Greg Kroah-Hartman
2026-05-20 16:08 ` [PATCH 7.0 0241/1146] gpu: nova-core: gsp: use empty slices instead of [0..0] ranges Greg Kroah-Hartman
2026-05-20 16:08 ` [PATCH 7.0 0242/1146] gpu: nova-core: gsp: fix improper handling of empty slot in cmdq Greg Kroah-Hartman
2026-05-20 16:08 ` [PATCH 7.0 0243/1146] drm/amdkfd: Removed commented line for MQD queue priority Greg Kroah-Hartman
2026-05-20 16:08 ` [PATCH 7.0 0244/1146] PCI: imx6: Fix device node reference leak in imx_pcie_probe() Greg Kroah-Hartman
2026-05-20 16:08 ` [PATCH 7.0 0245/1146] ASoC: SDCA: Add default value for mipi-sdca-function-reset-max-delay Greg Kroah-Hartman
2026-05-20 16:08 ` [PATCH 7.0 0246/1146] ASoC: SDCA: Update counting of SU/GE DAPM routes Greg Kroah-Hartman
2026-05-20 16:08 ` [PATCH 7.0 0247/1146] crypto: inside-secure/eip93 - fix register definition Greg Kroah-Hartman
2026-05-20 16:08 ` [PATCH 7.0 0248/1146] ASoC: sti: Return errors from regmap_field_alloc() Greg Kroah-Hartman
2026-05-20 16:08 ` [PATCH 7.0 0249/1146] ASoC: sti: use managed regmap_field allocations Greg Kroah-Hartman
2026-05-20 16:08 ` [PATCH 7.0 0250/1146] dm cache: fix null-deref with concurrent writes in passthrough mode Greg Kroah-Hartman
2026-05-20 16:08 ` [PATCH 7.0 0251/1146] dm cache: fix write path cache coherency " Greg Kroah-Hartman
2026-05-20 16:08 ` [PATCH 7.0 0252/1146] dm cache: fix write hang " Greg Kroah-Hartman
2026-05-20 16:08 ` [PATCH 7.0 0253/1146] dm cache policy smq: fix missing locks in invalidating cache blocks Greg Kroah-Hartman
2026-05-20 16:08 ` [PATCH 7.0 0254/1146] dm cache: fix concurrent write failure in passthrough mode Greg Kroah-Hartman
2026-05-20 16:08 ` [PATCH 7.0 0255/1146] dm cache: fix dirty mapping checking in passthrough mode switching Greg Kroah-Hartman
2026-05-20 16:08 ` [PATCH 7.0 0256/1146] dm-mpath: dont stop probing paths at presuspend Greg Kroah-Hartman
2026-05-20 16:08 ` [PATCH 7.0 0257/1146] drm/amd/ras: Fix type size of remainder argument Greg Kroah-Hartman
2026-05-20 16:08 ` [PATCH 7.0 0258/1146] dt-bindings: mmc: dwcmshc-sdhci: Fix resets array validation Greg Kroah-Hartman
2026-05-20 16:08 ` [PATCH 7.0 0259/1146] drm/amdgpu: GFX12.1 scratch memory limit up to 57-bit Greg Kroah-Hartman
2026-05-20 16:08 ` [PATCH 7.0 0260/1146] platform/chrome: chromeos_tbmc: Drop wakeup source on remove Greg Kroah-Hartman
2026-05-20 16:08 ` [PATCH 7.0 0261/1146] gpu: nova-core: use checked arithmetic in FWSEC firmware parsing Greg Kroah-Hartman
2026-05-20 16:08 ` [PATCH 7.0 0262/1146] gpu: nova-core: create falcon firmware DMA objects lazily Greg Kroah-Hartman
2026-05-20 16:08 ` [PATCH 7.0 0263/1146] gpu: nova-core: falcon: rename load parameters to reflect DMA dependency Greg Kroah-Hartman
2026-05-20 16:08 ` [PATCH 7.0 0264/1146] gpu: nova-core: firmware: fix and explain v2 header offsets computations Greg Kroah-Hartman
2026-05-20 16:08 ` [PATCH 7.0 0265/1146] PCI: dwc: ep: Fix MSI-X Table Size configuration in dw_pcie_ep_set_msix() Greg Kroah-Hartman
2026-05-20 16:08 ` [PATCH 7.0 0266/1146] PCI: dwc: ep: Mirror the max link width and speed fields to all functions Greg Kroah-Hartman
2026-05-20 16:08 ` [PATCH 7.0 0267/1146] PCI: dwc: Perform cleanup in the error path of dw_pcie_resume_noirq() Greg Kroah-Hartman
2026-05-20 16:08 ` [PATCH 7.0 0268/1146] dm cache metadata: fix memory leak on metadata abort retry Greg Kroah-Hartman
2026-05-20 16:08 ` [PATCH 7.0 0269/1146] dm log: fix out-of-bounds write due to region_count overflow Greg Kroah-Hartman
2026-05-20 16:08 ` [PATCH 7.0 0270/1146] iopoll: fix function parameter names in read_poll_timeout_atomic() Greg Kroah-Hartman
2026-05-20 16:08 ` [PATCH 7.0 0271/1146] drm/bridge: cadence: cdns-mhdp8546-core: Set the mhdp connector earlier in atomic_enable() Greg Kroah-Hartman
2026-05-20 16:08 ` [PATCH 7.0 0272/1146] drm/bridge: cadence: cdns-mhdp8546-core: Add mode_valid hook to drm_bridge_funcs Greg Kroah-Hartman
2026-05-20 16:08 ` [PATCH 7.0 0273/1146] drm/bridge: cadence: cdns-mhdp8546-core: Handle HDCP state in bridge atomic check Greg Kroah-Hartman
2026-05-20 16:08 ` [PATCH 7.0 0274/1146] spi: nxp-xspi: Use reinit_completion() for repeated operations Greg Kroah-Hartman
2026-05-20 16:08 ` [PATCH 7.0 0275/1146] spi: nxp-fspi: " Greg Kroah-Hartman
2026-05-20 16:08 ` [PATCH 7.0 0276/1146] spi: fsl-qspi: " Greg Kroah-Hartman
2026-05-20 16:08 ` [PATCH 7.0 0277/1146] spi: axiado: Remove redundant pm_runtime_mark_last_busy() call Greg Kroah-Hartman
2026-05-20 16:08 ` [PATCH 7.0 0278/1146] media: i2c: og01a1b: Fix V4L2 subdevice data initialization on probe Greg Kroah-Hartman
2026-05-20 16:08 ` [PATCH 7.0 0279/1146] media: synopsys: VIDEO_DW_MIPI_CSI2RX should depend on ARCH_ROCKCHIP Greg Kroah-Hartman
2026-05-20 16:08 ` [PATCH 7.0 0280/1146] drm/amd/pm: Fix xgmi max speed reporting Greg Kroah-Hartman
2026-05-20 16:08 ` [PATCH 7.0 0281/1146] spi: atcspi200: fix mutex initialization order Greg Kroah-Hartman
2026-05-20 16:08 ` [PATCH 7.0 0282/1146] selftests/sched_ext: Add missing error check for exit__load() Greg Kroah-Hartman
2026-05-20 16:08 ` [PATCH 7.0 0283/1146] drm/v3d: Handle error from drm_sched_entity_init() Greg Kroah-Hartman
2026-05-20 16:08 ` [PATCH 7.0 0284/1146] drm/sun4i: Fix resource leaks Greg Kroah-Hartman
2026-05-20 16:08 ` [PATCH 7.0 0285/1146] crypto: inside-secure/eip93 - register hash before authenc algorithms Greg Kroah-Hartman
2026-05-20 16:08 ` [PATCH 7.0 0286/1146] PCI: rzg3s-host: Fix reset handling in probe error path Greg Kroah-Hartman
2026-05-20 16:08 ` [PATCH 7.0 0287/1146] PCI: rzg3s-host: Reorder reset assertion during suspend Greg Kroah-Hartman
2026-05-20 16:08 ` [PATCH 7.0 0288/1146] dt-bindings: PCI: renesas,r9a08g045s33-pcie: Fix naming properties Greg Kroah-Hartman
2026-05-20 16:08 ` [PATCH 7.0 0289/1146] iommu/riscv: Add IOTINVAL after updating DDT/PDT entries Greg Kroah-Hartman
2026-05-20 16:09 ` [PATCH 7.0 0290/1146] iommu/riscv: Skip IRQ count check when using MSI interrupts Greg Kroah-Hartman
2026-05-20 16:09 ` [PATCH 7.0 0291/1146] iommu/riscv: Add missing GENERIC_MSI_IRQ Greg Kroah-Hartman
2026-05-20 16:09 ` [PATCH 7.0 0292/1146] iommu/riscv: Stop polling when CQCSR reports an error Greg Kroah-Hartman
2026-05-20 16:09 ` [PATCH 7.0 0293/1146] drm/amdkfd: Update queue properties for metadata ring Greg Kroah-Hartman
2026-05-20 16:09 ` [PATCH 7.0 0294/1146] drm/amd/ras: Fix NULL deref in ras_core_ras_interrupt_detected() Greg Kroah-Hartman
2026-05-20 16:09 ` [PATCH 7.0 0295/1146] drm/amdgpu: Add default case in DVI mode validation Greg Kroah-Hartman
2026-05-20 16:09 ` [PATCH 7.0 0296/1146] regulator: dt-bindings: fp9931: Make vin-supply property as required Greg Kroah-Hartman
2026-05-20 16:09 ` [PATCH 7.0 0297/1146] regulator: fp9931: Fix handling of mandatory "vin" supply Greg Kroah-Hartman
2026-05-20 16:09 ` [PATCH 7.0 0298/1146] drm/amd/ras: Fix NULL deref in ras_core_get_utc_second_timestamp() Greg Kroah-Hartman
2026-05-20 16:09 ` [PATCH 7.0 0299/1146] drm/amdgpu: Drop redundant queue NULL check in hang detect worker Greg Kroah-Hartman
2026-05-20 16:09 ` [PATCH 7.0 0300/1146] drm/amdgpu: Remove dead negative offset check in amdgpu_virt_init_critical_region() Greg Kroah-Hartman
2026-05-20 16:09 ` [PATCH 7.0 0301/1146] dm init: ensure device probing has finished in dm-mod.waitfor= Greg Kroah-Hartman
2026-05-20 16:09 ` [PATCH 7.0 0302/1146] fbdev: matroxfb: Mark variable with __maybe_unused to avoid W=1 build break Greg Kroah-Hartman
2026-05-20 16:09 ` [PATCH 7.0 0303/1146] crypto: simd - reject compat registrations without __ prefixes Greg Kroah-Hartman
2026-05-20 16:09 ` [PATCH 7.0 0304/1146] crypto: tegra - Disable softirqs before finalizing request Greg Kroah-Hartman
2026-05-20 16:09 ` [PATCH 7.0 0305/1146] crypto: atmel-aes - guard unregister on error in atmel_aes_register_algs Greg Kroah-Hartman
2026-05-20 16:09 ` [PATCH 7.0 0306/1146] padata: Remove cpu online check from cpu add and removal Greg Kroah-Hartman
2026-05-20 16:09 ` [PATCH 7.0 0307/1146] padata: Put CPU offline callback in ONLINE section to allow failure Greg Kroah-Hartman
2026-05-20 16:09 ` [PATCH 7.0 0308/1146] PCI: dwc: rcar-gen4: Change EPC BAR alignment to 4K as per the documentation Greg Kroah-Hartman
2026-05-20 16:09 ` [PATCH 7.0 0309/1146] accel/amdxdna: fix missing newline in pr_err message Greg Kroah-Hartman
2026-05-20 16:09 ` [PATCH 7.0 0310/1146] drm/amd/ras: Remove redundant NULL check in pending bad-bank list iteration Greg Kroah-Hartman
2026-05-20 16:09 ` [PATCH 7.0 0311/1146] drm/amdgpu/gfx10: look at the right prop for gfx queue priority Greg Kroah-Hartman
2026-05-20 16:09 ` [PATCH 7.0 0312/1146] drm/amdgpu/gfx11: " Greg Kroah-Hartman
2026-05-20 16:09 ` [PATCH 7.0 0313/1146] spi: hisi-kunpeng: prevent infinite while() loop in hisi_spi_flush_fifo Greg Kroah-Hartman
2026-05-20 16:09 ` [PATCH 7.0 0314/1146] PCI: sky1: Fix missing cleanup of ECAM config on probe failure Greg Kroah-Hartman
2026-05-20 16:09 ` [PATCH 7.0 0315/1146] drm/imagination: Switch reset_reason fields from enum to u32 Greg Kroah-Hartman
2026-05-20 16:09 ` [PATCH 7.0 0316/1146] iommu/tegra241-cmdqv: Set supports_cmd op in tegra241_vcmdq_hw_init() Greg Kroah-Hartman
2026-05-20 16:09 ` [PATCH 7.0 0317/1146] iommu/tegra241-cmdqv: Update uAPI to clarify HYP_OWN requirement Greg Kroah-Hartman
2026-05-20 16:09 ` [PATCH 7.0 0318/1146] drm/msm: add missing MODULE_DEVICE_ID definitions Greg Kroah-Hartman
2026-05-20 16:09 ` [PATCH 7.0 0319/1146] drm/msm/dpu: fix mismatch between power and frequency Greg Kroah-Hartman
2026-05-20 16:09 ` [PATCH 7.0 0320/1146] drm/msm/dsi: add the missing parameter description Greg Kroah-Hartman
2026-05-20 16:09 ` [PATCH 7.0 0321/1146] drm/msm/dpu: dont try using 2 LMs if only one DSC is available Greg Kroah-Hartman
2026-05-20 16:09 ` [PATCH 7.0 0322/1146] drm/msm/dsi: fix bits_per_pclk Greg Kroah-Hartman
2026-05-20 16:09 ` [PATCH 7.0 0323/1146] drm/msm/dsi: fix hdisplay calculation for CMD mode panel Greg Kroah-Hartman
2026-05-20 16:09 ` [PATCH 7.0 0324/1146] drm/msm/dsi: rename MSM8998 DSI version from V2_2_0 to V2_0_0 Greg Kroah-Hartman
2026-05-20 16:09 ` [PATCH 7.0 0325/1146] ASoC: rockchip: rockchip_sai: Set slot width for non-TDM mode Greg Kroah-Hartman
2026-05-20 16:09 ` [PATCH 7.0 0326/1146] tools/sched_ext: scx_pair: fix pair_ctx indexing for CPU pairs Greg Kroah-Hartman
2026-05-20 16:09 ` [PATCH 7.0 0327/1146] drm/panel: sharp-ls043t1le01: make use of prepare_prev_first Greg Kroah-Hartman
2026-05-20 16:09 ` [PATCH 7.0 0328/1146] drm/panel: simple: Correct G190EAN01 prepare timing Greg Kroah-Hartman
2026-05-20 16:09 ` [PATCH 7.0 0329/1146] PCI: qcom: Advertise Hotplug Slot Capability with no Command Completion support Greg Kroah-Hartman
2026-05-20 16:09 ` [PATCH 7.0 0330/1146] PCI: Prevent shrinking bridge window from its required size Greg Kroah-Hartman
2026-05-20 16:09 ` [PATCH 7.0 0331/1146] PCI: Fix premature removal from realloc_head list during resource assignment Greg Kroah-Hartman
2026-05-20 16:09 ` [PATCH 7.0 0332/1146] crypto: hisilicon/sec2 - prevent req used-after-free for sec Greg Kroah-Hartman
2026-05-20 16:09 ` [PATCH 7.0 0333/1146] PCI: Fix alignment calculation for resource size larger than align Greg Kroah-Hartman
2026-05-20 16:09 ` [PATCH 7.0 0334/1146] iommu/riscv: Fix signedness bug Greg Kroah-Hartman
2026-05-20 16:09 ` [PATCH 7.0 0335/1146] ALSA: core: Validate compress device numbers without dynamic minors Greg Kroah-Hartman
2026-05-20 16:09 ` [PATCH 7.0 0336/1146] drm/amd/display: Avoid NULL dereference in dc_dmub_srv error paths Greg Kroah-Hartman
2026-05-20 16:09 ` [PATCH 7.0 0337/1146] ASoC: amd: acp: update dmic_num logic for acp pdm dmic Greg Kroah-Hartman
2026-05-20 16:09 ` [PATCH 7.0 0338/1146] drm/amd/pm/ci: Use highest MCLK on CI when MCLK DPM is disabled Greg Kroah-Hartman
2026-05-20 16:09 ` [PATCH 7.0 0339/1146] drm/amd/pm/ci: Disable MCLK DPM on problematic CI ASICs Greg Kroah-Hartman
2026-05-20 16:09 ` [PATCH 7.0 0340/1146] drm/amd/pm/smu7: Fix SMU7 voltage dependency on display clock Greg Kroah-Hartman
2026-05-20 16:09 ` [PATCH 7.0 0341/1146] drm/amd/pm/ci: Fix powertune defaults for Hawaii 0x67B0 Greg Kroah-Hartman
2026-05-20 16:09 ` [PATCH 7.0 0342/1146] drm/amd/pm/ci: Clear EnabledForActivity field for memory levels Greg Kroah-Hartman
2026-05-20 16:09 ` [PATCH 7.0 0343/1146] drm/amd/pm/ci: Fill DW8 fields from SMC Greg Kroah-Hartman
2026-05-20 16:09 ` [PATCH 7.0 0344/1146] drm/amd/pm/smu7: Add SCLK cap for quirky Hawaii board Greg Kroah-Hartman
2026-05-20 16:09 ` [PATCH 7.0 0345/1146] drm/amdgpu/uvd4.2: Dont initialize UVD 4.2 when DPM is disabled Greg Kroah-Hartman
2026-05-20 16:09 ` [PATCH 7.0 0346/1146] PCI/DPC: Log AER error info for DPC/EDR uncorrectable errors Greg Kroah-Hartman
2026-05-20 16:09 ` [PATCH 7.0 0347/1146] hwmon: (aspeed-g6-pwm-tach): remove redundant driver remove callback Greg Kroah-Hartman
2026-05-20 16:09 ` [PATCH 7.0 0348/1146] ALSA: hda/realtek: fix bad indentation for alc269 Greg Kroah-Hartman
2026-05-20 16:09 ` [PATCH 7.0 0349/1146] ALSA: hda/realtek: fix code style (ERROR: else should follow close brace }) Greg Kroah-Hartman
2026-05-20 16:10 ` [PATCH 7.0 0350/1146] ASoC: SOF: Intel: hda: Place check before dereference Greg Kroah-Hartman
2026-05-20 16:10 ` [PATCH 7.0 0351/1146] drm/msm/vma: Avoid lock in VM_BIND fence signaling path Greg Kroah-Hartman
2026-05-20 16:10 ` [PATCH 7.0 0352/1146] drm/msm/a6xx: Add missing aperture_lock init Greg Kroah-Hartman
2026-05-20 16:10 ` [PATCH 7.0 0353/1146] drm/msm: Reject fb creation from _NO_SHARE objs Greg Kroah-Hartman
2026-05-20 16:10 ` [PATCH 7.0 0354/1146] drm/msm: Fix VM_BIND UNMAP locking Greg Kroah-Hartman
2026-05-20 16:10 ` [PATCH 7.0 0355/1146] drm/msm/a6xx: Fix HLSQ register dumping Greg Kroah-Hartman
2026-05-20 16:10 ` [PATCH 7.0 0356/1146] drm/msm/shrinker: Fix can_block() logic Greg Kroah-Hartman
2026-05-20 16:10 ` [PATCH 7.0 0357/1146] drm/msm/a6xx: Fix dumping A650+ debugbus blocks Greg Kroah-Hartman
2026-05-20 16:10 ` [PATCH 7.0 0358/1146] drm/msm/a6xx: Use barriers while updating HFI Q headers Greg Kroah-Hartman
2026-05-20 16:10 ` [PATCH 7.0 0359/1146] drm/msm/a8xx: Fix the ticks used in submit traces Greg Kroah-Hartman
2026-05-20 16:10 ` [PATCH 7.0 0360/1146] drm/msm/a6xx: Switch to preemption safe AO counter Greg Kroah-Hartman
2026-05-20 16:10 ` [PATCH 7.0 0361/1146] drm/msm/a6xx: Correct OOB usage Greg Kroah-Hartman
2026-05-20 16:10 ` [PATCH 7.0 0362/1146] drm/msm/adreno: Implement gx_is_on() for A8x Greg Kroah-Hartman
2026-05-20 16:10 ` [PATCH 7.0 0363/1146] drm/msm/a6xx: Fix gpu init from secure world Greg Kroah-Hartman
2026-05-20 16:10 ` [PATCH 7.0 0364/1146] ALSA: hda/cmedia: Remove duplicate pin configuration parsing Greg Kroah-Hartman
2026-05-20 16:10 ` [PATCH 7.0 0365/1146] pmdomain: ti: omap_prm: Fix a reference leak on device node Greg Kroah-Hartman
2026-05-20 16:10 ` [PATCH 7.0 0366/1146] pmdomain: imx: scu-pd: Fix device_node reference leak during ->probe() Greg Kroah-Hartman
2026-05-20 16:10 ` [PATCH 7.0 0367/1146] PM: domains: De-constify fields in struct dev_pm_domain_attach_data Greg Kroah-Hartman
2026-05-20 16:10 ` [PATCH 7.0 0368/1146] drm/msm/dpu: drop INTF_0 on MSM8953 Greg Kroah-Hartman
2026-05-20 16:10 ` [PATCH 7.0 0369/1146] ASoC: fsl_micfil: Add access property for "VAD Detected" Greg Kroah-Hartman
2026-05-20 16:10 ` [PATCH 7.0 0370/1146] ASoC: fsl_micfil: Fix event generation in hwvad_put_enable() Greg Kroah-Hartman
2026-05-20 16:10 ` [PATCH 7.0 0371/1146] ASoC: fsl_micfil: Fix event generation in hwvad_put_init_mode() Greg Kroah-Hartman
2026-05-20 16:10 ` [PATCH 7.0 0372/1146] ASoC: fsl_micfil: Fix event generation in micfil_range_set() Greg Kroah-Hartman
2026-05-20 16:10 ` [PATCH 7.0 0373/1146] ASoC: fsl_micfil: Fix event generation in micfil_put_dc_remover_state() Greg Kroah-Hartman
2026-05-20 16:10 ` [PATCH 7.0 0374/1146] ASoC: fsl_micfil: Fix event generation in micfil_quality_set() Greg Kroah-Hartman
2026-05-20 16:10 ` [PATCH 7.0 0375/1146] ASoC: fsl_xcvr: Fix event generation in fsl_xcvr_arc_mode_put() Greg Kroah-Hartman
2026-05-20 16:10 ` [PATCH 7.0 0376/1146] ASoC: fsl_xcvr: Fix event generation in fsl_xcvr_mode_put() Greg Kroah-Hartman
2026-05-20 16:10 ` [PATCH 7.0 0377/1146] ASoC: fsl_easrc: Check the variable range in fsl_easrc_iec958_put_bits() Greg Kroah-Hartman
2026-05-20 16:10 ` [PATCH 7.0 0378/1146] ASoC: fsl_easrc: Fix value type in fsl_easrc_iec958_get_bits() Greg Kroah-Hartman
2026-05-20 16:10 ` [PATCH 7.0 0379/1146] ASoC: fsl_easrc: Change the type for iec958 channel status controls Greg Kroah-Hartman
2026-05-20 16:10 ` [PATCH 7.0 0380/1146] iommu/amd: Fix clone_alias() to use the original devices devid Greg Kroah-Hartman
2026-05-20 16:10 ` [PATCH 7.0 0381/1146] iommu/riscv: Remove overflows on the invalidation path Greg Kroah-Hartman
2026-05-20 16:10 ` [PATCH 7.0 0382/1146] ASoC: qcom: qdsp6: topology: check widget type before accessing data Greg Kroah-Hartman
2026-05-20 16:10 ` [PATCH 7.0 0383/1146] PCI: dwc: Fix type mismatch for kstrtou32_from_user() return value Greg Kroah-Hartman
2026-05-20 16:10 ` [PATCH 7.0 0384/1146] crypto: qat - disable 4xxx AE cluster when lead engine is fused off Greg Kroah-Hartman
2026-05-20 16:10 ` [PATCH 7.0 0385/1146] crypto: qat - disable 420xx " Greg Kroah-Hartman
2026-05-20 16:10 ` [PATCH 7.0 0386/1146] crypto: qat - fix compression instance leak Greg Kroah-Hartman
2026-05-20 16:10 ` [PATCH 7.0 0387/1146] crypto: qat - fix type mismatch in RAS sysfs show functions Greg Kroah-Hartman
2026-05-20 16:10 ` [PATCH 7.0 0388/1146] crypto: iaa - fix per-node CPU counter reset in rebalance_wq_table() Greg Kroah-Hartman
2026-05-20 16:10 ` [PATCH 7.0 0389/1146] crypto: qat - use swab32 macro Greg Kroah-Hartman
2026-05-20 16:10 ` [PATCH 7.0 0390/1146] ALSA: hda: Notify IEC958 Default PCM switch state changes Greg Kroah-Hartman
2026-05-20 16:10 ` [PATCH 7.0 0391/1146] ASoC: rsnd: Fix potential out-of-bounds access of component_dais[] Greg Kroah-Hartman
2026-05-20 16:10 ` [PATCH 7.0 0392/1146] PCI: Enable AtomicOps only if Root Port supports them Greg Kroah-Hartman
2026-05-20 16:10 ` [PATCH 7.0 0393/1146] PCI: imx6: Keep Root Port MSI capability with iMSI-RX to work around hardware bug Greg Kroah-Hartman
2026-05-20 16:10 ` [PATCH 7.0 0394/1146] PCI: aspeed: Fix IRQ domain leak on platform_get_irq() failure Greg Kroah-Hartman
2026-05-20 16:10 ` [PATCH 7.0 0395/1146] dt-bindings: PCI: imx6q-pcie: Fix maxItems of clocks and clock-names Greg Kroah-Hartman
2026-05-20 16:10 ` [PATCH 7.0 0396/1146] PCI: mediatek-gen3: Prevent leaking IRQ domains when IRQ not found Greg Kroah-Hartman
2026-05-20 16:10 ` [PATCH 7.0 0397/1146] gpu: nova-core: bitfield: fix broken Default implementation Greg Kroah-Hartman
2026-05-20 16:10 ` [PATCH 7.0 0398/1146] selftests/mm: skip migration tests if NUMA is unavailable Greg Kroah-Hartman
2026-05-20 16:10 ` [PATCH 7.0 0399/1146] Documentation: fix a hugetlbfs reservation statement Greg Kroah-Hartman
2026-05-20 16:10 ` [PATCH 7.0 0400/1146] Docs/admin-guide/mm/damn/lru_sort: fix intervals autotune parameter name Greg Kroah-Hartman
2026-05-20 16:10 ` [PATCH 7.0 0401/1146] Docs/mm/damon/index: fix typo: autoamted -> automated Greg Kroah-Hartman
2026-05-20 16:10 ` [PATCH 7.0 0402/1146] zram: do not permit params change after init Greg Kroah-Hartman
2026-05-20 16:10 ` [PATCH 7.0 0403/1146] selftest: memcg: skip memcg_sock test if address family not supported Greg Kroah-Hartman
2026-05-20 16:10 ` [PATCH 7.0 0404/1146] gpu: nova-core: remove redundant `.as_ref()` for `dev_*` print Greg Kroah-Hartman
2026-05-20 16:10 ` [PATCH 7.0 0405/1146] gpu: nova-core: fix missing colon in SEC2 boot debug message Greg Kroah-Hartman
2026-05-20 16:10 ` [PATCH 7.0 0406/1146] ALSA: scarlett2: Add missing sentinel initializer field Greg Kroah-Hartman
2026-05-20 16:10 ` [PATCH 7.0 0407/1146] ASoC: qcom: audioreach: explicitly enable speaker protection modules Greg Kroah-Hartman
2026-05-20 16:10 ` [PATCH 7.0 0408/1146] ASoC: SOF: compress: return the configured codec from get_params Greg Kroah-Hartman
2026-05-20 16:10 ` [PATCH 7.0 0409/1146] PCI/NPEM: Set LED_HW_PLUGGABLE for hotplug-capable ports Greg Kroah-Hartman
2026-05-20 16:11 ` [PATCH 7.0 0410/1146] tools/sched_ext: Fix off-by-one in scx_sdt payload zeroing Greg Kroah-Hartman
2026-05-20 16:11 ` [PATCH 7.0 0411/1146] ASoC: soc-component: re-add pcm_new()/pcm_free() Greg Kroah-Hartman
2026-05-20 16:11 ` [PATCH 7.0 0412/1146] ASoC: amd: name back to pcm_new()/pcm_free() Greg Kroah-Hartman
2026-05-20 16:11 ` [PATCH 7.0 0413/1146] ASoC: amd: ps: fix the pcm device numbering for acp pdm dmic Greg Kroah-Hartman
2026-05-20 16:11 ` [PATCH 7.0 0414/1146] ALSA: usb-audio: qcom: Fix incorrect type in enable_audio_stream Greg Kroah-Hartman
2026-05-20 16:11 ` [PATCH 7.0 0415/1146] PCI: tegra194: Fix polling delay for L2 state Greg Kroah-Hartman
2026-05-20 16:11 ` [PATCH 7.0 0416/1146] PCI: tegra194: Increase LTSSM poll time on surprise link down Greg Kroah-Hartman
2026-05-20 16:11 ` [PATCH 7.0 0417/1146] PCI: tegra194: Disable LTSSM after transition to Detect " Greg Kroah-Hartman
2026-05-20 16:11 ` [PATCH 7.0 0418/1146] PCI: tegra194: Dont force the device into the D0 state before L2 Greg Kroah-Hartman
2026-05-20 16:11 ` [PATCH 7.0 0419/1146] PCI: tegra194: Disable PERST# IRQ only in Endpoint mode Greg Kroah-Hartman
2026-05-20 16:11 ` [PATCH 7.0 0420/1146] PCI: tegra194: Use devm_gpiod_get_optional() to parse "nvidia,refclk-select" Greg Kroah-Hartman
2026-05-20 16:11 ` [PATCH 7.0 0421/1146] PCI: tegra194: Disable direct speed change for Endpoint mode Greg Kroah-Hartman
2026-05-20 16:11 ` [PATCH 7.0 0422/1146] PCI: tegra194: Set LTR message request before PCIe link up in " Greg Kroah-Hartman
2026-05-20 16:11 ` [PATCH 7.0 0423/1146] PCI: tegra194: Allow system suspend when the Endpoint link is not up Greg Kroah-Hartman
2026-05-20 16:11 ` [PATCH 7.0 0424/1146] PCI: tegra194: Free up Endpoint resources during remove() Greg Kroah-Hartman
2026-05-20 16:11 ` [PATCH 7.0 0425/1146] PCI: tegra194: Use DWC IP core version Greg Kroah-Hartman
2026-05-20 16:11 ` [PATCH 7.0 0426/1146] PCI: dwc: Apply ECRC workaround to DesignWare 5.00a as well Greg Kroah-Hartman
2026-05-20 16:11 ` [PATCH 7.0 0427/1146] PCI: tegra194: Disable L1.2 capability of Tegra234 EP Greg Kroah-Hartman
2026-05-20 16:11 ` [PATCH 7.0 0428/1146] PCI: tegra194: Fix CBB timeout caused by DBI access before core power-on Greg Kroah-Hartman
2026-05-20 16:11 ` [PATCH 7.0 0429/1146] drm/fb-helper: Fix a locking bug in an error path Greg Kroah-Hartman
2026-05-20 16:11 ` [PATCH 7.0 0430/1146] PCI: cadence: Add flags for disabling ASPM capability for broken Root Ports Greg Kroah-Hartman
2026-05-20 16:11 ` [PATCH 7.0 0431/1146] PCI: sg2042: Avoid L0s and L1 on Sophgo 2042 PCIe " Greg Kroah-Hartman
2026-05-20 16:11 ` [PATCH 7.0 0432/1146] ASoC: SDCA: Fix cleanup inversion in class driver Greg Kroah-Hartman
2026-05-20 16:11 ` [PATCH 7.0 0433/1146] spi: rzv2h-rspi: Fix invalid SPR=0/BRDV=0 clock configuration Greg Kroah-Hartman
2026-05-20 16:11 ` [PATCH 7.0 0434/1146] spi: mtk-snfi: unregister ECC engine on probe failure and remove() callback Greg Kroah-Hartman
2026-05-20 16:11 ` [PATCH 7.0 0435/1146] ALSA: sc6000: Keep the programmed board state in card-private data Greg Kroah-Hartman
2026-05-20 16:11 ` [PATCH 7.0 0436/1146] dm cache: fix missing return in invalidate_committeds error path Greg Kroah-Hartman
2026-05-20 16:11 ` [PATCH 7.0 0437/1146] sched_ext: Track @ps rq lock across set_cpus_allowed_scx -> ops.set_cpumask Greg Kroah-Hartman
2026-05-20 16:11 ` [PATCH 7.0 0438/1146] sched_ext: Fix ops.cgroup_move() invocation kf_mask and rq tracking Greg Kroah-Hartman
2026-05-20 16:11 ` [PATCH 7.0 0439/1146] spi: cadence-qspi: Revert the filtering of certain opcodes in ODTR Greg Kroah-Hartman
2026-05-20 16:11 ` [PATCH 7.0 0440/1146] crypto: jitterentropy - replace long-held spinlock with mutex Greg Kroah-Hartman
2026-05-20 16:11 ` [PATCH 7.0 0441/1146] ALSA: usb-audio: Exclude Scarlett 18i20 1st Gen from SKIP_IFACE_SETUP Greg Kroah-Hartman
2026-05-20 16:11 ` [PATCH 7.0 0442/1146] ALSA: hda/realtek - fixed speaker no sound update Greg Kroah-Hartman
2026-05-20 16:11 ` [PATCH 7.0 0443/1146] gfs2: Call unlock_new_inode before d_instantiate Greg Kroah-Hartman
2026-05-20 16:11 ` [PATCH 7.0 0444/1146] fanotify: avoid/silence premature LSM capability checks Greg Kroah-Hartman
2026-05-20 16:11 ` [PATCH 7.0 0445/1146] fanotify: call fanotify_events_supported() before path_permission() and security_path_notify() Greg Kroah-Hartman
2026-05-20 16:11 ` [PATCH 7.0 0446/1146] fuse: fix premature writetrhough request for large folio Greg Kroah-Hartman
2026-05-20 16:11 ` [PATCH 7.0 0447/1146] fuse: fix uninit-value in fuse_dentry_revalidate() Greg Kroah-Hartman
2026-05-20 16:11 ` [PATCH 7.0 0448/1146] ktest: Avoid undef warning when WARNINGS_FILE is unset Greg Kroah-Hartman
2026-05-20 16:11 ` [PATCH 7.0 0449/1146] ktest: Honor empty per-test option overrides Greg Kroah-Hartman
2026-05-20 16:11 ` [PATCH 7.0 0450/1146] ktest: Run POST_KTEST hooks on failure and cancellation Greg Kroah-Hartman
2026-05-20 16:11 ` [PATCH 7.0 0451/1146] vfio: selftests: fix crash in vfio_dma_mapping_mmio_test Greg Kroah-Hartman
2026-05-20 16:11 ` [PATCH 7.0 0452/1146] rtla: Simplify code by caching string lengths Greg Kroah-Hartman
2026-05-20 16:11 ` [PATCH 7.0 0453/1146] rtla: Use str_has_prefix() for prefix checks Greg Kroah-Hartman
2026-05-20 16:11 ` [PATCH 7.0 0454/1146] rtla/trace: Fix write loop in trace_event_save_hist() Greg Kroah-Hartman
2026-05-20 16:11 ` [PATCH 7.0 0455/1146] rtla/utils: Fix resource leak in set_comm_sched_attr() Greg Kroah-Hartman
2026-05-20 16:11 ` [PATCH 7.0 0456/1146] tools/rtla: Generate optstring from long options Greg Kroah-Hartman
2026-05-20 16:11 ` [PATCH 7.0 0457/1146] rtla: Fix segfault on multiple SIGINTs Greg Kroah-Hartman
2026-05-20 16:11 ` [PATCH 7.0 0458/1146] vfio: selftests: Build tests on aarch64 Greg Kroah-Hartman
2026-05-20 16:11 ` [PATCH 7.0 0459/1146] gfs2: less aggressive low-memory log flushing Greg Kroah-Hartman
2026-05-20 16:11 ` [PATCH 7.0 0460/1146] quota: Fix race of dquot_scan_active() with quota deactivation Greg Kroah-Hartman
2026-05-20 16:11 ` [PATCH 7.0 0461/1146] vfio: unhide vdev->debug_root Greg Kroah-Hartman
2026-05-20 16:11 ` [PATCH 7.0 0462/1146] gfs2: add some missing log locking Greg Kroah-Hartman
2026-05-20 16:11 ` [PATCH 7.0 0463/1146] gfs2: prevent NULL pointer dereference during unmount Greg Kroah-Hartman
2026-05-20 16:11 ` [PATCH 7.0 0464/1146] efi/capsule-loader: fix incorrect sizeof in phys array reallocation Greg Kroah-Hartman
2026-05-20 16:11 ` [PATCH 7.0 0465/1146] ksmbd: fix use-after-free from async crypto on Qualcomm crypto engine Greg Kroah-Hartman
2026-05-20 16:11 ` [PATCH 7.0 0466/1146] arm64: dts: mediatek: mt8365: Describe infracfg-nao as a pure syscon Greg Kroah-Hartman
2026-05-20 16:11 ` [PATCH 7.0 0467/1146] ARM: dts: mediatek: mt7623: fix efuse fallback compatible Greg Kroah-Hartman
2026-05-20 16:11 ` [PATCH 7.0 0468/1146] memory: tegra124-emc: Fix dll_change check Greg Kroah-Hartman
2026-05-20 16:11 ` [PATCH 7.0 0469/1146] memory: tegra30-emc: " Greg Kroah-Hartman
2026-05-20 16:12 ` [PATCH 7.0 0470/1146] arm64: dts: imx8-apalis: Fix LEDs name collision Greg Kroah-Hartman
2026-05-20 16:12 ` [PATCH 7.0 0471/1146] arm64: dts: imx91-11x11-evk: change usdhc tuning step for eMMC and SD Greg Kroah-Hartman
2026-05-20 16:12 ` [PATCH 7.0 0472/1146] riscv: dts: spacemit: pcie: fix missing power regulator Greg Kroah-Hartman
2026-05-20 16:12 ` [PATCH 7.0 0473/1146] arm64: dts: mediatek: mt7988a-bpi-r4pro: fix model string Greg Kroah-Hartman
2026-05-20 16:12 ` [PATCH 7.0 0474/1146] arm64: dts: rockchip: Make Jaguar PCIe-refclk pin use pull-up config Greg Kroah-Hartman
2026-05-20 16:12 ` [PATCH 7.0 0475/1146] arm64: dts: imx8mp-evk: Enable pull select bit for PCIe regulator GPIO (M.2 W_DISABLE1) Greg Kroah-Hartman
2026-05-20 16:12 ` [PATCH 7.0 0476/1146] iommufd: vfio compatibility extension check for noiommu mode Greg Kroah-Hartman
2026-05-20 16:12 ` [PATCH 7.0 0477/1146] arm64: dts: qcom: sm6125-xiaomi-ginkgo: Remove board-id Greg Kroah-Hartman
2026-05-20 16:12 ` [PATCH 7.0 0478/1146] arm64: dts: qcom: sm6125-xiaomi-ginkgo: Correct reserved memory ranges Greg Kroah-Hartman
2026-05-20 16:12 ` [PATCH 7.0 0479/1146] arm64: dts: qcom: sm6125-xiaomi-ginkgo: Remove extcon Greg Kroah-Hartman
2026-05-20 16:12 ` [PATCH 7.0 0480/1146] arm64: dts: qcom: sm6125-xiaomi-ginkgo: Fix reserved gpio ranges Greg Kroah-Hartman
2026-05-20 16:12 ` [PATCH 7.0 0481/1146] arm64: dts: qcom: qcs6490-rubikpi3: Use lt9611 DSI Port B Greg Kroah-Hartman
2026-05-20 16:12 ` [PATCH 7.0 0482/1146] arm64: dts: qcom: talos: Add missing clock-names to GCC Greg Kroah-Hartman
2026-05-20 16:12 ` [PATCH 7.0 0483/1146] arm64: dts: ti: k3-am62l: include WKUP_UART0 in wakeup peripheral window Greg Kroah-Hartman
2026-05-20 16:12 ` [PATCH 7.0 0484/1146] arm64: dts: mediatek: mt6795: Fix gpio-ranges pin count Greg Kroah-Hartman
2026-05-20 16:12 ` [PATCH 7.0 0485/1146] arm64: dts: mediatek: mt7981b: " Greg Kroah-Hartman
2026-05-20 16:12 ` [PATCH 7.0 0486/1146] arm64: dts: mediatek: mt7986a: " Greg Kroah-Hartman
2026-05-20 16:12 ` [PATCH 7.0 0487/1146] iommufd/selftest: Fix page leaks in mock_viommu_{init,destroy} Greg Kroah-Hartman
2026-05-20 16:12 ` [PATCH 7.0 0488/1146] arm64: dts: imx8mp-kontron: Fix touch reset configuration on DL devices Greg Kroah-Hartman
2026-05-20 16:12 ` [PATCH 7.0 0489/1146] arm64: dts: imx8mp-kontron: Drop vmmc-supply to fix SD card on SMARC eval carrier Greg Kroah-Hartman
2026-05-20 16:12 ` [PATCH 7.0 0490/1146] arm64: dts: imx8mp-hummingboard-pulse/cubox-m: fix vmmc gpio polarity Greg Kroah-Hartman
2026-05-20 16:12 ` [PATCH 7.0 0491/1146] arm64: dts: imx8mp-hummingboard-pulse: fix mini-hdmi dsi port reference Greg Kroah-Hartman
2026-05-20 16:12 ` [PATCH 7.0 0492/1146] ARM: dts: BCM5301X: Drop extra NAND controller compatible Greg Kroah-Hartman
2026-05-20 16:12 ` [PATCH 7.0 0493/1146] arm64: dts: qcom: msm8953-xiaomi-vince: correct wled ovp value Greg Kroah-Hartman
2026-05-20 16:12 ` [PATCH 7.0 0494/1146] arm64: dts: qcom: msm8937-xiaomi-land: " Greg Kroah-Hartman
2026-05-20 16:12 ` [PATCH 7.0 0495/1146] arm64: dts: qcom: msm8953-xiaomi-daisy: fix backlight Greg Kroah-Hartman
2026-05-20 16:12 ` [PATCH 7.0 0496/1146] firmware: qcom_scm: dont opencode kmemdup Greg Kroah-Hartman
2026-05-20 16:12 ` [PATCH 7.0 0497/1146] soc: qcom: ubwc: disable bank swizzling for Glymur platform Greg Kroah-Hartman
2026-05-20 16:12 ` [PATCH 7.0 0498/1146] arm64: dts: rockchip: Fix Bluetooth stability on LCKFB TaiShan Pi Greg Kroah-Hartman
2026-05-20 16:12 ` [PATCH 7.0 0499/1146] Revert "arm64: dts: rockchip: add SPDIF audio to Beelink A1" Greg Kroah-Hartman
2026-05-20 16:12 ` [PATCH 7.0 0500/1146] arm64: dts: rockchip: Correct Fan Supply for Gameforce Ace Greg Kroah-Hartman
2026-05-20 16:12 ` [PATCH 7.0 0501/1146] arm64: dts: rockchip: Correct Joystick Axes on " Greg Kroah-Hartman
2026-05-20 16:12 ` [PATCH 7.0 0502/1146] soc: qcom: ocmem: make the core clock optional Greg Kroah-Hartman
2026-05-20 16:12 ` [PATCH 7.0 0503/1146] soc: qcom: ocmem: register reasons for probe deferrals Greg Kroah-Hartman
2026-05-20 16:12 ` [PATCH 7.0 0504/1146] soc: qcom: ocmem: return -EPROBE_DEFER is ocmem is not available Greg Kroah-Hartman
2026-05-20 16:12 ` [PATCH 7.0 0505/1146] riscv: dts: spacemit: drop incorrect pinctrl for combo PHY Greg Kroah-Hartman
2026-05-20 16:12 ` [PATCH 7.0 0506/1146] arm64: dts: rockchip: Fix RK3562 EVB2 model name Greg Kroah-Hartman
2026-05-20 16:12 ` [PATCH 7.0 0507/1146] arm64: dts: rockchip: Add mphy reset to ufshc node Greg Kroah-Hartman
2026-05-20 16:12 ` [PATCH 7.0 0508/1146] bus: rifsc: fix RIF configuration check for peripherals Greg Kroah-Hartman
2026-05-20 16:12 ` [PATCH 7.0 0509/1146] arm64: dts: qcom: arduino-imola: fix faulty spidev node Greg Kroah-Hartman
2026-05-20 16:12 ` [PATCH 7.0 0510/1146] arm64: dts: qcom: add missing denali-oled.dtb to Makefile Greg Kroah-Hartman
2026-05-20 16:12 ` [PATCH 7.0 0511/1146] arm64: dts: qcom: hamoa: correct Iris corners for the MXC rail Greg Kroah-Hartman
2026-05-20 16:12 ` [PATCH 7.0 0512/1146] arm64: dts: qcom: lemans: " Greg Kroah-Hartman
2026-05-20 16:12 ` [PATCH 7.0 0513/1146] arm64: dts: qcom: monaco: " Greg Kroah-Hartman
2026-05-20 16:12 ` [PATCH 7.0 0514/1146] arm64: dts: qcom: sm8550: " Greg Kroah-Hartman
2026-05-20 16:12 ` [PATCH 7.0 0515/1146] arm64: dts: qcom: sm8650: " Greg Kroah-Hartman
2026-05-20 16:12 ` [PATCH 7.0 0516/1146] arm64: dts: qcom: sm8750: " Greg Kroah-Hartman
2026-05-20 16:12 ` [PATCH 7.0 0517/1146] arm64: dts: qcom: kaanapali: Fix GIC_ITS range length Greg Kroah-Hartman
2026-05-20 16:12 ` [PATCH 7.0 0518/1146] arm64: dts: qcom: milos: " Greg Kroah-Hartman
2026-05-20 16:12 ` [PATCH 7.0 0519/1146] arm64: dts: qcom: sm8450: " Greg Kroah-Hartman
2026-05-20 16:12 ` [PATCH 7.0 0520/1146] arm64: dts: qcom: sm8550: " Greg Kroah-Hartman
2026-05-20 16:12 ` [PATCH 7.0 0521/1146] arm64: dts: qcom: sm8650: " Greg Kroah-Hartman
2026-05-20 16:12 ` [PATCH 7.0 0522/1146] arm64: dts: qcom: sm8750: " Greg Kroah-Hartman
2026-05-20 16:12 ` [PATCH 7.0 0523/1146] arm64: dts: qcom: sm8550: Fix xo clock supply of platform SD host controller Greg Kroah-Hartman
2026-05-20 16:12 ` [PATCH 7.0 0524/1146] arm64: dts: qcom: sm8650: Fix xo clock supply of " Greg Kroah-Hartman
2026-05-20 16:12 ` [PATCH 7.0 0525/1146] arm64: dts: qcom: hamoa: Fix xo clock supply of platform " Greg Kroah-Hartman
2026-05-20 16:12 ` [PATCH 7.0 0526/1146] arm64: dts: qcom: sm8450: Enable UHS-I SDR50 and SDR104 SD card modes Greg Kroah-Hartman
2026-05-20 16:12 ` [PATCH 7.0 0527/1146] arm64: dts: qcom: sm8550: " Greg Kroah-Hartman
2026-05-20 16:12 ` [PATCH 7.0 0528/1146] arm64: dts: qcom: sm8650: " Greg Kroah-Hartman
2026-05-20 16:12 ` [PATCH 7.0 0529/1146] arm64: dts: qcom: sm7225-fairphone-fp4: Fix conflicting bias pinctrl Greg Kroah-Hartman
2026-05-20 16:13 ` [PATCH 7.0 0530/1146] arm64: dts: qcom: sdm845-xiaomi-beryllium: Mark l1a regulator as powered during boot Greg Kroah-Hartman
2026-05-20 16:13 ` [PATCH 7.0 0531/1146] arm64: dts: qcom: msm8917-xiaomi-riva: Fix board-id for all bootloader Greg Kroah-Hartman
2026-05-20 16:13 ` [PATCH 7.0 0532/1146] arm64: dts: ti: k3-am62p5-sk: Disable MMC1 internal pulls on data pins Greg Kroah-Hartman
2026-05-20 16:13 ` [PATCH 7.0 0533/1146] arm64: dts: ti: k3-am62l3-evm: " Greg Kroah-Hartman
2026-05-20 16:13 ` [PATCH 7.0 0534/1146] arm64: dts: ti: k3-am62-lp-sk: Enable internal pulls for MMC0 " Greg Kroah-Hartman
2026-05-20 16:13 ` [PATCH 7.0 0535/1146] arm64: dts: ti: k3-am62-verdin: Fix SPI_1 GPIO CS pinctrl label Greg Kroah-Hartman
2026-05-20 16:13 ` [PATCH 7.0 0536/1146] arm64: dts: freescale: imx8mp-tqma8mpql-mba8mp-ras314: fix UART1 RTS/CTS muxing Greg Kroah-Hartman
2026-05-20 16:13 ` [PATCH 7.0 0537/1146] arm64: dts: imx91: Remove TMUs superfluous sensor ID Greg Kroah-Hartman
2026-05-20 16:13 ` [PATCH 7.0 0538/1146] arm64: dts: imx8mp-kontron: Fix boot order for PMIC and RTC Greg Kroah-Hartman
2026-05-20 16:13 ` [PATCH 7.0 0539/1146] arm64: dts: imx8dxl-evk: Use audio-graph-card2 for wm8960-2 and wm8960-3 Greg Kroah-Hartman
2026-05-20 16:13 ` [PATCH 7.0 0540/1146] arm64: dts: imx8mp-evk: Specify ADV7535 register addresses Greg Kroah-Hartman
2026-05-20 16:13 ` [PATCH 7.0 0541/1146] arm64: dts: lx2160a: change i2c0 (iic1) pinmux mask to one bit Greg Kroah-Hartman
2026-05-20 16:13 ` [PATCH 7.0 0542/1146] arm64: dts: lx2160a: remove duplicate pinmux nodes Greg Kroah-Hartman
2026-05-20 16:13 ` [PATCH 7.0 0543/1146] arm64: dts: lx2160a: rename pinmux nodes for readability Greg Kroah-Hartman
2026-05-20 16:13 ` [PATCH 7.0 0544/1146] arm64: dts: lx2160a: add sda gpio references for i2c bus recovery Greg Kroah-Hartman
2026-05-20 16:13 ` [PATCH 7.0 0545/1146] arm64: dts: lx2160a: change zeros to hexadecimal in pinmux nodes Greg Kroah-Hartman
2026-05-20 16:13 ` [PATCH 7.0 0546/1146] arm64: dts: lx2160a: complete pinmux for rcwsr12 configuration word Greg Kroah-Hartman
2026-05-20 16:13 ` [PATCH 7.0 0547/1146] arm64: dts: imx8qm-mek: switch Type-C connector power-role to dual Greg Kroah-Hartman
2026-05-20 16:13 ` [PATCH 7.0 0548/1146] arm64: dts: imx8qxp-mek: " Greg Kroah-Hartman
2026-05-20 16:13 ` [PATCH 7.0 0549/1146] soc/tegra: cbb: Set ERD on resume for err interrupt Greg Kroah-Hartman
2026-05-20 16:13 ` [PATCH 7.0 0550/1146] soc/tegra: cbb: Fix incorrect ARRAY_SIZE in fabric lookup tables Greg Kroah-Hartman
2026-05-20 16:13 ` [PATCH 7.0 0551/1146] soc/tegra: cbb: Fix cross-fabric target timeout lookup Greg Kroah-Hartman
2026-05-20 16:13 ` [PATCH 7.0 0552/1146] arm64: tegra: Fix RTC aliases Greg Kroah-Hartman
2026-05-20 16:13 ` [PATCH 7.0 0553/1146] soc/tegra: pmc: Add kerneldoc for reboot notifier Greg Kroah-Hartman
2026-05-20 16:13 ` [PATCH 7.0 0554/1146] soc/tegra: pmc: Correct function names in kerneldoc Greg Kroah-Hartman
2026-05-20 16:13 ` [PATCH 7.0 0555/1146] soc/tegra: pmc: Add kerneldoc for wake-up variables Greg Kroah-Hartman
2026-05-20 16:13 ` [PATCH 7.0 0556/1146] unshare: fix nsproxy leak in ksys_unshare() on set_cred_ucounts() failure Greg Kroah-Hartman
2026-05-20 16:13 ` [PATCH 7.0 0557/1146] ocfs2/dlm: validate qr_numregions in dlm_match_regions() Greg Kroah-Hartman
2026-05-20 16:13 ` [PATCH 7.0 0558/1146] ocfs2/dlm: fix off-by-one in dlm_match_regions() region comparison Greg Kroah-Hartman
2026-05-20 16:13 ` [PATCH 7.0 0559/1146] soc: qcom: llcc: fix v1 SB syndrome register offset Greg Kroah-Hartman
2026-05-20 16:13 ` [PATCH 7.0 0560/1146] soc: qcom: aoss: compare against normalized cooling state Greg Kroah-Hartman
2026-05-20 16:13 ` [PATCH 7.0 0561/1146] arm64: dts: qcom: milos: Add missing CX power domain to GCC Greg Kroah-Hartman
2026-05-20 16:13 ` [PATCH 7.0 0562/1146] arm64: dts: qcom: sm8250: Add missing CPU7 3.09GHz OPP Greg Kroah-Hartman
2026-05-20 16:13 ` [PATCH 7.0 0563/1146] ARM: OMAP1: Fix DEBUG_LL and earlyprintk on OMAP16XX Greg Kroah-Hartman
2026-05-20 16:13 ` [PATCH 7.0 0564/1146] arm64/xor: fix conflicting attributes for xor_block_template Greg Kroah-Hartman
2026-05-20 16:13 ` [PATCH 7.0 0565/1146] lib: kunit_iov_iter: fix memory leaks Greg Kroah-Hartman
2026-05-20 16:13 ` [PATCH 7.0 0566/1146] ARM: dts: imx27-eukrea: replace interrupts with interrupts-extended Greg Kroah-Hartman
2026-05-20 16:13 ` [PATCH 7.0 0567/1146] firmware: arm_ffa: Use the correct buffer size during RXTX_MAP Greg Kroah-Hartman
2026-05-20 16:13 ` [PATCH 7.0 0568/1146] fwctl: Fix class init ordering to avoid NULL pointer dereference on device removal Greg Kroah-Hartman
2026-05-20 16:13 ` [PATCH 7.0 0569/1146] ocfs2: fix listxattr handling when the buffer is full Greg Kroah-Hartman
2026-05-20 16:13 ` [PATCH 7.0 0570/1146] ocfs2: validate bg_bits during freefrag scan Greg Kroah-Hartman
2026-05-20 16:13 ` [PATCH 7.0 0571/1146] ocfs2: validate group add input before caching Greg Kroah-Hartman
2026-05-20 16:13 ` [PATCH 7.0 0572/1146] dmaengine: dw-axi-dmac: fix Alignment should match open parenthesis Greg Kroah-Hartman
2026-05-20 16:13 ` [PATCH 7.0 0573/1146] dmaengine: dw-axi-dmac: Remove unnecessary return statement from void function Greg Kroah-Hartman
2026-05-20 16:13 ` [PATCH 7.0 0574/1146] phy: apple: apple: Use local variable for ioremap return value Greg Kroah-Hartman
2026-05-20 16:13 ` [PATCH 7.0 0575/1146] soundwire: bus: demote UNATTACHED state warnings to dev_dbg() Greg Kroah-Hartman
2026-05-20 16:13 ` [PATCH 7.0 0576/1146] soundwire: Intel: test bus.bpt_stream before assigning it Greg Kroah-Hartman
2026-05-20 16:13 ` [PATCH 7.0 0577/1146] dmaengine: mxs-dma: Fix missing return value from of_dma_controller_register() Greg Kroah-Hartman
2026-05-20 16:13 ` [PATCH 7.0 0578/1146] soundwire: cadence: Clear message complete before signaling waiting thread Greg Kroah-Hartman
2026-05-20 16:13 ` [PATCH 7.0 0579/1146] tracing: move __printf() attribute on __ftrace_vbprintk() Greg Kroah-Hartman
2026-05-20 16:13 ` [PATCH 7.0 0580/1146] tracing: Rebuild full_name on each hist_field_name() call Greg Kroah-Hartman
2026-05-20 16:13 ` [PATCH 7.0 0581/1146] hte: tegra194: remove Kconfig dependency on Tegra194 SoC Greg Kroah-Hartman
2026-05-20 16:13 ` [PATCH 7.0 0582/1146] remoteproc: xlnx: Fix sram property parsing Greg Kroah-Hartman
2026-05-20 16:13 ` [PATCH 7.0 0583/1146] stop_machine: Fix the documentation for a NULL cpus argument Greg Kroah-Hartman
2026-05-20 16:13 ` [PATCH 7.0 0584/1146] remoteproc: imx_rproc: Check return value of regmap_attach_dev() in imx_rproc_mmio_detect_mode() Greg Kroah-Hartman
2026-05-20 16:13 ` [PATCH 7.0 0585/1146] ima: check return value of crypto_shash_final() in boot aggregate Greg Kroah-Hartman
2026-05-20 16:13 ` [PATCH 7.0 0586/1146] HID: asus: make asus_resume adhere to linux kernel coding standards Greg Kroah-Hartman
2026-05-20 16:13 ` [PATCH 7.0 0587/1146] HID: asus: do not abort probe when not necessary Greg Kroah-Hartman
2026-05-20 16:13 ` [PATCH 7.0 0588/1146] workqueue: devres: Add device-managed allocate workqueue Greg Kroah-Hartman
2026-05-20 16:13 ` [PATCH 7.0 0589/1146] power: supply: max77705: Drop duplicated IRQ error message Greg Kroah-Hartman
2026-05-20 16:14 ` [PATCH 7.0 0590/1146] power: supply: max77705: Free allocated workqueue and fix removal order Greg Kroah-Hartman
2026-05-20 16:14 ` [PATCH 7.0 0591/1146] mtd: physmap_of_gemini: Fix disabled pinctrl state check Greg Kroah-Hartman
2026-05-20 16:14 ` [PATCH 7.0 0592/1146] ima_fs: Correctly create securityfs files for unsupported hash algos Greg Kroah-Hartman
2026-05-20 16:14 ` [PATCH 7.0 0593/1146] dt-bindings: interrupt-controller: arm,gic-v3: Fix EPPI range Greg Kroah-Hartman
2026-05-20 16:14 ` [PATCH 7.0 0594/1146] mtd: spi-nor: core: correct the op.dummy.nbytes when check read operations Greg Kroah-Hartman
2026-05-20 16:14 ` [PATCH 7.0 0595/1146] mtd: spi-nor: update spi_nor_fixups::post_sfdp() documentation Greg Kroah-Hartman
2026-05-20 16:14 ` [PATCH 7.0 0596/1146] mtd: spi-nor: micron-st: add SNOR_CMD_PP_8_8_8_DTR sfdp fixup for mt35xu512aba Greg Kroah-Hartman
2026-05-20 16:14 ` [PATCH 7.0 0597/1146] mtd: spi-nor: swp: check SR_TB flag when getting tb_mask Greg Kroah-Hartman
2026-05-20 16:14 ` [PATCH 7.0 0598/1146] mtd: parsers: ofpart: call of_node_put() only in ofpart_fail path Greg Kroah-Hartman
2026-05-20 16:14 ` [PATCH 7.0 0599/1146] mtd: parsers: ofpart: call of_node_get() for dedicated subpartitions Greg Kroah-Hartman
2026-05-20 16:14 ` [PATCH 7.0 0600/1146] cxl/pci: Check memdev driver binding status in cxl_reset_done() Greg Kroah-Hartman
2026-05-20 16:14 ` [PATCH 7.0 0601/1146] mtd: rawnand: sunxi: fix sunxi_nfc_hw_ecc_read_extra_oob Greg Kroah-Hartman
2026-05-20 16:14 ` [PATCH 7.0 0602/1146] mtd: spinand: winbond: Clarify when to enable the HS bit Greg Kroah-Hartman
2026-05-20 16:14 ` [PATCH 7.0 0603/1146] HID: usbhid: fix deadlock in hid_post_reset() Greg Kroah-Hartman
2026-05-20 16:14 ` [PATCH 7.0 0604/1146] ext4: fix miss unlock sb->s_umount in extents_kunit_init() Greg Kroah-Hartman
2026-05-20 16:14 ` [PATCH 7.0 0605/1146] ext4: call deactivate_super() in extents_kunit_exit() Greg Kroah-Hartman
2026-05-20 16:14 ` [PATCH 7.0 0606/1146] ext4: fix the error handling process in extents_kunit_init) Greg Kroah-Hartman
2026-05-20 16:14 ` [PATCH 7.0 0607/1146] ext4: fix possible null-ptr-deref in extents_kunit_exit() Greg Kroah-Hartman
2026-05-20 16:14 ` [PATCH 7.0 0608/1146] ext4: fix possible null-ptr-deref in mbt_kunit_exit() Greg Kroah-Hartman
2026-05-20 16:14 ` [PATCH 7.0 0609/1146] bpf, arm64: Reject out-of-range B.cond targets Greg Kroah-Hartman
2026-05-20 16:14 ` [PATCH 7.0 0610/1146] bpf, arm64: Fix off-by-one in check_imm signed range check Greg Kroah-Hartman
2026-05-20 16:14 ` [PATCH 7.0 0611/1146] bpf, arm64: Remove redundant bpf_flush_icache() after pack allocator finalize Greg Kroah-Hartman
2026-05-20 16:14 ` [PATCH 7.0 0612/1146] bpf, riscv: " Greg Kroah-Hartman
2026-05-20 16:14 ` [PATCH 7.0 0613/1146] bpf, sockmap: Fix af_unix iter deadlock Greg Kroah-Hartman
2026-05-20 16:14 ` [PATCH 7.0 0614/1146] bpf, sockmap: Fix af_unix null-ptr-deref in proto update Greg Kroah-Hartman
2026-05-20 16:14 ` [PATCH 7.0 0615/1146] bpf, sockmap: Take state lock for af_unix iter Greg Kroah-Hartman
2026-05-20 16:14 ` [PATCH 7.0 0616/1146] bpf: Fix precedence bug in convert_bpf_ld_abs alignment check Greg Kroah-Hartman
2026-05-20 16:14 ` [PATCH 7.0 0617/1146] bpf: Fix NULL deref in map_kptr_match_type for scalar regs Greg Kroah-Hartman
2026-05-20 16:14 ` [PATCH 7.0 0618/1146] bpf: allow UTF-8 literals in bpf_bprintf_prepare() Greg Kroah-Hartman
2026-05-20 16:14 ` [PATCH 7.0 0619/1146] libbpf: Prevent double close and leak of btf objects Greg Kroah-Hartman
2026-05-20 16:14 ` [PATCH 7.0 0620/1146] bpf: Validate node_id in arena_alloc_pages() Greg Kroah-Hartman
2026-05-20 16:14 ` [PATCH 7.0 0621/1146] bpf, arm32: Reject BPF-to-BPF calls and callbacks in the JIT Greg Kroah-Hartman
2026-05-20 16:14 ` [PATCH 7.0 0622/1146] perf trace: Fix IS_ERR() vs NULL check bug Greg Kroah-Hartman
2026-05-20 16:14 ` [PATCH 7.0 0623/1146] dt-bindings: pinctrl: marvell,armada3710-xb-pinctrl: add missing items keyword Greg Kroah-Hartman
2026-05-20 16:14 ` [PATCH 7.0 0624/1146] pinctrl: pinctrl-pic32: Fix resource leak Greg Kroah-Hartman
2026-05-20 16:14 ` [PATCH 7.0 0625/1146] perf trace: Avoid an ERR_PTR in syscall_stats Greg Kroah-Hartman
2026-05-20 16:14 ` [PATCH 7.0 0626/1146] pinctrl: microchip-mssio: Fix missing return in probe Greg Kroah-Hartman
2026-05-20 16:14 ` [PATCH 7.0 0627/1146] perf test type profiling: Remote typedef on struct Greg Kroah-Hartman
2026-05-20 16:14 ` [PATCH 7.0 0628/1146] pinctrl: cy8c95x0: remove duplicate error message Greg Kroah-Hartman
2026-05-20 16:14 ` [PATCH 7.0 0629/1146] pinctrl: cy8c95x0: Unify messages with help of dev_err_probe() Greg Kroah-Hartman
2026-05-20 16:14 ` [PATCH 7.0 0630/1146] pinctrl: cy8c95x0: Avoid returning positive values to user space Greg Kroah-Hartman
2026-05-20 16:14 ` [PATCH 7.0 0631/1146] perf branch: Avoid incrementing NULL Greg Kroah-Hartman
2026-05-20 16:14 ` [PATCH 7.0 0632/1146] perf: tools: cs-etm: Fix print issue for Coresight debug in ETE/TRBE trace Greg Kroah-Hartman
2026-05-20 16:14 ` [PATCH 7.0 0633/1146] pinctrl: pinconf-generic: Fully validate pinmux property Greg Kroah-Hartman
2026-05-20 16:14 ` [PATCH 7.0 0634/1146] pinctrl: realtek: Fix function signature for config argument Greg Kroah-Hartman
2026-05-20 16:14 ` [PATCH 7.0 0635/1146] pinctrl: abx500: Fix type of argument variable Greg Kroah-Hartman
2026-05-20 16:14 ` [PATCH 7.0 0636/1146] pinctrl: renesas: rzg2l: Fix save/restore of {IOLH,IEN,PUPD,SMT} registers Greg Kroah-Hartman
2026-05-20 16:14 ` [PATCH 7.0 0637/1146] tools build: Correct link flags for libopenssl Greg Kroah-Hartman
2026-05-20 16:14 ` [PATCH 7.0 0638/1146] perf lock: Fix option value type in parse_max_stack Greg Kroah-Hartman
2026-05-20 16:14 ` [PATCH 7.0 0639/1146] perf stat: Fix opt->value type for parse_cache_level Greg Kroah-Hartman
2026-05-20 16:14 ` [PATCH 7.0 0640/1146] memblock: reserve_mem: fix end caclulation in reserve_mem_release_by_name() Greg Kroah-Hartman
2026-05-20 16:14 ` [PATCH 7.0 0641/1146] perf stat: Fix crash on arm64 Greg Kroah-Hartman
2026-05-20 16:14 ` [PATCH 7.0 0642/1146] perf tools: Fix module symbol resolution for non-zero .text sh_addr Greg Kroah-Hartman
2026-05-20 16:14 ` [PATCH 7.0 0643/1146] perf test: Fix ratio_to_prev event parsing test Greg Kroah-Hartman
2026-05-20 16:14 ` [PATCH 7.0 0644/1146] perf test: Skip perf data type profiling tests for s390 Greg Kroah-Hartman
2026-05-20 16:14 ` [PATCH 7.0 0645/1146] perf expr: Return -EINVAL for syntax error in expr__find_ids() Greg Kroah-Hartman
2026-05-20 16:14 ` [PATCH 7.0 0646/1146] perf metrics: Make common stalled metrics conditional on having the event Greg Kroah-Hartman
2026-05-20 16:14 ` [PATCH 7.0 0647/1146] ipmi: ssif_bmc: fix missing check for copy_to_user() partial failure Greg Kroah-Hartman
2026-05-20 16:14 ` [PATCH 7.0 0648/1146] ipmi: ssif_bmc: fix message desynchronization after truncated response Greg Kroah-Hartman
2026-05-20 16:14 ` [PATCH 7.0 0649/1146] ipmi: ssif_bmc: change log level to dbg in irq callback Greg Kroah-Hartman
2026-05-20 16:15 ` [PATCH 7.0 0650/1146] perf cgroup: Update metric leader in evlist__expand_cgroup Greg Kroah-Hartman
2026-05-20 16:15 ` [PATCH 7.0 0651/1146] pinctrl: sophgo: pinctrl-sg2042: Fix wrong module description Greg Kroah-Hartman
2026-05-20 16:15 ` [PATCH 7.0 0652/1146] pinctrl: sophgo: pinctrl-sg2044: " Greg Kroah-Hartman
2026-05-20 16:15 ` [PATCH 7.0 0653/1146] perf maps: Fix fixup_overlap_and_insert that can break sorted by name order Greg Kroah-Hartman
2026-05-20 16:15 ` [PATCH 7.0 0654/1146] perf maps: Fix copy_from " Greg Kroah-Hartman
2026-05-20 16:15 ` [PATCH 7.0 0655/1146] perf util: Kill die() prototype, dead for a long time Greg Kroah-Hartman
2026-05-20 16:15 ` [PATCH 7.0 0656/1146] i3c: master: dw-i3c: Fix missing reset assertion in remove() callback Greg Kroah-Hartman
2026-05-20 16:15 ` [PATCH 7.0 0657/1146] i3c: master: dw-i3c: Balance PM runtime usage count on probe failure Greg Kroah-Hartman
2026-05-20 16:15 ` [PATCH 7.0 0658/1146] i3c: master: renesas: Fix memory leak in renesas_i3c_i3c_xfers() Greg Kroah-Hartman
2026-05-20 16:15 ` [PATCH 7.0 0659/1146] i3c: dw: Fix memory leak in dw_i3c_master_i3c_xfers() Greg Kroah-Hartman
2026-05-20 16:15 ` [PATCH 7.0 0660/1146] i3c: master: Fix error codes at send_ccc_cmd Greg Kroah-Hartman
2026-05-20 16:15 ` [PATCH 7.0 0661/1146] i3c: master: adi: Fix error propagation for CCCs Greg Kroah-Hartman
2026-05-20 16:15 ` [PATCH 7.0 0662/1146] i3c: mipi-i3c-hci: fix IBI payload length calculation for final status Greg Kroah-Hartman
2026-05-20 16:15 ` [PATCH 7.0 0663/1146] fs/ntfs3: prevent uninitialized lcn caused by zero len Greg Kroah-Hartman
2026-05-20 16:15 ` [PATCH 7.0 0664/1146] backlight: sky81452-backlight: Check return value of devm_gpiod_get_optional() in sky81452_bl_parse_dt() Greg Kroah-Hartman
2026-05-20 16:15 ` [PATCH 7.0 0665/1146] platform/surface: surfacepro3_button: Drop wakeup source on remove Greg Kroah-Hartman
2026-05-20 16:15 ` [PATCH 7.0 0666/1146] leds: lgm-sso: Remove duplicate assignments for priv->mmap Greg Kroah-Hartman
2026-05-20 16:15 ` [PATCH 7.0 0667/1146] usb: typec: Fix error pointer dereference Greg Kroah-Hartman
2026-05-20 16:15 ` [PATCH 7.0 0668/1146] tty: hvc_iucv: fix off-by-one in number of supported devices Greg Kroah-Hartman
2026-05-20 16:15 ` [PATCH 7.0 0669/1146] usb: typec: ps883x: Fix Oops at unbind Greg Kroah-Hartman
2026-05-20 16:15 ` [PATCH 7.0 0670/1146] platform/x86: panasonic-laptop: Fix OPTD notifier registration and cleanup Greg Kroah-Hartman
2026-05-20 16:15 ` [PATCH 7.0 0671/1146] platform/x86: barco-p50-gpio: normalize return value of gpio_get Greg Kroah-Hartman
2026-05-20 16:15 ` [PATCH 7.0 0672/1146] fs/ntfs3: fix missing run load for vcn0 in attr_data_get_block_locked() Greg Kroah-Hartman
2026-05-20 16:15 ` [PATCH 7.0 0673/1146] mfd: mc13xxx-core: Fix memory leak in mc13xxx_add_subdevice_pdata() Greg Kroah-Hartman
2026-05-20 16:15 ` [PATCH 7.0 0674/1146] nfs/blocklayout: Fix compilation error (`make W=1`) in bl_write_pagelist() Greg Kroah-Hartman
2026-05-20 16:15 ` [PATCH 7.0 0675/1146] sunrpc: Kill RPC_IFDEBUG() Greg Kroah-Hartman
2026-05-20 16:15 ` [PATCH 7.0 0676/1146] sunrpc: Fix compilation error (`make W=1`) when dprintk() is no-op Greg Kroah-Hartman
2026-05-20 16:15 ` [PATCH 7.0 0677/1146] NFSD: fix nfs4_file access extra count in nfsd4_add_rdaccess_to_wrdeleg Greg Kroah-Hartman
2026-05-20 16:15 ` [PATCH 7.0 0678/1146] nfsd: use dynamic allocation for oversized NFSv4.0 replay cache Greg Kroah-Hartman
2026-05-20 16:15 ` [PATCH 7.0 0679/1146] RDMA/umem: Use consistent DMA attributes when unmapping entries Greg Kroah-Hartman
2026-05-20 16:15 ` [PATCH 7.0 0680/1146] greybus: raw: fix use-after-free on cdev close Greg Kroah-Hartman
2026-05-20 16:15 ` [PATCH 7.0 0681/1146] greybus: raw: fix use-after-free if write is called after disconnect Greg Kroah-Hartman
2026-05-20 16:15 ` [PATCH 7.0 0682/1146] platform/x86: asus-wmi: adjust screenpad power/brightness handling Greg Kroah-Hartman
2026-05-20 16:15 ` [PATCH 7.0 0683/1146] platform/x86: asus-wmi: fix screenpad brightness range Greg Kroah-Hartman
2026-05-20 16:15 ` [PATCH 7.0 0684/1146] tty: serial: ip22zilog: Fix section mispatch warning Greg Kroah-Hartman
2026-05-20 16:15 ` [PATCH 7.0 0685/1146] fs/ntfs3: terminate the cached volume label after UTF-8 conversion Greg Kroah-Hartman
2026-05-20 16:15 ` [PATCH 7.0 0686/1146] platform/x86: hp-wmi: fix ignored return values in fan settings Greg Kroah-Hartman
2026-05-20 16:15 ` [PATCH 7.0 0687/1146] platform/x86: hp-wmi: avoid cancel_delayed_work_sync from work handler Greg Kroah-Hartman
2026-05-20 16:15 ` [PATCH 7.0 0688/1146] platform/x86: hp-wmi: use mod_delayed_work to reset keep-alive timer Greg Kroah-Hartman
2026-05-20 16:15 ` [PATCH 7.0 0689/1146] platform/x86: hp-wmi: fix u8 underflow in gpu_delta calculation Greg Kroah-Hartman
2026-05-20 16:15 ` [PATCH 7.0 0690/1146] platform/x86: hp-wmi: add locking for concurrent hwmon access Greg Kroah-Hartman
2026-05-20 16:15 ` [PATCH 7.0 0691/1146] platform/x86: dell_rbu: avoid uninit value usage in packet_size_write() Greg Kroah-Hartman
2026-05-20 16:15 ` [PATCH 7.0 0692/1146] platform/x86: dell-wmi-sysman: bound enumeration string aggregation Greg Kroah-Hartman
2026-05-20 16:15 ` [PATCH 7.0 0693/1146] RDMA/core: Prefer NLA_NUL_STRING Greg Kroah-Hartman
2026-05-20 16:15 ` [PATCH 7.0 0694/1146] platform/x86: hp-wmi: fix fan table parsing Greg Kroah-Hartman
2026-05-20 16:15 ` [PATCH 7.0 0695/1146] dt-bindings: clock: qcom: Add GCC video axi reset clock for Glymur Greg Kroah-Hartman
2026-05-20 16:15 ` [PATCH 7.0 0696/1146] clk: qcom: gcc-glymur: Add video axi clock resets for glymur Greg Kroah-Hartman
2026-05-20 16:15 ` [PATCH 7.0 0697/1146] clk: qcom: dispcc-glymur: use RCG2 ops for DPTX1 AUX clock source Greg Kroah-Hartman
2026-05-20 16:15 ` [PATCH 7.0 0698/1146] clk: qcom: dispcc-sm8450: " Greg Kroah-Hartman
2026-05-20 16:15 ` [PATCH 7.0 0699/1146] clk: renesas: r9a09g057: Fix ordering of module clocks array Greg Kroah-Hartman
2026-05-20 16:15 ` [PATCH 7.0 0700/1146] clk: renesas: r9a09g056: " Greg Kroah-Hartman
2026-05-20 16:15 ` [PATCH 7.0 0701/1146] clk: sunxi-ng: sun55i-a523-r: Add missing r-spi module clock Greg Kroah-Hartman
2026-05-20 16:15 ` [PATCH 7.0 0702/1146] scsi: sg: Fix sysctl sg-big-buff register during sg_init() Greg Kroah-Hartman
2026-05-20 16:15 ` [PATCH 7.0 0703/1146] scsi: sg: Resolve soft lockup issue when opening /dev/sgX Greg Kroah-Hartman
2026-05-20 16:15 ` [PATCH 7.0 0704/1146] clk: qcom: dispcc-sc8280xp: remove CLK_SET_RATE_PARENT from byte_div_clk_src dividers Greg Kroah-Hartman
2026-05-20 16:15 ` [PATCH 7.0 0705/1146] clk: qcom: dispcc-glymur: Fix DSI byte clock rate setting Greg Kroah-Hartman
2026-05-20 16:15 ` [PATCH 7.0 0706/1146] clk: qcom: dispcc-kaanapali: " Greg Kroah-Hartman
2026-05-20 16:15 ` [PATCH 7.0 0707/1146] clk: qcom: dispcc-milos: " Greg Kroah-Hartman
2026-05-20 16:15 ` [PATCH 7.0 0708/1146] clk: qcom: dispcc-sm4450: " Greg Kroah-Hartman
2026-05-20 16:15 ` [PATCH 7.0 0709/1146] clk: qcom: dispcc[01]-sa8775p: " Greg Kroah-Hartman
2026-05-20 16:16 ` [PATCH 7.0 0710/1146] clk: renesas: r9a09g057: Remove entries for WDT{0,2,3} Greg Kroah-Hartman
2026-05-20 16:16 ` [PATCH 7.0 0711/1146] scsi: qla2xxx: Add support to report MPI FW state Greg Kroah-Hartman
2026-05-20 16:16 ` [PATCH 7.0 0712/1146] scsi: target: core: Fix integer overflow in UNMAP bounds check Greg Kroah-Hartman
2026-05-20 16:16 ` [PATCH 7.0 0713/1146] scsi: ufs: rockchip,rk3576-ufshc: dt-bindings: Add new mphy reset item Greg Kroah-Hartman
2026-05-20 16:16 ` [PATCH 7.0 0714/1146] dt-bindings: clock: qcom,gcc-sc8180x: Add missing GDSCs Greg Kroah-Hartman
2026-05-20 16:16 ` [PATCH 7.0 0715/1146] clk: qcom: gcc-sc8180x: " Greg Kroah-Hartman
2026-05-20 16:16 ` [PATCH 7.0 0716/1146] clk: qcom: gcc-sc8180x: Use retention for USB power domains Greg Kroah-Hartman
2026-05-20 16:16 ` [PATCH 7.0 0717/1146] clk: qcom: gcc-sc8180x: Use retention for PCIe " Greg Kroah-Hartman
2026-05-20 16:16 ` [PATCH 7.0 0718/1146] clk: qcom: dispcc-sm8250: Use shared ops on the mdss vsync clk Greg Kroah-Hartman
2026-05-20 16:16 ` [PATCH 7.0 0719/1146] clk: qcom: dispcc-sm8250: Enable parents for pixel clocks Greg Kroah-Hartman
2026-05-20 16:16 ` [PATCH 7.0 0720/1146] clk: imx: imx6q: Fix device node reference leak in pll6_bypassed() Greg Kroah-Hartman
2026-05-20 16:16 ` [PATCH 7.0 0721/1146] clk: imx: imx6q: Fix device node reference leak in of_assigned_ldb_sels() Greg Kroah-Hartman
2026-05-20 16:16 ` [PATCH 7.0 0722/1146] clk: imx8mq: Correct the CSI PHY sels Greg Kroah-Hartman
2026-05-20 16:16 ` [PATCH 7.0 0723/1146] um: Fix potential race condition in TLB sync Greg Kroah-Hartman
2026-05-20 16:16 ` [PATCH 7.0 0724/1146] x86/um: fix vDSO installation Greg Kroah-Hartman
2026-05-20 16:16 ` [PATCH 7.0 0725/1146] clk: qoriq: avoid format string warning Greg Kroah-Hartman
2026-05-20 16:16 ` [PATCH 7.0 0726/1146] clk: xgene: Fix mapping leak in xgene_pllclk_init() Greg Kroah-Hartman
2026-05-20 16:16 ` [PATCH 7.0 0727/1146] clk: spacemit: ccu_mix: fix inverted condition in ccu_mix_trigger_fc() Greg Kroah-Hartman
2026-05-20 16:16 ` [PATCH 7.0 0728/1146] f2fs: avoid reading already updated pages during GC Greg Kroah-Hartman
2026-05-20 16:16 ` [PATCH 7.0 0729/1146] printk_ringbuffer: Fix get_data() size sanity check Greg Kroah-Hartman
2026-05-20 16:16 ` [PATCH 7.0 0730/1146] clk: qcom: gdsc: Fix error path on registration of multiple pm subdomains Greg Kroah-Hartman
2026-05-20 16:16 ` [PATCH 7.0 0731/1146] lib/hexdump: print_hex_dump_bytes() calls print_hex_dump_debug() Greg Kroah-Hartman
2026-05-20 16:16 ` [PATCH 7.0 0732/1146] f2fs: fix data loss caused by incorrect use of nat_entry flag Greg Kroah-Hartman
2026-05-20 16:16 ` [PATCH 7.0 0733/1146] f2fs: fix to preserve previous reserve_{blocks,node} value when remount Greg Kroah-Hartman
2026-05-20 16:16 ` [PATCH 7.0 0734/1146] scsi: hpsa: Enlarge controller and IRQ name buffers Greg Kroah-Hartman
2026-05-20 16:16 ` [PATCH 7.0 0735/1146] drm/amd/display: Fix parameter mismatch in panel self-refresh helper Greg Kroah-Hartman
2026-05-20 16:16 ` [PATCH 7.0 0736/1146] clk: qcom: gcc-x1e80100: Keep GCC USB QTB clock always ON Greg Kroah-Hartman
2026-05-20 16:16 ` [PATCH 7.0 0737/1146] clk: visconti: pll: initialize clk_init_data to zero Greg Kroah-Hartman
2026-05-20 16:16 ` [PATCH 7.0 0738/1146] f2fs: allow empty mount string for Opt_usr|grp|projjquota Greg Kroah-Hartman
2026-05-20 16:16 ` [PATCH 7.0 0739/1146] f2fs: protect extension_list reading with sb_lock in f2fs_sbi_show() Greg Kroah-Hartman
2026-05-20 16:16 ` [PATCH 7.0 0740/1146] drm/i915/wm: Verify the correct plane DDB entry Greg Kroah-Hartman
2026-05-20 16:16 ` [PATCH 7.0 0741/1146] virt: arm-cca-guest: fix error check for RSI_INCOMPLETE Greg Kroah-Hartman
2026-05-20 16:16 ` [PATCH 7.0 0742/1146] crypto: eip93 - fix hmac setkey algo selection Greg Kroah-Hartman
2026-05-20 16:16 ` [PATCH 7.0 0743/1146] crypto: sa2ul - Fix AEAD fallback algorithm names Greg Kroah-Hartman
2026-05-20 16:16 ` [PATCH 7.0 0744/1146] crypto: ccp - copy IV using skcipher ivsize Greg Kroah-Hartman
2026-05-20 16:16 ` [PATCH 7.0 0745/1146] sh: Include <linux/io.h> in dac.h Greg Kroah-Hartman
2026-05-20 16:16 ` [PATCH 7.0 0746/1146] erofs: fix offset truncation when shifting pgoff on 32-bit platforms Greg Kroah-Hartman
2026-05-20 16:16 ` [PATCH 7.0 0747/1146] erofs: unify lcn as u64 for " Greg Kroah-Hartman
2026-05-20 16:16 ` [PATCH 7.0 0748/1146] tools: hv: Fix cross-compilation Greg Kroah-Hartman
2026-05-20 16:16 ` [PATCH 7.0 0749/1146] Drivers: hv: vmbus: fix hyperv_cpuhp_online variable shadowing Greg Kroah-Hartman
2026-05-20 16:16 ` [PATCH 7.0 0750/1146] arm64: dts: imx8mp-debix-model-a: Correct PAD settings for PMIC_nINT Greg Kroah-Hartman
2026-05-20 16:16 ` [PATCH 7.0 0751/1146] arm64: dts: imx8mp-debix-som-a: " Greg Kroah-Hartman
2026-05-20 16:16 ` [PATCH 7.0 0752/1146] arm64: dts: imx8mp-navqp: " Greg Kroah-Hartman
2026-05-20 16:16 ` [PATCH 7.0 0753/1146] arm64: dts: imx8mp-icore-mx8mp: " Greg Kroah-Hartman
2026-05-20 16:16 ` [PATCH 7.0 0754/1146] arm64: dts: imx8mp-edm-g: " Greg Kroah-Hartman
2026-05-20 16:16 ` [PATCH 7.0 0755/1146] arm64: dts: imx8mp-aristainetos3a-som-v1: " Greg Kroah-Hartman
2026-05-20 16:16 ` [PATCH 7.0 0756/1146] arm64: dts: imx8mp-nitrogen-som: " Greg Kroah-Hartman
2026-05-20 16:16 ` [PATCH 7.0 0757/1146] arm64: dts: imx8mp-sr-som: " Greg Kroah-Hartman
2026-05-20 16:16 ` [PATCH 7.0 0758/1146] arm64: dts: imx8mp-ultra-mach-sbc: " Greg Kroah-Hartman
2026-05-20 16:16 ` [PATCH 7.0 0759/1146] arm64: dts: imx8mp-dhcom-som: " Greg Kroah-Hartman
2026-05-20 16:16 ` [PATCH 7.0 0760/1146] arm64: dts: imx8mp-data-modul-edm-sbc: " Greg Kroah-Hartman
2026-05-20 16:16 ` [PATCH 7.0 0761/1146] PCMCIA: Fix garbled log messages for KERN_CONT Greg Kroah-Hartman
2026-05-20 16:16 ` [PATCH 7.0 0762/1146] reset: amlogic: t7: Fix null reset ops Greg Kroah-Hartman
2026-05-20 16:16 ` [PATCH 7.0 0763/1146] arm64: dts: imx8mm-emtop-som: Correct PAD settings for PMIC_nINT Greg Kroah-Hartman
2026-05-20 16:16 ` [PATCH 7.0 0764/1146] arm64: dts: imx8mn-tqma8mqnl: " Greg Kroah-Hartman
2026-05-20 16:16 ` [PATCH 7.0 0765/1146] arm64: dts: imx8mm-tqma8mqml: " Greg Kroah-Hartman
2026-05-20 16:16 ` [PATCH 7.0 0766/1146] arm64: dts: marvell: armada-37xx: use usb2-phy in USB3 controllers phy-names Greg Kroah-Hartman
2026-05-20 16:16 ` [PATCH 7.0 0767/1146] pwm: stm32: Fix rounding issue for requests with inverted polarity Greg Kroah-Hartman
2026-05-20 16:16 ` [PATCH 7.0 0768/1146] net/sched: act_mirred: fix wrong device for mac_header_xmit check in tcf_blockcast_redir Greg Kroah-Hartman
2026-05-20 16:16 ` [PATCH 7.0 0769/1146] macvlan: fix macvlan_get_size() not reserving space for IFLA_MACVLAN_BC_CUTOFF Greg Kroah-Hartman
2026-05-20 16:17 ` [PATCH 7.0 0770/1146] net/sched: sch_cake: fix NAT destination port not being updated in cake_update_flowkeys Greg Kroah-Hartman
2026-05-20 16:17 ` [PATCH 7.0 0771/1146] nexthop: fix IPv6 route referencing IPv4 nexthop Greg Kroah-Hartman
2026-05-20 16:17 ` [PATCH 7.0 0772/1146] net: airoha: Wait for NPU PPE configuration to complete in airoha_ppe_offload_setup() Greg Kroah-Hartman
2026-05-20 16:17 ` [PATCH 7.0 0773/1146] net/sched: taprio: fix use-after-free in advance_sched() on schedule switch Greg Kroah-Hartman
2026-05-20 16:17 ` [PATCH 7.0 0774/1146] net: dsa: remove redundant netdev_lock_ops() from conduit ethtool ops Greg Kroah-Hartman
2026-05-20 16:17 ` [PATCH 7.0 0775/1146] net: enetc: correct the command BD ring consumer index Greg Kroah-Hartman
2026-05-20 16:17 ` [PATCH 7.0 0776/1146] net: enetc: fix NTMP DMA use-after-free issue Greg Kroah-Hartman
2026-05-20 16:17 ` [PATCH 7.0 0777/1146] ksmbd: fix use-after-free in smb2_open during durable reconnect Greg Kroah-Hartman
2026-05-20 16:17 ` [PATCH 7.0 0778/1146] tcp: move tp->chrono_type next tp->chrono_stat[] Greg Kroah-Hartman
2026-05-20 16:17 ` [PATCH 7.0 0779/1146] tcp: inline tcp_chrono_start() Greg Kroah-Hartman
2026-05-20 16:17 ` [PATCH 7.0 0780/1146] tcp: annotate data-races in tcp_get_info_chrono_stats() Greg Kroah-Hartman
2026-05-20 16:17 ` [PATCH 7.0 0781/1146] tcp: add data-race annotations around tp->data_segs_out and tp->total_retrans Greg Kroah-Hartman
2026-05-20 16:17 ` [PATCH 7.0 0782/1146] tcp: add data-races annotations around tp->reordering, tp->snd_cwnd Greg Kroah-Hartman
2026-05-20 16:17 ` [PATCH 7.0 0783/1146] tcp: annotate data-races around tp->snd_ssthresh Greg Kroah-Hartman
2026-05-20 16:17 ` [PATCH 7.0 0784/1146] tcp: annotate data-races around tp->delivered and tp->delivered_ce Greg Kroah-Hartman
2026-05-20 16:17 ` [PATCH 7.0 0785/1146] tcp: add data-race annotations for TCP_NLA_SNDQ_SIZE Greg Kroah-Hartman
2026-05-20 16:17 ` [PATCH 7.0 0786/1146] tcp: annotate data-races around tp->bytes_sent Greg Kroah-Hartman
2026-05-20 16:17 ` [PATCH 7.0 0787/1146] tcp: annotate data-races around tp->bytes_retrans Greg Kroah-Hartman
2026-05-20 16:17 ` [PATCH 7.0 0788/1146] tcp: annotate data-races around tp->dsack_dups Greg Kroah-Hartman
2026-05-20 16:17 ` [PATCH 7.0 0789/1146] tcp: annotate data-races around tp->reord_seen Greg Kroah-Hartman
2026-05-20 16:17 ` [PATCH 7.0 0790/1146] tcp: annotate data-races around tp->srtt_us Greg Kroah-Hartman
2026-05-20 16:17 ` [PATCH 7.0 0791/1146] tcp: annotate data-races around tp->timeout_rehash Greg Kroah-Hartman
2026-05-20 16:17 ` [PATCH 7.0 0792/1146] tcp: annotate data-races around (tp->write_seq - tp->snd_nxt) Greg Kroah-Hartman
2026-05-20 16:17 ` [PATCH 7.0 0793/1146] tcp: annotate data-races around tp->plb_rehash Greg Kroah-Hartman
2026-05-20 16:17 ` [PATCH 7.0 0794/1146] ice: fix adjust timer programming for E830 devices Greg Kroah-Hartman
2026-05-20 16:17 ` [PATCH 7.0 0795/1146] ice: update PCS latency settings for E825 10G/25Gb modes Greg Kroah-Hartman
2026-05-20 16:17 ` [PATCH 7.0 0796/1146] ice: fix double-free of tx_buf skb Greg Kroah-Hartman
2026-05-20 16:17 ` [PATCH 7.0 0797/1146] ice: fix PHY config on media change with link-down-on-close Greg Kroah-Hartman
2026-05-20 16:17 ` [PATCH 7.0 0798/1146] ice: fix ICE_AQ_LINK_SPEED_M for 200G Greg Kroah-Hartman
2026-05-20 16:17 ` [PATCH 7.0 0799/1146] ice: fix race condition in TX timestamp ring cleanup Greg Kroah-Hartman
2026-05-20 16:17 ` [PATCH 7.0 0800/1146] ice: fix potential NULL pointer deref in error path of ice_set_ringparam() Greg Kroah-Hartman
2026-05-20 16:17 ` [PATCH 7.0 0801/1146] i40e: dont advertise IFF_SUPP_NOFCS Greg Kroah-Hartman
2026-05-20 16:17 ` [PATCH 7.0 0802/1146] iavf: fix wrong VLAN mask for legacy Rx descriptors L2TAG2 Greg Kroah-Hartman
2026-05-20 16:17 ` [PATCH 7.0 0803/1146] e1000e: Unroll PTP in probe error handling Greg Kroah-Hartman
2026-05-20 16:17 ` [PATCH 7.0 0804/1146] ipv6: fix possible UAF in icmpv6_rcv() Greg Kroah-Hartman
2026-05-20 16:17 ` [PATCH 7.0 0805/1146] af_unix: Drop all SCM attributes for SOCKMAP Greg Kroah-Hartman
2026-05-20 16:17 ` [PATCH 7.0 0806/1146] sctp: fix OOB write to userspace in sctp_getsockopt_peer_auth_chunks Greg Kroah-Hartman
2026-05-20 16:17 ` [PATCH 7.0 0807/1146] pppoe: drop PFC frames Greg Kroah-Hartman
2026-05-20 16:17 ` [PATCH 7.0 0808/1146] net/mlx5: Fix HCA caps leak on notifier init failure Greg Kroah-Hartman
2026-05-20 16:17 ` [PATCH 7.0 0809/1146] openvswitch: cap upcall PID array size and pre-size vport replies Greg Kroah-Hartman
2026-05-20 16:17 ` [PATCH 7.0 0810/1146] net: airoha: Fix possible TX queue stall in airoha_qdma_tx_napi_poll() Greg Kroah-Hartman
2026-05-20 16:17 ` [PATCH 7.0 0811/1146] netfilter: nft_osf: restrict it to ipv4 Greg Kroah-Hartman
2026-05-20 16:17 ` [PATCH 7.0 0812/1146] netfilter: nfnetlink_osf: fix divide-by-zero in OSF_WSS_MODULO Greg Kroah-Hartman
2026-05-20 16:17 ` [PATCH 7.0 0813/1146] netfilter: conntrack: remove sprintf usage Greg Kroah-Hartman
2026-05-20 16:17 ` [PATCH 7.0 0814/1146] netfilter: xtables: restrict several matches to inet family Greg Kroah-Hartman
2026-05-20 16:17 ` [PATCH 7.0 0815/1146] netfilter: nat: use kfree_rcu to release ops Greg Kroah-Hartman
2026-05-20 16:17 ` [PATCH 7.0 0816/1146] ipvs: fix MTU check for GSO packets in tunnel mode Greg Kroah-Hartman
2026-05-20 16:17 ` [PATCH 7.0 0817/1146] netfilter: nfnetlink_osf: fix out-of-bounds read on option matching Greg Kroah-Hartman
2026-05-20 16:17 ` [PATCH 7.0 0818/1146] netfilter: nfnetlink_osf: fix potential NULL dereference in ttl check Greg Kroah-Hartman
2026-05-20 16:17 ` [PATCH 7.0 0819/1146] slip: reject VJ receive packets on instances with no rstate array Greg Kroah-Hartman
2026-05-20 16:17 ` [PATCH 7.0 0820/1146] slip: bound decode() reads against the compressed packet length Greg Kroah-Hartman
2026-05-20 16:17 ` [PATCH 7.0 0821/1146] net/sched: sch_dualpi2: drain both C-queue and L-queue in dualpi2_change() Greg Kroah-Hartman
2026-05-20 16:17 ` [PATCH 7.0 0822/1146] arm64: dts: amlogic: meson-axg: Add missing cache information to cpu0 Greg Kroah-Hartman
2026-05-20 16:17 ` [PATCH 7.0 0823/1146] arm64: dts: meson-gxl-p230: fix ethernet PHY interrupt number Greg Kroah-Hartman
2026-05-20 16:17 ` [PATCH 7.0 0824/1146] vfio/pci: Clean up DMABUFs before disabling function Greg Kroah-Hartman
2026-05-20 16:17 ` [PATCH 7.0 0825/1146] pwm: atmel-tcb: Cache clock rates and mark chip as atomic Greg Kroah-Hartman
2026-05-20 16:17 ` [PATCH 7.0 0826/1146] ksmbd: destroy tree_conn_ida in ksmbd_session_destroy() Greg Kroah-Hartman
2026-05-20 16:17 ` [PATCH 7.0 0827/1146] ksmbd: destroy async_ida in ksmbd_conn_free() Greg Kroah-Hartman
2026-05-20 16:17 ` [PATCH 7.0 0828/1146] ksmbd: fix durable fd leak on ClientGUID mismatch in durable v2 open Greg Kroah-Hartman
2026-05-20 16:17 ` [PATCH 7.0 0829/1146] ksmbd: scope conn->binding slowpath to bound sessions only Greg Kroah-Hartman
2026-05-20 16:18 ` [PATCH 7.0 0830/1146] net: validate skb->napi_id in RX tracepoints Greg Kroah-Hartman
2026-05-20 16:18 ` [PATCH 7.0 0831/1146] bnge: fix initial HWRM sequence Greg Kroah-Hartman
2026-05-20 16:18 ` [PATCH 7.0 0832/1146] bnge: remove unsupported backing store type Greg Kroah-Hartman
2026-05-20 16:18 ` [PATCH 7.0 0833/1146] sctp: fix sockets_allocated imbalance after sk_clone() Greg Kroah-Hartman
2026-05-20 16:18 ` [PATCH 7.0 0834/1146] net/rds: zero per-item info buffer before handing it to visitors Greg Kroah-Hartman
2026-05-20 16:18 ` [PATCH 7.0 0835/1146] ice: fix timestamp interrupt configuration for E825C Greg Kroah-Hartman
2026-05-20 16:18 ` [PATCH 7.0 0836/1146] ice: perform PHY soft reset for E825C ports at initialization Greg Kroah-Hartman
2026-05-20 16:18 ` [PATCH 7.0 0837/1146] ice: fix ready bitmap check for non-E822 devices Greg Kroah-Hartman
2026-05-20 16:18 ` [PATCH 7.0 0838/1146] ice: fix ice_ptp_read_tx_hwtstamp_status_eth56g Greg Kroah-Hartman
2026-05-20 16:18 ` [PATCH 7.0 0839/1146] net_sched: sch_hhf: annotate data-races in hhf_dump_stats() Greg Kroah-Hartman
2026-05-20 16:18 ` [PATCH 7.0 0840/1146] net/sched: sch_pie: annotate data-races in pie_dump_stats() Greg Kroah-Hartman
2026-05-20 16:18 ` [PATCH 7.0 0841/1146] net/sched: sch_fq_codel: remove data-races from fq_codel_dump_stats() Greg Kroah-Hartman
2026-05-20 16:18 ` [PATCH 7.0 0842/1146] net/sched: sch_red: annotate data-races in red_dump_stats() Greg Kroah-Hartman
2026-05-20 16:18 ` [PATCH 7.0 0843/1146] net/sched: sch_sfb: annotate data-races in sfb_dump_stats() Greg Kroah-Hartman
2026-05-20 16:18 ` [PATCH 7.0 0844/1146] net: airoha: Move ndesc initialization at end of airoha_qdma_init_tx() Greg Kroah-Hartman
2026-05-20 16:18 ` [PATCH 7.0 0845/1146] net: airoha: Add missing bits in airoha_qdma_cleanup_tx_queue() Greg Kroah-Hartman
2026-05-20 16:18 ` [PATCH 7.0 0846/1146] net: dsa: realtek: rtl8365mb: fix mode mask calculation Greg Kroah-Hartman
2026-05-20 16:18 ` [PATCH 7.0 0847/1146] net: airoha: Move ndesc initialization at end of airoha_qdma_init_rx_queue() Greg Kroah-Hartman
2026-05-20 16:18 ` [PATCH 7.0 0848/1146] net: airoha: Rework the code flow in airoha_remove() and in airoha_probe() error path Greg Kroah-Hartman
2026-05-20 16:18 ` [PATCH 7.0 0849/1146] net: airoha: Add size check for TX NAPIs in airoha_qdma_cleanup() Greg Kroah-Hartman
2026-05-20 16:18 ` [PATCH 7.0 0850/1146] net: mana: Init link_change_work before potential error paths in probe Greg Kroah-Hartman
2026-05-20 16:18 ` [PATCH 7.0 0851/1146] net: mana: Init gf_stats_work " Greg Kroah-Hartman
2026-05-20 16:18 ` [PATCH 7.0 0852/1146] net: mana: Guard mana_remove against double invocation Greg Kroah-Hartman
2026-05-20 16:18 ` [PATCH 7.0 0853/1146] net: mana: Dont overwrite port probe error with add_adev result Greg Kroah-Hartman
2026-05-20 16:18 ` [PATCH 7.0 0854/1146] net: mana: Fix EQ leak in mana_remove on NULL port Greg Kroah-Hartman
2026-05-20 16:18 ` [PATCH 7.0 0855/1146] vsock/virtio: fix MSG_ZEROCOPY pinned-pages accounting Greg Kroah-Hartman
2026-05-20 16:18 ` [PATCH 7.0 0856/1146] virtio_net: sync rss_trailer.max_tx_vq on queue_pairs change via VQ_PAIRS_SET Greg Kroah-Hartman
2026-05-20 16:18 ` [PATCH 7.0 0857/1146] nfp: fix swapped arguments in nfp_encode_basic_qdr() calls Greg Kroah-Hartman
2026-05-20 16:18 ` [PATCH 7.0 0858/1146] tcp: send a challenge ACK on SEG.ACK > SND.NXT Greg Kroah-Hartman
2026-05-20 16:18 ` [PATCH 7.0 0859/1146] tipc: fix double-free in tipc_buf_append() Greg Kroah-Hartman
2026-05-20 16:18 ` [PATCH 7.0 0860/1146] vhost_net: fix sleeping with preempt-disabled in vhost_net_busy_poll() Greg Kroah-Hartman
2026-05-20 16:18 ` [PATCH 7.0 0861/1146] nstree: fix func. parameter kernel-doc warnings Greg Kroah-Hartman
2026-05-20 16:18 ` [PATCH 7.0 0862/1146] eventpoll: use hlist_is_singular_node() in __ep_remove() Greg Kroah-Hartman
2026-05-20 16:18 ` [PATCH 7.0 0863/1146] eventpoll: split __ep_remove() Greg Kroah-Hartman
2026-05-20 16:18 ` [PATCH 7.0 0864/1146] eventpoll: kill __ep_remove() Greg Kroah-Hartman
2026-05-20 16:18 ` [PATCH 7.0 0865/1146] eventpoll: drop vestigial __ prefix from ep_remove_{file,epi}() Greg Kroah-Hartman
2026-05-20 16:18 ` [PATCH 7.0 0866/1146] eventpoll: move epi_fget() up Greg Kroah-Hartman
2026-05-20 16:18 ` [PATCH 7.0 0867/1146] eventpoll: fix ep_remove struct eventpoll / struct file UAF Greg Kroah-Hartman
2026-05-20 16:18 ` [PATCH 7.0 0868/1146] fs/adfs: validate nzones in adfs_validate_bblk() Greg Kroah-Hartman
2026-05-20 16:18 ` [PATCH 7.0 0869/1146] rtc: abx80x: Disable alarm feature if no interrupt attached Greg Kroah-Hartman
2026-05-20 16:18 ` [PATCH 7.0 0870/1146] kbuild: builddeb - avoid recompiles for non-cross-compiles Greg Kroah-Hartman
2026-05-20 16:18 ` [PATCH 7.0 0871/1146] tools/power turbostat: Fix AMD RAPL regression on big systems Greg Kroah-Hartman
2026-05-20 16:18 ` [PATCH 7.0 0872/1146] fbdev: offb: fix PCI device reference leak on probe failure Greg Kroah-Hartman
2026-05-20 16:18 ` [PATCH 7.0 0873/1146] tools/power turbostat: Fix unrecognized option -P Greg Kroah-Hartman
2026-05-20 16:18 ` [PATCH 7.0 0874/1146] tools/power turbostat: Fix --cpu-set 0 regression on HT systems Greg Kroah-Hartman
2026-05-20 16:18 ` [PATCH 7.0 0875/1146] tools/power turbostat: Fix --cpu-set 1 " Greg Kroah-Hartman
2026-05-20 16:18 ` [PATCH 7.0 0876/1146] kbuild: Never respect CONFIG_WERROR / W=e to fixdep Greg Kroah-Hartman
2026-05-20 16:18 ` [PATCH 7.0 0877/1146] mailbox: mtk-vcp-mailbox: Fix the return value in mtk_vcp_mbox_xlate() Greg Kroah-Hartman
2026-05-20 16:18 ` [PATCH 7.0 0878/1146] mailbox: mtk-cmdq: Fix CURR and END addr for task insert case Greg Kroah-Hartman
2026-05-20 16:18 ` [PATCH 7.0 0879/1146] mailbox: mailbox-test: free channels on probe error Greg Kroah-Hartman
2026-05-20 16:18 ` [PATCH 7.0 0880/1146] sched/psi: fix race between file release and pressure write Greg Kroah-Hartman
2026-05-20 16:18 ` [PATCH 7.0 0881/1146] cgroup/rdma: fix integer overflow in rdmacg_try_charge() Greg Kroah-Hartman
2026-05-20 16:18 ` [PATCH 7.0 0882/1146] cgroup/cpuset: record DL BW alloc CPU for attach rollback Greg Kroah-Hartman
2026-05-20 16:18 ` [PATCH 7.0 0883/1146] mailbox: add sanity check for channel array Greg Kroah-Hartman
2026-05-20 16:18 ` [PATCH 7.0 0884/1146] mailbox: mailbox-test: handle channel errors consistently Greg Kroah-Hartman
2026-05-20 16:18 ` [PATCH 7.0 0885/1146] mailbox: mailbox-test: dont free the reused channel Greg Kroah-Hartman
2026-05-20 16:18 ` [PATCH 7.0 0886/1146] mailbox: mailbox-test: initialize struct earlier Greg Kroah-Hartman
2026-05-20 16:18 ` [PATCH 7.0 0887/1146] mailbox: mailbox-test: make data_ready a per-instance variable Greg Kroah-Hartman
2026-05-20 16:18 ` [PATCH 7.0 0888/1146] fsnotify: fix inode reference leak in fsnotify_recalc_mask() Greg Kroah-Hartman
2026-05-20 16:18 ` [PATCH 7.0 0889/1146] btrfs: fix bytes_may_use leak in move_existing_remap() Greg Kroah-Hartman
2026-05-20 16:19 ` [PATCH 7.0 0890/1146] btrfs: fix bytes_may_use leak in do_remap_reloc_trans() Greg Kroah-Hartman
2026-05-20 16:19 ` [PATCH 7.0 0891/1146] btrfs: dont clobber errors in add_remap_tree_entries() Greg Kroah-Hartman
2026-05-20 16:19 ` [PATCH 7.0 0892/1146] btrfs: fix double-decrement of bytes_may_use in submit_one_async_extent() Greg Kroah-Hartman
2026-05-20 16:19 ` [PATCH 7.0 0893/1146] tracing: branch: Fix inverted check on stat tracer registration Greg Kroah-Hartman
2026-05-20 16:19 ` [PATCH 7.0 0894/1146] nvmet-tcp: propagate nvmet_tcp_build_pdu_iovec() errors to its callers Greg Kroah-Hartman
2026-05-20 16:19 ` [PATCH 7.0 0895/1146] netfilter: arp_tables: fix IEEE1394 ARP payload parsing Greg Kroah-Hartman
2026-05-20 16:19 ` [PATCH 7.0 0896/1146] netfilter: nf_tables: use list_del_rcu for netlink hooks Greg Kroah-Hartman
2026-05-20 16:19 ` [PATCH 7.0 0897/1146] rculist: add list_splice_rcu() for private lists Greg Kroah-Hartman
2026-05-20 16:19 ` [PATCH 7.0 0898/1146] netfilter: nf_tables: join hook list via splice_list_rcu() in commit phase Greg Kroah-Hartman
2026-05-20 16:19 ` [PATCH 7.0 0899/1146] netfilter: nf_tables: add hook transactions for device deletions Greg Kroah-Hartman
2026-05-20 16:19 ` [PATCH 7.0 0900/1146] nvme-pci: fix missed admin queue sq doorbell write Greg Kroah-Hartman
2026-05-20 16:19 ` [PATCH 7.0 0901/1146] drm/amdgpu: avoid double drm_exec_fini() in userq validate Greg Kroah-Hartman
2026-05-20 16:19 ` [PATCH 7.0 0902/1146] drm/amdgpu/gmc: Fix AMDGPU_GART_PLACEMENT_LOW to not overlap with VRAM Greg Kroah-Hartman
2026-05-20 16:19 ` [PATCH 7.0 0903/1146] drm/amd/pm: fix missing fine-grained dpm table flag on aldebaran Greg Kroah-Hartman
2026-05-20 16:19 ` [PATCH 7.0 0904/1146] drm/amdgpu: fix AMDGPU_INFO_READ_MMR_REG Greg Kroah-Hartman
2026-05-20 16:19 ` [PATCH 7.0 0905/1146] drm/amdgpu/uvd3.1: Dont validate the firmware when already validated Greg Kroah-Hartman
2026-05-20 16:19 ` [PATCH 7.0 0906/1146] drm/amdgpu/gfx6: Support harvested SI chips with disabled TCCs (v2) Greg Kroah-Hartman
2026-05-20 16:19 ` [PATCH 7.0 0907/1146] drm/amdgpu: Only send RMA CPER when threshold is exceeded Greg Kroah-Hartman
2026-05-20 16:19 ` [PATCH 7.0 0908/1146] netfilter: xt_policy: fix strict mode inbound policy matching Greg Kroah-Hartman
2026-05-20 16:19 ` [PATCH 7.0 0909/1146] netfilter: nf_conntrack_sip: dont use simple_strtoul Greg Kroah-Hartman
2026-05-20 16:19 ` [PATCH 7.0 0910/1146] spi: rzv2h-rspi: Fix silent failure in clock setup error path Greg Kroah-Hartman
2026-05-20 16:19 ` [PATCH 7.0 0911/1146] ASoC: amd: acp: Add DMI quirk for Valve Steam Deck OLED Greg Kroah-Hartman
2026-05-20 16:19 ` [PATCH 7.0 0912/1146] ASoC: SOF: Intel: add an empty adr_link Greg Kroah-Hartman
2026-05-20 16:19 ` [PATCH 7.0 0913/1146] spi: rockchip: Read ISR, not IMR, to detect cs-inactive IRQ Greg Kroah-Hartman
2026-05-20 16:19 ` [PATCH 7.0 0914/1146] ASoC: tas2764: Mark die temp register as volatile Greg Kroah-Hartman
2026-05-20 16:19 ` [PATCH 7.0 0915/1146] ASoC: tas2770: Fix order of operations for temperature calculation Greg Kroah-Hartman
2026-05-20 16:19 ` [PATCH 7.0 0916/1146] drm/sysfb: ofdrm: fix PCI device reference leaks Greg Kroah-Hartman
2026-05-20 16:19 ` [PATCH 7.0 0917/1146] drm/color-mgmt: Typo s/R332/RGB332/ Greg Kroah-Hartman
2026-05-20 16:19 ` [PATCH 7.0 0918/1146] arm64/scs: Fix potential sign extension issue of advance_loc4 Greg Kroah-Hartman
2026-05-20 16:19 ` [PATCH 7.0 0919/1146] spi: spi-mem: Add a packed command operation Greg Kroah-Hartman
2026-05-20 16:19 ` [PATCH 7.0 0920/1146] mtd: spinand: Add support for packed read data ODTR commands Greg Kroah-Hartman
2026-05-20 16:19 ` [PATCH 7.0 0921/1146] mtd: spinand: winbond: Set the packed page read flag to W35N02/04JW Greg Kroah-Hartman
2026-05-20 16:19 ` [PATCH 7.0 0922/1146] mtd: spinand: winbond: Fix ODTR write VCR on W35NxxJW Greg Kroah-Hartman
2026-05-20 16:19 ` [PATCH 7.0 0923/1146] ACPICA: Provide #defines for EINJV2 error types Greg Kroah-Hartman
2026-05-20 16:19 ` [PATCH 7.0 0924/1146] ACPI: APEI: EINJ: Fix EINJV2 memory error injection Greg Kroah-Hartman
2026-05-20 16:19 ` [PATCH 7.0 0925/1146] cdrom, scsi: sr: propagate read-only status to block layer via set_disk_ro() Greg Kroah-Hartman
2026-05-20 16:19 ` [PATCH 7.0 0926/1146] spi: axiado: replace usleep_range() with udelay() in IRQ path Greg Kroah-Hartman
2026-05-20 16:19 ` [PATCH 7.0 0927/1146] netdevsim: zero initialize struct iphdr in dummy sk_buff Greg Kroah-Hartman
2026-05-20 16:19 ` [PATCH 7.0 0928/1146] net/sched: netem: fix probability gaps in 4-state loss model Greg Kroah-Hartman
2026-05-20 16:19 ` [PATCH 7.0 0929/1146] net/sched: netem: fix queue limit check to include reordered packets Greg Kroah-Hartman
2026-05-20 16:19 ` [PATCH 7.0 0930/1146] net/sched: netem: only reseed PRNG when seed is explicitly provided Greg Kroah-Hartman
2026-05-20 16:19 ` [PATCH 7.0 0931/1146] net/sched: netem: validate slot configuration Greg Kroah-Hartman
2026-05-20 16:19 ` [PATCH 7.0 0932/1146] net/sched: netem: fix slot delay calculation overflow Greg Kroah-Hartman
2026-05-20 16:19 ` [PATCH 7.0 0933/1146] net/sched: netem: check for negative latency and jitter Greg Kroah-Hartman
2026-05-20 16:19 ` [PATCH 7.0 0934/1146] net: airoha: fix BQL imbalance in TX path Greg Kroah-Hartman
2026-05-20 16:19 ` [PATCH 7.0 0935/1146] net: airoha: stop net_device TX queue before updating CPU index Greg Kroah-Hartman
2026-05-20 16:19 ` [PATCH 7.0 0936/1146] net: airoha: fix typo in function name Greg Kroah-Hartman
2026-05-20 16:19 ` [PATCH 7.0 0937/1146] net: airoha: Do not wake all netdev TX queues in airoha_qdma_wake_netdev_txqs() Greg Kroah-Hartman
2026-05-20 16:19 ` [PATCH 7.0 0938/1146] net: airoha: Do not read uninitialized fragment address in airoha_dev_xmit() Greg Kroah-Hartman
2026-05-20 16:19 ` [PATCH 7.0 0939/1146] net/sched: sch_choke: annotate data-races in choke_dump_stats() Greg Kroah-Hartman
2026-05-20 16:19 ` [PATCH 7.0 0940/1146] net/sched: sch_fq_pie: annotate data-races in fq_pie_dump_stats() Greg Kroah-Hartman
2026-05-20 16:19 ` [PATCH 7.0 0941/1146] vrf: Fix a potential NPD when removing a port from a VRF Greg Kroah-Hartman
2026-05-20 16:19 ` [PATCH 7.0 0942/1146] net: usb: rtl8150: fix use-after-free in rtl8150_start_xmit() Greg Kroah-Hartman
2026-05-20 16:19 ` [PATCH 7.0 0943/1146] net: usb: rtl8150: free skb on usb_submit_urb() failure in xmit Greg Kroah-Hartman
2026-05-20 16:19 ` [PATCH 7.0 0944/1146] spi: amlogic-spisg: initialize completion before requesting IRQ Greg Kroah-Hartman
2026-05-20 16:19 ` [PATCH 7.0 0945/1146] NFC: trf7970a: Ignore antenna noise when checking for RF field Greg Kroah-Hartman
2026-05-20 16:19 ` [PATCH 7.0 0946/1146] net/sched: taprio: fix NULL pointer dereference in class dump Greg Kroah-Hartman
2026-05-20 16:19 ` [PATCH 7.0 0947/1146] net: phonet: do not BUG_ON() in pn_socket_autobind() on failed bind Greg Kroah-Hartman
2026-05-20 16:19 ` [PATCH 7.0 0948/1146] neigh: let neigh_xmit take skb ownership Greg Kroah-Hartman
2026-05-20 16:19 ` [PATCH 7.0 0949/1146] tcp: make probe0 timer handle expired user timeout Greg Kroah-Hartman
2026-05-20 16:20 ` [PATCH 7.0 0950/1146] netpoll: fix IPv6 local-address corruption Greg Kroah-Hartman
2026-05-20 16:20 ` [PATCH 7.0 0951/1146] ALSA: usb-audio: Fix potential leak of pd at parsing UAC3 streams Greg Kroah-Hartman
2026-05-20 16:20 ` [PATCH 7.0 0952/1146] sched/fair: Fix wakeup_preempt_fair() vs delayed dequeue Greg Kroah-Hartman
2026-05-20 16:20 ` [PATCH 7.0 0953/1146] sched/fair: Clear rel_deadline when initializing forked entities Greg Kroah-Hartman
2026-05-20 16:20 ` [PATCH 7.0 0954/1146] net: mctp i2c: check length before marking flow active Greg Kroah-Hartman
2026-05-20 16:20 ` [PATCH 7.0 0955/1146] md/raid1,raid10: dont fail devices for invalid IO errors Greg Kroah-Hartman
2026-05-20 16:20 ` [PATCH 7.0 0956/1146] md: add fallback to correct bitmap_ops on version mismatch Greg Kroah-Hartman
2026-05-20 16:20 ` [PATCH 7.0 0957/1146] md: factor bitmap creation away from sysfs handling Greg Kroah-Hartman
2026-05-20 16:20 ` [PATCH 7.0 0958/1146] md/md-bitmap: split bitmap sysfs groups Greg Kroah-Hartman
2026-05-20 16:20 ` [PATCH 7.0 0959/1146] md/md-bitmap: add a none backend for bitmap grow Greg Kroah-Hartman
2026-05-20 16:20 ` [PATCH 7.0 0960/1146] s390/mm: Fix phys_to_folio() usage in do_secure_storage_access() Greg Kroah-Hartman
2026-05-20 16:20 ` [PATCH 7.0 0961/1146] net: phy: dp83869: fix setting CLK_O_SEL field Greg Kroah-Hartman
2026-05-20 16:20 ` [PATCH 7.0 0962/1146] drm/amd/display: properly handle family setting for early GC 11.5.4 Greg Kroah-Hartman
2026-05-20 16:20 ` [PATCH 7.0 0963/1146] drm/amdgpu/vcn: set no_user_fence for VCN v2.0 enc/dec rings Greg Kroah-Hartman
2026-05-20 16:20 ` [PATCH 7.0 0964/1146] drm/amdgpu/vcn: set no_user_fence for VCN v2.5 " Greg Kroah-Hartman
2026-05-20 16:20 ` [PATCH 7.0 0965/1146] drm/amdgpu/vcn: set no_user_fence for VCN v3.0 " Greg Kroah-Hartman
2026-05-20 16:20 ` [PATCH 7.0 0966/1146] drm/amdgpu/vcn: set no_user_fence for VCN v4.0 enc ring Greg Kroah-Hartman
2026-05-20 16:20 ` [PATCH 7.0 0967/1146] drm/amdgpu/vcn: set no_user_fence for VCN v4.0.3 " Greg Kroah-Hartman
2026-05-20 16:20 ` [PATCH 7.0 0968/1146] drm/amdgpu/vcn: set no_user_fence for VCN v4.0.5 " Greg Kroah-Hartman
2026-05-20 16:20 ` [PATCH 7.0 0969/1146] drm/amdgpu/vcn: set no_user_fence for VCN v5.0.0 " Greg Kroah-Hartman
2026-05-20 16:20 ` [PATCH 7.0 0970/1146] drm/amdgpu/vcn: set no_user_fence for VCN v5.0.1 " Greg Kroah-Hartman
2026-05-20 16:20 ` [PATCH 7.0 0971/1146] drm/amdgpu/jpeg: set no_user_fence for JPEG v2.0 ring Greg Kroah-Hartman
2026-05-20 16:20 ` [PATCH 7.0 0972/1146] drm/amdgpu/jpeg: set no_user_fence for JPEG v2.5 ring Greg Kroah-Hartman
2026-05-20 16:20 ` [PATCH 7.0 0973/1146] drm/amdgpu/jpeg: set no_user_fence for JPEG v3.0 ring Greg Kroah-Hartman
2026-05-20 16:20 ` [PATCH 7.0 0974/1146] drm/amdgpu/jpeg: set no_user_fence for JPEG v4.0 ring Greg Kroah-Hartman
2026-05-20 16:20 ` [PATCH 7.0 0975/1146] drm/amdgpu/jpeg: set no_user_fence for JPEG v4.0.3 ring Greg Kroah-Hartman
2026-05-20 16:20 ` [PATCH 7.0 0976/1146] drm/amdgpu/jpeg: set no_user_fence for JPEG v4.0.5 ring Greg Kroah-Hartman
2026-05-20 16:20 ` [PATCH 7.0 0977/1146] drm/amdgpu/jpeg: set no_user_fence for JPEG v5.0.0 ring Greg Kroah-Hartman
2026-05-20 16:20 ` [PATCH 7.0 0978/1146] drm/amdgpu/jpeg: set no_user_fence for JPEG v5.0.1 ring Greg Kroah-Hartman
2026-05-20 16:20 ` [PATCH 7.0 0979/1146] drm/amdgpu/jpeg: set no_user_fence for JPEG v5.3.0 ring Greg Kroah-Hartman
2026-05-20 16:20 ` [PATCH 7.0 0980/1146] drm/amd/pm: Add fine grained flag to SMU v13.0.6 Greg Kroah-Hartman
2026-05-20 16:20 ` [PATCH 7.0 0981/1146] io_uring/napi: cap busy_poll_to 10 msec Greg Kroah-Hartman
2026-05-20 16:20 ` [PATCH 7.0 0982/1146] ASoC: cs35l56: Fix illegal writes to OTP_MEM registers Greg Kroah-Hartman
2026-05-20 16:20 ` [PATCH 7.0 0983/1146] net: psp: check for device unregister when creating assoc Greg Kroah-Hartman
2026-05-20 16:20 ` [PATCH 7.0 0984/1146] net: psp: require admin permission for dev-set and key-rotate Greg Kroah-Hartman
2026-05-20 16:20 ` [PATCH 7.0 0985/1146] ASoC: codecs: ab8500: Fix casting of private data Greg Kroah-Hartman
2026-05-20 16:20 ` [PATCH 7.0 0986/1146] netfilter: skip recording stale or retransmitted INIT Greg Kroah-Hartman
2026-05-20 16:20 ` [PATCH 7.0 0987/1146] sctp: discard stale INIT after handshake completion Greg Kroah-Hartman
2026-05-20 16:20 ` [PATCH 7.0 0988/1146] bareudp: fix NULL pointer dereference in bareudp_fill_metadata_dst() Greg Kroah-Hartman
2026-05-20 16:20 ` [PATCH 7.0 0989/1146] net/sched: sch_cake: annotate data-races in cake_dump_stats() (I) Greg Kroah-Hartman
2026-05-20 16:20 ` [PATCH 7.0 0990/1146] net/sched: sch_cake: annotate data-races in cake_dump_stats() (II) Greg Kroah-Hartman
2026-05-20 16:20 ` [PATCH 7.0 0991/1146] net/sched: sch_cake: annotate data-races in cake_dump_stats() (III) Greg Kroah-Hartman
2026-05-20 16:20 ` [PATCH 7.0 0992/1146] net/sched: sch_cake: annotate data-races in cake_dump_stats() (IV) Greg Kroah-Hartman
2026-05-20 16:20 ` [PATCH 7.0 0993/1146] net/sched: sch_cake: annotate data-races in cake_dump_stats() (V) Greg Kroah-Hartman
2026-05-20 16:20 ` [PATCH 7.0 0994/1146] netconsole: return count instead of strnlen(buf, count) from store callbacks Greg Kroah-Hartman
2026-05-20 16:20 ` [PATCH 7.0 0995/1146] netconsole: avoid clobbering userdatum value on truncated write Greg Kroah-Hartman
2026-05-20 16:20 ` [PATCH 7.0 0996/1146] netconsole: propagate device name truncation in dev_name_store() Greg Kroah-Hartman
2026-05-20 16:20 ` [PATCH 7.0 0997/1146] netconsole: restore userdatum value on update_userdata() failure Greg Kroah-Hartman
2026-05-20 16:20 ` [PATCH 7.0 0998/1146] ALSA: hda/conexant: Fix missing error check for jack detection Greg Kroah-Hartman
2026-05-20 16:20 ` [PATCH 7.0 0999/1146] ALSA: hda: cs35l56: Fix uninitialized value in cs35l56_hda_read_acpi() Greg Kroah-Hartman
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=20260520162152.754780951@linuxfoundation.org \
--to=gregkh@linuxfoundation.org \
--cc=achender@kernel.org \
--cc=gerd.rausch@oracle.com \
--cc=haakon.bugge@oracle.com \
--cc=kuba@kernel.org \
--cc=patches@lists.linux.dev \
--cc=sashal@kernel.org \
--cc=somasundaram.krishnasamy@oracle.com \
--cc=stable@vger.kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox