patches.lists.linux.dev archive mirror
 help / color / mirror / Atom feed
From: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
To: stable@vger.kernel.org
Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>,
	patches@lists.linux.dev,
	"Peter Zijlstra (Intel)" <peterz@infradead.org>,
	Leon Romanovsky <leon@kernel.org>,
	K Prateek Nayak <kprateek.nayak@amd.com>,
	Valentin Schneider <vschneid@redhat.com>,
	Shrikanth Hegde <sshegde@linux.ibm.com>,
	Sasha Levin <sashal@kernel.org>
Subject: [PATCH 6.17 036/563] sched/fair: Get rid of sched_domains_curr_level hack for tl->cpumask()
Date: Mon, 13 Oct 2025 16:38:17 +0200	[thread overview]
Message-ID: <20251013144412.597554042@linuxfoundation.org> (raw)
In-Reply-To: <20251013144411.274874080@linuxfoundation.org>

6.17-stable review patch.  If anyone has any objections, please let me know.

------------------

From: Peter Zijlstra <peterz@infradead.org>

[ Upstream commit 661f951e371cc134ea31c84238dbdc9a898b8403 ]

Leon [1] and Vinicius [2] noted a topology_span_sane() warning during
their testing starting from v6.16-rc1. Debug that followed pointed to
the tl->mask() for the NODE domain being incorrectly resolved to that of
the highest NUMA domain.

tl->mask() for NODE is set to the sd_numa_mask() which depends on the
global "sched_domains_curr_level" hack. "sched_domains_curr_level" is
set to the "tl->numa_level" during tl traversal in build_sched_domains()
calling sd_init() but was not reset before topology_span_sane().

Since "tl->numa_level" still reflected the old value from
build_sched_domains(), topology_span_sane() for the NODE domain trips
when the span of the last NUMA domain overlaps.

Instead of replicating the "sched_domains_curr_level" hack, get rid of
it entirely and instead, pass the entire "sched_domain_topology_level"
object to tl->cpumask() function to prevent such mishap in the future.

sd_numa_mask() now directly references "tl->numa_level" instead of
relying on the global "sched_domains_curr_level" hack to index into
sched_domains_numa_masks[].

The original warning was reproducible on the following NUMA topology
reported by Leon:

    $ sudo numactl -H
    available: 5 nodes (0-4)
    node 0 cpus: 0 1
    node 0 size: 2927 MB
    node 0 free: 1603 MB
    node 1 cpus: 2 3
    node 1 size: 3023 MB
    node 1 free: 3008 MB
    node 2 cpus: 4 5
    node 2 size: 3023 MB
    node 2 free: 3007 MB
    node 3 cpus: 6 7
    node 3 size: 3023 MB
    node 3 free: 3002 MB
    node 4 cpus: 8 9
    node 4 size: 3022 MB
    node 4 free: 2718 MB
    node distances:
    node   0   1   2   3   4
      0:  10  39  38  37  36
      1:  39  10  38  37  36
      2:  38  38  10  37  36
      3:  37  37  37  10  36
      4:  36  36  36  36  10

The above topology can be mimicked using the following QEMU cmd that was
used to reproduce the warning and test the fix:

     sudo qemu-system-x86_64 -enable-kvm -cpu host \
     -m 20G -smp cpus=10,sockets=10 -machine q35 \
     -object memory-backend-ram,size=4G,id=m0 \
     -object memory-backend-ram,size=4G,id=m1 \
     -object memory-backend-ram,size=4G,id=m2 \
     -object memory-backend-ram,size=4G,id=m3 \
     -object memory-backend-ram,size=4G,id=m4 \
     -numa node,cpus=0-1,memdev=m0,nodeid=0 \
     -numa node,cpus=2-3,memdev=m1,nodeid=1 \
     -numa node,cpus=4-5,memdev=m2,nodeid=2 \
     -numa node,cpus=6-7,memdev=m3,nodeid=3 \
     -numa node,cpus=8-9,memdev=m4,nodeid=4 \
     -numa dist,src=0,dst=1,val=39 \
     -numa dist,src=0,dst=2,val=38 \
     -numa dist,src=0,dst=3,val=37 \
     -numa dist,src=0,dst=4,val=36 \
     -numa dist,src=1,dst=0,val=39 \
     -numa dist,src=1,dst=2,val=38 \
     -numa dist,src=1,dst=3,val=37 \
     -numa dist,src=1,dst=4,val=36 \
     -numa dist,src=2,dst=0,val=38 \
     -numa dist,src=2,dst=1,val=38 \
     -numa dist,src=2,dst=3,val=37 \
     -numa dist,src=2,dst=4,val=36 \
     -numa dist,src=3,dst=0,val=37 \
     -numa dist,src=3,dst=1,val=37 \
     -numa dist,src=3,dst=2,val=37 \
     -numa dist,src=3,dst=4,val=36 \
     -numa dist,src=4,dst=0,val=36 \
     -numa dist,src=4,dst=1,val=36 \
     -numa dist,src=4,dst=2,val=36 \
     -numa dist,src=4,dst=3,val=36 \
     ...

  [ prateek: Moved common functions to include/linux/sched/topology.h,
    reuse the common bits for s390 and ppc, commit message ]

Closes: https://lore.kernel.org/lkml/20250610110701.GA256154@unreal/ [1]
Fixes: ccf74128d66c ("sched/topology: Assert non-NUMA topology masks don't (partially) overlap") # ce29a7da84cd, f55dac1dafb3
Signed-off-by: Peter Zijlstra (Intel) <peterz@infradead.org>
Reported-by: Leon Romanovsky <leon@kernel.org>
Signed-off-by: K Prateek Nayak <kprateek.nayak@amd.com>
Signed-off-by: Peter Zijlstra (Intel) <peterz@infradead.org>
Reviewed-by: Valentin Schneider <vschneid@redhat.com>
Reviewed-by: Shrikanth Hegde <sshegde@linux.ibm.com>
Tested-by: Valentin Schneider <vschneid@redhat.com> # x86
Tested-by: Shrikanth Hegde <sshegde@linux.ibm.com> # powerpc
Link: https://lore.kernel.org/lkml/a3de98387abad28592e6ab591f3ff6107fe01dc1.1755893468.git.tim.c.chen@linux.intel.com/ [2]
Signed-off-by: Sasha Levin <sashal@kernel.org>
---
 arch/powerpc/Kconfig                |  4 ++++
 arch/powerpc/include/asm/topology.h |  2 ++
 arch/powerpc/kernel/smp.c           | 27 +++++++++++----------------
 arch/s390/kernel/topology.c         | 20 +++++++-------------
 arch/x86/kernel/smpboot.c           |  8 ++++----
 include/linux/sched/topology.h      | 28 +++++++++++++++++++++++++++-
 include/linux/topology.h            |  2 +-
 kernel/sched/topology.c             | 28 ++++++++++------------------
 8 files changed, 66 insertions(+), 53 deletions(-)

diff --git a/arch/powerpc/Kconfig b/arch/powerpc/Kconfig
index 93402a1d9c9fc..e51a595a06228 100644
--- a/arch/powerpc/Kconfig
+++ b/arch/powerpc/Kconfig
@@ -971,6 +971,10 @@ config SCHED_SMT
 	  when dealing with POWER5 cpus at a cost of slightly increased
 	  overhead in some places. If unsure say N here.
 
+config SCHED_MC
+	def_bool y
+	depends on SMP
+
 config PPC_DENORMALISATION
 	bool "PowerPC denormalisation exception handling"
 	depends on PPC_BOOK3S_64
diff --git a/arch/powerpc/include/asm/topology.h b/arch/powerpc/include/asm/topology.h
index da15b5efe8071..f19ca44512d1e 100644
--- a/arch/powerpc/include/asm/topology.h
+++ b/arch/powerpc/include/asm/topology.h
@@ -131,6 +131,8 @@ static inline int cpu_to_coregroup_id(int cpu)
 #ifdef CONFIG_SMP
 #include <asm/cputable.h>
 
+struct cpumask *cpu_coregroup_mask(int cpu);
+
 #ifdef CONFIG_PPC64
 #include <asm/smp.h>
 
diff --git a/arch/powerpc/kernel/smp.c b/arch/powerpc/kernel/smp.c
index f59e4b9cc2074..68edb66c2964b 100644
--- a/arch/powerpc/kernel/smp.c
+++ b/arch/powerpc/kernel/smp.c
@@ -1028,19 +1028,19 @@ static int powerpc_shared_proc_flags(void)
  * We can't just pass cpu_l2_cache_mask() directly because
  * returns a non-const pointer and the compiler barfs on that.
  */
-static const struct cpumask *shared_cache_mask(int cpu)
+static const struct cpumask *tl_cache_mask(struct sched_domain_topology_level *tl, int cpu)
 {
 	return per_cpu(cpu_l2_cache_map, cpu);
 }
 
 #ifdef CONFIG_SCHED_SMT
-static const struct cpumask *smallcore_smt_mask(int cpu)
+static const struct cpumask *tl_smallcore_smt_mask(struct sched_domain_topology_level *tl, int cpu)
 {
 	return cpu_smallcore_mask(cpu);
 }
 #endif
 
-static struct cpumask *cpu_coregroup_mask(int cpu)
+struct cpumask *cpu_coregroup_mask(int cpu)
 {
 	return per_cpu(cpu_coregroup_map, cpu);
 }
@@ -1054,11 +1054,6 @@ static bool has_coregroup_support(void)
 	return coregroup_enabled;
 }
 
-static const struct cpumask *cpu_mc_mask(int cpu)
-{
-	return cpu_coregroup_mask(cpu);
-}
-
 static int __init init_big_cores(void)
 {
 	int cpu;
@@ -1448,7 +1443,7 @@ static bool update_mask_by_l2(int cpu, cpumask_var_t *mask)
 		return false;
 	}
 
-	cpumask_and(*mask, cpu_online_mask, cpu_cpu_mask(cpu));
+	cpumask_and(*mask, cpu_online_mask, cpu_node_mask(cpu));
 
 	/* Update l2-cache mask with all the CPUs that are part of submask */
 	or_cpumasks_related(cpu, cpu, submask_fn, cpu_l2_cache_mask);
@@ -1538,7 +1533,7 @@ static void update_coregroup_mask(int cpu, cpumask_var_t *mask)
 		return;
 	}
 
-	cpumask_and(*mask, cpu_online_mask, cpu_cpu_mask(cpu));
+	cpumask_and(*mask, cpu_online_mask, cpu_node_mask(cpu));
 
 	/* Update coregroup mask with all the CPUs that are part of submask */
 	or_cpumasks_related(cpu, cpu, submask_fn, cpu_coregroup_mask);
@@ -1601,7 +1596,7 @@ static void add_cpu_to_masks(int cpu)
 
 	/* If chip_id is -1; limit the cpu_core_mask to within PKG */
 	if (chip_id == -1)
-		cpumask_and(mask, mask, cpu_cpu_mask(cpu));
+		cpumask_and(mask, mask, cpu_node_mask(cpu));
 
 	for_each_cpu(i, mask) {
 		if (chip_id == cpu_to_chip_id(i)) {
@@ -1701,22 +1696,22 @@ static void __init build_sched_topology(void)
 	if (has_big_cores) {
 		pr_info("Big cores detected but using small core scheduling\n");
 		powerpc_topology[i++] =
-			SDTL_INIT(smallcore_smt_mask, powerpc_smt_flags, SMT);
+			SDTL_INIT(tl_smallcore_smt_mask, powerpc_smt_flags, SMT);
 	} else {
-		powerpc_topology[i++] = SDTL_INIT(cpu_smt_mask, powerpc_smt_flags, SMT);
+		powerpc_topology[i++] = SDTL_INIT(tl_smt_mask, powerpc_smt_flags, SMT);
 	}
 #endif
 	if (shared_caches) {
 		powerpc_topology[i++] =
-			SDTL_INIT(shared_cache_mask, powerpc_shared_cache_flags, CACHE);
+			SDTL_INIT(tl_cache_mask, powerpc_shared_cache_flags, CACHE);
 	}
 
 	if (has_coregroup_support()) {
 		powerpc_topology[i++] =
-			SDTL_INIT(cpu_mc_mask, powerpc_shared_proc_flags, MC);
+			SDTL_INIT(tl_mc_mask, powerpc_shared_proc_flags, MC);
 	}
 
-	powerpc_topology[i++] = SDTL_INIT(cpu_cpu_mask, powerpc_shared_proc_flags, PKG);
+	powerpc_topology[i++] = SDTL_INIT(tl_pkg_mask, powerpc_shared_proc_flags, PKG);
 
 	/* There must be one trailing NULL entry left.  */
 	BUG_ON(i >= ARRAY_SIZE(powerpc_topology) - 1);
diff --git a/arch/s390/kernel/topology.c b/arch/s390/kernel/topology.c
index 46569b8e47dde..1594c80e9bc4d 100644
--- a/arch/s390/kernel/topology.c
+++ b/arch/s390/kernel/topology.c
@@ -509,33 +509,27 @@ int topology_cpu_init(struct cpu *cpu)
 	return rc;
 }
 
-static const struct cpumask *cpu_thread_mask(int cpu)
-{
-	return &cpu_topology[cpu].thread_mask;
-}
-
-
 const struct cpumask *cpu_coregroup_mask(int cpu)
 {
 	return &cpu_topology[cpu].core_mask;
 }
 
-static const struct cpumask *cpu_book_mask(int cpu)
+static const struct cpumask *tl_book_mask(struct sched_domain_topology_level *tl, int cpu)
 {
 	return &cpu_topology[cpu].book_mask;
 }
 
-static const struct cpumask *cpu_drawer_mask(int cpu)
+static const struct cpumask *tl_drawer_mask(struct sched_domain_topology_level *tl, int cpu)
 {
 	return &cpu_topology[cpu].drawer_mask;
 }
 
 static struct sched_domain_topology_level s390_topology[] = {
-	SDTL_INIT(cpu_thread_mask, cpu_smt_flags, SMT),
-	SDTL_INIT(cpu_coregroup_mask, cpu_core_flags, MC),
-	SDTL_INIT(cpu_book_mask, NULL, BOOK),
-	SDTL_INIT(cpu_drawer_mask, NULL, DRAWER),
-	SDTL_INIT(cpu_cpu_mask, NULL, PKG),
+	SDTL_INIT(tl_smt_mask, cpu_smt_flags, SMT),
+	SDTL_INIT(tl_mc_mask, cpu_core_flags, MC),
+	SDTL_INIT(tl_book_mask, NULL, BOOK),
+	SDTL_INIT(tl_drawer_mask, NULL, DRAWER),
+	SDTL_INIT(tl_pkg_mask, NULL, PKG),
 	{ NULL, },
 };
 
diff --git a/arch/x86/kernel/smpboot.c b/arch/x86/kernel/smpboot.c
index 33e166f6ab122..eb289abece237 100644
--- a/arch/x86/kernel/smpboot.c
+++ b/arch/x86/kernel/smpboot.c
@@ -479,14 +479,14 @@ static int x86_cluster_flags(void)
 static bool x86_has_numa_in_package;
 
 static struct sched_domain_topology_level x86_topology[] = {
-	SDTL_INIT(cpu_smt_mask, cpu_smt_flags, SMT),
+	SDTL_INIT(tl_smt_mask, cpu_smt_flags, SMT),
 #ifdef CONFIG_SCHED_CLUSTER
-	SDTL_INIT(cpu_clustergroup_mask, x86_cluster_flags, CLS),
+	SDTL_INIT(tl_cls_mask, x86_cluster_flags, CLS),
 #endif
 #ifdef CONFIG_SCHED_MC
-	SDTL_INIT(cpu_coregroup_mask, x86_core_flags, MC),
+	SDTL_INIT(tl_mc_mask, x86_core_flags, MC),
 #endif
-	SDTL_INIT(cpu_cpu_mask, x86_sched_itmt_flags, PKG),
+	SDTL_INIT(tl_pkg_mask, x86_sched_itmt_flags, PKG),
 	{ NULL },
 };
 
diff --git a/include/linux/sched/topology.h b/include/linux/sched/topology.h
index 5263746b63e8c..a3a24e115d446 100644
--- a/include/linux/sched/topology.h
+++ b/include/linux/sched/topology.h
@@ -30,11 +30,19 @@ struct sd_flag_debug {
 };
 extern const struct sd_flag_debug sd_flag_debug[];
 
+struct sched_domain_topology_level;
+
 #ifdef CONFIG_SCHED_SMT
 static inline int cpu_smt_flags(void)
 {
 	return SD_SHARE_CPUCAPACITY | SD_SHARE_LLC;
 }
+
+static inline const
+struct cpumask *tl_smt_mask(struct sched_domain_topology_level *tl, int cpu)
+{
+	return cpu_smt_mask(cpu);
+}
 #endif
 
 #ifdef CONFIG_SCHED_CLUSTER
@@ -42,6 +50,12 @@ static inline int cpu_cluster_flags(void)
 {
 	return SD_CLUSTER | SD_SHARE_LLC;
 }
+
+static inline const
+struct cpumask *tl_cls_mask(struct sched_domain_topology_level *tl, int cpu)
+{
+	return cpu_clustergroup_mask(cpu);
+}
 #endif
 
 #ifdef CONFIG_SCHED_MC
@@ -49,8 +63,20 @@ static inline int cpu_core_flags(void)
 {
 	return SD_SHARE_LLC;
 }
+
+static inline const
+struct cpumask *tl_mc_mask(struct sched_domain_topology_level *tl, int cpu)
+{
+	return cpu_coregroup_mask(cpu);
+}
 #endif
 
+static inline const
+struct cpumask *tl_pkg_mask(struct sched_domain_topology_level *tl, int cpu)
+{
+	return cpu_node_mask(cpu);
+}
+
 #ifdef CONFIG_NUMA
 static inline int cpu_numa_flags(void)
 {
@@ -172,7 +198,7 @@ bool cpus_equal_capacity(int this_cpu, int that_cpu);
 bool cpus_share_cache(int this_cpu, int that_cpu);
 bool cpus_share_resources(int this_cpu, int that_cpu);
 
-typedef const struct cpumask *(*sched_domain_mask_f)(int cpu);
+typedef const struct cpumask *(*sched_domain_mask_f)(struct sched_domain_topology_level *tl, int cpu);
 typedef int (*sched_domain_flags_f)(void);
 
 struct sd_data {
diff --git a/include/linux/topology.h b/include/linux/topology.h
index 33b7fda97d390..6575af39fd10f 100644
--- a/include/linux/topology.h
+++ b/include/linux/topology.h
@@ -260,7 +260,7 @@ static inline bool topology_is_primary_thread(unsigned int cpu)
 
 #endif
 
-static inline const struct cpumask *cpu_cpu_mask(int cpu)
+static inline const struct cpumask *cpu_node_mask(int cpu)
 {
 	return cpumask_of_node(cpu_to_node(cpu));
 }
diff --git a/kernel/sched/topology.c b/kernel/sched/topology.c
index 6e2f54169e66c..36d4f9f063516 100644
--- a/kernel/sched/topology.c
+++ b/kernel/sched/topology.c
@@ -1591,7 +1591,6 @@ static void claim_allocations(int cpu, struct sched_domain *sd)
 enum numa_topology_type sched_numa_topology_type;
 
 static int			sched_domains_numa_levels;
-static int			sched_domains_curr_level;
 
 int				sched_max_numa_distance;
 static int			*sched_domains_numa_distance;
@@ -1632,14 +1631,7 @@ sd_init(struct sched_domain_topology_level *tl,
 	int sd_id, sd_weight, sd_flags = 0;
 	struct cpumask *sd_span;
 
-#ifdef CONFIG_NUMA
-	/*
-	 * Ugly hack to pass state to sd_numa_mask()...
-	 */
-	sched_domains_curr_level = tl->numa_level;
-#endif
-
-	sd_weight = cpumask_weight(tl->mask(cpu));
+	sd_weight = cpumask_weight(tl->mask(tl, cpu));
 
 	if (tl->sd_flags)
 		sd_flags = (*tl->sd_flags)();
@@ -1677,7 +1669,7 @@ sd_init(struct sched_domain_topology_level *tl,
 	};
 
 	sd_span = sched_domain_span(sd);
-	cpumask_and(sd_span, cpu_map, tl->mask(cpu));
+	cpumask_and(sd_span, cpu_map, tl->mask(tl, cpu));
 	sd_id = cpumask_first(sd_span);
 
 	sd->flags |= asym_cpu_capacity_classify(sd_span, cpu_map);
@@ -1737,17 +1729,17 @@ sd_init(struct sched_domain_topology_level *tl,
  */
 static struct sched_domain_topology_level default_topology[] = {
 #ifdef CONFIG_SCHED_SMT
-	SDTL_INIT(cpu_smt_mask, cpu_smt_flags, SMT),
+	SDTL_INIT(tl_smt_mask, cpu_smt_flags, SMT),
 #endif
 
 #ifdef CONFIG_SCHED_CLUSTER
-	SDTL_INIT(cpu_clustergroup_mask, cpu_cluster_flags, CLS),
+	SDTL_INIT(tl_cls_mask, cpu_cluster_flags, CLS),
 #endif
 
 #ifdef CONFIG_SCHED_MC
-	SDTL_INIT(cpu_coregroup_mask, cpu_core_flags, MC),
+	SDTL_INIT(tl_mc_mask, cpu_core_flags, MC),
 #endif
-	SDTL_INIT(cpu_cpu_mask, NULL, PKG),
+	SDTL_INIT(tl_pkg_mask, NULL, PKG),
 	{ NULL, },
 };
 
@@ -1769,9 +1761,9 @@ void __init set_sched_topology(struct sched_domain_topology_level *tl)
 
 #ifdef CONFIG_NUMA
 
-static const struct cpumask *sd_numa_mask(int cpu)
+static const struct cpumask *sd_numa_mask(struct sched_domain_topology_level *tl, int cpu)
 {
-	return sched_domains_numa_masks[sched_domains_curr_level][cpu_to_node(cpu)];
+	return sched_domains_numa_masks[tl->numa_level][cpu_to_node(cpu)];
 }
 
 static void sched_numa_warn(const char *str)
@@ -2413,7 +2405,7 @@ static bool topology_span_sane(const struct cpumask *cpu_map)
 		 * breaks the linking done for an earlier span.
 		 */
 		for_each_cpu(cpu, cpu_map) {
-			const struct cpumask *tl_cpu_mask = tl->mask(cpu);
+			const struct cpumask *tl_cpu_mask = tl->mask(tl, cpu);
 			int id;
 
 			/* lowest bit set in this mask is used as a unique id */
@@ -2421,7 +2413,7 @@ static bool topology_span_sane(const struct cpumask *cpu_map)
 
 			if (cpumask_test_cpu(id, id_seen)) {
 				/* First CPU has already been seen, ensure identical spans */
-				if (!cpumask_equal(tl->mask(id), tl_cpu_mask))
+				if (!cpumask_equal(tl->mask(tl, id), tl_cpu_mask))
 					return false;
 			} else {
 				/* First CPU hasn't been seen before, ensure it's a completely new span */
-- 
2.51.0




  parent reply	other threads:[~2025-10-13 15:20 UTC|newest]

Thread overview: 591+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2025-10-13 14:37 [PATCH 6.17 000/563] 6.17.3-rc1 review Greg Kroah-Hartman
2025-10-13 14:37 ` [PATCH 6.17 001/563] arch: copy_thread: pass clone_flags as u64 Greg Kroah-Hartman
2025-10-13 14:37 ` [PATCH 6.17 002/563] filelock: add FL_RECLAIM to show_fl_flags() macro Greg Kroah-Hartman
2025-10-13 14:37 ` [PATCH 6.17 003/563] init: INITRAMFS_PRESERVE_MTIME should depend on BLK_DEV_INITRD Greg Kroah-Hartman
2025-10-13 14:37 ` [PATCH 6.17 004/563] pid: use ns_capable_noaudit() when determining net sysctl permissions Greg Kroah-Hartman
2025-10-13 14:37 ` [PATCH 6.17 005/563] Fix CC_HAS_ASM_GOTO_OUTPUT on non-x86 architectures Greg Kroah-Hartman
2025-10-13 14:37 ` [PATCH 6.17 006/563] seccomp: Fix a race with WAIT_KILLABLE_RECV if the tracer replies too fast Greg Kroah-Hartman
2025-10-13 14:37 ` [PATCH 6.17 007/563] kbuild: Add missing $(objtree) prefix to powerpc crtsavres.o artifact Greg Kroah-Hartman
2025-10-13 14:37 ` [PATCH 6.17 008/563] selftests: arm64: Check fread return value in exec_target Greg Kroah-Hartman
2025-10-13 14:37 ` [PATCH 6.17 009/563] selftests: arm64: Fix -Waddress warning in tpidr2 test Greg Kroah-Hartman
2025-10-13 14:37 ` [PATCH 6.17 010/563] kselftest/arm64/gcs: Correctly check return value when disabling GCS Greg Kroah-Hartman
2025-10-13 14:37 ` [PATCH 6.17 011/563] hfsplus: fix slab-out-of-bounds read in hfsplus_uni2asc() Greg Kroah-Hartman
2025-10-13 14:37 ` [PATCH 6.17 012/563] gfs2: Fix GLF_INVALIDATE_IN_PROGRESS flag clearing in do_xmote Greg Kroah-Hartman
2025-10-13 14:37 ` [PATCH 6.17 013/563] gfs2: Remove space before newline Greg Kroah-Hartman
2025-10-13 14:37 ` [PATCH 6.17 014/563] gfs2: Further sanitize lock_dlm.c Greg Kroah-Hartman
2025-10-13 14:37 ` [PATCH 6.17 015/563] gfs2: Fix LM_FLAG_TRY* logic in add_to_queue Greg Kroah-Hartman
2025-10-13 14:37 ` [PATCH 6.17 016/563] gfs2: Remove duplicate check in do_xmote Greg Kroah-Hartman
2025-10-13 14:37 ` [PATCH 6.17 017/563] gfs2: Get rid of GLF_INVALIDATE_IN_PROGRESS Greg Kroah-Hartman
2025-10-13 14:37 ` [PATCH 6.17 018/563] gfs2: do_xmote cleanup Greg Kroah-Hartman
2025-10-13 14:38 ` [PATCH 6.17 019/563] gfs2: Add proper lockspace locking Greg Kroah-Hartman
2025-10-13 14:38 ` [PATCH 6.17 020/563] powerpc/8xx: Remove left-over instruction and comments in DataStoreTLBMiss handler Greg Kroah-Hartman
2025-10-13 14:38 ` [PATCH 6.17 021/563] powerpc/603: Really copy kernel PGD entries into all PGDIRs Greg Kroah-Hartman
2025-10-13 14:38 ` [PATCH 6.17 022/563] powerpc/ftrace: ensure ftrace record ops are always set for NOPs Greg Kroah-Hartman
2025-10-13 14:38 ` [PATCH 6.17 023/563] powerpc64/modules: correctly iterate over stubs in setup_ftrace_ool_stubs Greg Kroah-Hartman
2025-10-13 14:38 ` [PATCH 6.17 024/563] uprobes: uprobe_warn should use passed task Greg Kroah-Hartman
2025-10-13 14:38 ` [PATCH 6.17 025/563] raid6: riscv: Clean up unused header file inclusion Greg Kroah-Hartman
2025-10-13 14:38 ` [PATCH 6.17 026/563] coresight: trbe: Prevent overflow in PERF_IDX2OFF() Greg Kroah-Hartman
2025-10-13 14:38 ` [PATCH 6.17 027/563] perf: arm_spe: " Greg Kroah-Hartman
2025-10-13 14:38 ` [PATCH 6.17 028/563] erofs: avoid reading more for fragment maps Greg Kroah-Hartman
2025-10-13 14:38 ` [PATCH 6.17 029/563] smb: client: fix sending the iwrap custom IRD/ORD negotiation messages Greg Kroah-Hartman
2025-10-13 14:38 ` [PATCH 6.17 030/563] smb: server: fix IRD/ORD negotiation with the client Greg Kroah-Hartman
2025-10-13 14:38 ` [PATCH 6.17 031/563] EDAC/i10nm: Skip DIMM enumeration on a disabled memory controller Greg Kroah-Hartman
2025-10-13 14:38 ` [PATCH 6.17 032/563] perf/x86/intel: Use early_initcall() to hook bts_init() Greg Kroah-Hartman
2025-10-13 14:38 ` [PATCH 6.17 033/563] perf/x86/intel: Fix IA32_PMC_x_CFG_B MSRs access error Greg Kroah-Hartman
2025-10-13 14:38 ` [PATCH 6.17 034/563] x86/vdso: Fix output operand size of RDPID Greg Kroah-Hartman
2025-10-13 14:38 ` [PATCH 6.17 035/563] selftests: cgroup: Make test_pids backwards compatible Greg Kroah-Hartman
2025-10-13 14:38 ` Greg Kroah-Hartman [this message]
2025-10-13 14:38 ` [PATCH 6.17 037/563] lsm: CONFIG_LSM can depend on CONFIG_SECURITY Greg Kroah-Hartman
2025-10-13 14:38 ` [PATCH 6.17 038/563] cpuset: fix failure to enable isolated partition when containing isolcpus Greg Kroah-Hartman
2025-10-13 14:38 ` [PATCH 6.17 039/563] btrfs: return any hit error from extent_writepage_io() Greg Kroah-Hartman
2025-10-13 14:38 ` [PATCH 6.17 040/563] btrfs: fix symbolic link reading when bs > ps Greg Kroah-Hartman
2025-10-13 14:38 ` [PATCH 6.17 041/563] pinctrl: renesas: rzg2l: Fix invalid unsigned return in rzg3s_oen_read() Greg Kroah-Hartman
2025-10-13 14:38 ` [PATCH 6.17 042/563] arm64: dts: renesas: rzg2lc-smarc: Disable CAN-FD channel0 Greg Kroah-Hartman
2025-10-13 14:38 ` [PATCH 6.17 043/563] bpf: Tidy verifier bug message Greg Kroah-Hartman
2025-10-13 14:38 ` [PATCH 6.17 044/563] regmap: Remove superfluous check for !config in __regmap_init() Greg Kroah-Hartman
2025-10-13 14:38 ` [PATCH 6.17 045/563] selftests/bpf: Copy test_kmods when installing selftest Greg Kroah-Hartman
2025-10-13 14:38 ` [PATCH 6.17 046/563] rust: cpumask: Mark CpumaskVar as transparent Greg Kroah-Hartman
2025-10-13 14:38 ` [PATCH 6.17 047/563] bpf/selftests: Fix test_tcpnotify_user Greg Kroah-Hartman
2025-10-13 14:38 ` [PATCH 6.17 048/563] bpf: Remove migrate_disable in kprobe_multi_link_prog_run Greg Kroah-Hartman
2025-10-13 14:38 ` [PATCH 6.17 049/563] libbpf: Fix reuse of DEVMAP Greg Kroah-Hartman
2025-10-13 14:38 ` [PATCH 6.17 050/563] tools/nolibc: fix error return value of clock_nanosleep() Greg Kroah-Hartman
2025-10-13 14:38 ` [PATCH 6.17 051/563] ARM: dts: renesas: porter: Fix CAN pin group Greg Kroah-Hartman
2025-10-13 14:38 ` [PATCH 6.17 052/563] leds: max77705: Function return instead of variable assignment Greg Kroah-Hartman
2025-10-13 14:38 ` [PATCH 6.17 053/563] leds: flash: leds-qcom-flash: Update torch current clamp setting Greg Kroah-Hartman
2025-10-13 14:38 ` [PATCH 6.17 054/563] s390/bpf: Do not write tail call counter into helper and kfunc frames Greg Kroah-Hartman
2025-10-13 14:38 ` [PATCH 6.17 055/563] s390/bpf: Write back tail call counter for BPF_PSEUDO_CALL Greg Kroah-Hartman
2025-10-13 14:38 ` [PATCH 6.17 056/563] s390/bpf: Write back tail call counter for BPF_TRAMP_F_CALL_ORIG Greg Kroah-Hartman
2025-10-13 14:38 ` [PATCH 6.17 057/563] cpufreq: scmi: Account for malformed DT in scmi_dev_used_by_cpus() Greg Kroah-Hartman
2025-10-13 14:38 ` [PATCH 6.17 058/563] arm64: dts: renesas: sparrow-hawk: Invert microSD voltage selector on EVTB1 Greg Kroah-Hartman
2025-10-13 14:38 ` [PATCH 6.17 059/563] arm64: dts: renesas: sparrow-hawk: Set VDDQ18_25_AVB voltage " Greg Kroah-Hartman
2025-10-13 14:38 ` [PATCH 6.17 060/563] libbpf: Export bpf_object__prepare symbol Greg Kroah-Hartman
2025-10-13 14:38 ` [PATCH 6.17 061/563] firmware: arm_scmi: Mark VirtIO ready before registering scmi_virtio_driver Greg Kroah-Hartman
2025-10-13 14:38 ` [PATCH 6.17 062/563] arm64: dts: imx93-kontron: Fix GPIO for panel regulator Greg Kroah-Hartman
2025-10-13 14:38 ` [PATCH 6.17 063/563] arm64: dts: imx93-kontron: Fix USB port assignment Greg Kroah-Hartman
2025-10-13 14:38 ` [PATCH 6.17 064/563] arm64: dts: imx95: Correct the lpuart7 and lpuart8 srcid Greg Kroah-Hartman
2025-10-13 14:38 ` [PATCH 6.17 065/563] bpf: Remove preempt_disable in bpf_try_get_buffers Greg Kroah-Hartman
2025-10-13 14:38 ` [PATCH 6.17 066/563] ACPI: processor: idle: Fix memory leak when register cpuidle device failed Greg Kroah-Hartman
2025-10-13 14:38 ` [PATCH 6.17 067/563] genirq: Add irq_chip_(startup/shutdown)_parent() Greg Kroah-Hartman
2025-10-13 14:38 ` [PATCH 6.17 068/563] PCI/MSI: Add startup/shutdown for per device domains Greg Kroah-Hartman
2025-10-13 21:16   ` Bjorn Helgaas
2025-10-16  1:07     ` Stefan Lippers-Hollmann
2025-10-16  2:07       ` Inochi Amaoto
2025-10-17  2:33         ` Stefan Lippers-Hollmann
2025-10-17  6:56     ` Greg Kroah-Hartman
2025-10-19  5:29       ` Eric Naim
2025-10-20  8:28         ` Greg Kroah-Hartman
2025-10-13 14:38 ` [PATCH 6.17 069/563] irqchip/sg2042-msi: Fix broken affinity setting Greg Kroah-Hartman
2025-10-13 14:38 ` [PATCH 6.17 070/563] scripts/misc-check: update export checks for EXPORT_SYMBOL_FOR_MODULES() Greg Kroah-Hartman
2025-10-13 14:38 ` [PATCH 6.17 071/563] soc: qcom: rpmh-rsc: Unconditionally clear _TRIGGER bit for TCS Greg Kroah-Hartman
2025-10-13 14:38 ` [PATCH 6.17 072/563] pinctrl: meson-gxl: add missing i2c_d pinmux Greg Kroah-Hartman
2025-10-13 14:38 ` [PATCH 6.17 073/563] blk-mq: check kobject state_in_sysfs before deleting in blk_mq_unregister_hctx Greg Kroah-Hartman
2025-10-13 14:38 ` [PATCH 6.17 074/563] selftests/futex: Remove the -g parameter from futex_priv_hash Greg Kroah-Hartman
2025-10-13 14:38 ` [PATCH 6.17 075/563] ARM: at91: pm: fix MCKx restore routine Greg Kroah-Hartman
2025-10-13 14:38 ` [PATCH 6.17 076/563] arm64: dts: apple: t8103-j457: Fix PCIe ethernet iommu-map Greg Kroah-Hartman
2025-10-13 14:38 ` [PATCH 6.17 077/563] regulator: scmi: Use int type to store negative error codes Greg Kroah-Hartman
2025-10-13 14:38 ` [PATCH 6.17 078/563] selftests/futex: Fix some futex_numa_mpol subtests Greg Kroah-Hartman
2025-10-13 14:39 ` [PATCH 6.17 079/563] tools/nolibc: avoid error in dup2() if old fd equals new fd Greg Kroah-Hartman
2025-10-13 14:39 ` [PATCH 6.17 080/563] selftests/nolibc: fix EXPECT_NZ macro Greg Kroah-Hartman
2025-10-13 14:39 ` [PATCH 6.17 081/563] leds: leds-lp55xx: Use correct address for memory programming Greg Kroah-Hartman
2025-10-13 14:39 ` [PATCH 6.17 082/563] PCI/MSI: Check MSI_FLAG_PCI_MSI_MASK_PARENT in cond_[startup|shutdown]_parent() Greg Kroah-Hartman
2025-10-13 14:39 ` [PATCH 6.17 083/563] block: use int to store blk_stack_limits() return value Greg Kroah-Hartman
2025-10-13 14:39 ` [PATCH 6.17 084/563] ARM: dts: stm32: stm32mp151c-plyaqm: Use correct dai-format property Greg Kroah-Hartman
2025-10-13 14:39 ` [PATCH 6.17 085/563] dt-bindings: vendor-prefixes: Add undocumented vendor prefixes Greg Kroah-Hartman
2025-10-13 14:39 ` [PATCH 6.17 086/563] genirq/test: Fix depth tests on architectures with NOREQUEST by default Greg Kroah-Hartman
2025-10-13 14:39 ` [PATCH 6.17 087/563] genirq/test: Select IRQ_DOMAIN Greg Kroah-Hartman
2025-10-13 14:39 ` [PATCH 6.17 088/563] genirq/test: Depend on SPARSE_IRQ Greg Kroah-Hartman
2025-10-13 14:39 ` [PATCH 6.17 089/563] genirq/test: Drop CONFIG_GENERIC_IRQ_MIGRATION assumptions Greg Kroah-Hartman
2025-10-13 14:39 ` [PATCH 6.17 090/563] genirq/test: Ensure CPU 1 is online for hotplug test Greg Kroah-Hartman
2025-10-13 14:39 ` [PATCH 6.17 091/563] selftests/bpf: Fix count write in testapp_xdp_metadata_copy() Greg Kroah-Hartman
2025-10-13 14:39 ` [PATCH 6.17 092/563] vdso/datastore: Gate time data behind CONFIG_GENERIC_GETTIMEOFDAY Greg Kroah-Hartman
2025-10-13 14:39 ` [PATCH 6.17 093/563] PM: sleep: core: Clear power.must_resume in noirq suspend error path Greg Kroah-Hartman
2025-10-13 14:39 ` [PATCH 6.17 094/563] blk-mq: fix elevator depth_updated method Greg Kroah-Hartman
2025-10-13 14:39 ` [PATCH 6.17 095/563] vdso: Add struct __kernel_old_timeval forward declaration to gettime.h Greg Kroah-Hartman
2025-10-13 14:39 ` [PATCH 6.17 096/563] ARM: dts: ti: omap: am335x-baltos: Fix ti,en-ck32k-xtal property in DTS to use correct boolean syntax Greg Kroah-Hartman
2025-10-13 14:39 ` [PATCH 6.17 097/563] ARM: dts: ti: omap: omap3-devkit8000-lcd: Fix ti,keep-vref-on property to use correct boolean syntax in DTS Greg Kroah-Hartman
2025-10-13 14:39 ` [PATCH 6.17 098/563] ARM: dts: omap: am335x-cm-t335: Remove unused mcasp num-serializer property Greg Kroah-Hartman
2025-10-13 14:39 ` [PATCH 6.17 099/563] PM / devfreq: mtk-cci: Fix potential error pointer dereference in probe() Greg Kroah-Hartman
2025-10-13 14:39 ` [PATCH 6.17 100/563] power: supply: cw2015: Fix a alignment coding style issue Greg Kroah-Hartman
2025-10-13 14:39 ` [PATCH 6.17 101/563] hwmon: (asus-ec-sensors) Narrow lock for X870E-CREATOR WIFI Greg Kroah-Hartman
2025-10-13 14:39 ` [PATCH 6.17 102/563] pinctrl: renesas: Use int type to store negative error codes Greg Kroah-Hartman
2025-10-13 14:39 ` [PATCH 6.17 103/563] pinctrl: eswin: Fix regulator error check and Kconfig dependency Greg Kroah-Hartman
2025-10-13 14:39 ` [PATCH 6.17 104/563] null_blk: Fix the description of the cache_size module argument Greg Kroah-Hartman
2025-10-13 14:39 ` [PATCH 6.17 105/563] blk-throttle: fix access race during throttle policy activation Greg Kroah-Hartman
2025-10-13 14:39 ` [PATCH 6.17 106/563] selftests: vDSO: Fix -Wunitialized in powerpc VDSO_CALL() wrapper Greg Kroah-Hartman
2025-10-13 14:39 ` [PATCH 6.17 107/563] selftests: vDSO: vdso_test_abi: Correctly skip whole test with missing vDSO Greg Kroah-Hartman
2025-10-13 14:39 ` [PATCH 6.17 108/563] irqchip/gic-v5: Fix loop in gicv5_its_create_itt_two_level() cleanup path Greg Kroah-Hartman
2025-10-13 14:39 ` [PATCH 6.17 109/563] irqchip/gic-v5: Fix error handling in gicv5_its_irq_domain_alloc() Greg Kroah-Hartman
2025-10-13 14:39 ` [PATCH 6.17 110/563] tick: Do not set device to detached state in tick_shutdown() Greg Kroah-Hartman
2025-10-13 14:39 ` [PATCH 6.17 111/563] arm64: dts: mediatek: mt8195: Remove suspend-breaking reset from pcie0 Greg Kroah-Hartman
2025-10-13 14:39 ` [PATCH 6.17 112/563] arm64: dts: mediatek: mt8183: Fix out of range pull values Greg Kroah-Hartman
2025-10-13 14:39 ` [PATCH 6.17 113/563] nbd: restrict sockets to TCP and UDP Greg Kroah-Hartman
2025-10-13 14:39 ` [PATCH 6.17 114/563] PM / devfreq: rockchip-dfi: double count on RK3588 Greg Kroah-Hartman
2025-10-13 14:39 ` [PATCH 6.17 115/563] firmware: firmware: meson-sm: fix compile-test default Greg Kroah-Hartman
2025-10-13 14:39 ` [PATCH 6.17 116/563] dts: arm: amlogic: fix pwm node for c3 Greg Kroah-Hartman
2025-10-13 14:39 ` [PATCH 6.17 117/563] soc: mediatek: mtk-svs: fix device leaks on mt8183 probe failure Greg Kroah-Hartman
2025-10-13 14:39 ` [PATCH 6.17 118/563] soc: mediatek: mtk-svs: fix device leaks on mt8192 " Greg Kroah-Hartman
2025-10-13 14:39 ` [PATCH 6.17 119/563] cpuidle: qcom-spm: fix device and OF node leaks at probe Greg Kroah-Hartman
2025-10-13 14:39 ` [PATCH 6.17 120/563] block: cleanup bio_issue Greg Kroah-Hartman
2025-10-13 14:39 ` [PATCH 6.17 121/563] block: initialize bio issue time in blk_mq_submit_bio() Greg Kroah-Hartman
2025-10-13 14:39 ` [PATCH 6.17 122/563] block: factor out a helper bio_submit_split_bioset() Greg Kroah-Hartman
2025-10-13 14:39 ` [PATCH 6.17 123/563] block: skip unnecessary checks for split bio Greg Kroah-Hartman
2025-10-13 14:39 ` [PATCH 6.17 124/563] block: fix ordering of recursive split IO Greg Kroah-Hartman
2025-10-13 14:39 ` [PATCH 6.17 125/563] blk-mq: remove useless checkings in blk_mq_update_nr_requests() Greg Kroah-Hartman
2025-10-13 14:39 ` [PATCH 6.17 126/563] blk-mq: check invalid nr_requests in queue_requests_store() Greg Kroah-Hartman
2025-10-13 14:39 ` [PATCH 6.17 127/563] blk-mq: convert to serialize updating nr_requests with update_nr_hwq_lock Greg Kroah-Hartman
2025-10-13 14:39 ` [PATCH 6.17 128/563] blk-mq: cleanup shared tags case in blk_mq_update_nr_requests() Greg Kroah-Hartman
2025-10-13 14:39 ` [PATCH 6.17 129/563] blk-mq: split bitmap grow and resize " Greg Kroah-Hartman
2025-10-13 14:39 ` [PATCH 6.17 130/563] blk-mq-sched: add new parameter nr_requests in blk_mq_alloc_sched_tags() Greg Kroah-Hartman
2025-10-13 14:39 ` [PATCH 6.17 131/563] blk-mq: fix potential deadlock while nr_requests grown Greg Kroah-Hartman
2025-10-13 14:39 ` [PATCH 6.17 132/563] arm64: dts: allwinner: a527: cubie-a5e: Add ethernet PHY reset setting Greg Kroah-Hartman
2025-10-13 14:39 ` [PATCH 6.17 133/563] arm64: dts: allwinner: t527: avaota-a1: " Greg Kroah-Hartman
2025-10-13 14:39 ` [PATCH 6.17 134/563] arm64: dts: rockchip: Add RTC on rk3576-evb1-v10 Greg Kroah-Hartman
2025-10-13 14:39 ` [PATCH 6.17 135/563] arm64: dts: rockchip: Add WiFi " Greg Kroah-Hartman
2025-10-13 14:39 ` [PATCH 6.17 136/563] arm64: dts: rockchip: Fix network on rk3576 evb1 board Greg Kroah-Hartman
2025-10-13 14:39 ` [PATCH 6.17 137/563] arm64: dts: ti: k3-j742s2-mcu-wakeup: Override firmware-name for MCU R5F cores Greg Kroah-Hartman
2025-10-13 14:39 ` [PATCH 6.17 138/563] arm64: dts: ti: k3: Rename rproc reserved-mem nodes to memory@addr Greg Kroah-Hartman
2025-10-13 14:40 ` [PATCH 6.17 139/563] Revert "arm64: dts: ti: k3-j721e-sk: Fix reversed C6x carveout locations" Greg Kroah-Hartman
2025-10-13 14:40 ` [PATCH 6.17 140/563] Revert "arm64: dts: ti: k3-j721e-beagleboneai64: " Greg Kroah-Hartman
2025-10-13 14:40 ` [PATCH 6.17 141/563] arm64: dts: mediatek: mt8188: Change efuse fallback compatible to mt8186 Greg Kroah-Hartman
2025-10-13 14:40 ` [PATCH 6.17 142/563] arm64: dts: mediatek: mt8186-tentacruel: Fix touchscreen model Greg Kroah-Hartman
2025-10-13 14:40 ` [PATCH 6.17 143/563] arm64: dts: ti: k3-pinctrl: Fix the bug in existing macros Greg Kroah-Hartman
2025-10-13 14:40 ` [PATCH 6.17 144/563] arm64: dts: renesas: r9a09g047e57-smarc: Fix gpio keys pin control node Greg Kroah-Hartman
2025-10-13 14:40 ` [PATCH 6.17 145/563] arm64: dts: mediatek: mt6331: Fix pmic, regulators, rtc, keys node names Greg Kroah-Hartman
2025-10-13 14:40 ` [PATCH 6.17 146/563] mmc: core: Fix variable shadowing in mmc_route_rpmb_frames() Greg Kroah-Hartman
2025-10-13 14:40 ` [PATCH 6.17 147/563] arm64: dts: mediatek: mt6795-xperia-m5: Fix mmc0 latch-ck value Greg Kroah-Hartman
2025-10-13 14:40 ` [PATCH 6.17 148/563] arm64: dts: mediatek: mt7986a: Fix PCI-Express T-PHY node address Greg Kroah-Hartman
2025-10-13 14:40 ` [PATCH 6.17 149/563] arm64: dts: mediatek: mt8395-kontron-i1200: Fix MT6360 regulator nodes Greg Kroah-Hartman
2025-10-13 14:40 ` [PATCH 6.17 150/563] arm64: dts: mediatek: mt8516-pumpkin: Fix machine compatible Greg Kroah-Hartman
2025-10-13 14:40 ` [PATCH 6.17 151/563] arm64: dts: allwinner: a527: cubie-a5e: Add LEDs Greg Kroah-Hartman
2025-10-13 14:40 ` [PATCH 6.17 152/563] arm64: dts: allwinner: a527: cubie-a5e: Drop external 32.768 KHz crystal Greg Kroah-Hartman
2025-10-13 14:40 ` [PATCH 6.17 153/563] arm64: dts: allwinner: t527: avaota-a1: hook up external 32k crystal Greg Kroah-Hartman
2025-10-13 14:40 ` [PATCH 6.17 154/563] arm64: dts: allwinner: t527: orangepi-4a: " Greg Kroah-Hartman
2025-10-13 14:40 ` [PATCH 6.17 155/563] pwm: tiehrpwm: Dont drop runtime PM reference in .free() Greg Kroah-Hartman
2025-10-13 14:40 ` [PATCH 6.17 156/563] pwm: tiehrpwm: Make code comment in .free() more useful Greg Kroah-Hartman
2025-10-13 14:40 ` [PATCH 6.17 157/563] pwm: tiehrpwm: Fix various off-by-one errors in duty-cycle calculation Greg Kroah-Hartman
2025-10-13 14:40 ` [PATCH 6.17 158/563] pwm: tiehrpwm: Fix corner case in clock divisor calculation Greg Kroah-Hartman
2025-10-13 14:40 ` [PATCH 6.17 159/563] ACPICA: Apply ACPI_NONSTRING Greg Kroah-Hartman
2025-10-13 14:40 ` [PATCH 6.17 160/563] ACPICA: Fix largest possible resource descriptor index Greg Kroah-Hartman
2025-10-13 14:40 ` [PATCH 6.17 161/563] riscv, bpf: Sign extend struct ops return values properly Greg Kroah-Hartman
2025-10-13 14:40 ` [PATCH 6.17 162/563] nvme-auth: update bi_directional flag Greg Kroah-Hartman
2025-10-13 14:40 ` [PATCH 6.17 163/563] nvmet-fc: move lsop put work to nvmet_fc_ls_req_op Greg Kroah-Hartman
2025-10-13 14:40 ` [PATCH 6.17 164/563] nvmet-fcloop: call done callback even when remote port is gone Greg Kroah-Hartman
2025-10-13 14:40 ` [PATCH 6.17 165/563] nvme-tcp: send only permitted commands for secure concat Greg Kroah-Hartman
2025-10-13 14:40 ` [PATCH 6.17 166/563] i3c: master: svc: Use manual response for IBI events Greg Kroah-Hartman
2025-10-13 14:40 ` [PATCH 6.17 167/563] i3c: master: svc: Recycle unused IBI slot Greg Kroah-Hartman
2025-10-13 14:40 ` [PATCH 6.17 168/563] block: update validation of atomic writes boundary for stacked devices Greg Kroah-Hartman
2025-10-13 14:40 ` [PATCH 6.17 169/563] block: fix stacking of atomic writes when atomics are not supported Greg Kroah-Hartman
2025-10-13 14:40 ` [PATCH 6.17 170/563] selftests: watchdog: skip ping loop if WDIOF_KEEPALIVEPING " Greg Kroah-Hartman
2025-10-13 14:40 ` [PATCH 6.17 171/563] selftests/kselftest_harness: Add harness-selftest.expected to TEST_FILES Greg Kroah-Hartman
2025-10-13 14:40 ` [PATCH 6.17 172/563] blk-throttle: fix throtl_data leak during disk release Greg Kroah-Hartman
2025-10-13 14:40 ` [PATCH 6.17 173/563] bpf: Explicitly check accesses to bpf_sock_addr Greg Kroah-Hartman
2025-10-13 14:40 ` [PATCH 6.17 174/563] mmc: select REGMAP_MMIO with MMC_LOONGSON2 Greg Kroah-Hartman
2025-10-13 14:40 ` [PATCH 6.17 175/563] selftests/futex: Fix futex_wait() for 32bit ARM Greg Kroah-Hartman
2025-10-13 14:40 ` [PATCH 6.17 176/563] selftest/futex: Make the error check more precise for futex_numa_mpol Greg Kroah-Hartman
2025-10-13 14:40 ` [PATCH 6.17 177/563] selftest/futex: Compile also with libnuma < 2.0.16 Greg Kroah-Hartman
2025-10-13 14:40 ` [PATCH 6.17 178/563] bpf: dont report verifier bug for missing bpf_scc_visit on speculative path Greg Kroah-Hartman
2025-10-13 14:40 ` [PATCH 6.17 179/563] bpf, arm64: Call bpf_jit_binary_pack_finalize() in bpf_jit_free() Greg Kroah-Hartman
2025-10-13 14:40 ` [PATCH 6.17 180/563] arm64: dts: apple: t600x: Add missing WiFi properties Greg Kroah-Hartman
2025-10-13 14:40 ` [PATCH 6.17 181/563] arm64: dts: apple: t600x: Add bluetooth device nodes Greg Kroah-Hartman
2025-10-13 14:40 ` [PATCH 6.17 182/563] arm64: dts: apple: Add ethernet0 alias for J375 template Greg Kroah-Hartman
2025-10-13 14:40 ` [PATCH 6.17 183/563] selftests: always install UAPI headers to the correct directory Greg Kroah-Hartman
2025-10-13 14:40 ` [PATCH 6.17 184/563] smp: Fix up and expand the smp_call_function_many() kerneldoc Greg Kroah-Hartman
2025-10-13 14:40 ` [PATCH 6.17 185/563] mfd: max77705: max77705_charger: move active discharge setting to mfd parent Greg Kroah-Hartman
2025-10-13 14:40 ` [PATCH 6.17 186/563] power: supply: max77705_charger: refactoring: rename charger to chg Greg Kroah-Hartman
2025-10-13 14:40 ` [PATCH 6.17 187/563] power: supply: max77705_charger: use regfields for config registers Greg Kroah-Hartman
2025-10-13 14:40 ` [PATCH 6.17 188/563] power: supply: max77705_charger: rework interrupts Greg Kroah-Hartman
2025-10-13 14:40 ` [PATCH 6.17 189/563] tools/nolibc: make time_t robust if __kernel_old_time_t is missing in host headers Greg Kroah-Hartman
2025-10-13 14:40 ` [PATCH 6.17 190/563] spi: fix return code when spi device has too many chipselects Greg Kroah-Hartman
2025-10-13 14:40 ` [PATCH 6.17 191/563] clocksource/drivers/timer-tegra186: Avoid 64-bit divide operation Greg Kroah-Hartman
2025-10-13 14:40 ` [PATCH 6.17 192/563] clocksource/drivers/tegra186: Avoid 64-bit division Greg Kroah-Hartman
2025-10-13 14:40 ` [PATCH 6.17 193/563] bpf: Mark kfuncs as __noclone Greg Kroah-Hartman
2025-10-13 14:40 ` [PATCH 6.17 194/563] once: fix race by moving DO_ONCE to separate section Greg Kroah-Hartman
2025-10-13 14:40 ` [PATCH 6.17 195/563] hwmon: (mlxreg-fan) Separate methods of fan setting coming from different subsystems Greg Kroah-Hartman
2025-10-13 14:40 ` [PATCH 6.17 196/563] tools/nolibc: add stdbool.h to nolibc includes Greg Kroah-Hartman
2025-10-13 14:40 ` [PATCH 6.17 197/563] thermal/drivers/qcom: Make LMH select QCOM_SCM Greg Kroah-Hartman
2025-10-13 14:40 ` [PATCH 6.17 198/563] thermal/drivers/qcom/lmh: Add missing IRQ includes Greg Kroah-Hartman
2025-10-13 14:41 ` [PATCH 6.17 199/563] i2c: mediatek: fix potential incorrect use of I2C_MASTER_WRRD Greg Kroah-Hartman
2025-10-13 14:41 ` [PATCH 6.17 200/563] i2c: spacemit: ensure bus release check runs when wait_bus_idle() fails Greg Kroah-Hartman
2025-10-13 14:41 ` [PATCH 6.17 201/563] i2c: spacemit: remove stop function to avoid bus error Greg Kroah-Hartman
2025-10-13 14:41 ` [PATCH 6.17 202/563] i2c: spacemit: disable SDA glitch fix to avoid restart delay Greg Kroah-Hartman
2025-10-13 14:41 ` [PATCH 6.17 203/563] i2c: spacemit: check SDA instead of SCL after bus reset Greg Kroah-Hartman
2025-10-13 14:41 ` [PATCH 6.17 204/563] i2c: spacemit: ensure SDA is released " Greg Kroah-Hartman
2025-10-13 14:41 ` [PATCH 6.17 205/563] i2c: designware: Fix clock issue when PM is disabled Greg Kroah-Hartman
2025-10-13 14:41 ` [PATCH 6.17 206/563] i2c: designware: Add disabling clocks when probe fails Greg Kroah-Hartman
2025-10-13 14:41 ` [PATCH 6.17 207/563] libbpf: Fix error when st-prefix_ops and ops from differ btf Greg Kroah-Hartman
2025-10-13 14:41 ` [PATCH 6.17 208/563] bpf: Enforce expected_attach_type for tailcall compatibility Greg Kroah-Hartman
2025-10-13 14:41 ` [PATCH 6.17 209/563] i3c: fix big-endian FIFO transfers Greg Kroah-Hartman
2025-10-13 15:36   ` Guntupalli, Manikanta
2025-10-13 17:33     ` Greg Kroah-Hartman
2025-10-13 14:41 ` [PATCH 6.17 210/563] mfd: max77705: Setup the core driver as an interrupt controller Greg Kroah-Hartman
2025-10-13 14:41 ` [PATCH 6.17 211/563] drm/sched: Fix a race in DRM_GPU_SCHED_STAT_NO_HANG test Greg Kroah-Hartman
2025-10-13 14:41 ` [PATCH 6.17 212/563] drm/panel-edp: Add disable to 100ms for MNB601LS1-4 Greg Kroah-Hartman
2025-10-13 14:41 ` [PATCH 6.17 213/563] drm/display: bridge-connector: correct CEC bridge pointers in drm_bridge_connector_init Greg Kroah-Hartman
2025-10-13 14:41 ` [PATCH 6.17 214/563] drm/panel-edp: Add 50ms disable delay for four panels Greg Kroah-Hartman
2025-10-13 14:41 ` [PATCH 6.17 215/563] drm/vmwgfx: fix missing assignment to ts Greg Kroah-Hartman
2025-10-13 14:41 ` [PATCH 6.17 216/563] drm/amd/display: Reduce Stack Usage by moving audio_output into stream_res v4 Greg Kroah-Hartman
2025-10-13 14:41 ` [PATCH 6.17 217/563] drm/panel: novatek-nt35560: Fix invalid return value Greg Kroah-Hartman
2025-10-13 14:41 ` [PATCH 6.17 218/563] drm/amdgpu: fix link error for !PM_SLEEP Greg Kroah-Hartman
2025-10-13 14:41 ` [PATCH 6.17 219/563] drm/amdgpu: Fix jpeg v4.0.3 poison irq call trace on sriov guest Greg Kroah-Hartman
2025-10-13 14:41 ` [PATCH 6.17 220/563] drm/amdgpu: Fix vcn " Greg Kroah-Hartman
2025-10-13 14:41 ` [PATCH 6.17 221/563] PCI: endpoint: pci-ep-msi: Fix NULL vs IS_ERR() check in pci_epf_write_msi_msg() Greg Kroah-Hartman
2025-10-13 14:41 ` [PATCH 6.17 222/563] PCI: xgene-msi: Return negative -EINVAL in xgene_msi_handler_setup() Greg Kroah-Hartman
2025-10-13 14:41 ` [PATCH 6.17 223/563] drm/radeon/r600_cs: clean up of dead code in r600_cs Greg Kroah-Hartman
2025-10-13 14:41 ` [PATCH 6.17 224/563] f2fs: fix condition in __allow_reserved_blocks() Greg Kroah-Hartman
2025-10-13 14:41 ` [PATCH 6.17 225/563] f2fs: fix to avoid overflow while left shift operation Greg Kroah-Hartman
2025-10-13 14:41 ` [PATCH 6.17 226/563] f2fs: fix to zero data after EOF for compressed file correctly Greg Kroah-Hartman
2025-10-13 14:41 ` [PATCH 6.17 227/563] drm/bridge: it6505: select REGMAP_I2C Greg Kroah-Hartman
2025-10-13 14:41 ` [PATCH 6.17 228/563] wifi: rtw88: Lock rtwdev->mutex before setting the LED Greg Kroah-Hartman
2025-10-13 14:41 ` [PATCH 6.17 229/563] HID: steelseries: refactor probe() and remove() Greg Kroah-Hartman
2025-10-13 14:41 ` [PATCH 6.17 230/563] drm/amdgpu: fix incorrect vm flags to map bo Greg Kroah-Hartman
2025-10-14  6:04   ` Jiri Slaby
2025-10-15  8:50     ` Greg Kroah-Hartman
2025-10-13 14:41 ` [PATCH 6.17 231/563] media: zoran: Remove zoran_fh structure Greg Kroah-Hartman
2025-10-13 14:41 ` [PATCH 6.17 232/563] phy: rockchip: naneng-combphy: Enable U3 OTG port for RK3568 Greg Kroah-Hartman
2025-10-13 14:41 ` [PATCH 6.17 233/563] drm/bridge: cdns-dsi: Fix the _atomic_check() Greg Kroah-Hartman
2025-10-13 14:41 ` [PATCH 6.17 234/563] usb: host: max3421-hcd: Fix error pointer dereference in probe cleanup Greg Kroah-Hartman
2025-10-13 14:41 ` [PATCH 6.17 235/563] usb: misc: qcom_eud: Access EUD_MODE_MANAGER2 through secure calls Greg Kroah-Hartman
2025-10-13 14:41 ` [PATCH 6.17 236/563] PCI/pwrctrl: Fix double cleanup on devm_add_action_or_reset() failure Greg Kroah-Hartman
2025-10-13 14:41 ` [PATCH 6.17 237/563] misc: pci_endpoint_test: Fix array underflow in pci_endpoint_test_ioctl() Greg Kroah-Hartman
2025-10-13 14:41 ` [PATCH 6.17 238/563] serial: max310x: Add error checking in probe() Greg Kroah-Hartman
2025-10-13 14:41 ` [PATCH 6.17 239/563] drm/amd/display: Remove redundant semicolons Greg Kroah-Hartman
2025-10-13 14:41 ` [PATCH 6.17 240/563] drm/amd/display: Add NULL pointer checks in dc_stream cursor attribute functions Greg Kroah-Hartman
2025-10-13 14:41 ` [PATCH 6.17 241/563] crypto: keembay - Add missing check after sg_nents_for_len() Greg Kroah-Hartman
2025-10-13 14:41 ` [PATCH 6.17 242/563] hwrng: nomadik - add ARM_AMBA dependency Greg Kroah-Hartman
2025-10-13 14:41 ` [PATCH 6.17 243/563] docs: iio: ad3552r: Fix malformed code-block directive Greg Kroah-Hartman
2025-10-13 14:41 ` [PATCH 6.17 244/563] fwctl/mlx5: Fix memory alloc/free in mlx5ctl_fw_rpc() Greg Kroah-Hartman
2025-10-13 14:41 ` [PATCH 6.17 245/563] scsi: pm80xx: Restore support for expanders Greg Kroah-Hartman
2025-10-13 14:41 ` [PATCH 6.17 246/563] scsi: pm80xx: Fix array-index-out-of-of-bounds on rmmod Greg Kroah-Hartman
2025-10-13 14:41 ` [PATCH 6.17 247/563] scsi: libsas: Add dev_parent_is_expander() helper Greg Kroah-Hartman
2025-10-13 14:41 ` [PATCH 6.17 248/563] scsi: pm80xx: Use " Greg Kroah-Hartman
2025-10-13 14:41 ` [PATCH 6.17 249/563] scsi: pm80xx: Add helper function to get the local phy id Greg Kroah-Hartman
2025-10-13 14:41 ` [PATCH 6.17 250/563] scsi: pm80xx: Fix pm8001_abort_task() for chip_8006 when using an expander Greg Kroah-Hartman
2025-10-13 14:41 ` [PATCH 6.17 251/563] mptcp: Fix up subflows memcg when CONFIG_SOCK_CGROUP_DATA=n Greg Kroah-Hartman
2025-10-13 14:41 ` [PATCH 6.17 252/563] scsi: myrs: Fix dma_alloc_coherent() error check Greg Kroah-Hartman
2025-10-13 14:41 ` [PATCH 6.17 253/563] f2fs: fix to clear unusable_cap for checkpoint=enable Greg Kroah-Hartman
2025-10-13 14:41 ` [PATCH 6.17 254/563] f2fs: fix to avoid NULL pointer dereference in f2fs_check_quota_consistency() Greg Kroah-Hartman
2025-10-13 14:41 ` [PATCH 6.17 255/563] f2fs: fix to allow removing qf_name Greg Kroah-Hartman
2025-10-13 14:41 ` [PATCH 6.17 256/563] drm/dp: drm_edp_backlight_set_level: do not always send 3-byte commands Greg Kroah-Hartman
2025-10-13 14:41 ` [PATCH 6.17 257/563] crypto: octeontx2 - Call strscpy() with correct size argument Greg Kroah-Hartman
2025-10-13 14:41 ` [PATCH 6.17 258/563] drm: re-allow no-op changes on non-primary planes in async flips Greg Kroah-Hartman
2025-10-13 14:42 ` [PATCH 6.17 259/563] media: rj54n1cb0c: Fix memleak in rj54n1_probe() Greg Kroah-Hartman
2025-10-13 14:42 ` [PATCH 6.17 260/563] media: staging/ipu7: convert to use pci_alloc_irq_vectors() API Greg Kroah-Hartman
2025-10-13 14:42 ` [PATCH 6.17 261/563] media: staging/ipu7: Dont set name for IPU7 PCI device Greg Kroah-Hartman
2025-10-13 14:42 ` [PATCH 6.17 262/563] media: staging/ipu7: cleanup the MMU correctly in IPU7 driver release Greg Kroah-Hartman
2025-10-13 14:42 ` [PATCH 6.17 263/563] media: i2c: vd55g1: Fix duster register address Greg Kroah-Hartman
2025-10-13 14:42 ` [PATCH 6.17 264/563] drm/panel: Allow powering on panel follower after panel is enabled Greg Kroah-Hartman
2025-10-13 14:42 ` [PATCH 6.17 265/563] HID: i2c-hid: Make elan touch controllers power on " Greg Kroah-Hartman
2025-10-13 14:42 ` [PATCH 6.17 266/563] RDMA/mlx5: Better estimate max_qp_wr to reflect WQE count Greg Kroah-Hartman
2025-10-13 14:42 ` [PATCH 6.17 267/563] RDMA/mlx5: Fix vport loopback forcing for MPV device Greg Kroah-Hartman
2025-10-13 14:42 ` [PATCH 6.17 268/563] wifi: rtw88: Use led->brightness_set_blocking for PCI too Greg Kroah-Hartman
2025-10-13 14:42 ` [PATCH 6.17 269/563] net: phy: introduce phy_id_compare_vendor() PHY ID helper Greg Kroah-Hartman
2025-10-13 14:42 ` [PATCH 6.17 270/563] net: phy: as21xxx: better handle PHY HW reset on soft-reboot Greg Kroah-Hartman
2025-10-13 14:42 ` [PATCH 6.17 271/563] PCI: rcar-host: Pass proper IRQ domain to generic_handle_domain_irq() Greg Kroah-Hartman
2025-10-13 14:42 ` [PATCH 6.17 272/563] fuse: remove unneeded offset assignment when filling write pages Greg Kroah-Hartman
2025-10-13 14:42 ` [PATCH 6.17 273/563] PCI: qcom: Restrict port parsing only to PCIe bridge child nodes Greg Kroah-Hartman
2025-10-13 14:42 ` [PATCH 6.17 274/563] cdx: dont select CONFIG_GENERIC_MSI_IRQ Greg Kroah-Hartman
2025-10-13 14:42 ` [PATCH 6.17 275/563] PCI/ACPI: Fix pci_acpi_preserve_config() memory leak Greg Kroah-Hartman
2025-10-13 14:42 ` [PATCH 6.17 276/563] HID: i2c-hid: Fix test in i2c_hid_core_register_panel_follower() Greg Kroah-Hartman
2025-10-13 14:42 ` [PATCH 6.17 277/563] ALSA: lx_core: use int type to store negative error codes Greg Kroah-Hartman
2025-10-13 14:42 ` [PATCH 6.17 278/563] media: st-delta: avoid excessive stack usage Greg Kroah-Hartman
2025-10-13 14:42 ` [PATCH 6.17 279/563] drm/amdgpu/vcn: Add regdump helper functions Greg Kroah-Hartman
2025-10-13 14:42 ` [PATCH 6.17 280/563] drm/amdgpu/vcn: Hold pg_lock before vcn power off Greg Kroah-Hartman
2025-10-13 14:42 ` [PATCH 6.17 281/563] drm/amdgpu: Check vcn state before profile switch Greg Kroah-Hartman
2025-10-13 14:42 ` [PATCH 6.17 282/563] accel/amdxdna: Use int instead of u32 to store error codes Greg Kroah-Hartman
2025-10-13 14:42 ` [PATCH 6.17 283/563] efi: Explain OVMF acronym in OVMF_DEBUG_LOG help text Greg Kroah-Hartman
2025-10-13 14:42 ` [PATCH 6.17 284/563] net: dst: introduce dst->dev_rcu Greg Kroah-Hartman
2025-10-13 14:42 ` [PATCH 6.17 285/563] ipv6: mcast: Add ip6_mc_find_idev() helper Greg Kroah-Hartman
2025-10-13 14:42 ` [PATCH 6.17 286/563] ipv6: start using dst_dev_rcu() Greg Kroah-Hartman
2025-10-13 14:42 ` [PATCH 6.17 287/563] ipv6: use RCU in ip6_xmit() Greg Kroah-Hartman
2025-10-13 14:42 ` [PATCH 6.17 288/563] ipv6: use RCU in ip6_output() Greg Kroah-Hartman
2025-10-13 14:42 ` [PATCH 6.17 289/563] net: use dst_dev_rcu() in sk_setup_caps() Greg Kroah-Hartman
2025-10-13 14:42 ` [PATCH 6.17 290/563] tcp_metrics: use dst_dev_net_rcu() Greg Kroah-Hartman
2025-10-13 14:42 ` [PATCH 6.17 291/563] ipv4: start using dst_dev_rcu() Greg Kroah-Hartman
2025-10-13 14:42 ` [PATCH 6.17 292/563] crypto: hisilicon/zip - remove unnecessary validation for high-performance mode configurations Greg Kroah-Hartman
2025-10-13 14:42 ` [PATCH 6.17 293/563] crypto: hisilicon - re-enable address prefetch after device resuming Greg Kroah-Hartman
2025-10-13 14:42 ` [PATCH 6.17 294/563] crypto: hisilicon - check the sva module status while enabling or disabling address prefetch Greg Kroah-Hartman
2025-10-13 14:42 ` [PATCH 6.17 295/563] crypto: hisilicon/qm - check whether the input function and PF are on the same device Greg Kroah-Hartman
2025-10-13 14:42 ` [PATCH 6.17 296/563] crypto: hisilicon/qm - request reserved interrupt for virtual function Greg Kroah-Hartman
2025-10-13 14:42 ` [PATCH 6.17 297/563] inet: ping: check sock_net() in ping_get_port() and ping_lookup() Greg Kroah-Hartman
2025-10-13 14:42 ` [PATCH 6.17 298/563] dmaengine: Fix dma_async_tx_descriptor->tx_submit documentation Greg Kroah-Hartman
2025-10-13 14:42 ` [PATCH 6.17 299/563] coresight: trbe: Add ISB after TRBLIMITR write Greg Kroah-Hartman
2025-10-13 14:42 ` [PATCH 6.17 300/563] coresight: Fix missing include for FIELD_GET Greg Kroah-Hartman
2025-10-13 14:42 ` [PATCH 6.17 301/563] coresight: Only register perf symlink for sinks with alloc_buffer Greg Kroah-Hartman
2025-10-13 14:42 ` [PATCH 6.17 302/563] drm/amdgpu: Power up UVD 3 for FW validation (v2) Greg Kroah-Hartman
2025-10-13 14:42 ` [PATCH 6.17 303/563] drm/amd/pm: Disable ULV even if unsupported (v3) Greg Kroah-Hartman
2025-10-13 14:42 ` [PATCH 6.17 304/563] drm/amd/pm: Fix si_upload_smc_data (v3) Greg Kroah-Hartman
2025-10-13 14:42 ` [PATCH 6.17 305/563] drm/amd/pm: Adjust si_upload_smc_data register programming (v3) Greg Kroah-Hartman
2025-10-13 14:42 ` [PATCH 6.17 306/563] drm/amd/pm: Treat zero vblank time as too short in si_dpm (v3) Greg Kroah-Hartman
2025-10-13 14:42 ` [PATCH 6.17 307/563] drm/amd/pm: Disable MCLK switching with non-DC at 120 Hz+ (v2) Greg Kroah-Hartman
2025-10-13 14:42 ` [PATCH 6.17 308/563] drm/amd/pm: Disable SCLK switching on Oland with high pixel clocks (v3) Greg Kroah-Hartman
2025-10-13 14:42 ` [PATCH 6.17 309/563] wifi: mac80211: Make CONNECTION_MONITOR optional for MLO sta Greg Kroah-Hartman
2025-10-13 14:42 ` [PATCH 6.17 310/563] wifi: mwifiex: send world regulatory domain to driver Greg Kroah-Hartman
2025-10-13 14:42 ` [PATCH 6.17 311/563] wifi: brcmfmac: fix 43752 SDIO FWVID incorrectly labelled as Cypress (CYW) Greg Kroah-Hartman
2025-10-13 14:42 ` [PATCH 6.17 312/563] drm/msm: Do not validate SSPP when it is not ready Greg Kroah-Hartman
2025-10-13 14:42 ` [PATCH 6.17 313/563] PCI: tegra: Fix devm_kcalloc() argument order for port->phys allocation Greg Kroah-Hartman
2025-10-13 14:42 ` [PATCH 6.17 314/563] wifi: mac80211: consider links for validating SCAN_FLAG_AP in scan request during MLO Greg Kroah-Hartman
2025-10-13 14:42 ` [PATCH 6.17 315/563] PCI: qcom: Add equalization settings for 8.0 GT/s and 32.0 GT/s Greg Kroah-Hartman
2025-10-13 14:42 ` [PATCH 6.17 316/563] tcp: fix __tcp_close() to only send RST when required Greg Kroah-Hartman
2025-10-13 14:42 ` [PATCH 6.17 317/563] fanotify: Validate the return value of mnt_ns_from_dentry() before dereferencing Greg Kroah-Hartman
2025-10-13 14:42 ` [PATCH 6.17 318/563] drm/amdkfd: Fix error code sign for EINVAL in svm_ioctl() Greg Kroah-Hartman
2025-10-13 14:43 ` [PATCH 6.17 319/563] usb: phy: twl6030: Fix incorrect type for ret Greg Kroah-Hartman
2025-10-13 14:43 ` [PATCH 6.17 320/563] usb: gadget: configfs: Correctly set use_os_string at bind Greg Kroah-Hartman
2025-10-13 14:43 ` [PATCH 6.17 321/563] tty: n_gsm: Dont block input queue by waiting MSC Greg Kroah-Hartman
2025-10-13 14:43 ` [PATCH 6.17 322/563] misc: genwqe: Fix incorrect cmd field being reported in error Greg Kroah-Hartman
2025-10-13 14:43 ` [PATCH 6.17 323/563] pps: fix warning in pps_register_cdev when register device fail Greg Kroah-Hartman
2025-10-13 14:43 ` [PATCH 6.17 324/563] drm/msm: Fix obj leak in VM_BIND error path Greg Kroah-Hartman
2025-10-13 14:43 ` [PATCH 6.17 325/563] drm/msm: Fix missing VM_BIND offset/range validation Greg Kroah-Hartman
2025-10-13 14:43 ` [PATCH 6.17 326/563] wifi: iwlwifi: Remove redundant header files Greg Kroah-Hartman
2025-10-13 14:43 ` [PATCH 6.17 327/563] drm/msm/mdp4: stop supporting no-IOMMU configuration Greg Kroah-Hartman
2025-10-13 14:43 ` [PATCH 6.17 328/563] drm/msm: " Greg Kroah-Hartman
2025-10-13 14:43 ` [PATCH 6.17 329/563] idpf: fix Rx descriptor ready check barrier in splitq Greg Kroah-Hartman
2025-10-13 14:43 ` [PATCH 6.17 330/563] ASoC: Intel: bytcht_es8316: Fix invalid quirk input mapping Greg Kroah-Hartman
2025-10-13 14:43 ` [PATCH 6.17 331/563] ASoC: Intel: bytcr_rt5640: " Greg Kroah-Hartman
2025-10-13 14:43 ` [PATCH 6.17 332/563] ASoC: Intel: bytcr_rt5651: " Greg Kroah-Hartman
2025-10-13 14:43 ` [PATCH 6.17 333/563] ipv6: snmp: do not use SNMP_MIB_SENTINEL anymore Greg Kroah-Hartman
2025-10-13 14:43 ` [PATCH 6.17 334/563] ipv6: snmp: do not track per idev ICMP6_MIB_RATELIMITHOST Greg Kroah-Hartman
2025-10-13 14:43 ` [PATCH 6.17 335/563] drm/msm: Fix bootup splat with separate_gpu_drm modparam Greg Kroah-Hartman
2025-10-13 14:43 ` [PATCH 6.17 336/563] drm/msm/dpu: fix incorrect type for ret Greg Kroah-Hartman
2025-10-13 14:43 ` [PATCH 6.17 337/563] wifi: mac80211: fix reporting of all valid links in sta_set_sinfo() Greg Kroah-Hartman
2025-10-13 14:43 ` [PATCH 6.17 338/563] fs: ntfs3: Fix integer overflow in run_unpack() Greg Kroah-Hartman
2025-10-13 14:43 ` [PATCH 6.17 339/563] fs/ntfs3: reject index allocation if $BITMAP is empty but blocks exist Greg Kroah-Hartman
2025-10-13 14:43 ` [PATCH 6.17 340/563] iio: consumers: Fix handling of negative channel scale in iio_convert_raw_to_processed() Greg Kroah-Hartman
2025-10-13 14:43 ` [PATCH 6.17 341/563] iio: consumers: Fix offset handling " Greg Kroah-Hartman
2025-10-13 14:43 ` [PATCH 6.17 342/563] mm/slub: Fix cmp_loc_by_count() to return 0 when counts are equal Greg Kroah-Hartman
2025-10-13 14:43 ` [PATCH 6.17 343/563] tools: ynl: fix undefined variable name Greg Kroah-Hartman
2025-10-13 14:43 ` [PATCH 6.17 344/563] RDMA/mlx5: Fix page size bitmap calculation for KSM mode Greg Kroah-Hartman
2025-10-13 14:43 ` [PATCH 6.17 345/563] netfilter: ipset: Remove unused htable_bits in macro ahash_region Greg Kroah-Hartman
2025-10-13 14:43 ` [PATCH 6.17 346/563] ipvs: Use READ_ONCE/WRITE_ONCE for ipvs->enable Greg Kroah-Hartman
2025-10-13 14:43 ` [PATCH 6.17 347/563] HID: steelseries: Fix STEELSERIES_SRWS1 handling in steelseries_remove() Greg Kroah-Hartman
2025-10-13 14:43 ` [PATCH 6.17 348/563] watchdog: intel_oc_wdt: Do not try to write into const memory Greg Kroah-Hartman
2025-10-13 14:43 ` [PATCH 6.17 349/563] watchdog: mpc8xxx_wdt: Reload the watchdog timer when enabling the watchdog Greg Kroah-Hartman
2025-10-13 14:43 ` [PATCH 6.17 350/563] PCI: endpoint: pci-epf-test: Fix doorbell test support Greg Kroah-Hartman
2025-10-13 14:43 ` [PATCH 6.17 351/563] drivers/base/node: handle error properly in register_one_node() Greg Kroah-Hartman
2025-10-13 14:43 ` [PATCH 6.17 352/563] RDMA/cm: Rate limit destroy CM ID timeout error message Greg Kroah-Hartman
2025-10-13 14:43 ` [PATCH 6.17 353/563] wifi: mt76: mt7996: Fix mt7996_mcu_sta_ba wcid configuration Greg Kroah-Hartman
2025-10-13 14:43 ` [PATCH 6.17 354/563] wifi: mt76: mt7996: Fix mt7996_mcu_bss_mld_tlv routine Greg Kroah-Hartman
2025-10-13 14:43 ` [PATCH 6.17 355/563] wifi: mt76: fix potential memory leak in mt76_wmac_probe() Greg Kroah-Hartman
2025-10-13 14:43 ` [PATCH 6.17 356/563] wifi: mt76: mt7996: Use proper link_id in link_sta_rc_update callback Greg Kroah-Hartman
2025-10-13 14:43 ` [PATCH 6.17 357/563] wifi: mt76: mt7996: Check phy before init msta_link in mt7996_mac_sta_add_links() Greg Kroah-Hartman
2025-10-13 14:43 ` [PATCH 6.17 358/563] wifi: mt76: mt7996: Fix tx-queues initialization for second phy on mt7996 Greg Kroah-Hartman
2025-10-13 14:43 ` [PATCH 6.17 359/563] wifi: mt76: mt7996: Fix RX packets configuration for primary WED device Greg Kroah-Hartman
2025-10-13 14:43 ` [PATCH 6.17 360/563] wifi: mt76: mt7996: Convert mt7996_wed_rro_addr to LE Greg Kroah-Hartman
2025-10-13 14:43 ` [PATCH 6.17 361/563] wifi: mt76: mt7915: fix mt7981 pre-calibration Greg Kroah-Hartman
2025-10-13 14:43 ` [PATCH 6.17 362/563] wifi: mt76: mt7996: remove redundant per-phy mac80211 calls during restart Greg Kroah-Hartman
2025-10-13 14:43 ` [PATCH 6.17 363/563] ASoC: Intel: hda-sdw-bpt: set persistent_buffer false Greg Kroah-Hartman
2025-10-13 14:43 ` [PATCH 6.17 364/563] srcu/tiny: Remove preempt_disable/enable() in srcu_gp_start_if_needed() Greg Kroah-Hartman
2025-10-13 14:43 ` [PATCH 6.17 365/563] drm/amdgpu: Fix allocating extra dwords for rings (v2) Greg Kroah-Hartman
2025-10-13 14:43 ` [PATCH 6.17 366/563] f2fs: fix to update map->m_next_extent correctly in f2fs_map_blocks() Greg Kroah-Hartman
2025-10-13 14:43 ` [PATCH 6.17 367/563] f2fs: fix to truncate first page in error path of f2fs_truncate() Greg Kroah-Hartman
2025-10-13 14:43 ` [PATCH 6.17 368/563] f2fs: fix to avoid migrating empty section Greg Kroah-Hartman
2025-10-13 14:43 ` [PATCH 6.17 369/563] f2fs: fix to mitigate overhead of f2fs_zero_post_eof_page() Greg Kroah-Hartman
2025-10-13 14:43 ` [PATCH 6.17 370/563] RISC-V: KVM: Write hgatp register with valid mode bits Greg Kroah-Hartman
2025-10-13 14:43 ` [PATCH 6.17 371/563] ALSA: pcm: Disable bottom softirqs as part of spin_lock_irq() on PREEMPT_RT Greg Kroah-Hartman
2025-10-13 14:43 ` [PATCH 6.17 372/563] ACPI: NFIT: Fix incorrect ndr_desc being reportedin dev_err message Greg Kroah-Hartman
2025-10-13 14:43 ` [PATCH 6.17 373/563] scsi: qla2xxx: edif: Fix incorrect sign of error code Greg Kroah-Hartman
2025-10-13 14:43 ` [PATCH 6.17 374/563] scsi: qla2xxx: Fix incorrect sign of error code in START_SP_W_RETRIES() Greg Kroah-Hartman
2025-10-13 14:43 ` [PATCH 6.17 375/563] scsi: qla2xxx: Fix incorrect sign of error code in qla_nvme_xmt_ls_rsp() Greg Kroah-Hartman
2025-10-13 14:43 ` [PATCH 6.17 376/563] HID: hidraw: tighten ioctl command parsing Greg Kroah-Hartman
2025-10-13 14:43 ` [PATCH 6.17 377/563] f2fs: fix zero-sized extent for precache extents Greg Kroah-Hartman
2025-10-13 14:43 ` [PATCH 6.17 378/563] smc: Fix use-after-free in __pnet_find_base_ndev() Greg Kroah-Hartman
2025-10-13 14:44 ` [PATCH 6.17 379/563] smc: Use __sk_dst_get() and dst_dev_rcu() in in smc_clc_prfx_set() Greg Kroah-Hartman
2025-10-13 14:44 ` [PATCH 6.17 380/563] smc: Use __sk_dst_get() and dst_dev_rcu() in smc_clc_prfx_match() Greg Kroah-Hartman
2025-10-13 14:44 ` [PATCH 6.17 381/563] smc: Use __sk_dst_get() and dst_dev_rcu() in smc_vlan_by_tcpsk() Greg Kroah-Hartman
2025-10-13 14:44 ` [PATCH 6.17 382/563] tls: Use __sk_dst_get() and dst_dev_rcu() in get_netdev_for_sock() Greg Kroah-Hartman
2025-10-13 14:44 ` [PATCH 6.17 383/563] mptcp: Call dst_release() in mptcp_active_enable() Greg Kroah-Hartman
2025-10-13 14:44 ` [PATCH 6.17 384/563] mptcp: Use __sk_dst_get() and dst_dev_rcu() " Greg Kroah-Hartman
2025-10-13 14:44 ` [PATCH 6.17 385/563] Revert "usb: xhci: Avoid Stop Endpoint retry loop if the endpoint seems Running" Greg Kroah-Hartman
2025-10-13 14:44 ` [PATCH 6.17 386/563] RDMA/core: Resolve MAC of next-hop device without ARP support Greg Kroah-Hartman
2025-10-13 14:44 ` [PATCH 6.17 387/563] IB/sa: Fix sa_local_svc_timeout_ms read race Greg Kroah-Hartman
2025-10-13 14:44 ` [PATCH 6.17 388/563] Documentation: trace: historgram-design: Separate sched_waking histogram section heading and the following diagram Greg Kroah-Hartman
2025-10-13 14:44 ` [PATCH 6.17 389/563] ASoC: SOF: ipc4-pcm: Fix incorrect comparison with number of tdm_slots Greg Kroah-Hartman
2025-10-13 14:44 ` [PATCH 6.17 390/563] wifi: ath12k: initialize eirp_power before use Greg Kroah-Hartman
2025-10-13 14:44 ` [PATCH 6.17 391/563] wifi: ath12k: fix overflow warning on num_pwr_levels Greg Kroah-Hartman
2025-10-13 14:44 ` [PATCH 6.17 392/563] wifi: ath12k: fix signal in radiotap for WCN7850 Greg Kroah-Hartman
2025-10-13 14:44 ` [PATCH 6.17 393/563] wifi: ath12k: fix HAL_PHYRX_COMMON_USER_INFO handling in monitor mode Greg Kroah-Hartman
2025-10-13 14:44 ` [PATCH 6.17 394/563] wifi: ath12k: fix the fetching of combined rssi Greg Kroah-Hartman
2025-10-13 14:44 ` [PATCH 6.17 395/563] wifi: ath12k: Add fallback for invalid channel number in PHY metadata Greg Kroah-Hartman
2025-10-13 14:44 ` [PATCH 6.17 396/563] wifi: ath12k: fix wrong logging ID used for CE Greg Kroah-Hartman
2025-10-13 14:44 ` [PATCH 6.17 397/563] wifi: ath10k: avoid unnecessary wait for service ready message Greg Kroah-Hartman
2025-10-13 14:44 ` [PATCH 6.17 398/563] iommu/vt-d: debugfs: Fix legacy mode page table dump logic Greg Kroah-Hartman
2025-10-13 14:44 ` [PATCH 6.17 399/563] wifi: mac80211: fix Rx packet handling when pubsta information is not available Greg Kroah-Hartman
2025-10-13 14:44 ` [PATCH 6.17 400/563] ASoC: Intel: sof_sdw: Prevent jump to NULL add_sidecar callback Greg Kroah-Hartman
2025-10-13 14:44 ` [PATCH 6.17 401/563] sparc: fix accurate exception reporting in copy_{from_to}_user for UltraSPARC Greg Kroah-Hartman
2025-10-13 14:44 ` [PATCH 6.17 402/563] sparc: fix accurate exception reporting in copy_{from_to}_user for UltraSPARC III Greg Kroah-Hartman
2025-10-13 14:44 ` [PATCH 6.17 403/563] sparc: fix accurate exception reporting in copy_{from_to}_user for Niagara Greg Kroah-Hartman
2025-10-13 14:44 ` [PATCH 6.17 404/563] sparc: fix accurate exception reporting in copy_to_user for Niagara 4 Greg Kroah-Hartman
2025-10-13 14:44 ` [PATCH 6.17 405/563] sparc: fix accurate exception reporting in copy_{from,to}_user for M7 Greg Kroah-Hartman
2025-10-13 14:44 ` [PATCH 6.17 406/563] vfio/pds: replace bitmap_free with vfree Greg Kroah-Hartman
2025-10-13 14:44 ` [PATCH 6.17 407/563] crypto: comp - Use same definition of context alloc and free ops Greg Kroah-Hartman
2025-10-13 14:44 ` [PATCH 6.17 408/563] crypto: hisilicon/qm - set NULL to qm->debug.qm_diff_regs Greg Kroah-Hartman
2025-10-13 14:44 ` [PATCH 6.17 409/563] wifi: ath12k: Fix peer lookup in ath12k_dp_mon_rx_deliver_msdu() Greg Kroah-Hartman
2025-10-13 14:44 ` [PATCH 6.17 410/563] rpmsg: qcom_smd: Fix fallback to qcom,ipc parse Greg Kroah-Hartman
2025-10-13 14:44 ` [PATCH 6.17 411/563] remoteproc: qcom_q6v5_mss: support loading MBN file on msm8974 Greg Kroah-Hartman
2025-10-13 14:44 ` [PATCH 6.17 412/563] RDMA/rxe: Fix race in do_task() when draining Greg Kroah-Hartman
2025-10-13 14:44 ` [PATCH 6.17 413/563] selftests/mm: fix va_high_addr_switch.sh failure on x86_64 Greg Kroah-Hartman
2025-10-13 14:44 ` [PATCH 6.17 414/563] wifi: rtw89: fix leak in rtw89_core_send_nullfunc() Greg Kroah-Hartman
2025-10-13 14:44 ` [PATCH 6.17 415/563] wifi: rtw89: avoid circular locking dependency in ser_state_run() Greg Kroah-Hartman
2025-10-13 14:44 ` [PATCH 6.17 416/563] PCI: tegra194: Fix duplicate PLL disable in pex_ep_event_pex_rst_assert() Greg Kroah-Hartman
2025-10-13 14:44 ` [PATCH 6.17 417/563] remoteproc: qcom: q6v5: Avoid disabling handover IRQ twice Greg Kroah-Hartman
2025-10-13 14:44 ` [PATCH 6.17 418/563] remoteproc: qcom: pas: Shutdown lite ADSP DTB on X1E Greg Kroah-Hartman
2025-10-13 14:44 ` [PATCH 6.17 419/563] wifi: ath12k: Refactor RX TID deletion handling into helper function Greg Kroah-Hartman
2025-10-13 14:44 ` [PATCH 6.17 420/563] wifi: ath12k: Fix flush cache failure during RX queue update Greg Kroah-Hartman
2025-10-13 14:44 ` [PATCH 6.17 421/563] wifi: cfg80211: fix width unit in cfg80211_radio_chandef_valid() Greg Kroah-Hartman
2025-10-13 14:44 ` [PATCH 6.17 422/563] dm vdo: return error on corrupted metadata in start_restoring_volume functions Greg Kroah-Hartman
2025-10-13 14:44 ` [PATCH 6.17 423/563] coresight: fix indentation error in cscfg_remove_owned_csdev_configs() Greg Kroah-Hartman
2025-10-13 14:44 ` [PATCH 6.17 424/563] coresight-etm4x: Conditionally access register TRCEXTINSELR Greg Kroah-Hartman
2025-10-13 14:44 ` [PATCH 6.17 425/563] coresight: tmc: Support atclk Greg Kroah-Hartman
2025-10-13 14:44 ` [PATCH 6.17 426/563] coresight: catu: " Greg Kroah-Hartman
2025-10-13 14:44 ` [PATCH 6.17 427/563] coresight: etm4x: " Greg Kroah-Hartman
2025-10-13 14:44 ` [PATCH 6.17 428/563] coresight: Appropriately disable programming clocks Greg Kroah-Hartman
2025-10-13 14:44 ` [PATCH 6.17 429/563] coresight: Appropriately disable trace bus clocks Greg Kroah-Hartman
2025-10-13 14:44 ` [PATCH 6.17 430/563] coresight: Avoid enable programming clock duplicately Greg Kroah-Hartman
2025-10-13 14:44 ` [PATCH 6.17 431/563] coresight: trbe: Return NULL pointer for allocation failures Greg Kroah-Hartman
2025-10-13 14:44 ` [PATCH 6.17 432/563] coresight: tpda: fix the logic to setup the element size Greg Kroah-Hartman
2025-10-13 14:44 ` [PATCH 6.17 433/563] coresight: Fix incorrect handling for return value of devm_kzalloc Greg Kroah-Hartman
2025-10-13 14:44 ` [PATCH 6.17 434/563] NFSv4.1: fix backchannel max_resp_sz verification check Greg Kroah-Hartman
2025-10-13 14:44 ` [PATCH 6.17 435/563] net: ethtool: tsconfig: set command must provide a reply Greg Kroah-Hartman
2025-10-13 14:44 ` [PATCH 6.17 436/563] ipvs: Defer ip_vs_ftp unregister during netns cleanup Greg Kroah-Hartman
2025-10-13 14:44 ` [PATCH 6.17 437/563] netfilter: nfnetlink: reset nlh pointer during batch replay Greg Kroah-Hartman
2025-10-13 14:44 ` [PATCH 6.17 438/563] netfilter: nf_conntrack: do not skip entries in /proc/net/nf_conntrack Greg Kroah-Hartman
2025-10-13 14:45 ` [PATCH 6.17 439/563] scsi: ufs: core: Fix data race in CPU latency PM QoS request handling Greg Kroah-Hartman
2025-10-13 14:45 ` [PATCH 6.17 440/563] scsi: mpt3sas: Fix crash in transport port remove by using ioc_info() Greg Kroah-Hartman
2025-10-13 14:45 ` [PATCH 6.17 441/563] usb: vhci-hcd: Prevent suspending virtually attached devices Greg Kroah-Hartman
2025-10-13 14:45 ` [PATCH 6.17 442/563] PCI: rcar-gen4: Add missing 1ms delay after PWR reset assertion Greg Kroah-Hartman
2025-10-13 14:45 ` [PATCH 6.17 443/563] PCI: rcar-gen4: Assure reset occurs before DBI access Greg Kroah-Hartman
2025-10-13 14:45 ` [PATCH 6.17 444/563] PCI: rcar-gen4: Fix inverted break condition in PHY initialization Greg Kroah-Hartman
2025-10-13 14:45 ` [PATCH 6.17 445/563] ASoC: qcom: sc8280xp: use sa8775p/ subdir for QCS9100 / QCS9075 Greg Kroah-Hartman
2025-10-13 14:45 ` [PATCH 6.17 446/563] iommu/vt-d: Disallow dirty tracking if incoherent page walk Greg Kroah-Hartman
2025-10-13 14:45 ` [PATCH 6.17 447/563] iommu/selftest: prevent use of uninitialized variable Greg Kroah-Hartman
2025-10-13 14:45 ` [PATCH 6.17 448/563] RDMA/siw: Always report immediate post SQ errors Greg Kroah-Hartman
2025-10-13 14:45 ` [PATCH 6.17 449/563] net: enetc: Fix probing error message typo for the ENETCv4 PF driver Greg Kroah-Hartman
2025-10-13 14:45 ` [PATCH 6.17 450/563] net: usb: Remove disruptive netif_wake_queue in rtl8150_set_multicast Greg Kroah-Hartman
2025-10-13 14:45 ` [PATCH 6.17 451/563] ptp: Add a upper bound on max_vclocks Greg Kroah-Hartman
2025-10-13 14:45 ` [PATCH 6.17 452/563] vhost: vringh: Fix copy_to_iter return value check Greg Kroah-Hartman
2025-10-13 14:45 ` [PATCH 6.17 453/563] net: macb: remove illusion about TBQPH/RBQPH being per-queue Greg Kroah-Hartman
2025-10-13 14:45 ` [PATCH 6.17 454/563] net: macb: move ring size computation to functions Greg Kroah-Hartman
2025-10-13 14:45 ` [PATCH 6.17 455/563] net: macb: single dma_alloc_coherent() for DMA descriptors Greg Kroah-Hartman
2025-10-13 14:45 ` [PATCH 6.17 456/563] Bluetooth: btintel_pcie: Refactor Device Coredump Greg Kroah-Hartman
2025-10-13 14:45 ` [PATCH 6.17 457/563] Bluetooth: MGMT: Fix not exposing debug UUID on MGMT_OP_READ_EXP_FEATURES_INFO Greg Kroah-Hartman
2025-10-13 14:45 ` [PATCH 6.17 458/563] Bluetooth: ISO: Fix possible UAF on iso_conn_free Greg Kroah-Hartman
2025-10-13 14:45 ` [PATCH 6.17 459/563] Bluetooth: ISO: free rx_skb if not consumed Greg Kroah-Hartman
2025-10-13 14:45 ` [PATCH 6.17 460/563] Bluetooth: ISO: dont leak skb in ISO_CONT RX Greg Kroah-Hartman
2025-10-13 14:45 ` [PATCH 6.17 461/563] Bluetooth: hci_sync: Fix using random address for BIG/PA advertisements Greg Kroah-Hartman
2025-10-13 14:45 ` [PATCH 6.17 462/563] KEYS: X.509: Fix Basic Constraints CA flag parsing Greg Kroah-Hartman
2025-10-13 14:45 ` [PATCH 6.17 463/563] hwrng: ks-sa - fix division by zero in ks_sa_rng_init Greg Kroah-Hartman
2025-10-13 14:45 ` [PATCH 6.17 464/563] cramfs: fix incorrect physical page address calculation Greg Kroah-Hartman
2025-10-13 14:45 ` [PATCH 6.17 465/563] ocfs2: fix double free in user_cluster_connect() Greg Kroah-Hartman
2025-10-13 14:45 ` [PATCH 6.17 466/563] drivers/base/node: fix double free in register_one_node() Greg Kroah-Hartman
2025-10-13 14:45 ` [PATCH 6.17 467/563] f2fs: fix UAF issue in f2fs_merge_page_bio() Greg Kroah-Hartman
2025-10-13 14:45 ` [PATCH 6.17 468/563] mtd: rawnand: atmel: Fix error handling path in atmel_nand_controller_add_nands Greg Kroah-Hartman
2025-10-13 14:45 ` [PATCH 6.17 469/563] PCI: j721e: Fix incorrect error message in probe() Greg Kroah-Hartman
2025-10-13 14:45 ` [PATCH 6.17 470/563] idpf: fix mismatched free function for dma_alloc_coherent Greg Kroah-Hartman
2025-10-13 14:45 ` [PATCH 6.17 471/563] tcp: use skb->len instead of skb->truesize in tcp_can_ingest() Greg Kroah-Hartman
2025-10-13 14:45 ` [PATCH 6.17 472/563] nfp: fix RSS hash key size when RSS is not supported Greg Kroah-Hartman
2025-10-13 14:45 ` [PATCH 6.17 473/563] net: ena: return 0 in ena_get_rxfh_key_size() when RSS hash key is not configurable Greg Kroah-Hartman
2025-10-13 14:45 ` [PATCH 6.17 474/563] net: dlink: handle copy_thresh allocation failure Greg Kroah-Hartman
2025-10-13 14:45 ` [PATCH 6.17 475/563] net/mlx5: Stop polling for command response if interface goes down Greg Kroah-Hartman
2025-10-13 14:45 ` [PATCH 6.17 476/563] net/mlx5: pagealloc: Fix reclaim race during command interface teardown Greg Kroah-Hartman
2025-10-13 14:45 ` [PATCH 6.17 477/563] net/mlx5: fw reset, add reset timeout work Greg Kroah-Hartman
2025-10-13 14:45 ` [PATCH 6.17 478/563] smb: client: fix crypto buffers in non-linear memory Greg Kroah-Hartman
2025-10-13 14:45 ` [PATCH 6.17 479/563] bonding: fix xfrm offload feature setup on active-backup mode Greg Kroah-Hartman
2025-10-13 14:45 ` [PATCH 6.17 480/563] net: enetc: initialize SW PIR and CIR based HW PIR and CIR values Greg Kroah-Hartman
2025-10-13 14:45 ` [PATCH 6.17 481/563] iommufd: Register iommufd mock devices with fwspec Greg Kroah-Hartman
2025-10-13 14:45 ` [PATCH 6.17 482/563] Revert "net/mlx5e: Update and set Xon/Xoff upon MTU set" Greg Kroah-Hartman
2025-10-13 14:45 ` [PATCH 6.17 483/563] NFSD: filecache: add STATX_DIOALIGN and STATX_DIO_READ_ALIGN support Greg Kroah-Hartman
2025-10-13 14:45 ` [PATCH 6.17 484/563] nfs/localio: avoid issuing misaligned IO using O_DIRECT Greg Kroah-Hartman
2025-10-13 14:45 ` [PATCH 6.17 485/563] octeontx2-vf: fix bitmap leak Greg Kroah-Hartman
2025-10-13 14:45 ` [PATCH 6.17 486/563] octeontx2-pf: " Greg Kroah-Hartman
2025-10-13 14:45 ` [PATCH 6.17 487/563] vhost: vringh: Modify the return value check Greg Kroah-Hartman
2025-10-13 14:45 ` [PATCH 6.17 488/563] selftests/bpf: Fix typos and grammar in test sources Greg Kroah-Hartman
2025-10-13 14:45 ` [PATCH 6.17 489/563] selftests/bpf: move get_ksyms and get_addrs to trace_helpers.c Greg Kroah-Hartman
2025-10-13 14:45 ` [PATCH 6.17 490/563] selftests/bpf: Fix realloc size in bpf_get_addrs Greg Kroah-Hartman
2025-10-13 14:45 ` [PATCH 6.17 491/563] bpf: Skip scalar adjustment for BPF_NEG if dst is a pointer Greg Kroah-Hartman
2025-10-13 14:45 ` [PATCH 6.17 492/563] bpf: Reject negative offsets for ALU ops Greg Kroah-Hartman
2025-10-13 14:45 ` [PATCH 6.17 493/563] tpm: Disable TPM2_TCG_HMAC by default Greg Kroah-Hartman
2025-10-13 14:45 ` [PATCH 6.17 494/563] ALSA: hda/hdmi: Add pin fix for HP ProDesk model Greg Kroah-Hartman
2025-10-13 14:45 ` [PATCH 6.17 495/563] ALSA: hda/realtek: Add quirk for HP Spectre 14t-ea100 Greg Kroah-Hartman
2025-10-13 14:45 ` [PATCH 6.17 496/563] Squashfs: fix uninit-value in squashfs_get_parent Greg Kroah-Hartman
2025-10-13 14:45 ` [PATCH 6.17 497/563] uio_hv_generic: Let userspace take care of interrupt mask Greg Kroah-Hartman
2025-10-13 14:45 ` [PATCH 6.17 498/563] hisi_acc_vfio_pci: Fix reference leak in hisi_acc_vfio_debug_init Greg Kroah-Hartman
2025-10-13 14:46 ` [PATCH 6.17 499/563] io_uring/waitid: always prune wait queue entry in io_waitid_wait() Greg Kroah-Hartman
2025-10-13 14:46 ` [PATCH 6.17 500/563] io_uring/zcrx: fix overshooting recv limit Greg Kroah-Hartman
2025-10-13 14:46 ` [PATCH 6.17 501/563] ASoC: wcd934x: fix error handling in wcd934x_codec_parse_data() Greg Kroah-Hartman
2025-10-13 14:46 ` [PATCH 6.17 502/563] ASoC: SOF: ipc3-topology: Fix multi-core and static pipelines tear down Greg Kroah-Hartman
2025-10-13 14:46 ` [PATCH 6.17 503/563] ASoC: codecs: wcd937x: set the comp soundwire port correctly Greg Kroah-Hartman
2025-10-13 14:46 ` [PATCH 6.17 504/563] ASoC: codecs: wcd937x: make stub functions inline Greg Kroah-Hartman
2025-10-13 14:46 ` [PATCH 6.17 505/563] ASoC: SOF: ipc4-pcm: fix delay calculation when DSP resamples Greg Kroah-Hartman
2025-10-13 14:46 ` [PATCH 6.17 506/563] ASoC: SOF: ipc4-pcm: fix start offset calculation for chain DMA Greg Kroah-Hartman
2025-10-13 14:46 ` [PATCH 6.17 507/563] fs: udf: fix OOB read in lengthAllocDescs handling Greg Kroah-Hartman
2025-10-13 14:46 ` [PATCH 6.17 508/563] net: nfc: nci: Add parameter validation for packet data Greg Kroah-Hartman
2025-10-13 14:46 ` [PATCH 6.17 509/563] mfd: rz-mtu3: Fix MTU5 NFCR register offset Greg Kroah-Hartman
2025-10-13 14:46 ` [PATCH 6.17 510/563] mfd: intel_soc_pmic_chtdc_ti: Set use_single_read regmap_config flag Greg Kroah-Hartman
2025-10-13 14:46 ` [PATCH 6.17 511/563] mfd: vexpress-sysreg: Check the return value of devm_gpiochip_add_data() Greg Kroah-Hartman
2025-10-13 14:46 ` [PATCH 6.17 512/563] tracing: Fix lock imbalance in s_start() memory allocation failure path Greg Kroah-Hartman
2025-10-13 14:46 ` [PATCH 6.17 513/563] tracing: Fix race condition in kprobe initialization causing NULL pointer dereference Greg Kroah-Hartman
2025-10-13 14:46 ` [PATCH 6.17 514/563] tracing: Fix wakeup tracers on failure of acquiring calltime Greg Kroah-Hartman
2025-10-13 14:46 ` [PATCH 6.17 515/563] tracing: Fix irqoff " Greg Kroah-Hartman
2025-10-13 14:46 ` [PATCH 6.17 516/563] tracing: Have trace_marker use per-cpu data to read user space Greg Kroah-Hartman
2025-10-13 14:46 ` [PATCH 6.17 517/563] tracing: Fix tracing_mark_raw_write() to use buf and not ubuf Greg Kroah-Hartman
2025-10-13 14:46 ` [PATCH 6.17 518/563] tracing: Stop fortify-string from warning in tracing_mark_raw_write() Greg Kroah-Hartman
2025-10-13 14:46 ` [PATCH 6.17 519/563] dm: fix queue start/stop imbalance under suspend/load/resume races Greg Kroah-Hartman
2025-10-13 14:46 ` [PATCH 6.17 520/563] dm: fix NULL pointer dereference in __dm_suspend() Greg Kroah-Hartman
2025-10-13 14:46 ` [PATCH 6.17 521/563] LoongArch: Automatically disable kaslr if boot from kexec_file Greg Kroah-Hartman
2025-10-13 14:46 ` [PATCH 6.17 522/563] pwm: loongson: Fix LOONGSON_PWM_FREQ_DEFAULT Greg Kroah-Hartman
2025-10-13 14:46 ` [PATCH 6.17 523/563] LoongArch: BPF: Sign-extend struct ops return values properly Greg Kroah-Hartman
2025-10-13 14:46 ` [PATCH 6.17 524/563] LoongArch: BPF: No support of struct argument in trampoline programs Greg Kroah-Hartman
2025-10-13 14:46 ` [PATCH 6.17 525/563] LoongArch: BPF: Dont align trampoline size Greg Kroah-Hartman
2025-10-13 14:46 ` [PATCH 6.17 526/563] LoongArch: BPF: Make trampoline size stable Greg Kroah-Hartman
2025-10-13 14:46 ` [PATCH 6.17 527/563] LoongArch: BPF: Make error handling robust in arch_prepare_bpf_trampoline() Greg Kroah-Hartman
2025-10-13 14:46 ` [PATCH 6.17 528/563] LoongArch: BPF: Remove duplicated bpf_flush_icache() Greg Kroah-Hartman
2025-10-13 14:46 ` [PATCH 6.17 529/563] LoongArch: BPF: No text_poke() for kernel text Greg Kroah-Hartman
2025-10-13 14:46 ` [PATCH 6.17 530/563] LoongArch: BPF: Remove duplicated flags check Greg Kroah-Hartman
2025-10-13 14:46 ` [PATCH 6.17 531/563] LoongArch: BPF: Fix uninitialized symbol retval_off Greg Kroah-Hartman
2025-10-13 14:46 ` [PATCH 6.17 532/563] mm/ksm: fix flag-dropping behavior in ksm_madvise Greg Kroah-Hartman
2025-10-13 14:46 ` [PATCH 6.17 533/563] ksmbd: Fix race condition in RPC handle list access Greg Kroah-Hartman
2025-10-13 14:46 ` [PATCH 6.17 534/563] ksmbd: fix error code overwriting in smb2_get_info_filesystem() Greg Kroah-Hartman
2025-10-13 14:46 ` [PATCH 6.17 535/563] ksmbd: add max ip connections parameter Greg Kroah-Hartman
2025-10-13 14:46 ` [PATCH 6.17 536/563] ext4: fix potential null deref in ext4_mb_init() Greg Kroah-Hartman
2025-10-13 14:46 ` [PATCH 6.17 537/563] ext4: fix checks for orphan inodes Greg Kroah-Hartman
2025-10-13 14:46 ` [PATCH 6.17 538/563] KVM: SVM: Skip fastpath emulation on VM-Exit if next RIP isnt valid Greg Kroah-Hartman
2025-10-13 14:46 ` [PATCH 6.17 539/563] fbdev: simplefb: Fix use after free in simplefb_detach_genpds() Greg Kroah-Hartman
2025-10-13 14:46 ` [PATCH 6.17 540/563] mm: hugetlb: avoid soft lockup when mprotect to large memory area Greg Kroah-Hartman
2025-10-13 14:46 ` [PATCH 6.17 541/563] selftests/mm: skip soft-dirty tests when CONFIG_MEM_SOFT_DIRTY is disabled Greg Kroah-Hartman
2025-10-13 14:46 ` [PATCH 6.17 542/563] nvdimm: ndtest: Return -ENOMEM if devm_kcalloc() fails in ndtest_probe() Greg Kroah-Hartman
2025-10-13 14:46 ` [PATCH 6.17 543/563] misc: fastrpc: Save actual DMA size in fastrpc_map structure Greg Kroah-Hartman
2025-10-13 14:46 ` [PATCH 6.17 544/563] misc: fastrpc: Fix fastrpc_map_lookup operation Greg Kroah-Hartman
2025-10-13 14:46 ` [PATCH 6.17 545/563] misc: fastrpc: fix possible map leak in fastrpc_put_args Greg Kroah-Hartman
2025-10-13 14:46 ` [PATCH 6.17 546/563] misc: fastrpc: Skip reference for DMA handles Greg Kroah-Hartman
2025-10-13 14:46 ` [PATCH 6.17 547/563] Input: atmel_mxt_ts - allow reset GPIO to sleep Greg Kroah-Hartman
2025-10-13 14:46 ` [PATCH 6.17 548/563] Input: uinput - zero-initialize uinput_ff_upload_compat to avoid info leak Greg Kroah-Hartman
2025-10-13 14:46 ` [PATCH 6.17 549/563] sunrpc: fix null pointer dereference on zero-length checksum Greg Kroah-Hartman
2025-10-13 14:46 ` [PATCH 6.17 550/563] PCI/AER: Avoid NULL pointer dereference in aer_ratelimit() Greg Kroah-Hartman
2025-10-13 14:46 ` [PATCH 6.17 551/563] remoteproc: pru: Fix potential NULL pointer dereference in pru_rproc_set_ctable() Greg Kroah-Hartman
2025-10-13 14:46 ` [PATCH 6.17 552/563] PCI: endpoint: pci-epf-test: Add NULL check for DMA channels before release Greg Kroah-Hartman
2025-10-13 14:46 ` [PATCH 6.17 553/563] thunderbolt: Fix use-after-free in tb_dp_dprx_work Greg Kroah-Hartman
2025-10-13 14:46 ` [PATCH 6.17 554/563] tee: fix register_shm_helper() Greg Kroah-Hartman
2025-10-13 14:46 ` [PATCH 6.17 555/563] pinctrl: check the return value of pinmux_ops::get_function_name() Greg Kroah-Hartman
2025-10-13 14:46 ` [PATCH 6.17 556/563] bus: fsl-mc: Check return value of platform_get_resource() Greg Kroah-Hartman
2025-10-13 14:46 ` [PATCH 6.17 557/563] net/9p: Fix buffer overflow in USB transport layer Greg Kroah-Hartman
2025-10-13 14:46 ` [PATCH 6.17 558/563] net: usb: asix: hold PM usage ref to avoid PM/MDIO + RTNL deadlock Greg Kroah-Hartman
2025-10-13 14:47 ` [PATCH 6.17 559/563] usb: typec: tipd: Clear interrupts first Greg Kroah-Hartman
2025-10-13 14:47 ` [PATCH 6.17 560/563] arm64: dts: qcom: qcm2290: Disable USB SS bus instances in park mode Greg Kroah-Hartman
2025-10-13 14:47 ` [PATCH 6.17 561/563] usb: cdns3: cdnsp-pci: remove redundant pci_disable_device() call Greg Kroah-Hartman
2025-10-13 14:47 ` [PATCH 6.17 562/563] scsi: ufs: core: Fix PM QoS mutex initialization Greg Kroah-Hartman
2025-10-13 14:47 ` [PATCH 6.17 563/563] drm/amdgpu/vcn: Fix double-free of vcn dump buffer Greg Kroah-Hartman
2025-10-13 16:09 ` [PATCH 6.17 000/563] 6.17.3-rc1 review Ronald Warsow
2025-10-13 17:05 ` Brett A C Sheffield
2025-10-13 17:09 ` Florian Fainelli
2025-10-14  3:18 ` Peter Schneider
2025-10-14  3:40 ` Takeshi Ogasawara
2025-10-14  7:58 ` Naresh Kamboju
2025-10-14  8:13 ` Pascal Ernster
2025-10-14  9:47 ` Dileep malepu
2025-10-14 10:43 ` Ron Economos
2025-10-14 13:09 ` Jon Hunter
2025-10-14 16:58 ` Shuah Khan
2025-10-14 18:15 ` Miguel Ojeda
2025-10-14 22:19 ` Justin Forbes
2025-10-17 18:03 ` Guenter Roeck
2025-10-22 13:08   ` Nathan Chancellor
2025-10-23 15:37     ` 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=20251013144412.597554042@linuxfoundation.org \
    --to=gregkh@linuxfoundation.org \
    --cc=kprateek.nayak@amd.com \
    --cc=leon@kernel.org \
    --cc=patches@lists.linux.dev \
    --cc=peterz@infradead.org \
    --cc=sashal@kernel.org \
    --cc=sshegde@linux.ibm.com \
    --cc=stable@vger.kernel.org \
    --cc=vschneid@redhat.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).