linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
To: linux-kernel@vger.kernel.org
Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>,
	stable@vger.kernel.org, Peter Zijlstra <peterz@infradead.org>,
	Kees Cook <keescook@chromium.org>,
	Geert Uytterhoeven <geert@linux-m68k.org>,
	Sasha Levin <sashal@kernel.org>,
	Russell King <rmk+kernel@armlinux.org.uk>,
	Mark Rutland <mark.rutland@arm.com>
Subject: [PATCH 5.15 527/917] sched: Add wrapper for get_wchan() to keep task blocked
Date: Mon, 15 Nov 2021 18:00:22 +0100	[thread overview]
Message-ID: <20211115165446.629423940@linuxfoundation.org> (raw)
In-Reply-To: <20211115165428.722074685@linuxfoundation.org>

From: Kees Cook <keescook@chromium.org>

[ Upstream commit 42a20f86dc19f9282d974df0ba4d226c865ab9dd ]

Having a stable wchan means the process must be blocked and for it to
stay that way while performing stack unwinding.

Suggested-by: Peter Zijlstra <peterz@infradead.org>
Signed-off-by: Kees Cook <keescook@chromium.org>
Signed-off-by: Peter Zijlstra (Intel) <peterz@infradead.org>
Acked-by: Geert Uytterhoeven <geert@linux-m68k.org>
Acked-by: Russell King (Oracle) <rmk+kernel@armlinux.org.uk> [arm]
Tested-by: Mark Rutland <mark.rutland@arm.com> [arm64]
Link: https://lkml.kernel.org/r/20211008111626.332092234@infradead.org
Signed-off-by: Sasha Levin <sashal@kernel.org>
---
 arch/alpha/include/asm/processor.h      |  2 +-
 arch/alpha/kernel/process.c             |  5 ++---
 arch/arc/include/asm/processor.h        |  2 +-
 arch/arc/kernel/stacktrace.c            |  4 ++--
 arch/arm/include/asm/processor.h        |  2 +-
 arch/arm/kernel/process.c               |  4 +---
 arch/arm64/include/asm/processor.h      |  2 +-
 arch/arm64/kernel/process.c             |  4 +---
 arch/csky/include/asm/processor.h       |  2 +-
 arch/csky/kernel/stacktrace.c           |  5 ++---
 arch/h8300/include/asm/processor.h      |  2 +-
 arch/h8300/kernel/process.c             |  5 +----
 arch/hexagon/include/asm/processor.h    |  2 +-
 arch/hexagon/kernel/process.c           |  4 +---
 arch/ia64/include/asm/processor.h       |  2 +-
 arch/ia64/kernel/process.c              |  5 +----
 arch/m68k/include/asm/processor.h       |  2 +-
 arch/m68k/kernel/process.c              |  4 +---
 arch/microblaze/include/asm/processor.h |  2 +-
 arch/microblaze/kernel/process.c        |  2 +-
 arch/mips/include/asm/processor.h       |  2 +-
 arch/mips/kernel/process.c              |  8 +++-----
 arch/nds32/include/asm/processor.h      |  2 +-
 arch/nds32/kernel/process.c             |  7 +------
 arch/nios2/include/asm/processor.h      |  2 +-
 arch/nios2/kernel/process.c             |  5 +----
 arch/openrisc/include/asm/processor.h   |  2 +-
 arch/openrisc/kernel/process.c          |  2 +-
 arch/parisc/include/asm/processor.h     |  2 +-
 arch/parisc/kernel/process.c            |  5 +----
 arch/powerpc/include/asm/processor.h    |  2 +-
 arch/powerpc/kernel/process.c           |  9 +++------
 arch/riscv/include/asm/processor.h      |  2 +-
 arch/riscv/kernel/stacktrace.c          | 12 +++++-------
 arch/s390/include/asm/processor.h       |  2 +-
 arch/s390/kernel/process.c              |  4 ++--
 arch/sh/include/asm/processor_32.h      |  2 +-
 arch/sh/kernel/process_32.c             |  5 +----
 arch/sparc/include/asm/processor_32.h   |  2 +-
 arch/sparc/include/asm/processor_64.h   |  2 +-
 arch/sparc/kernel/process_32.c          |  5 +----
 arch/sparc/kernel/process_64.c          |  5 +----
 arch/um/include/asm/processor-generic.h |  2 +-
 arch/um/kernel/process.c                |  5 +----
 arch/x86/include/asm/processor.h        |  2 +-
 arch/x86/kernel/process.c               |  5 +----
 arch/xtensa/include/asm/processor.h     |  2 +-
 arch/xtensa/kernel/process.c            |  5 +----
 include/linux/sched.h                   |  1 +
 kernel/sched/core.c                     | 19 +++++++++++++++++++
 50 files changed, 80 insertions(+), 112 deletions(-)

diff --git a/arch/alpha/include/asm/processor.h b/arch/alpha/include/asm/processor.h
index 6100431da07a3..090499c99c1c1 100644
--- a/arch/alpha/include/asm/processor.h
+++ b/arch/alpha/include/asm/processor.h
@@ -42,7 +42,7 @@ extern void start_thread(struct pt_regs *, unsigned long, unsigned long);
 struct task_struct;
 extern void release_thread(struct task_struct *);
 
-unsigned long get_wchan(struct task_struct *p);
+unsigned long __get_wchan(struct task_struct *p);
 
 #define KSTK_EIP(tsk) (task_pt_regs(tsk)->pc)
 
diff --git a/arch/alpha/kernel/process.c b/arch/alpha/kernel/process.c
index a5123ea426ce5..5f8527081da92 100644
--- a/arch/alpha/kernel/process.c
+++ b/arch/alpha/kernel/process.c
@@ -376,12 +376,11 @@ thread_saved_pc(struct task_struct *t)
 }
 
 unsigned long
-get_wchan(struct task_struct *p)
+__get_wchan(struct task_struct *p)
 {
 	unsigned long schedule_frame;
 	unsigned long pc;
-	if (!p || p == current || task_is_running(p))
-		return 0;
+
 	/*
 	 * This one depends on the frame size of schedule().  Do a
 	 * "disass schedule" in gdb to find the frame size.  Also, the
diff --git a/arch/arc/include/asm/processor.h b/arch/arc/include/asm/processor.h
index f28afcf5c6d10..54db9d7bb562d 100644
--- a/arch/arc/include/asm/processor.h
+++ b/arch/arc/include/asm/processor.h
@@ -70,7 +70,7 @@ struct task_struct;
 extern void start_thread(struct pt_regs * regs, unsigned long pc,
 			 unsigned long usp);
 
-extern unsigned int get_wchan(struct task_struct *p);
+extern unsigned int __get_wchan(struct task_struct *p);
 
 #endif /* !__ASSEMBLY__ */
 
diff --git a/arch/arc/kernel/stacktrace.c b/arch/arc/kernel/stacktrace.c
index c376ff3147e7b..5372dc04e7847 100644
--- a/arch/arc/kernel/stacktrace.c
+++ b/arch/arc/kernel/stacktrace.c
@@ -15,7 +15,7 @@
  *      = specifics of data structs where trace is saved(CONFIG_STACKTRACE etc)
  *
  *  vineetg: March 2009
- *  -Implemented correct versions of thread_saved_pc() and get_wchan()
+ *  -Implemented correct versions of thread_saved_pc() and __get_wchan()
  *
  *  rajeshwarr: 2008
  *  -Initial implementation
@@ -248,7 +248,7 @@ void show_stack(struct task_struct *tsk, unsigned long *sp, const char *loglvl)
  * Of course just returning schedule( ) would be pointless so unwind until
  * the function is not in schedular code
  */
-unsigned int get_wchan(struct task_struct *tsk)
+unsigned int __get_wchan(struct task_struct *tsk)
 {
 	return arc_unwind_core(tsk, NULL, __get_first_nonsched, NULL);
 }
diff --git a/arch/arm/include/asm/processor.h b/arch/arm/include/asm/processor.h
index 9e6b972863077..6af68edfa53ab 100644
--- a/arch/arm/include/asm/processor.h
+++ b/arch/arm/include/asm/processor.h
@@ -84,7 +84,7 @@ struct task_struct;
 /* Free all resources held by a thread. */
 extern void release_thread(struct task_struct *);
 
-unsigned long get_wchan(struct task_struct *p);
+unsigned long __get_wchan(struct task_struct *p);
 
 #define task_pt_regs(p) \
 	((struct pt_regs *)(THREAD_START_SP + task_stack_page(p)) - 1)
diff --git a/arch/arm/kernel/process.c b/arch/arm/kernel/process.c
index 0e2d3051741ed..96f577e59595f 100644
--- a/arch/arm/kernel/process.c
+++ b/arch/arm/kernel/process.c
@@ -276,13 +276,11 @@ int copy_thread(unsigned long clone_flags, unsigned long stack_start,
 	return 0;
 }
 
-unsigned long get_wchan(struct task_struct *p)
+unsigned long __get_wchan(struct task_struct *p)
 {
 	struct stackframe frame;
 	unsigned long stack_page;
 	int count = 0;
-	if (!p || p == current || task_is_running(p))
-		return 0;
 
 	frame.fp = thread_saved_fp(p);
 	frame.sp = thread_saved_sp(p);
diff --git a/arch/arm64/include/asm/processor.h b/arch/arm64/include/asm/processor.h
index ee2bdc1b9f5bb..55ca034238eae 100644
--- a/arch/arm64/include/asm/processor.h
+++ b/arch/arm64/include/asm/processor.h
@@ -257,7 +257,7 @@ struct task_struct;
 /* Free all resources held by a thread. */
 extern void release_thread(struct task_struct *);
 
-unsigned long get_wchan(struct task_struct *p);
+unsigned long __get_wchan(struct task_struct *p);
 
 void update_sctlr_el1(u64 sctlr);
 
diff --git a/arch/arm64/kernel/process.c b/arch/arm64/kernel/process.c
index 40adb8cdbf5af..aacf2f5559a8b 100644
--- a/arch/arm64/kernel/process.c
+++ b/arch/arm64/kernel/process.c
@@ -528,13 +528,11 @@ __notrace_funcgraph struct task_struct *__switch_to(struct task_struct *prev,
 	return last;
 }
 
-unsigned long get_wchan(struct task_struct *p)
+unsigned long __get_wchan(struct task_struct *p)
 {
 	struct stackframe frame;
 	unsigned long stack_page, ret = 0;
 	int count = 0;
-	if (!p || p == current || task_is_running(p))
-		return 0;
 
 	stack_page = (unsigned long)try_get_task_stack(p);
 	if (!stack_page)
diff --git a/arch/csky/include/asm/processor.h b/arch/csky/include/asm/processor.h
index 9e933021fe8e0..817dd60ff152d 100644
--- a/arch/csky/include/asm/processor.h
+++ b/arch/csky/include/asm/processor.h
@@ -81,7 +81,7 @@ static inline void release_thread(struct task_struct *dead_task)
 
 extern int kernel_thread(int (*fn)(void *), void *arg, unsigned long flags);
 
-unsigned long get_wchan(struct task_struct *p);
+unsigned long __get_wchan(struct task_struct *p);
 
 #define KSTK_EIP(tsk)		(task_pt_regs(tsk)->pc)
 #define KSTK_ESP(tsk)		(task_pt_regs(tsk)->usp)
diff --git a/arch/csky/kernel/stacktrace.c b/arch/csky/kernel/stacktrace.c
index 1b280ef080045..9f78f5d215117 100644
--- a/arch/csky/kernel/stacktrace.c
+++ b/arch/csky/kernel/stacktrace.c
@@ -111,12 +111,11 @@ static bool save_wchan(unsigned long pc, void *arg)
 	return false;
 }
 
-unsigned long get_wchan(struct task_struct *task)
+unsigned long __get_wchan(struct task_struct *task)
 {
 	unsigned long pc = 0;
 
-	if (likely(task && task != current && !task_is_running(task)))
-		walk_stackframe(task, NULL, save_wchan, &pc);
+	walk_stackframe(task, NULL, save_wchan, &pc);
 	return pc;
 }
 
diff --git a/arch/h8300/include/asm/processor.h b/arch/h8300/include/asm/processor.h
index a060b41b2d31c..141a23eb62b74 100644
--- a/arch/h8300/include/asm/processor.h
+++ b/arch/h8300/include/asm/processor.h
@@ -105,7 +105,7 @@ static inline void release_thread(struct task_struct *dead_task)
 {
 }
 
-unsigned long get_wchan(struct task_struct *p);
+unsigned long __get_wchan(struct task_struct *p);
 
 #define	KSTK_EIP(tsk)	\
 	({			 \
diff --git a/arch/h8300/kernel/process.c b/arch/h8300/kernel/process.c
index 2ac27e4248a46..8833fa4f5d516 100644
--- a/arch/h8300/kernel/process.c
+++ b/arch/h8300/kernel/process.c
@@ -128,15 +128,12 @@ int copy_thread(unsigned long clone_flags, unsigned long usp,
 	return 0;
 }
 
-unsigned long get_wchan(struct task_struct *p)
+unsigned long __get_wchan(struct task_struct *p)
 {
 	unsigned long fp, pc;
 	unsigned long stack_page;
 	int count = 0;
 
-	if (!p || p == current || task_is_running(p))
-		return 0;
-
 	stack_page = (unsigned long)p;
 	fp = ((struct pt_regs *)p->thread.ksp)->er6;
 	do {
diff --git a/arch/hexagon/include/asm/processor.h b/arch/hexagon/include/asm/processor.h
index 9f0cc99420bee..615f7e49968e6 100644
--- a/arch/hexagon/include/asm/processor.h
+++ b/arch/hexagon/include/asm/processor.h
@@ -64,7 +64,7 @@ struct thread_struct {
 extern void release_thread(struct task_struct *dead_task);
 
 /* Get wait channel for task P.  */
-extern unsigned long get_wchan(struct task_struct *p);
+extern unsigned long __get_wchan(struct task_struct *p);
 
 /*  The following stuff is pretty HEXAGON specific.  */
 
diff --git a/arch/hexagon/kernel/process.c b/arch/hexagon/kernel/process.c
index 6a6835fb42425..232dfd8956aa2 100644
--- a/arch/hexagon/kernel/process.c
+++ b/arch/hexagon/kernel/process.c
@@ -130,13 +130,11 @@ void flush_thread(void)
  * is an identification of the point at which the scheduler
  * was invoked by a blocked thread.
  */
-unsigned long get_wchan(struct task_struct *p)
+unsigned long __get_wchan(struct task_struct *p)
 {
 	unsigned long fp, pc;
 	unsigned long stack_page;
 	int count = 0;
-	if (!p || p == current || task_is_running(p))
-		return 0;
 
 	stack_page = (unsigned long)task_stack_page(p);
 	fp = ((struct hexagon_switch_stack *)p->thread.switch_sp)->fp;
diff --git a/arch/ia64/include/asm/processor.h b/arch/ia64/include/asm/processor.h
index 2d8bcdc27d7f8..45365c2ef5983 100644
--- a/arch/ia64/include/asm/processor.h
+++ b/arch/ia64/include/asm/processor.h
@@ -330,7 +330,7 @@ struct task_struct;
 #define release_thread(dead_task)
 
 /* Get wait channel for task P.  */
-extern unsigned long get_wchan (struct task_struct *p);
+extern unsigned long __get_wchan (struct task_struct *p);
 
 /* Return instruction pointer of blocked task TSK.  */
 #define KSTK_EIP(tsk)					\
diff --git a/arch/ia64/kernel/process.c b/arch/ia64/kernel/process.c
index e56d63f4abf9d..834df24a88f12 100644
--- a/arch/ia64/kernel/process.c
+++ b/arch/ia64/kernel/process.c
@@ -523,15 +523,12 @@ exit_thread (struct task_struct *tsk)
 }
 
 unsigned long
-get_wchan (struct task_struct *p)
+__get_wchan (struct task_struct *p)
 {
 	struct unw_frame_info info;
 	unsigned long ip;
 	int count = 0;
 
-	if (!p || p == current || task_is_running(p))
-		return 0;
-
 	/*
 	 * Note: p may not be a blocked task (it could be current or
 	 * another process running on some other CPU.  Rather than
diff --git a/arch/m68k/include/asm/processor.h b/arch/m68k/include/asm/processor.h
index f4d82c619a5c4..ffeda9aa526a5 100644
--- a/arch/m68k/include/asm/processor.h
+++ b/arch/m68k/include/asm/processor.h
@@ -150,7 +150,7 @@ static inline void release_thread(struct task_struct *dead_task)
 {
 }
 
-unsigned long get_wchan(struct task_struct *p);
+unsigned long __get_wchan(struct task_struct *p);
 
 #define	KSTK_EIP(tsk)	\
     ({			\
diff --git a/arch/m68k/kernel/process.c b/arch/m68k/kernel/process.c
index 1ab692b952cd6..a6030dbaa0891 100644
--- a/arch/m68k/kernel/process.c
+++ b/arch/m68k/kernel/process.c
@@ -263,13 +263,11 @@ int dump_fpu (struct pt_regs *regs, struct user_m68kfp_struct *fpu)
 }
 EXPORT_SYMBOL(dump_fpu);
 
-unsigned long get_wchan(struct task_struct *p)
+unsigned long __get_wchan(struct task_struct *p)
 {
 	unsigned long fp, pc;
 	unsigned long stack_page;
 	int count = 0;
-	if (!p || p == current || task_is_running(p))
-		return 0;
 
 	stack_page = (unsigned long)task_stack_page(p);
 	fp = ((struct switch_stack *)p->thread.ksp)->a6;
diff --git a/arch/microblaze/include/asm/processor.h b/arch/microblaze/include/asm/processor.h
index 06c6e493590a2..7e9e92670df33 100644
--- a/arch/microblaze/include/asm/processor.h
+++ b/arch/microblaze/include/asm/processor.h
@@ -68,7 +68,7 @@ static inline void release_thread(struct task_struct *dead_task)
 {
 }
 
-unsigned long get_wchan(struct task_struct *p);
+unsigned long __get_wchan(struct task_struct *p);
 
 /* The size allocated for kernel stacks. This _must_ be a power of two! */
 # define KERNEL_STACK_SIZE	0x2000
diff --git a/arch/microblaze/kernel/process.c b/arch/microblaze/kernel/process.c
index 62aa237180b67..5e2b91c1e8ced 100644
--- a/arch/microblaze/kernel/process.c
+++ b/arch/microblaze/kernel/process.c
@@ -112,7 +112,7 @@ int copy_thread(unsigned long clone_flags, unsigned long usp, unsigned long arg,
 	return 0;
 }
 
-unsigned long get_wchan(struct task_struct *p)
+unsigned long __get_wchan(struct task_struct *p)
 {
 /* TBD (used by procfs) */
 	return 0;
diff --git a/arch/mips/include/asm/processor.h b/arch/mips/include/asm/processor.h
index 0c3550c82b726..252ed38ce8c5a 100644
--- a/arch/mips/include/asm/processor.h
+++ b/arch/mips/include/asm/processor.h
@@ -369,7 +369,7 @@ static inline void flush_thread(void)
 {
 }
 
-unsigned long get_wchan(struct task_struct *p);
+unsigned long __get_wchan(struct task_struct *p);
 
 #define __KSTK_TOS(tsk) ((unsigned long)task_stack_page(tsk) + \
 			 THREAD_SIZE - 32 - sizeof(struct pt_regs))
diff --git a/arch/mips/kernel/process.c b/arch/mips/kernel/process.c
index 95aa86fa60778..cbff1b974f882 100644
--- a/arch/mips/kernel/process.c
+++ b/arch/mips/kernel/process.c
@@ -511,7 +511,7 @@ static int __init frame_info_init(void)
 
 	/*
 	 * Without schedule() frame info, result given by
-	 * thread_saved_pc() and get_wchan() are not reliable.
+	 * thread_saved_pc() and __get_wchan() are not reliable.
 	 */
 	if (schedule_mfi.pc_offset < 0)
 		printk("Can't analyze schedule() prologue at %p\n", schedule);
@@ -652,9 +652,9 @@ unsigned long unwind_stack(struct task_struct *task, unsigned long *sp,
 #endif
 
 /*
- * get_wchan - a maintenance nightmare^W^Wpain in the ass ...
+ * __get_wchan - a maintenance nightmare^W^Wpain in the ass ...
  */
-unsigned long get_wchan(struct task_struct *task)
+unsigned long __get_wchan(struct task_struct *task)
 {
 	unsigned long pc = 0;
 #ifdef CONFIG_KALLSYMS
@@ -662,8 +662,6 @@ unsigned long get_wchan(struct task_struct *task)
 	unsigned long ra = 0;
 #endif
 
-	if (!task || task == current || task_is_running(task))
-		goto out;
 	if (!task_stack_page(task))
 		goto out;
 
diff --git a/arch/nds32/include/asm/processor.h b/arch/nds32/include/asm/processor.h
index b82369c7659d4..e6bfc74972bb3 100644
--- a/arch/nds32/include/asm/processor.h
+++ b/arch/nds32/include/asm/processor.h
@@ -83,7 +83,7 @@ extern struct task_struct *last_task_used_math;
 /* Prepare to copy thread state - unlazy all lazy status */
 #define prepare_to_copy(tsk)	do { } while (0)
 
-unsigned long get_wchan(struct task_struct *p);
+unsigned long __get_wchan(struct task_struct *p);
 
 #define cpu_relax()			barrier()
 
diff --git a/arch/nds32/kernel/process.c b/arch/nds32/kernel/process.c
index 391895b54d13c..49fab9e39cbff 100644
--- a/arch/nds32/kernel/process.c
+++ b/arch/nds32/kernel/process.c
@@ -233,15 +233,12 @@ int dump_fpu(struct pt_regs *regs, elf_fpregset_t * fpu)
 
 EXPORT_SYMBOL(dump_fpu);
 
-unsigned long get_wchan(struct task_struct *p)
+unsigned long __get_wchan(struct task_struct *p)
 {
 	unsigned long fp, lr;
 	unsigned long stack_start, stack_end;
 	int count = 0;
 
-	if (!p || p == current || task_is_running(p))
-		return 0;
-
 	if (IS_ENABLED(CONFIG_FRAME_POINTER)) {
 		stack_start = (unsigned long)end_of_stack(p);
 		stack_end = (unsigned long)task_stack_page(p) + THREAD_SIZE;
@@ -258,5 +255,3 @@ unsigned long get_wchan(struct task_struct *p)
 	}
 	return 0;
 }
-
-EXPORT_SYMBOL(get_wchan);
diff --git a/arch/nios2/include/asm/processor.h b/arch/nios2/include/asm/processor.h
index 94bcb86f679f5..b8125dfbcad2d 100644
--- a/arch/nios2/include/asm/processor.h
+++ b/arch/nios2/include/asm/processor.h
@@ -69,7 +69,7 @@ static inline void release_thread(struct task_struct *dead_task)
 {
 }
 
-extern unsigned long get_wchan(struct task_struct *p);
+extern unsigned long __get_wchan(struct task_struct *p);
 
 #define task_pt_regs(p) \
 	((struct pt_regs *)(THREAD_SIZE + task_stack_page(p)) - 1)
diff --git a/arch/nios2/kernel/process.c b/arch/nios2/kernel/process.c
index 9ff37ba2bb603..f8ea522a15880 100644
--- a/arch/nios2/kernel/process.c
+++ b/arch/nios2/kernel/process.c
@@ -217,15 +217,12 @@ void dump(struct pt_regs *fp)
 	pr_emerg("\n\n");
 }
 
-unsigned long get_wchan(struct task_struct *p)
+unsigned long __get_wchan(struct task_struct *p)
 {
 	unsigned long fp, pc;
 	unsigned long stack_page;
 	int count = 0;
 
-	if (!p || p == current || task_is_running(p))
-		return 0;
-
 	stack_page = (unsigned long)p;
 	fp = ((struct switch_stack *)p->thread.ksp)->fp;	/* ;dgt2 */
 	do {
diff --git a/arch/openrisc/include/asm/processor.h b/arch/openrisc/include/asm/processor.h
index ad53b31848859..aa1699c18add8 100644
--- a/arch/openrisc/include/asm/processor.h
+++ b/arch/openrisc/include/asm/processor.h
@@ -73,7 +73,7 @@ struct thread_struct {
 
 void start_thread(struct pt_regs *regs, unsigned long nip, unsigned long sp);
 void release_thread(struct task_struct *);
-unsigned long get_wchan(struct task_struct *p);
+unsigned long __get_wchan(struct task_struct *p);
 
 #define cpu_relax()     barrier()
 
diff --git a/arch/openrisc/kernel/process.c b/arch/openrisc/kernel/process.c
index b0698d9ce14fa..3c0c91bcdcbaa 100644
--- a/arch/openrisc/kernel/process.c
+++ b/arch/openrisc/kernel/process.c
@@ -263,7 +263,7 @@ void dump_elf_thread(elf_greg_t *dest, struct pt_regs* regs)
 	dest[35] = 0;
 }
 
-unsigned long get_wchan(struct task_struct *p)
+unsigned long __get_wchan(struct task_struct *p)
 {
 	/* TODO */
 
diff --git a/arch/parisc/include/asm/processor.h b/arch/parisc/include/asm/processor.h
index eeb7da0642891..85a2dbfe52787 100644
--- a/arch/parisc/include/asm/processor.h
+++ b/arch/parisc/include/asm/processor.h
@@ -273,7 +273,7 @@ struct mm_struct;
 /* Free all resources held by a thread. */
 extern void release_thread(struct task_struct *);
 
-extern unsigned long get_wchan(struct task_struct *p);
+extern unsigned long __get_wchan(struct task_struct *p);
 
 #define KSTK_EIP(tsk)	((tsk)->thread.regs.iaoq[0])
 #define KSTK_ESP(tsk)	((tsk)->thread.regs.gr[30])
diff --git a/arch/parisc/kernel/process.c b/arch/parisc/kernel/process.c
index 38ec4ae812396..4f562dee65a2c 100644
--- a/arch/parisc/kernel/process.c
+++ b/arch/parisc/kernel/process.c
@@ -240,15 +240,12 @@ copy_thread(unsigned long clone_flags, unsigned long usp,
 }
 
 unsigned long
-get_wchan(struct task_struct *p)
+__get_wchan(struct task_struct *p)
 {
 	struct unwind_frame_info info;
 	unsigned long ip;
 	int count = 0;
 
-	if (!p || p == current || task_is_running(p))
-		return 0;
-
 	/*
 	 * These bracket the sleeping functions..
 	 */
diff --git a/arch/powerpc/include/asm/processor.h b/arch/powerpc/include/asm/processor.h
index f348e564f7dd5..e39bd0ff69f3a 100644
--- a/arch/powerpc/include/asm/processor.h
+++ b/arch/powerpc/include/asm/processor.h
@@ -300,7 +300,7 @@ struct thread_struct {
 
 #define task_pt_regs(tsk)	((tsk)->thread.regs)
 
-unsigned long get_wchan(struct task_struct *p);
+unsigned long __get_wchan(struct task_struct *p);
 
 #define KSTK_EIP(tsk)  ((tsk)->thread.regs? (tsk)->thread.regs->nip: 0)
 #define KSTK_ESP(tsk)  ((tsk)->thread.regs? (tsk)->thread.regs->gpr[1]: 0)
diff --git a/arch/powerpc/kernel/process.c b/arch/powerpc/kernel/process.c
index 50436b52c2133..406d7ee9e3220 100644
--- a/arch/powerpc/kernel/process.c
+++ b/arch/powerpc/kernel/process.c
@@ -2111,14 +2111,11 @@ int validate_sp(unsigned long sp, struct task_struct *p,
 
 EXPORT_SYMBOL(validate_sp);
 
-static unsigned long __get_wchan(struct task_struct *p)
+static unsigned long ___get_wchan(struct task_struct *p)
 {
 	unsigned long ip, sp;
 	int count = 0;
 
-	if (!p || p == current || task_is_running(p))
-		return 0;
-
 	sp = p->thread.ksp;
 	if (!validate_sp(sp, p, STACK_FRAME_OVERHEAD))
 		return 0;
@@ -2137,14 +2134,14 @@ static unsigned long __get_wchan(struct task_struct *p)
 	return 0;
 }
 
-unsigned long get_wchan(struct task_struct *p)
+unsigned long __get_wchan(struct task_struct *p)
 {
 	unsigned long ret;
 
 	if (!try_get_task_stack(p))
 		return 0;
 
-	ret = __get_wchan(p);
+	ret = ___get_wchan(p);
 
 	put_task_stack(p);
 
diff --git a/arch/riscv/include/asm/processor.h b/arch/riscv/include/asm/processor.h
index 46b492c78cbbf..0749924d9e552 100644
--- a/arch/riscv/include/asm/processor.h
+++ b/arch/riscv/include/asm/processor.h
@@ -66,7 +66,7 @@ static inline void release_thread(struct task_struct *dead_task)
 {
 }
 
-extern unsigned long get_wchan(struct task_struct *p);
+extern unsigned long __get_wchan(struct task_struct *p);
 
 
 static inline void wait_for_interrupt(void)
diff --git a/arch/riscv/kernel/stacktrace.c b/arch/riscv/kernel/stacktrace.c
index 315db3d0229bf..0fcdc0233faca 100644
--- a/arch/riscv/kernel/stacktrace.c
+++ b/arch/riscv/kernel/stacktrace.c
@@ -128,16 +128,14 @@ static bool save_wchan(void *arg, unsigned long pc)
 	return true;
 }
 
-unsigned long get_wchan(struct task_struct *task)
+unsigned long __get_wchan(struct task_struct *task)
 {
 	unsigned long pc = 0;
 
-	if (likely(task && task != current && !task_is_running(task))) {
-		if (!try_get_task_stack(task))
-			return 0;
-		walk_stackframe(task, NULL, save_wchan, &pc);
-		put_task_stack(task);
-	}
+	if (!try_get_task_stack(task))
+		return 0;
+	walk_stackframe(task, NULL, save_wchan, &pc);
+	put_task_stack(task);
 	return pc;
 }
 
diff --git a/arch/s390/include/asm/processor.h b/arch/s390/include/asm/processor.h
index 879b8e3f609cd..f54c152bf2bf9 100644
--- a/arch/s390/include/asm/processor.h
+++ b/arch/s390/include/asm/processor.h
@@ -192,7 +192,7 @@ static inline void release_thread(struct task_struct *tsk) { }
 void guarded_storage_release(struct task_struct *tsk);
 void gs_load_bc_cb(struct pt_regs *regs);
 
-unsigned long get_wchan(struct task_struct *p);
+unsigned long __get_wchan(struct task_struct *p);
 #define task_pt_regs(tsk) ((struct pt_regs *) \
         (task_stack_page(tsk) + THREAD_SIZE) - 1)
 #define KSTK_EIP(tsk)	(task_pt_regs(tsk)->psw.addr)
diff --git a/arch/s390/kernel/process.c b/arch/s390/kernel/process.c
index 350e94d0cac23..e5dd46b1bff8c 100644
--- a/arch/s390/kernel/process.c
+++ b/arch/s390/kernel/process.c
@@ -181,12 +181,12 @@ void execve_tail(void)
 	asm volatile("sfpc %0" : : "d" (0));
 }
 
-unsigned long get_wchan(struct task_struct *p)
+unsigned long __get_wchan(struct task_struct *p)
 {
 	struct unwind_state state;
 	unsigned long ip = 0;
 
-	if (!p || p == current || task_is_running(p) || !task_stack_page(p))
+	if (!task_stack_page(p))
 		return 0;
 
 	if (!try_get_task_stack(p))
diff --git a/arch/sh/include/asm/processor_32.h b/arch/sh/include/asm/processor_32.h
index aa92cc933889d..45240ec6b85a4 100644
--- a/arch/sh/include/asm/processor_32.h
+++ b/arch/sh/include/asm/processor_32.h
@@ -180,7 +180,7 @@ static inline void show_code(struct pt_regs *regs)
 }
 #endif
 
-extern unsigned long get_wchan(struct task_struct *p);
+extern unsigned long __get_wchan(struct task_struct *p);
 
 #define KSTK_EIP(tsk)  (task_pt_regs(tsk)->pc)
 #define KSTK_ESP(tsk)  (task_pt_regs(tsk)->regs[15])
diff --git a/arch/sh/kernel/process_32.c b/arch/sh/kernel/process_32.c
index 717de05c81f49..1c28e3cddb60d 100644
--- a/arch/sh/kernel/process_32.c
+++ b/arch/sh/kernel/process_32.c
@@ -182,13 +182,10 @@ __switch_to(struct task_struct *prev, struct task_struct *next)
 	return prev;
 }
 
-unsigned long get_wchan(struct task_struct *p)
+unsigned long __get_wchan(struct task_struct *p)
 {
 	unsigned long pc;
 
-	if (!p || p == current || task_is_running(p))
-		return 0;
-
 	/*
 	 * The same comment as on the Alpha applies here, too ...
 	 */
diff --git a/arch/sparc/include/asm/processor_32.h b/arch/sparc/include/asm/processor_32.h
index b6242f7771e9e..647bf0ac7beb9 100644
--- a/arch/sparc/include/asm/processor_32.h
+++ b/arch/sparc/include/asm/processor_32.h
@@ -89,7 +89,7 @@ static inline void start_thread(struct pt_regs * regs, unsigned long pc,
 /* Free all resources held by a thread. */
 #define release_thread(tsk)		do { } while(0)
 
-unsigned long get_wchan(struct task_struct *);
+unsigned long __get_wchan(struct task_struct *);
 
 #define task_pt_regs(tsk) ((tsk)->thread.kregs)
 #define KSTK_EIP(tsk)  ((tsk)->thread.kregs->pc)
diff --git a/arch/sparc/include/asm/processor_64.h b/arch/sparc/include/asm/processor_64.h
index 5cf145f18f36b..ae851e8fce4c9 100644
--- a/arch/sparc/include/asm/processor_64.h
+++ b/arch/sparc/include/asm/processor_64.h
@@ -183,7 +183,7 @@ do { \
 /* Free all resources held by a thread. */
 #define release_thread(tsk)		do { } while (0)
 
-unsigned long get_wchan(struct task_struct *task);
+unsigned long __get_wchan(struct task_struct *task);
 
 #define task_pt_regs(tsk) (task_thread_info(tsk)->kregs)
 #define KSTK_EIP(tsk)  (task_pt_regs(tsk)->tpc)
diff --git a/arch/sparc/kernel/process_32.c b/arch/sparc/kernel/process_32.c
index bbbe0cfef7465..2dc0bf9fe62eb 100644
--- a/arch/sparc/kernel/process_32.c
+++ b/arch/sparc/kernel/process_32.c
@@ -365,7 +365,7 @@ int copy_thread(unsigned long clone_flags, unsigned long sp, unsigned long arg,
 	return 0;
 }
 
-unsigned long get_wchan(struct task_struct *task)
+unsigned long __get_wchan(struct task_struct *task)
 {
 	unsigned long pc, fp, bias = 0;
 	unsigned long task_base = (unsigned long) task;
@@ -373,9 +373,6 @@ unsigned long get_wchan(struct task_struct *task)
 	struct reg_window32 *rw;
 	int count = 0;
 
-	if (!task || task == current || task_is_running(task))
-		goto out;
-
 	fp = task_thread_info(task)->ksp + bias;
 	do {
 		/* Bogus frame pointer? */
diff --git a/arch/sparc/kernel/process_64.c b/arch/sparc/kernel/process_64.c
index d1cc410d2f647..f5b2cac8669f9 100644
--- a/arch/sparc/kernel/process_64.c
+++ b/arch/sparc/kernel/process_64.c
@@ -663,7 +663,7 @@ int arch_dup_task_struct(struct task_struct *dst, struct task_struct *src)
 	return 0;
 }
 
-unsigned long get_wchan(struct task_struct *task)
+unsigned long __get_wchan(struct task_struct *task)
 {
 	unsigned long pc, fp, bias = 0;
 	struct thread_info *tp;
@@ -671,9 +671,6 @@ unsigned long get_wchan(struct task_struct *task)
         unsigned long ret = 0;
 	int count = 0; 
 
-	if (!task || task == current || task_is_running(task))
-		goto out;
-
 	tp = task_thread_info(task);
 	bias = STACK_BIAS;
 	fp = task_thread_info(task)->ksp + bias;
diff --git a/arch/um/include/asm/processor-generic.h b/arch/um/include/asm/processor-generic.h
index b5cf0ed116d9e..579692a40a556 100644
--- a/arch/um/include/asm/processor-generic.h
+++ b/arch/um/include/asm/processor-generic.h
@@ -106,6 +106,6 @@ extern struct cpuinfo_um boot_cpu_data;
 #define cache_line_size()	(boot_cpu_data.cache_alignment)
 
 #define KSTK_REG(tsk, reg) get_thread_reg(reg, &tsk->thread.switch_buf)
-extern unsigned long get_wchan(struct task_struct *p);
+extern unsigned long __get_wchan(struct task_struct *p);
 
 #endif
diff --git a/arch/um/kernel/process.c b/arch/um/kernel/process.c
index 457a38db368b7..82107373ac7e9 100644
--- a/arch/um/kernel/process.c
+++ b/arch/um/kernel/process.c
@@ -364,14 +364,11 @@ unsigned long arch_align_stack(unsigned long sp)
 }
 #endif
 
-unsigned long get_wchan(struct task_struct *p)
+unsigned long __get_wchan(struct task_struct *p)
 {
 	unsigned long stack_page, sp, ip;
 	bool seen_sched = 0;
 
-	if ((p == NULL) || (p == current) || task_is_running(p))
-		return 0;
-
 	stack_page = (unsigned long) task_stack_page(p);
 	/* Bail if the process has no kernel stack for some reason */
 	if (stack_page == 0)
diff --git a/arch/x86/include/asm/processor.h b/arch/x86/include/asm/processor.h
index 577f342dbfb27..2b5f6c6c2b322 100644
--- a/arch/x86/include/asm/processor.h
+++ b/arch/x86/include/asm/processor.h
@@ -590,7 +590,7 @@ static inline void load_sp0(unsigned long sp0)
 /* Free all resources held by a thread. */
 extern void release_thread(struct task_struct *);
 
-unsigned long get_wchan(struct task_struct *p);
+unsigned long __get_wchan(struct task_struct *p);
 
 /*
  * Generic CPUID function
diff --git a/arch/x86/kernel/process.c b/arch/x86/kernel/process.c
index cd426c3283ee1..266962547b58c 100644
--- a/arch/x86/kernel/process.c
+++ b/arch/x86/kernel/process.c
@@ -943,13 +943,10 @@ unsigned long arch_randomize_brk(struct mm_struct *mm)
  * because the task might wake up and we might look at a stack
  * changing under us.
  */
-unsigned long get_wchan(struct task_struct *p)
+unsigned long __get_wchan(struct task_struct *p)
 {
 	unsigned long entry = 0;
 
-	if (p == current || task_is_running(p))
-		return 0;
-
 	stack_trace_save_tsk(p, &entry, 1, 0);
 	return entry;
 }
diff --git a/arch/xtensa/include/asm/processor.h b/arch/xtensa/include/asm/processor.h
index 7f63aca6a0d34..ad15fbc572838 100644
--- a/arch/xtensa/include/asm/processor.h
+++ b/arch/xtensa/include/asm/processor.h
@@ -215,7 +215,7 @@ struct mm_struct;
 /* Free all resources held by a thread. */
 #define release_thread(thread) do { } while(0)
 
-extern unsigned long get_wchan(struct task_struct *p);
+extern unsigned long __get_wchan(struct task_struct *p);
 
 #define KSTK_EIP(tsk)		(task_pt_regs(tsk)->pc)
 #define KSTK_ESP(tsk)		(task_pt_regs(tsk)->areg[1])
diff --git a/arch/xtensa/kernel/process.c b/arch/xtensa/kernel/process.c
index 0601653406123..47f933fed8700 100644
--- a/arch/xtensa/kernel/process.c
+++ b/arch/xtensa/kernel/process.c
@@ -298,15 +298,12 @@ int copy_thread(unsigned long clone_flags, unsigned long usp_thread_fn,
  * These bracket the sleeping functions..
  */
 
-unsigned long get_wchan(struct task_struct *p)
+unsigned long __get_wchan(struct task_struct *p)
 {
 	unsigned long sp, pc;
 	unsigned long stack_page = (unsigned long) task_stack_page(p);
 	int count = 0;
 
-	if (!p || p == current || task_is_running(p))
-		return 0;
-
 	sp = p->thread.sp;
 	pc = MAKE_PC_FROM_RA(p->thread.ra, p->thread.sp);
 
diff --git a/include/linux/sched.h b/include/linux/sched.h
index c1a927ddec646..71b012a224e4c 100644
--- a/include/linux/sched.h
+++ b/include/linux/sched.h
@@ -2137,6 +2137,7 @@ static inline void set_task_cpu(struct task_struct *p, unsigned int cpu)
 #endif /* CONFIG_SMP */
 
 extern bool sched_task_on_rq(struct task_struct *p);
+extern unsigned long get_wchan(struct task_struct *p);
 
 /*
  * In order to reduce various lock holder preemption latencies provide an
diff --git a/kernel/sched/core.c b/kernel/sched/core.c
index aea60eae21a7f..d37f959ed1ab8 100644
--- a/kernel/sched/core.c
+++ b/kernel/sched/core.c
@@ -1962,6 +1962,25 @@ bool sched_task_on_rq(struct task_struct *p)
 	return task_on_rq_queued(p);
 }
 
+unsigned long get_wchan(struct task_struct *p)
+{
+	unsigned long ip = 0;
+	unsigned int state;
+
+	if (!p || p == current)
+		return 0;
+
+	/* Only get wchan if task is blocked and we can keep it that way. */
+	raw_spin_lock_irq(&p->pi_lock);
+	state = READ_ONCE(p->__state);
+	smp_rmb(); /* see try_to_wake_up() */
+	if (state != TASK_RUNNING && state != TASK_WAKING && !p->on_rq)
+		ip = __get_wchan(p);
+	raw_spin_unlock_irq(&p->pi_lock);
+
+	return ip;
+}
+
 static inline void enqueue_task(struct rq *rq, struct task_struct *p, int flags)
 {
 	if (!(flags & ENQUEUE_NOCLOCK))
-- 
2.33.0




  parent reply	other threads:[~2021-11-15 23:47 UTC|newest]

Thread overview: 945+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-11-15 16:51 [PATCH 5.15 000/917] 5.15.3-rc1 review Greg Kroah-Hartman
2021-11-15 16:51 ` [PATCH 5.15 001/917] xhci: Fix USB 3.1 enumeration issues by increasing roothub power-on-good delay Greg Kroah-Hartman
2021-11-15 16:51 ` [PATCH 5.15 002/917] usb: xhci: Enable runtime-pm by default on AMD Yellow Carp platform Greg Kroah-Hartman
2021-11-15 16:51 ` [PATCH 5.15 003/917] Input: iforce - fix control-message timeout Greg Kroah-Hartman
2021-11-15 16:51 ` [PATCH 5.15 004/917] Input: elantench - fix misreporting trackpoint coordinates Greg Kroah-Hartman
2021-11-15 16:51 ` [PATCH 5.15 005/917] Input: i8042 - Add quirk for Fujitsu Lifebook T725 Greg Kroah-Hartman
2021-11-15 16:51 ` [PATCH 5.15 006/917] libata: fix read log timeout value Greg Kroah-Hartman
2021-11-15 16:51 ` [PATCH 5.15 007/917] ocfs2: fix data corruption on truncate Greg Kroah-Hartman
2021-11-15 16:51 ` [PATCH 5.15 008/917] scsi: scsi_ioctl: Validate command size Greg Kroah-Hartman
2021-11-15 16:51 ` [PATCH 5.15 009/917] scsi: core: Avoid leaving shost->last_reset with stale value if EH does not run Greg Kroah-Hartman
2021-11-15 16:51 ` [PATCH 5.15 010/917] scsi: core: Remove command size deduction from scsi_setup_scsi_cmnd() Greg Kroah-Hartman
2021-11-15 16:51 ` [PATCH 5.15 011/917] scsi: lpfc: Dont release final kref on Fport node while ABTS outstanding Greg Kroah-Hartman
2021-11-15 16:51 ` [PATCH 5.15 012/917] scsi: lpfc: Fix FCP I/O flush functionality for TMF routines Greg Kroah-Hartman
2021-11-15 16:51 ` [PATCH 5.15 013/917] scsi: qla2xxx: Fix crash in NVMe abort path Greg Kroah-Hartman
2021-11-15 16:51 ` [PATCH 5.15 014/917] scsi: qla2xxx: Fix kernel crash when accessing port_speed sysfs file Greg Kroah-Hartman
2021-11-15 16:51 ` [PATCH 5.15 015/917] scsi: qla2xxx: Fix use after free in eh_abort path Greg Kroah-Hartman
2021-11-15 16:51 ` [PATCH 5.15 016/917] ce/gf100: fix incorrect CE0 address calculation on some GPUs Greg Kroah-Hartman
2021-11-15 16:51 ` [PATCH 5.15 017/917] char: xillybus: fix msg_ep UAF in xillyusb_probe() Greg Kroah-Hartman
2021-11-15 16:51 ` [PATCH 5.15 018/917] mmc: mtk-sd: Add wait dma stop done flow Greg Kroah-Hartman
2021-11-15 16:51 ` [PATCH 5.15 019/917] mmc: dw_mmc: Dont wait for DRTO on Write RSP error Greg Kroah-Hartman
2021-11-15 16:51 ` [PATCH 5.15 020/917] exfat: fix incorrect loading of i_blocks for large files Greg Kroah-Hartman
2021-11-15 16:51 ` [PATCH 5.15 021/917] io-wq: remove worker to owner tw dependency Greg Kroah-Hartman
2021-11-15 16:51 ` [PATCH 5.15 022/917] parisc: Fix set_fixmap() on PA1.x CPUs Greg Kroah-Hartman
2021-11-15 16:51 ` [PATCH 5.15 023/917] parisc: Fix ptrace check on syscall return Greg Kroah-Hartman
2021-11-15 16:51 ` [PATCH 5.15 024/917] tpm: Check for integer overflow in tpm2_map_response_body() Greg Kroah-Hartman
2021-11-15 16:52 ` [PATCH 5.15 025/917] firmware/psci: fix application of sizeof to pointer Greg Kroah-Hartman
2021-11-15 16:52 ` [PATCH 5.15 026/917] crypto: s5p-sss - Add error handling in s5p_aes_probe() Greg Kroah-Hartman
2021-11-15 16:52 ` [PATCH 5.15 027/917] media: rkvdec: Do not override sizeimage for output format Greg Kroah-Hartman
2021-11-15 16:52 ` [PATCH 5.15 028/917] media: ite-cir: IR receiver stop working after receive overflow Greg Kroah-Hartman
2021-11-15 16:52 ` [PATCH 5.15 029/917] media: rkvdec: Support dynamic resolution changes Greg Kroah-Hartman
2021-11-15 16:52 ` [PATCH 5.15 030/917] media: ir-kbd-i2c: improve responsiveness of hauppauge zilog receivers Greg Kroah-Hartman
2021-11-15 16:52 ` [PATCH 5.15 031/917] media: v4l2-ioctl: Fix check_ext_ctrls Greg Kroah-Hartman
2021-11-15 16:52 ` [PATCH 5.15 032/917] ALSA: hda/realtek: Fix mic mute LED for the HP Spectre x360 14 Greg Kroah-Hartman
2021-11-15 16:52 ` [PATCH 5.15 033/917] ALSA: hda/realtek: Add a quirk for HP OMEN 15 mute LED Greg Kroah-Hartman
2021-11-15 16:52 ` [PATCH 5.15 034/917] ALSA: hda/realtek: Add quirk for Clevo PC70HS Greg Kroah-Hartman
2021-11-15 16:52 ` [PATCH 5.15 035/917] ALSA: hda/realtek: Headset fixup for Clevo NH77HJQ Greg Kroah-Hartman
2021-11-15 16:52 ` [PATCH 5.15 036/917] ALSA: hda/realtek: Add a quirk for Acer Spin SP513-54N Greg Kroah-Hartman
2021-11-15 16:52 ` [PATCH 5.15 037/917] ALSA: hda/realtek: Add quirk for ASUS UX550VE Greg Kroah-Hartman
2021-11-15 16:52 ` [PATCH 5.15 038/917] ALSA: hda/realtek: Add quirk for HP EliteBook 840 G7 mute LED Greg Kroah-Hartman
2021-11-15 16:52 ` [PATCH 5.15 039/917] ALSA: ua101: fix division by zero at probe Greg Kroah-Hartman
2021-11-15 16:52 ` [PATCH 5.15 040/917] ALSA: 6fire: fix control and bulk message timeouts Greg Kroah-Hartman
2021-11-15 16:52 ` [PATCH 5.15 041/917] ALSA: line6: fix control and interrupt " Greg Kroah-Hartman
2021-11-15 16:52 ` [PATCH 5.15 042/917] ALSA: mixer: oss: Fix racy access to slots Greg Kroah-Hartman
2021-11-15 16:52 ` [PATCH 5.15 043/917] ALSA: mixer: fix deadlock in snd_mixer_oss_set_volume Greg Kroah-Hartman
2021-11-15 16:52 ` [PATCH 5.15 044/917] ALSA: usb-audio: Line6 HX-Stomp XL USB_ID for 48k-fixed quirk Greg Kroah-Hartman
2021-11-15 16:52 ` [PATCH 5.15 045/917] ALSA: usb-audio: Add registration quirk for JBL Quantum 400 Greg Kroah-Hartman
2021-11-15 16:52 ` [PATCH 5.15 046/917] ALSA: hda: Free card instance properly at probe errors Greg Kroah-Hartman
2021-11-15 16:52 ` [PATCH 5.15 047/917] ALSA: synth: missing check for possible NULL after the call to kstrdup Greg Kroah-Hartman
2021-11-15 16:52 ` [PATCH 5.15 048/917] ALSA: pci: rme: Fix unaligned buffer addresses Greg Kroah-Hartman
2021-11-15 16:52 ` [PATCH 5.15 049/917] ALSA: PCM: Fix NULL dereference at mmap checks Greg Kroah-Hartman
2021-11-15 16:52 ` [PATCH 5.15 050/917] ALSA: timer: Fix use-after-free problem Greg Kroah-Hartman
2021-11-15 16:52 ` [PATCH 5.15 051/917] ALSA: timer: Unconditionally unlink slave instances, too Greg Kroah-Hartman
2021-11-15 16:52 ` [PATCH 5.15 052/917] Revert "ext4: enforce buffer head state assertion in ext4_da_map_blocks" Greg Kroah-Hartman
2021-11-15 16:52 ` [PATCH 5.15 053/917] ext4: fix lazy initialization next schedule time computation in more granular unit Greg Kroah-Hartman
2021-11-15 16:52 ` [PATCH 5.15 054/917] ext4: ensure enough credits in ext4_ext_shift_path_extents Greg Kroah-Hartman
2021-11-15 16:52 ` [PATCH 5.15 055/917] ext4: refresh the ext4_ext_path struct after dropping i_data_sem Greg Kroah-Hartman
2021-11-15 16:52 ` [PATCH 5.15 056/917] fuse: fix page stealing Greg Kroah-Hartman
2021-11-23 18:28   ` Justin Forbes
2021-11-23 19:22     ` Miklos Szeredi
2021-11-24  0:40       ` Justin Forbes
2021-11-24  9:23         ` Miklos Szeredi
2021-11-24 18:04           ` Justin Forbes
2021-11-15 16:52 ` [PATCH 5.15 057/917] x86/sme: Use #define USE_EARLY_PGTABLE_L5 in mem_encrypt_identity.c Greg Kroah-Hartman
2021-11-15 16:52 ` [PATCH 5.15 058/917] x86/cpu: Fix migration safety with X86_BUG_NULL_SEL Greg Kroah-Hartman
2021-11-15 16:52 ` [PATCH 5.15 059/917] x86/irq: Ensure PI wakeup handler is unregistered before module unload Greg Kroah-Hartman
2021-11-15 16:52 ` [PATCH 5.15 060/917] x86/iopl: Fake iopl(3) CLI/STI usage Greg Kroah-Hartman
2021-11-15 16:52 ` [PATCH 5.15 061/917] btrfs: clear MISSING device status bit in btrfs_close_one_device Greg Kroah-Hartman
2021-11-15 16:52 ` [PATCH 5.15 062/917] btrfs: fix lost error handling when replaying directory deletes Greg Kroah-Hartman
2021-11-15 16:52 ` [PATCH 5.15 063/917] btrfs: call btrfs_check_rw_degradable only if there is a missing device Greg Kroah-Hartman
2021-11-15 16:52 ` [PATCH 5.15 064/917] KVM: x86/mmu: Drop a redundant, broken remote TLB flush Greg Kroah-Hartman
2021-11-15 16:52 ` [PATCH 5.15 065/917] KVM: VMX: Unregister posted interrupt wakeup handler on hardware unsetup Greg Kroah-Hartman
2021-11-15 16:52 ` [PATCH 5.15 066/917] powerpc/kvm: Fix kvm_use_magic_page Greg Kroah-Hartman
2021-11-15 16:52 ` [PATCH 5.15 067/917] KVM: PPC: Tick accounting should defer vtime accounting til after IRQ handling Greg Kroah-Hartman
2021-11-15 16:52 ` [PATCH 5.15 068/917] ia64: kprobes: Fix to pass correct trampoline address to the handler Greg Kroah-Hartman
2021-11-15 16:52 ` [PATCH 5.15 069/917] selinux: fix race condition when computing ocontext SIDs Greg Kroah-Hartman
2021-11-15 16:52 ` [PATCH 5.15 070/917] ipmi:watchdog: Set panic count to proper value on a panic Greg Kroah-Hartman
2021-11-15 16:52 ` [PATCH 5.15 071/917] md/raid1: only allocate write behind bio for WriteMostly device Greg Kroah-Hartman
2021-11-15 16:52 ` [PATCH 5.15 072/917] hwmon: (pmbus/lm25066) Add offset coefficients Greg Kroah-Hartman
2021-11-15 16:52 ` [PATCH 5.15 073/917] regulator: s5m8767: do not use reset value as DVS voltage if GPIO DVS is disabled Greg Kroah-Hartman
2021-11-15 16:52 ` [PATCH 5.15 074/917] regulator: dt-bindings: samsung,s5m8767: correct s5m8767,pmic-buck-default-dvs-idx property Greg Kroah-Hartman
2021-11-15 16:52 ` [PATCH 5.15 075/917] EDAC/sb_edac: Fix top-of-high-memory value for Broadwell/Haswell Greg Kroah-Hartman
2021-11-15 16:52 ` [PATCH 5.15 076/917] mwifiex: fix division by zero in fw download path Greg Kroah-Hartman
2021-11-15 16:52 ` [PATCH 5.15 077/917] ath6kl: fix division by zero in send path Greg Kroah-Hartman
2021-11-15 16:52 ` [PATCH 5.15 078/917] ath6kl: fix control-message timeout Greg Kroah-Hartman
2021-11-15 16:52 ` [PATCH 5.15 079/917] ath10k: " Greg Kroah-Hartman
2021-11-15 16:52 ` [PATCH 5.15 080/917] ath10k: fix division by zero in send path Greg Kroah-Hartman
2021-11-15 16:52 ` [PATCH 5.15 081/917] PCI: Mark Atheros QCA6174 to avoid bus reset Greg Kroah-Hartman
2021-11-15 16:52 ` [PATCH 5.15 082/917] rtl8187: fix control-message timeouts Greg Kroah-Hartman
2021-11-15 16:52 ` [PATCH 5.15 083/917] evm: mark evm_fixmode as __ro_after_init Greg Kroah-Hartman
2021-11-15 16:52 ` [PATCH 5.15 084/917] ifb: Depend on netfilter alternatively to tc Greg Kroah-Hartman
2021-11-15 16:53 ` [PATCH 5.15 085/917] platform/surface: aggregator_registry: Add support for Surface Laptop Studio Greg Kroah-Hartman
2021-11-15 16:53 ` [PATCH 5.15 086/917] mt76: mt7615: fix skb use-after-free on mac reset Greg Kroah-Hartman
2021-11-15 16:53 ` [PATCH 5.15 087/917] HID: surface-hid: Use correct event registry for managing HID events Greg Kroah-Hartman
2021-11-15 16:53 ` [PATCH 5.15 088/917] HID: surface-hid: Allow driver matching for target ID 1 devices Greg Kroah-Hartman
2021-11-15 16:53 ` [PATCH 5.15 089/917] wcn36xx: Fix HT40 capability for 2Ghz band Greg Kroah-Hartman
2021-11-15 16:53 ` [PATCH 5.15 090/917] wcn36xx: Fix tx_status mechanism Greg Kroah-Hartman
2021-11-15 16:53 ` [PATCH 5.15 091/917] wcn36xx: Fix (QoS) null data frame bitrate/modulation Greg Kroah-Hartman
2021-11-15 16:53 ` [PATCH 5.15 092/917] PM: sleep: Do not let "syscore" devices runtime-suspend during system transitions Greg Kroah-Hartman
2021-11-15 16:53 ` [PATCH 5.15 093/917] mwifiex: Read a PCI register after writing the TX ring write pointer Greg Kroah-Hartman
2021-11-15 16:53 ` [PATCH 5.15 094/917] mwifiex: Try waking the firmware until we get an interrupt Greg Kroah-Hartman
2021-11-15 16:53 ` [PATCH 5.15 095/917] libata: fix checking of DMA state Greg Kroah-Hartman
2021-11-15 16:53 ` [PATCH 5.15 096/917] dma-buf: fix and rework dma_buf_poll v7 Greg Kroah-Hartman
2021-11-15 16:53 ` [PATCH 5.15 097/917] wcn36xx: handle connection loss indication Greg Kroah-Hartman
2021-11-15 16:53 ` [PATCH 5.15 098/917] rsi: fix occasional initialisation failure with BT coex Greg Kroah-Hartman
2021-11-15 16:53 ` [PATCH 5.15 099/917] rsi: fix key enabled check causing unwanted encryption for vap_id > 0 Greg Kroah-Hartman
2021-11-15 16:53 ` [PATCH 5.15 100/917] rsi: fix rate mask set leading to P2P failure Greg Kroah-Hartman
2021-11-15 16:53 ` [PATCH 5.15 101/917] rsi: Fix module dev_oper_mode parameter description Greg Kroah-Hartman
2021-11-15 16:53 ` [PATCH 5.15 102/917] perf/x86/intel/uncore: Support extra IMC channel on Ice Lake server Greg Kroah-Hartman
2021-11-15 16:53 ` [PATCH 5.15 103/917] perf/x86/intel/uncore: Fix invalid unit check Greg Kroah-Hartman
2021-11-15 16:53 ` [PATCH 5.15 104/917] perf/x86/intel/uncore: Fix Intel ICX IIO event constraints Greg Kroah-Hartman
2021-11-15 16:53 ` [PATCH 5.15 105/917] RDMA/qedr: Fix NULL deref for query_qp on the GSI QP Greg Kroah-Hartman
2021-11-15 16:53 ` [PATCH 5.15 106/917] ASoC: tegra: Set default card name for Trimslice Greg Kroah-Hartman
2021-11-15 16:53 ` [PATCH 5.15 107/917] ASoC: tegra: Restore AC97 support Greg Kroah-Hartman
2021-11-15 16:53 ` [PATCH 5.15 108/917] signal: Remove the bogus sigkill_pending in ptrace_stop Greg Kroah-Hartman
2021-11-15 16:53 ` [PATCH 5.15 109/917] memory: renesas-rpc-if: Correct QSPI data transfer in Manual mode Greg Kroah-Hartman
2021-11-15 16:53 ` [PATCH 5.15 110/917] signal/mips: Update (_save|_restore)_fp_context to fail with -EFAULT Greg Kroah-Hartman
2021-11-15 16:53 ` [PATCH 5.15 111/917] signal: Add SA_IMMUTABLE to ensure forced siganls do not get changed Greg Kroah-Hartman
2021-11-15 16:53 ` [PATCH 5.15 112/917] soc: samsung: exynos-pmu: Fix compilation when nothing selects CONFIG_MFD_CORE Greg Kroah-Hartman
2021-11-15 16:53 ` [PATCH 5.15 113/917] soc: fsl: dpio: replace smp_processor_id with raw_smp_processor_id Greg Kroah-Hartman
2021-11-15 16:53 ` [PATCH 5.15 114/917] soc: fsl: dpio: use the combined functions to protect critical zone Greg Kroah-Hartman
2021-11-15 16:53 ` [PATCH 5.15 115/917] mtd: rawnand: socrates: Keep the driver compatible with on-die ECC engines Greg Kroah-Hartman
2021-11-15 16:53 ` [PATCH 5.15 116/917] mctp: handle the struct sockaddr_mctp padding fields Greg Kroah-Hartman
2021-11-15 16:53 ` [PATCH 5.15 117/917] power: supply: max17042_battery: Prevent int underflow in set_soc_threshold Greg Kroah-Hartman
2021-11-15 16:53 ` [PATCH 5.15 118/917] power: supply: max17042_battery: use VFSOC for capacity when no rsns Greg Kroah-Hartman
2021-11-15 16:53 ` [PATCH 5.15 119/917] iio: core: fix double free in iio_device_unregister_sysfs() Greg Kroah-Hartman
2021-11-15 16:53 ` [PATCH 5.15 120/917] iio: core: check return value when calling dev_set_name() Greg Kroah-Hartman
2021-11-15 16:53 ` [PATCH 5.15 121/917] KVM: arm64: Extract ESR_ELx.EC only Greg Kroah-Hartman
2021-11-15 16:53 ` [PATCH 5.15 122/917] KVM: x86: Fix recording of guest steal time / preempted status Greg Kroah-Hartman
2021-11-15 16:53 ` [PATCH 5.15 123/917] KVM: x86: Add helper to consolidate core logic of SET_CPUID{2} flows Greg Kroah-Hartman
2021-11-15 16:53 ` [PATCH 5.15 124/917] KVM: nVMX: Query current VMCS when determining if MSR bitmaps are in use Greg Kroah-Hartman
2021-11-15 16:53 ` [PATCH 5.15 125/917] KVM: nVMX: Handle dynamic MSR intercept toggling Greg Kroah-Hartman
2021-11-15 16:53 ` [PATCH 5.15 126/917] can: peak_usb: always ask for BERR reporting for PCAN-USB devices Greg Kroah-Hartman
2021-11-15 16:53 ` [PATCH 5.15 127/917] can: mcp251xfd: mcp251xfd_irq(): add missing can_rx_offload_threaded_irq_finish() in case of bus off Greg Kroah-Hartman
2021-11-15 16:53 ` [PATCH 5.15 128/917] can: j1939: j1939_tp_cmd_recv(): ignore abort message in the BAM transport Greg Kroah-Hartman
2021-11-15 16:53 ` [PATCH 5.15 129/917] can: j1939: j1939_can_recv(): ignore messages with invalid source address Greg Kroah-Hartman
2021-11-15 16:53 ` [PATCH 5.15 130/917] can: j1939: j1939_tp_cmd_recv(): check the dst address of TP.CM_BAM Greg Kroah-Hartman
2021-11-15 16:53 ` [PATCH 5.15 131/917] iio: adc: tsc2046: fix scan interval warning Greg Kroah-Hartman
2021-11-15 16:53 ` [PATCH 5.15 132/917] powerpc/85xx: Fix oops when mpc85xx_smp_guts_ids node cannot be found Greg Kroah-Hartman
2021-11-15 16:53 ` [PATCH 5.15 133/917] io_uring: honour zeroes as io-wq worker limits Greg Kroah-Hartman
2021-11-15 16:53 ` [PATCH 5.15 134/917] ring-buffer: Protect ring_buffer_reset() from reentrancy Greg Kroah-Hartman
2021-11-15 16:53 ` [PATCH 5.15 135/917] serial: core: Fix initializing and restoring termios speed Greg Kroah-Hartman
2021-11-15 16:53 ` [PATCH 5.15 136/917] ifb: fix building without CONFIG_NET_CLS_ACT Greg Kroah-Hartman
2021-11-15 16:53 ` [PATCH 5.15 137/917] xen/balloon: add late_initcall_sync() for initial ballooning done Greg Kroah-Hartman
2021-11-15 16:53 ` [PATCH 5.15 138/917] ovl: fix use after free in struct ovl_aio_req Greg Kroah-Hartman
2021-11-15 16:53 ` [PATCH 5.15 139/917] ovl: fix filattr copy-up failure Greg Kroah-Hartman
2021-11-15 16:53 ` [PATCH 5.15 140/917] PCI: pci-bridge-emul: Fix emulation of W1C bits Greg Kroah-Hartman
2021-11-15 16:53 ` [PATCH 5.15 141/917] PCI: cadence: Add cdns_plat_pcie_probe() missing return Greg Kroah-Hartman
2021-11-15 16:53 ` [PATCH 5.15 142/917] cxl/pci: Fix NULL vs ERR_PTR confusion Greg Kroah-Hartman
2021-11-15 16:53 ` [PATCH 5.15 143/917] PCI: aardvark: Do not clear status bits of masked interrupts Greg Kroah-Hartman
2021-11-15 16:53 ` [PATCH 5.15 144/917] PCI: aardvark: Fix checking for link up via LTSSM state Greg Kroah-Hartman
2021-11-15 16:54 ` [PATCH 5.15 145/917] PCI: aardvark: Do not unmask unused interrupts Greg Kroah-Hartman
2021-11-15 16:54 ` [PATCH 5.15 146/917] PCI: aardvark: Fix reporting Data Link Layer Link Active Greg Kroah-Hartman
2021-11-15 16:54 ` [PATCH 5.15 147/917] PCI: aardvark: Fix configuring Reference clock Greg Kroah-Hartman
2021-11-15 16:54 ` [PATCH 5.15 148/917] PCI: aardvark: Fix return value of MSI domain .alloc() method Greg Kroah-Hartman
2021-11-15 16:54 ` [PATCH 5.15 149/917] PCI: aardvark: Read all 16-bits from PCIE_MSI_PAYLOAD_REG Greg Kroah-Hartman
2021-11-15 16:54 ` [PATCH 5.15 150/917] PCI: aardvark: Fix support for bus mastering and PCI_COMMAND on emulated bridge Greg Kroah-Hartman
2021-11-15 16:54 ` [PATCH 5.15 151/917] PCI: aardvark: Fix support for PCI_BRIDGE_CTL_BUS_RESET " Greg Kroah-Hartman
2021-11-15 16:54 ` [PATCH 5.15 152/917] PCI: aardvark: Set PCI Bridge Class Code to PCI Bridge Greg Kroah-Hartman
2021-11-15 16:54 ` [PATCH 5.15 153/917] PCI: aardvark: Fix support for PCI_ROM_ADDRESS1 on emulated bridge Greg Kroah-Hartman
2021-11-15 16:54 ` [PATCH 5.15 154/917] quota: check block number when reading the block in quota file Greg Kroah-Hartman
2021-11-15 16:54 ` [PATCH 5.15 155/917] quota: correct error number in free_dqentry() Greg Kroah-Hartman
2021-11-15 16:54 ` [PATCH 5.15 156/917] cifs: To match file servers, make sure the server hostname matches Greg Kroah-Hartman
2021-11-15 16:54 ` [PATCH 5.15 157/917] cifs: set a minimum of 120s for next dns resolution Greg Kroah-Hartman
2021-11-15 16:54 ` [PATCH 5.15 158/917] mfd: simple-mfd-i2c: Select MFD_CORE to fix build error Greg Kroah-Hartman
2021-11-15 16:54 ` [PATCH 5.15 159/917] pinctrl: core: fix possible memory leak in pinctrl_enable() Greg Kroah-Hartman
2021-11-15 16:54 ` [PATCH 5.15 160/917] coresight: cti: Correct the parameter for pm_runtime_put Greg Kroah-Hartman
2021-11-15 16:54 ` [PATCH 5.15 161/917] coresight: trbe: Fix incorrect access of the sink specific data Greg Kroah-Hartman
2021-11-15 16:54 ` [PATCH 5.15 162/917] coresight: trbe: Defer the probe on offline CPUs Greg Kroah-Hartman
2021-11-15 16:54 ` [PATCH 5.15 163/917] iio: buffer: check return value of kstrdup_const() Greg Kroah-Hartman
2021-11-15 16:54 ` [PATCH 5.15 164/917] iio: buffer: Fix memory leak in iio_buffers_alloc_sysfs_and_mask() Greg Kroah-Hartman
2021-11-15 16:54 ` [PATCH 5.15 165/917] iio: buffer: Fix memory leak in __iio_buffer_alloc_sysfs_and_mask() Greg Kroah-Hartman
2021-11-15 16:54 ` [PATCH 5.15 166/917] iio: buffer: Fix memory leak in iio_buffer_register_legacy_sysfs_groups() Greg Kroah-Hartman
2021-11-15 16:54 ` [PATCH 5.15 167/917] drivers: iio: dac: ad5766: Fix dt property name Greg Kroah-Hartman
2021-11-15 16:54 ` [PATCH 5.15 168/917] iio: dac: ad5446: Fix ad5622_write() return value Greg Kroah-Hartman
2021-11-15 16:54 ` [PATCH 5.15 169/917] iio: ad5770r: make devicetree property reading consistent Greg Kroah-Hartman
2021-11-15 16:54 ` [PATCH 5.15 170/917] Documentation:devicetree:bindings:iio:dac: Fix val Greg Kroah-Hartman
2021-11-15 16:54 ` [PATCH 5.15 171/917] USB: serial: keyspan: fix memleak on probe errors Greg Kroah-Hartman
2021-11-15 16:54 ` [PATCH 5.15 172/917] serial: 8250: fix racy uartclk update Greg Kroah-Hartman
2021-11-15 16:54 ` [PATCH 5.15 173/917] ksmbd: set unique value to volume serial field in FS_VOLUME_INFORMATION Greg Kroah-Hartman
2021-11-15 16:54 ` [PATCH 5.15 174/917] io-wq: serialize hash clear with wakeup Greg Kroah-Hartman
2021-11-15 16:54 ` [PATCH 5.15 175/917] serial: 8250: Fix reporting real baudrate value in c_ospeed field Greg Kroah-Hartman
2021-11-15 16:54 ` [PATCH 5.15 176/917] Revert "serial: 8250: Fix reporting real baudrate value in c_ospeed field" Greg Kroah-Hartman
2021-11-15 16:54 ` [PATCH 5.15 177/917] most: fix control-message timeouts Greg Kroah-Hartman
2021-11-15 16:54 ` [PATCH 5.15 178/917] USB: iowarrior: " Greg Kroah-Hartman
2021-11-15 16:54 ` [PATCH 5.15 179/917] USB: chipidea: fix interrupt deadlock Greg Kroah-Hartman
2021-11-15 16:54 ` [PATCH 5.15 180/917] power: supply: max17042_battery: Clear status bits in interrupt handler Greg Kroah-Hartman
2021-11-15 16:54 ` [PATCH 5.15 181/917] component: do not leave master devres group open after bind Greg Kroah-Hartman
2021-11-15 16:54 ` [PATCH 5.15 182/917] dma-buf: WARN on dmabuf release with pending attachments Greg Kroah-Hartman
2021-11-15 16:54 ` [PATCH 5.15 183/917] drm: panel-orientation-quirks: Update the Lenovo Ideapad D330 quirk (v2) Greg Kroah-Hartman
2021-11-15 16:54 ` [PATCH 5.15 184/917] drm: panel-orientation-quirks: Add quirk for KD Kurio Smart C15200 2-in-1 Greg Kroah-Hartman
2021-11-15 16:54 ` [PATCH 5.15 185/917] drm: panel-orientation-quirks: Add quirk for the Samsung Galaxy Book 10.6 Greg Kroah-Hartman
2021-11-15 16:54 ` [PATCH 5.15 186/917] Bluetooth: sco: Fix lock_sock() blockage by memcpy_from_msg() Greg Kroah-Hartman
2021-11-15 16:54 ` [PATCH 5.15 187/917] Bluetooth: fix use-after-free error in lock_sock_nested() Greg Kroah-Hartman
2021-11-15 16:54 ` [PATCH 5.15 188/917] Bluetooth: call sock_hold earlier in sco_conn_del Greg Kroah-Hartman
2021-11-15 16:54 ` [PATCH 5.15 189/917] drm/panel-orientation-quirks: add Valve Steam Deck Greg Kroah-Hartman
2021-11-15 16:54 ` [PATCH 5.15 190/917] rcutorture: Avoid problematic critical section nesting on PREEMPT_RT Greg Kroah-Hartman
2021-11-15 16:54 ` [PATCH 5.15 191/917] platform/x86: wmi: do not fail if disabling fails Greg Kroah-Hartman
2021-11-15 16:54 ` [PATCH 5.15 192/917] drm/amdgpu: move iommu_resume before ip init/resume Greg Kroah-Hartman
2021-11-15 16:54 ` [PATCH 5.15 193/917] MIPS: lantiq: dma: add small delay after reset Greg Kroah-Hartman
2021-11-15 16:54 ` [PATCH 5.15 194/917] MIPS: lantiq: dma: reset correct number of channel Greg Kroah-Hartman
2021-11-15 16:54 ` [PATCH 5.15 195/917] locking/lockdep: Avoid RCU-induced noinstr fail Greg Kroah-Hartman
2021-11-15 16:54 ` [PATCH 5.15 196/917] net: sched: update default qdisc visibility after Tx queue cnt changes Greg Kroah-Hartman
2021-11-15 16:54 ` [PATCH 5.15 197/917] ACPI: resources: Add DMI-based legacy IRQ override quirk Greg Kroah-Hartman
2021-11-15 16:54 ` [PATCH 5.15 198/917] rcu-tasks: Move RTGS_WAIT_CBS to beginning of rcu_tasks_kthread() loop Greg Kroah-Hartman
2021-11-15 16:54 ` [PATCH 5.15 199/917] smackfs: Fix use-after-free in netlbl_catmap_walk() Greg Kroah-Hartman
2021-11-15 16:54 ` [PATCH 5.15 200/917] ath11k: Align bss_chan_info structure with firmware Greg Kroah-Hartman
2021-11-15 16:54 ` [PATCH 5.15 201/917] crypto: aesni - check walk.nbytes instead of err Greg Kroah-Hartman
2021-11-15 16:54 ` [PATCH 5.15 202/917] x86/mm/64: Improve stack overflow warnings Greg Kroah-Hartman
2021-11-15 16:54 ` [PATCH 5.15 203/917] x86: Increase exception stack sizes Greg Kroah-Hartman
2021-11-15 16:54 ` [PATCH 5.15 204/917] mwifiex: Run SET_BSS_MODE when changing from P2P to STATION vif-type Greg Kroah-Hartman
2021-11-15 16:55 ` [PATCH 5.15 205/917] mwifiex: Properly initialize private structure on interface type changes Greg Kroah-Hartman
2021-11-15 16:55 ` [PATCH 5.15 206/917] spi: Check we have a spi_device_id for each DT compatible Greg Kroah-Hartman
2021-11-15 16:55 ` [PATCH 5.15 207/917] fscrypt: allow 256-bit master keys with AES-256-XTS Greg Kroah-Hartman
2021-11-15 16:55 ` [PATCH 5.15 208/917] drm/amdgpu: Fix MMIO access page fault Greg Kroah-Hartman
2021-11-15 16:55 ` [PATCH 5.15 209/917] drm/amd/display: Fix null pointer dereference for encoders Greg Kroah-Hartman
2021-11-15 16:55 ` [PATCH 5.15 210/917] crypto: api - Fix built-in testing dependency failures Greg Kroah-Hartman
2021-11-15 16:55 ` [PATCH 5.15 211/917] selftests: net: fib_nexthops: Wait before checking reported idle time Greg Kroah-Hartman
2021-11-15 16:55 ` [PATCH 5.15 212/917] leds: trigger: use RCU to protect the led_cdevs list Greg Kroah-Hartman
2021-11-15 16:55 ` [PATCH 5.15 213/917] ath11k: Avoid reg rules update during firmware recovery Greg Kroah-Hartman
2021-11-15 16:55 ` [PATCH 5.15 214/917] ath11k: add handler for scan event WMI_SCAN_EVENT_DEQUEUED Greg Kroah-Hartman
2021-11-15 16:55 ` [PATCH 5.15 215/917] ath11k: Change DMA_FROM_DEVICE to DMA_TO_DEVICE when map reinjected packets Greg Kroah-Hartman
2021-11-15 16:55 ` [PATCH 5.15 216/917] ath10k: high latency fixes for beacon buffer Greg Kroah-Hartman
2021-11-15 16:55 ` [PATCH 5.15 217/917] octeontx2-pf: Enable promisc/allmulti match MCAM entries Greg Kroah-Hartman
2021-11-15 16:55 ` [PATCH 5.15 218/917] media: mt9p031: Fix corrupted frame after restarting stream Greg Kroah-Hartman
2021-11-15 16:55 ` [PATCH 5.15 219/917] media: netup_unidvb: handle interrupt properly according to the firmware Greg Kroah-Hartman
2021-11-15 16:55 ` [PATCH 5.15 220/917] media: atomisp: Fix error handling in probe Greg Kroah-Hartman
2021-11-15 16:55 ` [PATCH 5.15 221/917] media: stm32: Potential NULL pointer dereference in dcmi_irq_thread() Greg Kroah-Hartman
2021-11-15 16:55 ` [PATCH 5.15 222/917] media: uvcvideo: Set capability in s_param Greg Kroah-Hartman
2021-11-15 16:55 ` [PATCH 5.15 223/917] media: uvcvideo: Return -EIO for control errors Greg Kroah-Hartman
2021-11-15 16:55 ` [PATCH 5.15 224/917] media: uvcvideo: Set unique vdev name based in type Greg Kroah-Hartman
2021-11-15 16:55 ` [PATCH 5.15 225/917] media: vidtv: Fix memory leak in remove Greg Kroah-Hartman
2021-11-15 16:55 ` [PATCH 5.15 226/917] media: s5p-mfc: fix possible null-pointer dereference in s5p_mfc_probe() Greg Kroah-Hartman
2021-11-15 16:55 ` [PATCH 5.15 227/917] media: s5p-mfc: Add checking to s5p_mfc_probe() Greg Kroah-Hartman
2021-11-15 16:55 ` [PATCH 5.15 228/917] media: videobuf2: rework vb2_mem_ops API Greg Kroah-Hartman
2021-11-16  1:22   ` Sergey Senozhatsky
2021-11-16 14:10     ` Greg Kroah-Hartman
2021-11-15 16:55 ` [PATCH 5.15 229/917] media: imx: set a media_device bus_info string Greg Kroah-Hartman
2021-11-15 16:55 ` [PATCH 5.15 230/917] media: rcar-vin: Use user provided buffers when starting Greg Kroah-Hartman
2021-11-15 16:55 ` [PATCH 5.15 231/917] media: mceusb: return without resubmitting URB in case of -EPROTO error Greg Kroah-Hartman
2021-11-15 16:55 ` [PATCH 5.15 232/917] ia64: dont do IA64_CMPXCHG_DEBUG without CONFIG_PRINTK Greg Kroah-Hartman
2021-11-15 16:55 ` [PATCH 5.15 233/917] rtw88: fix RX clock gate setting while fifo dump Greg Kroah-Hartman
2021-11-15 16:55 ` [PATCH 5.15 234/917] brcmfmac: Add DMI nvram filename quirk for Cyberbook T116 tablet Greg Kroah-Hartman
2021-11-15 16:55 ` [PATCH 5.15 235/917] media: rcar-csi2: Add checking to rcsi2_start_receiver() Greg Kroah-Hartman
2021-11-15 16:55 ` [PATCH 5.15 236/917] ipmi: Disable some operations during a panic Greg Kroah-Hartman
2021-11-15 16:55 ` [PATCH 5.15 237/917] fs/proc/uptime.c: Fix idle time reporting in /proc/uptime Greg Kroah-Hartman
2021-11-15 16:55 ` [PATCH 5.15 238/917] kselftests/sched: cleanup the child processes Greg Kroah-Hartman
2021-11-15 16:55 ` [PATCH 5.15 239/917] ACPICA: Avoid evaluating methods too early during system resume Greg Kroah-Hartman
2021-11-15 16:55 ` [PATCH 5.15 240/917] cpufreq: Make policy min/max hard requirements Greg Kroah-Hartman
2021-11-15 16:55 ` [PATCH 5.15 241/917] ice: Move devlink port to PF/VF struct Greg Kroah-Hartman
2021-11-15 16:55 ` [PATCH 5.15 242/917] media: imx-jpeg: Fix possible null pointer dereference Greg Kroah-Hartman
2021-11-15 16:55 ` [PATCH 5.15 243/917] media: ipu3-imgu: imgu_fmt: Handle properly try Greg Kroah-Hartman
2021-11-15 16:55 ` [PATCH 5.15 244/917] media: ipu3-imgu: VIDIOC_QUERYCAP: Fix bus_info Greg Kroah-Hartman
2021-11-15 16:55 ` [PATCH 5.15 245/917] media: usb: dvd-usb: fix uninit-value bug in dibusb_read_eeprom_byte() Greg Kroah-Hartman
2021-11-15 16:55 ` [PATCH 5.15 246/917] net-sysfs: try not to restart the syscall if it will fail eventually Greg Kroah-Hartman
2021-11-15 16:55 ` [PATCH 5.15 247/917] drm/amdkfd: rm BO resv on validation to avoid deadlock Greg Kroah-Hartman
2021-11-15 16:55 ` [PATCH 5.15 248/917] tracefs: Have tracefs directories not set OTH permission bits by default Greg Kroah-Hartman
2021-11-15 16:55 ` [PATCH 5.15 249/917] tracing: Disable "other" permission bits in the tracefs files Greg Kroah-Hartman
2021-11-15 16:55 ` [PATCH 5.15 250/917] ath: dfs_pattern_detector: Fix possible null-pointer dereference in channel_detector_create() Greg Kroah-Hartman
2021-11-15 16:55 ` [PATCH 5.15 251/917] KVM: arm64: Propagate errors from __pkvm_prot_finalize hypercall Greg Kroah-Hartman
2021-11-15 16:55 ` [PATCH 5.15 252/917] mmc: moxart: Fix reference count leaks in moxart_probe Greg Kroah-Hartman
2021-11-15 16:55 ` [PATCH 5.15 253/917] iov_iter: Fix iov_iter_get_pages{,_alloc} page fault return value Greg Kroah-Hartman
2021-11-15 16:55 ` [PATCH 5.15 254/917] ACPI: battery: Accept charges over the design capacity as full Greg Kroah-Hartman
2021-11-15 16:55 ` [PATCH 5.15 255/917] ACPI: scan: Release PM resources blocked by unused objects Greg Kroah-Hartman
2021-11-15 16:55 ` [PATCH 5.15 256/917] drm/amd/display: fix null pointer deref when plugging in display Greg Kroah-Hartman
2021-11-15 16:55 ` [PATCH 5.15 257/917] drm/amdkfd: fix resume error when iommu disabled in Picasso Greg Kroah-Hartman
2021-11-15 16:55 ` [PATCH 5.15 258/917] net: phy: micrel: make *-skew-ps check more lenient Greg Kroah-Hartman
2021-11-15 16:55 ` [PATCH 5.15 259/917] leaking_addresses: Always print a trailing newline Greg Kroah-Hartman
2021-11-15 16:55 ` [PATCH 5.15 260/917] thermal/core: Fix null pointer dereference in thermal_release() Greg Kroah-Hartman
2021-11-15 16:55 ` [PATCH 5.15 261/917] drm/msm: prevent NULL dereference in msm_gpu_crashstate_capture() Greg Kroah-Hartman
2021-11-15 16:55 ` [PATCH 5.15 262/917] thermal/drivers/tsens: Add timeout to get_temp_tsens_valid Greg Kroah-Hartman
2021-11-15 16:55 ` [PATCH 5.15 263/917] block: bump max plugged deferred size from 16 to 32 Greg Kroah-Hartman
2021-11-15 16:55 ` [PATCH 5.15 264/917] floppy: fix calling platform_device_unregister() on invalid drives Greg Kroah-Hartman
2021-11-15 16:56 ` [PATCH 5.15 265/917] md: update superblock after changing rdev flags in state_store Greg Kroah-Hartman
2021-11-15 16:56 ` [PATCH 5.15 266/917] memstick: r592: Fix a UAF bug when removing the driver Greg Kroah-Hartman
2021-11-15 16:56 ` [PATCH 5.15 267/917] locking/rwsem: Disable preemption for spinning region Greg Kroah-Hartman
2021-11-15 16:56 ` [PATCH 5.15 268/917] lib/xz: Avoid overlapping memcpy() with invalid input with in-place decompression Greg Kroah-Hartman
2021-11-15 16:56 ` [PATCH 5.15 269/917] lib/xz: Validate the value before assigning it to an enum variable Greg Kroah-Hartman
2021-11-15 16:56 ` [PATCH 5.15 270/917] workqueue: make sysfs of unbound kworker cpumask more clever Greg Kroah-Hartman
2021-11-15 16:56 ` [PATCH 5.15 271/917] tracing/cfi: Fix cmp_entries_* functions signature mismatch Greg Kroah-Hartman
2021-11-15 16:56 ` [PATCH 5.15 272/917] mt76: mt7915: fix an off-by-one bound check Greg Kroah-Hartman
2021-11-15 16:56 ` [PATCH 5.15 273/917] mwl8k: Fix use-after-free in mwl8k_fw_state_machine() Greg Kroah-Hartman
2021-11-15 16:56 ` [PATCH 5.15 274/917] iwlwifi: change all JnP to NO-160 configuration Greg Kroah-Hartman
2021-11-15 16:56 ` [PATCH 5.15 275/917] block: remove inaccurate requeue check Greg Kroah-Hartman
2021-11-15 16:56 ` [PATCH 5.15 276/917] media: allegro: ignore interrupt if mailbox is not initialized Greg Kroah-Hartman
2021-11-15 16:56 ` [PATCH 5.15 277/917] drm/amdgpu/pm: properly handle sclk for profiling modes on vangogh Greg Kroah-Hartman
2021-11-15 16:56 ` [PATCH 5.15 278/917] nvmet: fix use-after-free when a port is removed Greg Kroah-Hartman
2021-11-15 16:56 ` [PATCH 5.15 279/917] nvmet-rdma: " Greg Kroah-Hartman
2021-11-15 16:56 ` [PATCH 5.15 280/917] nvmet-tcp: " Greg Kroah-Hartman
2021-11-15 16:56 ` [PATCH 5.15 281/917] nvme: drop scan_lock and always kick requeue list when removing namespaces Greg Kroah-Hartman
2021-11-15 16:56 ` [PATCH 5.15 282/917] samples/bpf: Fix application of sizeof to pointer Greg Kroah-Hartman
2021-11-15 16:56 ` [PATCH 5.15 283/917] arm64: vdso32: suppress error message for make mrproper Greg Kroah-Hartman
2021-11-15 16:56 ` [PATCH 5.15 284/917] PM: hibernate: Get block device exclusively in swsusp_check() Greg Kroah-Hartman
2021-11-15 16:56 ` [PATCH 5.15 285/917] selftests: kvm: fix mismatched fclose() after popen() Greg Kroah-Hartman
2021-11-15 16:56 ` [PATCH 5.15 286/917] selftests/bpf: Fix perf_buffer test on system with offline cpus Greg Kroah-Hartman
2021-11-15 16:56 ` [PATCH 5.15 287/917] iwlwifi: mvm: disable RX-diversity in powersave Greg Kroah-Hartman
2021-11-15 16:56 ` [PATCH 5.15 288/917] smackfs: use __GFP_NOFAIL for smk_cipso_doi() Greg Kroah-Hartman
2021-11-15 16:56 ` [PATCH 5.15 289/917] ARM: clang: Do not rely on lr register for stacktrace Greg Kroah-Hartman
2021-11-15 16:56 ` [PATCH 5.15 290/917] gre/sit: Dont generate link-local addr if addr_gen_mode is IN6_ADDR_GEN_MODE_NONE Greg Kroah-Hartman
2021-11-15 16:56 ` [PATCH 5.15 291/917] net: dsa: lantiq_gswip: serialize access to the PCE table Greg Kroah-Hartman
2021-11-15 23:35   ` Vladimir Oltean
2021-11-16  1:41     ` Sasha Levin
2021-11-15 16:56 ` [PATCH 5.15 292/917] can: bittiming: can_fixup_bittiming(): change type of tseg1 and alltseg to unsigned int Greg Kroah-Hartman
2021-11-15 16:56 ` [PATCH 5.15 293/917] gfs2: Cancel remote delete work asynchronously Greg Kroah-Hartman
2021-11-15 16:56 ` [PATCH 5.15 294/917] gfs2: Fix glock_hash_walk bugs Greg Kroah-Hartman
2021-11-15 16:56 ` [PATCH 5.15 295/917] ARM: 9136/1: ARMv7-M uses BE-8, not BE-32 Greg Kroah-Hartman
2021-11-15 16:56 ` [PATCH 5.15 296/917] tools/latency-collector: Use correct size when writing queue_full_warning Greg Kroah-Hartman
2021-11-15 16:56 ` [PATCH 5.15 297/917] vrf: run conntrack only in context of lower/physdev for locally generated packets Greg Kroah-Hartman
2021-11-15 16:56 ` [PATCH 5.15 298/917] net: annotate data-race in neigh_output() Greg Kroah-Hartman
2021-11-15 16:56 ` [PATCH 5.15 299/917] ACPI: AC: Quirk GK45 to skip reading _PSR Greg Kroah-Hartman
2021-11-15 16:56 ` [PATCH 5.15 300/917] ACPI: resources: Add one more Medion model in IRQ override quirk Greg Kroah-Hartman
2021-11-15 16:56 ` [PATCH 5.15 301/917] net: dsa: flush switchdev workqueue when leaving the bridge Greg Kroah-Hartman
2021-11-15 23:33   ` Vladimir Oltean
2021-11-16  1:41     ` Sasha Levin
2021-11-15 16:56 ` [PATCH 5.15 302/917] btrfs: reflink: initialize return value to 0 in btrfs_extent_same() Greg Kroah-Hartman
2021-11-15 16:56 ` [PATCH 5.15 303/917] btrfs: do not take the uuid_mutex in btrfs_rm_device Greg Kroah-Hartman
2021-11-15 16:56 ` [PATCH 5.15 304/917] spi: bcm-qspi: Fix missing clk_disable_unprepare() on error in bcm_qspi_probe() Greg Kroah-Hartman
2021-11-15 16:56 ` [PATCH 5.15 305/917] wcn36xx: Correct band/freq reporting on RX Greg Kroah-Hartman
2021-11-15 16:56 ` [PATCH 5.15 306/917] wcn36xx: Fix packet drop on resume Greg Kroah-Hartman
2021-11-15 16:56 ` [PATCH 5.15 307/917] Revert "wcn36xx: Enable firmware link monitoring" Greg Kroah-Hartman
2021-11-15 16:56 ` [PATCH 5.15 308/917] ftrace: do CPU checking after preemption disabled Greg Kroah-Hartman
2021-11-15 16:56 ` [PATCH 5.15 309/917] inet: remove races in inet{6}_getname() Greg Kroah-Hartman
2021-11-15 16:56 ` [PATCH 5.15 310/917] x86/hyperv: Protect set_hv_tscchange_cb() against getting preempted Greg Kroah-Hartman
2021-11-15 16:56 ` [PATCH 5.15 311/917] drm/amd/display: dcn20_resource_construct reduce scope of FPU enabled Greg Kroah-Hartman
2021-11-15 16:56 ` [PATCH 5.15 312/917] selftests/core: fix conflicting types compile error for close_range() Greg Kroah-Hartman
2021-11-15 16:56 ` [PATCH 5.15 313/917] perf/x86/intel: Fix ICL/SPR INST_RETIRED.PREC_DIST encodings Greg Kroah-Hartman
2021-11-15 16:56 ` [PATCH 5.15 314/917] parisc: fix warning in flush_tlb_all Greg Kroah-Hartman
2021-11-15 16:56 ` [PATCH 5.15 315/917] task_stack: Fix end_of_stack() for architectures with upwards-growing stack Greg Kroah-Hartman
2021-11-15 16:56 ` [PATCH 5.15 316/917] erofs: dont trigger WARN() when decompression fails Greg Kroah-Hartman
2021-11-15 16:56 ` [PATCH 5.15 317/917] parisc/unwind: fix unwinder when CONFIG_64BIT is enabled Greg Kroah-Hartman
2021-11-15 16:56 ` [PATCH 5.15 318/917] parisc/kgdb: add kgdb_roundup() to make kgdb work with idle polling Greg Kroah-Hartman
2021-11-15 16:56 ` [PATCH 5.15 319/917] netfilter: conntrack: set on IPS_ASSURED if flows enters internal stream state Greg Kroah-Hartman
2021-11-15 16:56 ` [PATCH 5.15 320/917] selftests/bpf: Fix strobemeta selftest regression Greg Kroah-Hartman
2021-11-15 16:56 ` [PATCH 5.15 321/917] fbdev/efifb: Release PCI devices runtime PM ref during FB destroy Greg Kroah-Hartman
2021-11-15 16:56 ` [PATCH 5.15 322/917] drm/bridge: anx7625: Propagate errors from sp_tx_rst_aux() Greg Kroah-Hartman
2021-11-15 16:56 ` [PATCH 5.15 323/917] perf/x86/intel/uncore: Fix Intel SPR CHA event constraints Greg Kroah-Hartman
2021-11-15 16:56 ` [PATCH 5.15 324/917] perf/x86/intel/uncore: Fix Intel SPR IIO " Greg Kroah-Hartman
2021-11-15 16:57 ` [PATCH 5.15 325/917] perf/x86/intel/uncore: Fix Intel SPR M2PCIE " Greg Kroah-Hartman
2021-11-15 16:57 ` [PATCH 5.15 326/917] perf/x86/intel/uncore: Fix Intel SPR M3UPI " Greg Kroah-Hartman
2021-11-15 16:57 ` [PATCH 5.15 327/917] drm/bridge: it66121: Initialize {device,vendor}_ids Greg Kroah-Hartman
2021-11-15 16:57 ` [PATCH 5.15 328/917] drm/bridge: it66121: Wait for next bridge to be probed Greg Kroah-Hartman
2021-11-15 16:57 ` [PATCH 5.15 329/917] Bluetooth: fix init and cleanup of sco_conn.timeout_work Greg Kroah-Hartman
2021-11-15 16:57 ` [PATCH 5.15 330/917] libbpf: Dont crash on object files with no symbol tables Greg Kroah-Hartman
2021-11-15 16:57 ` [PATCH 5.15 331/917] Bluetooth: hci_uart: fix GPF in h5_recv Greg Kroah-Hartman
2021-11-15 16:57 ` [PATCH 5.15 332/917] rcu: Fix existing exp request check in sync_sched_exp_online_cleanup() Greg Kroah-Hartman
2021-11-15 16:57 ` [PATCH 5.15 333/917] MIPS: lantiq: dma: fix burst length for DEU Greg Kroah-Hartman
2021-11-15 16:57 ` [PATCH 5.15 334/917] x86/xen: Mark cpu_bringup_and_idle() as dead_end_function Greg Kroah-Hartman
2021-11-15 16:57 ` [PATCH 5.15 335/917] objtool: Handle __sanitize_cov*() tail calls Greg Kroah-Hartman
2021-11-15 16:57 ` [PATCH 5.15 336/917] net/mlx5: Publish and unpublish all devlink parameters at once Greg Kroah-Hartman
2021-11-15 16:57 ` [PATCH 5.15 337/917] drm/v3d: fix wait for TMU write combiner flush Greg Kroah-Hartman
2021-11-15 16:57 ` [PATCH 5.15 338/917] crypto: sm4 - Do not change section of ck and sbox Greg Kroah-Hartman
2021-11-15 16:57 ` [PATCH 5.15 339/917] virtio-gpu: fix possible memory allocation failure Greg Kroah-Hartman
2021-11-15 16:57 ` [PATCH 5.15 340/917] lockdep: Let lock_is_held_type() detect recursive read as read Greg Kroah-Hartman
2021-11-15 16:57 ` [PATCH 5.15 341/917] net: net_namespace: Fix undefined member in key_remove_domain() Greg Kroah-Hartman
2021-11-15 16:57 ` [PATCH 5.15 342/917] net: phylink: dont call netif_carrier_off() with NULL netdev Greg Kroah-Hartman
2021-11-15 16:57 ` [PATCH 5.15 343/917] drm: bridge: it66121: Fix return value it66121_probe Greg Kroah-Hartman
2021-11-15 16:57 ` [PATCH 5.15 344/917] spi: Fixed division by zero warning Greg Kroah-Hartman
2021-11-15 16:57 ` [PATCH 5.15 345/917] cgroup: Make rebind_subsystems() disable v2 controllers all at once Greg Kroah-Hartman
2021-11-15 16:57 ` [PATCH 5.15 346/917] wcn36xx: Fix Antenna Diversity Switching Greg Kroah-Hartman
2021-11-15 16:57 ` [PATCH 5.15 347/917] wilc1000: fix possible memory leak in cfg_scan_result() Greg Kroah-Hartman
2021-11-15 16:57 ` [PATCH 5.15 348/917] Bluetooth: btmtkuart: fix a memleak in mtk_hci_wmt_sync Greg Kroah-Hartman
2021-11-15 16:57 ` [PATCH 5.15 349/917] drm/amdgpu: Fix crash on device remove/driver unload Greg Kroah-Hartman
2021-11-15 16:57 ` [PATCH 5.15 350/917] drm/amd/display: Pass display_pipe_params_st as const in DML Greg Kroah-Hartman
2021-11-15 16:57 ` [PATCH 5.15 351/917] drm/amdgpu: move amdgpu_virt_release_full_gpu to fini_early stage Greg Kroah-Hartman
2021-11-15 16:57 ` [PATCH 5.15 352/917] crypto: caam - disable pkc for non-E SoCs Greg Kroah-Hartman
2021-11-15 16:57 ` [PATCH 5.15 353/917] crypto: qat - power up 4xxx device Greg Kroah-Hartman
2021-11-15 16:57 ` [PATCH 5.15 354/917] Bluetooth: hci_h5: Fix (runtime)suspend issues on RTL8723BS HCIs Greg Kroah-Hartman
2021-11-15 16:57 ` [PATCH 5.15 355/917] bnxt_en: Check devlink allocation and registration status Greg Kroah-Hartman
2021-11-15 16:57 ` [PATCH 5.15 356/917] qed: Dont ignore devlink allocation failures Greg Kroah-Hartman
2021-11-15 16:57 ` [PATCH 5.15 357/917] rxrpc: Fix _usecs_to_jiffies() by using usecs_to_jiffies() Greg Kroah-Hartman
2021-11-15 16:57 ` [PATCH 5.15 358/917] mptcp: do not shrink snd_nxt when recovering Greg Kroah-Hartman
2021-11-15 16:57 ` [PATCH 5.15 359/917] fortify: Fix dropped strcpy() compile-time write overflow check Greg Kroah-Hartman
2021-11-15 16:57 ` [PATCH 5.15 360/917] mac80211: twt: dont use potentially unaligned pointer Greg Kroah-Hartman
2021-11-15 16:57 ` [PATCH 5.15 361/917] cfg80211: always free wiphy specific regdomain Greg Kroah-Hartman
2021-11-15 16:57 ` [PATCH 5.15 362/917] net/mlx5: Accept devlink user input after driver initialization complete Greg Kroah-Hartman
2021-11-15 16:57 ` [PATCH 5.15 363/917] net: dsa: rtl8366rb: Fix off-by-one bug Greg Kroah-Hartman
2021-11-15 16:57 ` [PATCH 5.15 364/917] net: dsa: rtl8366: Fix a bug in deleting VLANs Greg Kroah-Hartman
2021-11-15 16:57 ` [PATCH 5.15 365/917] bpf/tests: Fix error in tail call limit tests Greg Kroah-Hartman
2021-11-15 16:57 ` [PATCH 5.15 366/917] ath11k: fix some sleeping in atomic bugs Greg Kroah-Hartman
2021-11-15 16:57 ` [PATCH 5.15 367/917] ath11k: Avoid race during regd updates Greg Kroah-Hartman
2021-11-15 16:57 ` [PATCH 5.15 368/917] ath11k: fix packet drops due to incorrect 6 GHz freq value in rx status Greg Kroah-Hartman
2021-11-15 16:57 ` [PATCH 5.15 369/917] ath11k: Fix memory leak in ath11k_qmi_driver_event_work Greg Kroah-Hartman
2021-11-15 16:57 ` [PATCH 5.15 370/917] gve: DQO: avoid unused variable warnings Greg Kroah-Hartman
2021-11-15 16:57 ` [PATCH 5.15 371/917] ath10k: Fix missing frame timestamp for beacon/probe-resp Greg Kroah-Hartman
2021-11-15 16:57 ` [PATCH 5.15 372/917] ath10k: sdio: Add missing BH locking around napi_schdule() Greg Kroah-Hartman
2021-11-15 16:57 ` [PATCH 5.15 373/917] drm/ttm: stop calling tt_swapin in vm_access Greg Kroah-Hartman
2021-11-15 16:57 ` [PATCH 5.15 374/917] arm64: mm: update max_pfn after memory hotplug Greg Kroah-Hartman
2021-11-15 16:57 ` [PATCH 5.15 375/917] drm/amdgpu: fix warning for overflow check Greg Kroah-Hartman
2021-11-15 16:57 ` [PATCH 5.15 376/917] libbpf: Fix skel_internal.h to set errno on loader retval < 0 Greg Kroah-Hartman
2021-11-15 16:57 ` [PATCH 5.15 377/917] media: em28xx: add missing em28xx_close_extension Greg Kroah-Hartman
2021-11-15 16:57 ` [PATCH 5.15 378/917] media: meson-ge2d: Fix rotation parameter changes detection in ge2d_s_ctrl() Greg Kroah-Hartman
2021-11-15 16:57 ` [PATCH 5.15 379/917] media: cxd2880-spi: Fix a null pointer dereference on error handling path Greg Kroah-Hartman
2021-11-15 16:57 ` [PATCH 5.15 380/917] media: ttusb-dec: avoid release of non-acquired mutex Greg Kroah-Hartman
2021-11-15 16:57 ` [PATCH 5.15 381/917] media: dvb-usb: fix ununit-value in az6027_rc_query Greg Kroah-Hartman
2021-11-15 16:57 ` [PATCH 5.15 382/917] media: imx258: Fix getting clock frequency Greg Kroah-Hartman
2021-11-15 16:57 ` [PATCH 5.15 383/917] media: v4l2-ioctl: S_CTRL output the right value Greg Kroah-Hartman
2021-11-15 16:57 ` [PATCH 5.15 384/917] media: mtk-vcodec: venc: fix return value when start_streaming fails Greg Kroah-Hartman
2021-11-15 16:58 ` [PATCH 5.15 385/917] media: TDA1997x: handle short reads of hdmi info frame Greg Kroah-Hartman
2021-11-15 16:58 ` [PATCH 5.15 386/917] media: mtk-vpu: Fix a resource leak in the error handling path of mtk_vpu_probe() Greg Kroah-Hartman
2021-11-15 16:58 ` [PATCH 5.15 387/917] media: imx-jpeg: Fix the error handling path of mxc_jpeg_probe() Greg Kroah-Hartman
2021-11-15 16:58 ` [PATCH 5.15 388/917] media: i2c: ths8200 needs V4L2_ASYNC Greg Kroah-Hartman
2021-11-15 16:58 ` [PATCH 5.15 389/917] media: sun6i-csi: Allow the video device to be open multiple times Greg Kroah-Hartman
2021-11-15 16:58 ` [PATCH 5.15 390/917] media: radio-wl1273: Avoid card name truncation Greg Kroah-Hartman
2021-11-15 16:58 ` [PATCH 5.15 391/917] media: si470x: " Greg Kroah-Hartman
2021-11-15 16:58 ` [PATCH 5.15 392/917] media: tm6000: " Greg Kroah-Hartman
2021-11-15 16:58 ` [PATCH 5.15 393/917] media: cx23885: Fix snd_card_free call on null card pointer Greg Kroah-Hartman
2021-11-15 16:58 ` [PATCH 5.15 394/917] media: atmel: fix the ispck initialization Greg Kroah-Hartman
2021-11-15 16:58 ` [PATCH 5.15 395/917] scs: Release kasan vmalloc poison in scs_free process Greg Kroah-Hartman
2021-11-15 16:58 ` [PATCH 5.15 396/917] kprobes: Do not use local variable when creating debugfs file Greg Kroah-Hartman
2021-11-15 16:58 ` [PATCH 5.15 397/917] crypto: ecc - fix CRYPTO_DEFAULT_RNG dependency Greg Kroah-Hartman
2021-11-15 16:58 ` [PATCH 5.15 398/917] drm: fb_helper: fix CONFIG_FB dependency Greg Kroah-Hartman
2021-11-15 16:58 ` [PATCH 5.15 399/917] cpuidle: Fix kobject memory leaks in error paths Greg Kroah-Hartman
2021-11-15 16:58 ` [PATCH 5.15 400/917] media: em28xx: Dont use ops->suspend if it is NULL Greg Kroah-Hartman
2021-11-15 16:58 ` [PATCH 5.15 401/917] ath10k: Dont always treat modem stop events as crashes Greg Kroah-Hartman
2021-11-15 16:58 ` [PATCH 5.15 402/917] ath9k: Fix potential interrupt storm on queue reset Greg Kroah-Hartman
2021-11-15 16:58 ` [PATCH 5.15 403/917] PM: EM: Fix inefficient states detection Greg Kroah-Hartman
2021-11-15 16:58 ` [PATCH 5.15 404/917] x86/insn: Use get_unaligned() instead of memcpy() Greg Kroah-Hartman
2021-11-15 16:58 ` [PATCH 5.15 405/917] EDAC/amd64: Handle three rank interleaving mode Greg Kroah-Hartman
2021-11-15 16:58 ` [PATCH 5.15 406/917] rcu: Always inline rcu_dynticks_task*_{enter,exit}() Greg Kroah-Hartman
2021-11-15 16:58 ` [PATCH 5.15 407/917] rcu: Fix rcu_dynticks_curr_cpu_in_eqs() vs noinstr Greg Kroah-Hartman
2021-11-15 16:58 ` [PATCH 5.15 408/917] netfilter: nft_dynset: relax superfluous check on set updates Greg Kroah-Hartman
2021-11-15 16:58 ` [PATCH 5.15 409/917] media: venus: fix vpp frequency calculation for decoder Greg Kroah-Hartman
2021-11-15 16:58 ` [PATCH 5.15 410/917] media: dvb-frontends: mn88443x: Handle errors of clk_prepare_enable() Greg Kroah-Hartman
2021-11-15 16:58 ` [PATCH 5.15 411/917] crypto: ccree - avoid out-of-range warnings from clang Greg Kroah-Hartman
2021-11-15 16:58 ` [PATCH 5.15 412/917] crypto: qat - detect PFVF collision after ACK Greg Kroah-Hartman
2021-11-15 16:58 ` [PATCH 5.15 413/917] crypto: qat - disregard spurious PFVF interrupts Greg Kroah-Hartman
2021-11-15 16:58 ` [PATCH 5.15 414/917] hwrng: mtk - Force runtime pm ops for sleep ops Greg Kroah-Hartman
2021-11-15 16:58 ` [PATCH 5.15 415/917] ima: fix deadlock when traversing "ima_default_rules" Greg Kroah-Hartman
2021-11-15 16:58 ` [PATCH 5.15 416/917] b43legacy: fix a lower bounds test Greg Kroah-Hartman
2021-11-15 16:58 ` [PATCH 5.15 417/917] b43: " Greg Kroah-Hartman
2021-11-15 16:58 ` [PATCH 5.15 418/917] gve: Recover from queue stall due to missed IRQ Greg Kroah-Hartman
2021-11-15 16:58 ` [PATCH 5.15 419/917] gve: Track RX buffer allocation failures Greg Kroah-Hartman
2021-11-15 16:58 ` [PATCH 5.15 420/917] mmc: sdhci-omap: Fix NULL pointer exception if regulator is not configured Greg Kroah-Hartman
2021-11-15 16:58 ` [PATCH 5.15 421/917] mmc: sdhci-omap: Fix context restore Greg Kroah-Hartman
2021-11-15 16:58 ` [PATCH 5.15 422/917] memstick: avoid out-of-range warning Greg Kroah-Hartman
2021-11-15 16:58 ` [PATCH 5.15 423/917] memstick: jmb38x_ms: use appropriate free function in jmb38x_ms_alloc_host() Greg Kroah-Hartman
2021-11-15 16:58 ` [PATCH 5.15 424/917] net, neigh: Fix NTF_EXT_LEARNED in combination with NTF_USE Greg Kroah-Hartman
2021-11-15 16:58 ` [PATCH 5.15 425/917] hwmon: Fix possible memleak in __hwmon_device_register() Greg Kroah-Hartman
2021-11-15 16:58 ` [PATCH 5.15 426/917] hwmon: (pmbus/lm25066) Let compiler determine outer dimension of lm25066_coeff Greg Kroah-Hartman
2021-11-15 16:58 ` [PATCH 5.15 427/917] ath10k: fix max antenna gain unit Greg Kroah-Hartman
2021-11-15 16:58 ` [PATCH 5.15 428/917] kernel/sched: Fix sched_fork() access an invalid sched_task_group Greg Kroah-Hartman
2021-11-15 16:58 ` [PATCH 5.15 429/917] net: fealnx: fix build for UML Greg Kroah-Hartman
2021-11-15 16:58 ` [PATCH 5.15 430/917] net: intel: igc_ptp: " Greg Kroah-Hartman
2021-11-15 16:58 ` [PATCH 5.15 431/917] net: tulip: winbond-840: " Greg Kroah-Hartman
2021-11-15 16:58 ` [PATCH 5.15 432/917] x86: Fix get_wchan() to support the ORC unwinder Greg Kroah-Hartman
2021-11-15 16:58 ` [PATCH 5.15 433/917] tcp: switch orphan_count to bare per-cpu counters Greg Kroah-Hartman
2021-11-15 16:58 ` [PATCH 5.15 434/917] crypto: octeontx2 - set assoclen in aead_do_fallback() Greg Kroah-Hartman
2021-11-15 16:58 ` [PATCH 5.15 435/917] thermal/core: fix a UAF bug in __thermal_cooling_device_register() Greg Kroah-Hartman
2021-11-15 16:58 ` [PATCH 5.15 436/917] drm/msm/dsi: do not enable irq handler before powering up the host Greg Kroah-Hartman
2021-11-15 16:58 ` [PATCH 5.15 437/917] drm/msm: Fix potential Oops in a6xx_gmu_rpmh_init() Greg Kroah-Hartman
2021-11-15 16:58 ` [PATCH 5.15 438/917] drm/msm: potential error pointer dereference in init() Greg Kroah-Hartman
2021-11-15 16:58 ` [PATCH 5.15 439/917] drm/msm: unlock on error in get_sched_entity() Greg Kroah-Hartman
2021-11-15 16:58 ` [PATCH 5.15 440/917] drm/msm: fix potential NULL dereference in cleanup Greg Kroah-Hartman
2021-11-15 16:58 ` [PATCH 5.15 441/917] drm/msm: uninitialized variable in msm_gem_import() Greg Kroah-Hartman
2021-11-15 16:58 ` [PATCH 5.15 442/917] net: stream: dont purge sk_error_queue in sk_stream_kill_queues() Greg Kroah-Hartman
2021-11-15 16:58 ` [PATCH 5.15 443/917] thermal/drivers/qcom/lmh: make QCOM_LMH depends on QCOM_SCM Greg Kroah-Hartman
2021-11-15 16:58 ` [PATCH 5.15 444/917] mailbox: Remove WARN_ON for async_cb.cb in cmdq_exec_done Greg Kroah-Hartman
2021-11-15 16:59 ` [PATCH 5.15 445/917] media: ivtv: fix build for UML Greg Kroah-Hartman
2021-11-15 16:59 ` [PATCH 5.15 446/917] media: ir_toy: assignment to be16 should be of correct type Greg Kroah-Hartman
2021-11-15 16:59 ` [PATCH 5.15 447/917] mmc: mxs-mmc: disable regulator on error and in the remove function Greg Kroah-Hartman
2021-11-15 16:59 ` [PATCH 5.15 448/917] io-wq: Remove duplicate code in io_workqueue_create() Greg Kroah-Hartman
2021-11-15 16:59 ` [PATCH 5.15 449/917] block: ataflop: fix breakage introduced at blk-mq refactoring Greg Kroah-Hartman
2021-11-15 16:59 ` [PATCH 5.15 450/917] blk-wbt: prevent NULL pointer dereference in wb_timer_fn Greg Kroah-Hartman
2021-11-15 16:59 ` [PATCH 5.15 451/917] platform/x86: thinkpad_acpi: Fix bitwise vs. logical warning Greg Kroah-Hartman
2021-11-15 16:59 ` [PATCH 5.15 452/917] mailbox: mtk-cmdq: Validate alias_id on probe Greg Kroah-Hartman
2021-11-15 16:59 ` [PATCH 5.15 453/917] mailbox: mtk-cmdq: Fix local clock ID usage Greg Kroah-Hartman
2021-11-15 16:59 ` [PATCH 5.15 454/917] ACPI: PM: Turn off unused wakeup power resources Greg Kroah-Hartman
2021-11-15 16:59 ` [PATCH 5.15 455/917] ACPI: PM: Fix sharing of " Greg Kroah-Hartman
2021-11-15 16:59 ` [PATCH 5.15 456/917] drm/amdkfd: Fix an inappropriate error handling in allloc memory of gpu Greg Kroah-Hartman
2021-11-15 16:59 ` [PATCH 5.15 457/917] mt76: mt7921: fix endianness in mt7921_mcu_tx_done_event Greg Kroah-Hartman
2021-11-15 16:59 ` [PATCH 5.15 458/917] mt76: mt7915: fix endianness warning in mt7915_mac_add_txs_skb Greg Kroah-Hartman
2021-11-15 16:59 ` [PATCH 5.15 459/917] mt76: mt7921: fix endianness warning in mt7921_update_txs Greg Kroah-Hartman
2021-11-15 16:59 ` [PATCH 5.15 460/917] mt76: mt7615: fix endianness warning in mt7615_mac_write_txwi Greg Kroah-Hartman
2021-11-15 16:59 ` [PATCH 5.15 461/917] mt76: mt7915: fix info leak in mt7915_mcu_set_pre_cal() Greg Kroah-Hartman
2021-11-15 16:59 ` [PATCH 5.15 462/917] mt76: connac: fix mt76_connac_gtk_rekey_tlv usage Greg Kroah-Hartman
2021-11-15 16:59 ` [PATCH 5.15 463/917] mt76: fix build error implicit enumeration conversion Greg Kroah-Hartman
2021-11-15 16:59 ` [PATCH 5.15 464/917] mt76: mt7921: fix survey-dump reporting Greg Kroah-Hartman
2021-11-15 16:59 ` [PATCH 5.15 465/917] mt76: mt76x02: fix endianness warnings in mt76x02_mac.c Greg Kroah-Hartman
2021-11-15 16:59 ` [PATCH 5.15 466/917] mt76: mt7921: Fix out of order process by invalid event pkt Greg Kroah-Hartman
2021-11-15 16:59 ` [PATCH 5.15 467/917] mt76: mt7915: fix potential overflow of eeprom page index Greg Kroah-Hartman
2021-11-15 16:59 ` [PATCH 5.15 468/917] mt76: mt7915: fix bit fields for HT rate idx Greg Kroah-Hartman
2021-11-15 16:59 ` [PATCH 5.15 469/917] mt76: mt7921: fix dma hang in rmmod Greg Kroah-Hartman
2021-11-15 16:59 ` [PATCH 5.15 470/917] mt76: connac: fix GTK rekey offload failure on WPA mixed mode Greg Kroah-Hartman
2021-11-15 16:59 ` [PATCH 5.15 471/917] mt76: overwrite default reg_ops if necessary Greg Kroah-Hartman
2021-11-15 16:59 ` [PATCH 5.15 472/917] mt76: mt7921: report HE MU radiotap Greg Kroah-Hartman
2021-11-15 16:59 ` [PATCH 5.15 473/917] mt76: mt7921: fix firmware usage of RA info using legacy rates Greg Kroah-Hartman
2021-11-15 16:59 ` [PATCH 5.15 474/917] mt76: mt7921: fix kernel warning from cfg80211_calculate_bitrate Greg Kroah-Hartman
2021-11-15 16:59 ` [PATCH 5.15 475/917] mt76: mt7921: always wake device if necessary in debugfs Greg Kroah-Hartman
2021-11-15 16:59 ` [PATCH 5.15 476/917] mt76: mt7915: fix hwmon temp sensor mem use-after-free Greg Kroah-Hartman
2021-11-15 16:59 ` [PATCH 5.15 477/917] mt76: mt7615: " Greg Kroah-Hartman
2021-11-15 16:59 ` [PATCH 5.15 478/917] mt76: mt7915: fix possible infinite loop release semaphore Greg Kroah-Hartman
2021-11-15 16:59 ` [PATCH 5.15 479/917] mt76: mt7921: fix retrying release semaphore without end Greg Kroah-Hartman
2021-11-15 16:59 ` [PATCH 5.15 480/917] mt76: mt7615: fix monitor mode tear down crash Greg Kroah-Hartman
2021-11-15 16:59 ` [PATCH 5.15 481/917] mt76: connac: fix possible NULL pointer dereference in mt76_connac_get_phy_mode_v2 Greg Kroah-Hartman
2021-11-15 16:59 ` [PATCH 5.15 482/917] mt76: mt7915: fix sta_rec_wtbl tag len Greg Kroah-Hartman
2021-11-15 16:59 ` [PATCH 5.15 483/917] mt76: mt7915: fix muar_idx in mt7915_mcu_alloc_sta_req() Greg Kroah-Hartman
2021-11-15 16:59 ` [PATCH 5.15 484/917] rsi: stop thread firstly in rsi_91x_init() error handling Greg Kroah-Hartman
2021-11-15 16:59 ` [PATCH 5.15 485/917] mwifiex: Send DELBA requests according to spec Greg Kroah-Hartman
2021-11-15 16:59 ` [PATCH 5.15 486/917] iwlwifi: mvm: reset PM state on unsuccessful resume Greg Kroah-Hartman
2021-11-15 16:59 ` [PATCH 5.15 487/917] iwlwifi: pnvm: dont kmemdup() more than we have Greg Kroah-Hartman
2021-11-15 16:59 ` [PATCH 5.15 488/917] iwlwifi: pnvm: read EFI data only if long enough Greg Kroah-Hartman
2021-11-15 16:59 ` [PATCH 5.15 489/917] net: enetc: unmap DMA in enetc_send_cmd() Greg Kroah-Hartman
2021-11-15 16:59 ` [PATCH 5.15 490/917] phy: micrel: ksz8041nl: do not use power down mode Greg Kroah-Hartman
2021-11-15 16:59 ` [PATCH 5.15 491/917] nbd: Fix use-after-free in pid_show Greg Kroah-Hartman
2021-11-15 16:59 ` [PATCH 5.15 492/917] nvme-rdma: fix error code in nvme_rdma_setup_ctrl Greg Kroah-Hartman
2021-11-15 16:59 ` [PATCH 5.15 493/917] PM: hibernate: fix sparse warnings Greg Kroah-Hartman
2021-11-15 16:59 ` [PATCH 5.15 494/917] clocksource/drivers/timer-ti-dm: Select TIMER_OF Greg Kroah-Hartman
2021-11-15 16:59 ` [PATCH 5.15 495/917] x86/sev: Fix stack type check in vc_switch_off_ist() Greg Kroah-Hartman
2021-11-15 16:59 ` [PATCH 5.15 496/917] drm/msm: Fix potential NULL dereference in DPU SSPP Greg Kroah-Hartman
2021-11-15 16:59 ` [PATCH 5.15 497/917] drm/msm/dsi: fix wrong type in msm_dsi_host Greg Kroah-Hartman
2021-11-15 16:59 ` [PATCH 5.15 498/917] crypto: tcrypt - fix skcipher multi-buffer tests for 1420B blocks Greg Kroah-Hartman
2021-11-15 16:59 ` [PATCH 5.15 499/917] smackfs: use netlbl_cfg_cipsov4_del() for deleting cipso_v4_doi Greg Kroah-Hartman
2021-11-15 16:59 ` [PATCH 5.15 500/917] KVM: selftests: Fix nested SVM tests when built with clang Greg Kroah-Hartman
2021-11-15 16:59 ` [PATCH 5.15 501/917] libbpf: Fix memory leak in btf__dedup() Greg Kroah-Hartman
2021-11-15 16:59 ` [PATCH 5.15 502/917] bpftool: Avoid leaking the JSON writer prepared for program metadata Greg Kroah-Hartman
2021-11-15 16:59 ` [PATCH 5.15 503/917] libbpf: Fix overflow in BTF sanity checks Greg Kroah-Hartman
2021-11-15 16:59 ` [PATCH 5.15 504/917] libbpf: Fix BTF header parsing checks Greg Kroah-Hartman
2021-11-15 17:00 ` [PATCH 5.15 505/917] mt76: mt7615: mt7622: fix ibss and meshpoint Greg Kroah-Hartman
2021-11-15 17:00 ` [PATCH 5.15 506/917] s390/gmap: validate VMA in __gmap_zap() Greg Kroah-Hartman
2021-11-15 17:00 ` [PATCH 5.15 507/917] s390/gmap: dont unconditionally call pte_unmap_unlock() " Greg Kroah-Hartman
2021-11-15 17:00 ` [PATCH 5.15 508/917] s390/mm: validate VMA in PGSTE manipulation functions Greg Kroah-Hartman
2021-11-15 17:00 ` [PATCH 5.15 509/917] s390/mm: fix VMA and page table handling code in storage key handling functions Greg Kroah-Hartman
2021-11-15 17:00 ` [PATCH 5.15 510/917] s390/uv: fully validate the VMA before calling follow_page() Greg Kroah-Hartman
2021-11-15 17:00 ` [PATCH 5.15 511/917] KVM: s390: pv: avoid double free of sida page Greg Kroah-Hartman
2021-11-15 17:00 ` [PATCH 5.15 512/917] KVM: s390: pv: avoid stalls for kvm_s390_pv_init_vm Greg Kroah-Hartman
2021-11-15 17:00 ` [PATCH 5.15 513/917] irq: mips: avoid nested irq_enter() Greg Kroah-Hartman
2021-11-15 17:00 ` [PATCH 5.15 514/917] net: dsa: avoid refcount warnings when ->port_{fdb,mdb}_del returns error Greg Kroah-Hartman
2021-11-15 17:00 ` [PATCH 5.15 515/917] ARM: 9142/1: kasan: work around LPAE build warning Greg Kroah-Hartman
2021-11-15 17:00 ` [PATCH 5.15 516/917] ath10k: fix module load regression with iram-recovery feature Greg Kroah-Hartman
2021-11-15 17:00 ` [PATCH 5.15 517/917] block: ataflop: more blk-mq refactoring fixes Greg Kroah-Hartman
2021-11-15 17:00 ` [PATCH 5.15 518/917] blk-cgroup: synchronize blkg creation against policy deactivation Greg Kroah-Hartman
2021-11-15 17:00 ` [PATCH 5.15 519/917] libbpf: Fix off-by-one bug in bpf_core_apply_relo() Greg Kroah-Hartman
2021-11-15 17:00 ` [PATCH 5.15 520/917] tpm: fix Atmel TPM crash caused by too frequent queries Greg Kroah-Hartman
2021-11-15 17:00 ` [PATCH 5.15 521/917] tpm_tis_spi: Add missing SPI ID Greg Kroah-Hartman
2021-11-15 17:00 ` [PATCH 5.15 522/917] libbpf: Fix endianness detection in BPF_CORE_READ_BITFIELD_PROBED() Greg Kroah-Hartman
2021-11-15 17:00 ` [PATCH 5.15 523/917] tcp: dont free a FIN sk_buff in tcp_remove_empty_skb() Greg Kroah-Hartman
2021-11-15 17:00 ` [PATCH 5.15 524/917] tracing: Fix missing trace_boot_init_histograms kstrdup NULL checks Greg Kroah-Hartman
2021-11-15 17:00 ` [PATCH 5.15 525/917] cpufreq: intel_pstate: Fix cpu->pstate.turbo_freq initialization Greg Kroah-Hartman
2021-11-15 17:00 ` [PATCH 5.15 526/917] spi: spi-rpc-if: Check return value of rpcif_sw_init() Greg Kroah-Hartman
2021-11-15 17:00 ` Greg Kroah-Hartman [this message]
2021-11-15 17:00 ` [PATCH 5.15 528/917] x86: Fix __get_wchan() for !STACKTRACE Greg Kroah-Hartman
2021-11-15 17:00 ` [PATCH 5.15 529/917] samples/kretprobes: Fix return value if register_kretprobe() failed Greg Kroah-Hartman
2021-11-15 17:00 ` [PATCH 5.15 530/917] KVM: s390: Fix handle_sske page fault handling Greg Kroah-Hartman
2021-11-15 17:00 ` [PATCH 5.15 531/917] libertas_tf: Fix possible memory leak in probe and disconnect Greg Kroah-Hartman
2021-11-15 17:00 ` [PATCH 5.15 532/917] libertas: " Greg Kroah-Hartman
2021-11-15 17:00 ` [PATCH 5.15 533/917] wcn36xx: add proper DMA memory barriers in rx path Greg Kroah-Hartman
2021-11-15 17:00 ` [PATCH 5.15 534/917] wcn36xx: Fix discarded frames due to wrong sequence number Greg Kroah-Hartman
2021-11-15 17:00 ` [PATCH 5.15 535/917] bpf: Avoid races in __bpf_prog_run() for 32bit arches Greg Kroah-Hartman
2021-11-15 17:00 ` [PATCH 5.15 536/917] bpf: Fixes possible race in update_prog_stats() " Greg Kroah-Hartman
2021-11-15 17:00 ` [PATCH 5.15 537/917] wcn36xx: Channel list update before hardware scan Greg Kroah-Hartman
2021-11-15 17:00 ` [PATCH 5.15 538/917] drm/amdgpu: fix a potential memory leak in amdgpu_device_fini_sw() Greg Kroah-Hartman
2021-11-15 17:00 ` [PATCH 5.15 539/917] drm/amdgpu/gmc6: fix DMA mask from 44 to 40 bits Greg Kroah-Hartman
2021-11-15 17:00 ` [PATCH 5.15 540/917] selftests/bpf: Fix fd cleanup in sk_lookup test Greg Kroah-Hartman
2021-11-15 17:00 ` [PATCH 5.15 541/917] selftests/bpf: Fix memory leak in test_ima Greg Kroah-Hartman
2021-11-15 17:00 ` [PATCH 5.15 542/917] sctp: allow IP fragmentation when PLPMTUD enters Error state Greg Kroah-Hartman
2021-11-15 17:00 ` [PATCH 5.15 543/917] sctp: reset probe_timer in sctp_transport_pl_update Greg Kroah-Hartman
2021-11-15 17:00 ` [PATCH 5.15 544/917] sctp: subtract sctphdr len in sctp_transport_pl_hlen Greg Kroah-Hartman
2021-11-15 17:00 ` [PATCH 5.15 545/917] sctp: return true only for pathmtu update in sctp_transport_pl_toobig Greg Kroah-Hartman
2021-11-15 17:00 ` [PATCH 5.15 546/917] net: amd-xgbe: Toggle PLL settings during rate change Greg Kroah-Hartman
2021-11-15 17:00 ` [PATCH 5.15 547/917] ipmi: kcs_bmc: Fix a memory leak in the error handling path of kcs_bmc_serio_add_device() Greg Kroah-Hartman
2021-11-15 17:00 ` [PATCH 5.15 548/917] nfp: fix NULL pointer access when scheduling dim work Greg Kroah-Hartman
2021-11-15 17:00 ` [PATCH 5.15 549/917] nfp: fix potential deadlock when canceling " Greg Kroah-Hartman
2021-11-15 17:00 ` [PATCH 5.15 550/917] net: phylink: avoid mvneta warning when setting pause parameters Greg Kroah-Hartman
2021-11-15 17:00 ` [PATCH 5.15 551/917] net: bridge: fix uninitialized variables when BRIDGE_CFM is disabled Greg Kroah-Hartman
2021-11-15 17:00 ` [PATCH 5.15 552/917] selftests: net: bridge: update IGMP/MLD membership interval value Greg Kroah-Hartman
2021-11-15 17:00 ` [PATCH 5.15 553/917] crypto: pcrypt - Delay write to padata->info Greg Kroah-Hartman
2021-11-15 17:00 ` [PATCH 5.15 554/917] selftests/bpf: Fix fclose/pclose mismatch in test_progs Greg Kroah-Hartman
2021-11-15 17:00 ` [PATCH 5.15 555/917] udp6: allow SO_MARK ctrl msg to affect routing Greg Kroah-Hartman
2021-11-15 17:00 ` [PATCH 5.15 556/917] ibmvnic: dont stop queue in xmit Greg Kroah-Hartman
2021-11-15 17:00 ` [PATCH 5.15 557/917] ibmvnic: Process crqs after enabling interrupts Greg Kroah-Hartman
2021-11-15 17:00 ` [PATCH 5.15 558/917] ibmvnic: delay complete() Greg Kroah-Hartman
2021-11-15 17:00 ` [PATCH 5.15 559/917] selftests: mptcp: fix proto type in link_failure tests Greg Kroah-Hartman
2021-11-15 17:00 ` [PATCH 5.15 560/917] skmsg: Lose offset info in sk_psock_skb_ingress Greg Kroah-Hartman
2021-11-15 17:00 ` [PATCH 5.15 561/917] cgroup: Fix rootcg cpu.stat guest double counting Greg Kroah-Hartman
2021-11-15 17:00 ` [PATCH 5.15 562/917] bpf: Fix propagation of bounds from 64-bit min/max into 32-bit and var_off Greg Kroah-Hartman
2021-11-15 17:00 ` [PATCH 5.15 563/917] bpf: Fix propagation of signed bounds from 64-bit min/max into 32-bit Greg Kroah-Hartman
2021-11-15 17:00 ` [PATCH 5.15 564/917] of: unittest: fix EXPECT text for gpio hog errors Greg Kroah-Hartman
2021-11-15 17:01 ` [PATCH 5.15 565/917] cpufreq: Fix parameter in parse_perf_domain() Greg Kroah-Hartman
2021-11-15 17:01 ` [PATCH 5.15 566/917] staging: r8188eu: fix memory leak in rtw_set_key Greg Kroah-Hartman
2021-11-15 17:01 ` [PATCH 5.15 567/917] arm64: dts: meson: sm1: add Ethernet PHY reset line for ODROID-C4/HC4 Greg Kroah-Hartman
2021-11-15 17:01 ` [PATCH 5.15 568/917] iio: st_sensors: disable regulators after device unregistration Greg Kroah-Hartman
2021-11-15 17:01 ` [PATCH 5.15 569/917] RDMA/rxe: Fix wrong port_cap_flags Greg Kroah-Hartman
2021-11-15 17:01 ` [PATCH 5.15 570/917] ARM: dts: BCM5301X: Fix memory nodes names Greg Kroah-Hartman
2021-11-15 17:01 ` [PATCH 5.15 571/917] arm64: dts: broadcom: bcm4908: Fix UART clock name Greg Kroah-Hartman
2021-11-15 17:01 ` [PATCH 5.15 572/917] clk: mvebu: ap-cpu-clk: Fix a memory leak in error handling paths Greg Kroah-Hartman
2021-11-15 17:01 ` [PATCH 5.15 573/917] scsi: pm80xx: Fix lockup in outbound queue management Greg Kroah-Hartman
2021-11-15 17:01 ` [PATCH 5.15 574/917] scsi: qla2xxx: edif: Use link event to wake up app Greg Kroah-Hartman
2021-11-15 17:01 ` [PATCH 5.15 575/917] scsi: lpfc: Fix NVMe I/O failover to non-optimized path Greg Kroah-Hartman
2021-11-15 17:01 ` [PATCH 5.15 576/917] ARM: s3c: irq-s3c24xx: Fix return value check for s3c24xx_init_intc() Greg Kroah-Hartman
2021-11-15 17:01 ` [PATCH 5.15 577/917] arm64: dts: rockchip: Fix GPU register width for RK3328 Greg Kroah-Hartman
2021-11-15 17:01 ` [PATCH 5.15 578/917] ARM: dts: qcom: msm8974: Add xo_board reference clock to DSI0 PHY Greg Kroah-Hartman
2021-11-15 17:01 ` [PATCH 5.15 579/917] RDMA/bnxt_re: Fix query SRQ failure Greg Kroah-Hartman
2021-11-15 17:01 ` [PATCH 5.15 580/917] arm64: dts: ti: k3-j721e-main: Fix "max-virtual-functions" in PCIe EP nodes Greg Kroah-Hartman
2021-11-15 17:01 ` [PATCH 5.15 581/917] arm64: dts: ti: k3-j721e-main: Fix "bus-range" upto 256 bus number for PCIe Greg Kroah-Hartman
2021-11-15 17:01 ` [PATCH 5.15 582/917] arm64: dts: ti: j7200-main: Fix "vendor-id"/"device-id" properties of pcie node Greg Kroah-Hartman
2021-11-15 17:01 ` [PATCH 5.15 583/917] arm64: dts: ti: j7200-main: Fix "bus-range" upto 256 bus number for PCIe Greg Kroah-Hartman
2021-11-15 17:01 ` [PATCH 5.15 584/917] arm64: dts: meson-g12a: Fix the pwm regulator supply properties Greg Kroah-Hartman
2021-11-15 17:01 ` [PATCH 5.15 585/917] arm64: dts: meson-g12b: " Greg Kroah-Hartman
2021-11-15 17:01 ` [PATCH 5.15 586/917] arm64: dts: meson-sm1: " Greg Kroah-Hartman
2021-11-15 17:01 ` [PATCH 5.15 587/917] bus: ti-sysc: Fix timekeeping_suspended warning on resume Greg Kroah-Hartman
2021-11-15 17:01 ` [PATCH 5.15 588/917] ARM: dts: at91: tse850: the emac<->phy interface is rmii Greg Kroah-Hartman
2021-11-15 17:01 ` [PATCH 5.15 589/917] arm64: dts: qcom: sc7180: Base dynamic CPU power coefficients in reality Greg Kroah-Hartman
2021-11-15 17:01 ` [PATCH 5.15 590/917] soc: qcom: llcc: Disable MMUHWT retention Greg Kroah-Hartman
2021-11-15 17:01 ` [PATCH 5.15 591/917] arm64: dts: qcom: sc7280: fix display port phy reg property Greg Kroah-Hartman
2021-11-15 17:01 ` [PATCH 5.15 592/917] scsi: dc395: Fix error case unwinding Greg Kroah-Hartman
2021-11-15 17:01 ` [PATCH 5.15 593/917] MIPS: loongson64: make CPU_LOONGSON64 depends on MIPS_FP_SUPPORT Greg Kroah-Hartman
2021-11-15 17:01 ` [PATCH 5.15 594/917] JFS: fix memleak in jfs_mount Greg Kroah-Hartman
2021-11-15 17:01 ` [PATCH 5.15 595/917] pinctrl: renesas: rzg2l: Fix missing port register 21h Greg Kroah-Hartman
2021-11-15 17:01 ` [PATCH 5.15 596/917] ASoC: wcd9335: Use correct version to initialize Class H Greg Kroah-Hartman
2021-11-15 17:01 ` [PATCH 5.15 597/917] arm64: dts: qcom: msm8916: Fix Secondary MI2S bit clock Greg Kroah-Hartman
2021-11-15 17:01 ` [PATCH 5.15 598/917] arm64: dts: renesas: beacon: Fix Ethernet PHY mode Greg Kroah-Hartman
2021-11-15 17:01 ` [PATCH 5.15 599/917] iommu/mediatek: Fix out-of-range warning with clang Greg Kroah-Hartman
2021-11-15 17:01 ` [PATCH 5.15 600/917] arm64: dts: qcom: pm8916: Remove wrong reg-names for rtc@6000 Greg Kroah-Hartman
2021-11-15 17:01 ` [PATCH 5.15 601/917] iommu/dma: Fix sync_sg with swiotlb Greg Kroah-Hartman
2021-11-15 17:01 ` [PATCH 5.15 602/917] iommu/dma: Fix arch_sync_dma for map Greg Kroah-Hartman
2021-11-15 17:01 ` [PATCH 5.15 603/917] ALSA: hda: Reduce udelay() at SKL+ position reporting Greg Kroah-Hartman
2021-11-15 17:01 ` [PATCH 5.15 604/917] ALSA: hda: Use position buffer for SKL+ again Greg Kroah-Hartman
2021-11-15 17:01 ` [PATCH 5.15 605/917] ALSA: usb-audio: Fix possible race at sync of urb completions Greg Kroah-Hartman
2021-11-15 17:01 ` [PATCH 5.15 606/917] soundwire: debugfs: use controller id and link_id for debugfs Greg Kroah-Hartman
2021-11-15 17:01 ` [PATCH 5.15 607/917] power: reset: at91-reset: check properly the return value of devm_of_iomap Greg Kroah-Hartman
2021-11-15 17:01 ` [PATCH 5.15 608/917] scsi: ufs: core: Fix ufshcd_probe_hba() prototype to match the definition Greg Kroah-Hartman
2021-11-15 17:01 ` [PATCH 5.15 609/917] scsi: ufs: core: Stop clearing UNIT ATTENTIONS Greg Kroah-Hartman
2021-11-15 17:01 ` [PATCH 5.15 610/917] scsi: megaraid_sas: Fix concurrent access to ISR between IRQ polling and real interrupt Greg Kroah-Hartman
2021-11-15 17:01 ` [PATCH 5.15 611/917] scsi: pm80xx: Fix misleading log statement in pm8001_mpi_get_nvmd_resp() Greg Kroah-Hartman
2021-11-15 17:01 ` [PATCH 5.15 612/917] driver core: Fix possible memory leak in device_link_add() Greg Kroah-Hartman
2021-11-15 17:01 ` [PATCH 5.15 613/917] arm: dts: omap3-gta04a4: accelerometer irq fix Greg Kroah-Hartman
2021-11-15 17:01 ` [PATCH 5.15 614/917] ASoC: SOF: topology: do not power down primary core during topology removal Greg Kroah-Hartman
2021-11-15 17:01 ` [PATCH 5.15 615/917] iio: st_pressure_spi: Add missing entries SPI to device ID table Greg Kroah-Hartman
2021-11-15 17:01 ` [PATCH 5.15 616/917] soc/tegra: Fix an error handling path in tegra_powergate_power_up() Greg Kroah-Hartman
2021-11-15 17:01 ` [PATCH 5.15 617/917] memory: fsl_ifc: fix leak of irq and nand_irq in fsl_ifc_ctrl_probe Greg Kroah-Hartman
2021-11-15 17:01 ` [PATCH 5.15 618/917] clk: at91: check pmc node status before registering syscore ops Greg Kroah-Hartman
2021-11-15 17:01 ` [PATCH 5.15 619/917] powerpc/mem: Fix arch/powerpc/mm/mem.c:53:12: error: no previous prototype for create_section_mapping Greg Kroah-Hartman
2021-11-15 17:01 ` [PATCH 5.15 620/917] video: fbdev: chipsfb: use memset_io() instead of memset() Greg Kroah-Hartman
2021-11-15 17:01 ` [PATCH 5.15 621/917] powerpc: fix unbalanced node refcount in check_kvm_guest() Greg Kroah-Hartman
2021-11-15 17:01 ` [PATCH 5.15 622/917] powerpc/paravirt: correct preempt debug splat in vcpu_is_preempted() Greg Kroah-Hartman
2021-11-15 17:01 ` [PATCH 5.15 623/917] serial: 8250_dw: Drop wrong use of ACPI_PTR() Greg Kroah-Hartman
2021-11-15 17:01 ` [PATCH 5.15 624/917] usb: gadget: hid: fix error code in do_config() Greg Kroah-Hartman
2021-11-15 17:02 ` [PATCH 5.15 625/917] =?UTF-8?q?power:=20supply:=20rt5033=5Fbattery:=20Change=20voltage?= =?UTF-8?q?=20values=20to=20=C2=B5V?= Greg Kroah-Hartman
2021-11-15 17:02 ` [PATCH 5.15 626/917] power: supply: max17040: fix null-ptr-deref in max17040_probe() Greg Kroah-Hartman
2021-11-15 17:02 ` [PATCH 5.15 627/917] scsi: csiostor: Uninitialized data in csio_ln_vnp_read_cbfn() Greg Kroah-Hartman
2021-11-15 17:02 ` [PATCH 5.15 628/917] RDMA/mlx4: Return missed an error if device doesnt support steering Greg Kroah-Hartman
2021-11-15 17:02 ` [PATCH 5.15 629/917] usb: musb: select GENERIC_PHY instead of depending on it Greg Kroah-Hartman
2021-11-15 17:02 ` [PATCH 5.15 630/917] staging: most: dim2: do not double-register the same device Greg Kroah-Hartman
2021-11-15 17:02 ` [PATCH 5.15 631/917] staging: ks7010: select CRYPTO_HASH/CRYPTO_MICHAEL_MIC Greg Kroah-Hartman
2021-11-15 17:02 ` [PATCH 5.15 632/917] RDMA/core: Set sgtable nents when using ib_dma_virt_map_sg() Greg Kroah-Hartman
2021-11-15 17:02 ` [PATCH 5.15 633/917] dyndbg: make dyndbg a known cli param Greg Kroah-Hartman
2021-11-15 17:02 ` [PATCH 5.15 634/917] powerpc/perf: Fix cycles/instructions as PM_CYC/PM_INST_CMPL in power10 Greg Kroah-Hartman
2021-11-15 17:02 ` [PATCH 5.15 635/917] pinctrl: renesas: checker: Fix off-by-one bug in drive register check Greg Kroah-Hartman
2021-11-15 17:02 ` [PATCH 5.15 636/917] ARM: dts: stm32: Reduce DHCOR SPI NOR frequency to 50 MHz Greg Kroah-Hartman
2021-11-15 17:02 ` [PATCH 5.15 637/917] ARM: dts: stm32: fix STUSB1600 Type-C irq level on stm32mp15xx-dkx Greg Kroah-Hartman
2021-11-15 17:02 ` [PATCH 5.15 638/917] ARM: dts: stm32: fix SAI sub nodes register range Greg Kroah-Hartman
2021-11-15 17:02 ` [PATCH 5.15 639/917] ARM: dts: stm32: fix AV96 board SAI2 pin muxing on stm32mp15 Greg Kroah-Hartman
2021-11-15 17:02 ` [PATCH 5.15 640/917] ASoC: cs42l42: Always configure both ASP TX channels Greg Kroah-Hartman
2021-11-15 17:02 ` [PATCH 5.15 641/917] ASoC: cs42l42: Correct some register default values Greg Kroah-Hartman
2021-11-15 17:02 ` [PATCH 5.15 642/917] ASoC: cs42l42: Defer probe if request_threaded_irq() returns EPROBE_DEFER Greg Kroah-Hartman
2021-11-15 17:02 ` [PATCH 5.15 643/917] soc: qcom: rpmhpd: Make power_on actually enable the domain Greg Kroah-Hartman
2021-11-15 17:02 ` [PATCH 5.15 644/917] soc: qcom: socinfo: add two missing PMIC IDs Greg Kroah-Hartman
2021-11-15 17:02 ` [PATCH 5.15 645/917] iio: buffer: Fix double-free in iio_buffers_alloc_sysfs_and_mask() Greg Kroah-Hartman
2021-11-15 17:02 ` [PATCH 5.15 646/917] usb: typec: STUSB160X should select REGMAP_I2C Greg Kroah-Hartman
2021-11-15 17:02 ` [PATCH 5.15 647/917] iio: adis: do not disabe IRQs in adis_init() Greg Kroah-Hartman
2021-11-15 17:02 ` [PATCH 5.15 648/917] soundwire: bus: stop dereferencing invalid slave pointer Greg Kroah-Hartman
2021-11-15 17:02 ` [PATCH 5.15 649/917] scsi: ufs: ufshcd-pltfrm: Fix memory leak due to probe defer Greg Kroah-Hartman
2021-11-15 17:02 ` [PATCH 5.15 650/917] scsi: lpfc: Wait for successful restart of SLI3 adapter during host sg_reset Greg Kroah-Hartman
2021-11-15 17:02 ` [PATCH 5.15 651/917] serial: imx: fix detach/attach of serial console Greg Kroah-Hartman
2021-11-15 17:02 ` [PATCH 5.15 652/917] usb: dwc2: drd: fix dwc2_force_mode call in dwc2_ovr_init Greg Kroah-Hartman
2021-11-15 17:02 ` [PATCH 5.15 653/917] usb: dwc2: drd: fix dwc2_drd_role_sw_set when clock could be disabled Greg Kroah-Hartman
2021-11-15 17:02 ` [PATCH 5.15 654/917] usb: dwc2: drd: reset current session before setting the new one Greg Kroah-Hartman
2021-11-15 17:02 ` [PATCH 5.15 655/917] powerpc/booke: Disable STRICT_KERNEL_RWX, DEBUG_PAGEALLOC and KFENCE Greg Kroah-Hartman
2021-11-15 17:02 ` [PATCH 5.15 656/917] usb: dwc3: gadget: Skip resizing EPs TX FIFO if already resized Greg Kroah-Hartman
2021-11-15 17:02 ` [PATCH 5.15 657/917] firmware: qcom_scm: Fix error retval in __qcom_scm_is_call_available() Greg Kroah-Hartman
2021-11-15 17:02 ` [PATCH 5.15 658/917] soc: qcom: rpmhpd: fix sm8350_mxcs peer domain Greg Kroah-Hartman
2021-11-15 17:02 ` [PATCH 5.15 659/917] soc: qcom: apr: Add of_node_put() before return Greg Kroah-Hartman
2021-11-15 17:02 ` [PATCH 5.15 660/917] arm64: dts: qcom: pmi8994: Fix "eternal"->"external" typo in WLED node Greg Kroah-Hartman
2021-11-15 17:02 ` [PATCH 5.15 661/917] arm64: dts: qcom: sdm845: Use RPMH_CE_CLK macro directly Greg Kroah-Hartman
2021-11-15 17:02 ` [PATCH 5.15 662/917] arm64: dts: qcom: sdm845: Fix Qualcomm crypto engine bus clock Greg Kroah-Hartman
2021-11-15 17:02 ` [PATCH 5.15 663/917] pinctrl: equilibrium: Fix function addition in multiple groups Greg Kroah-Hartman
2021-11-15 17:02 ` [PATCH 5.15 664/917] ASoC: topology: Fix stub for snd_soc_tplg_component_remove() Greg Kroah-Hartman
2021-11-15 17:02 ` [PATCH 5.15 665/917] phy: qcom-qusb2: Fix a memory leak on probe Greg Kroah-Hartman
2021-11-15 17:02 ` [PATCH 5.15 666/917] phy: ti: gmii-sel: check of_get_address() for failure Greg Kroah-Hartman
2021-11-15 17:02 ` [PATCH 5.15 667/917] phy: qcom-qmp: another fix for the sc8180x PCIe definition Greg Kroah-Hartman
2021-11-15 17:02 ` [PATCH 5.15 668/917] phy: qcom-snps: Correct the FSEL_MASK Greg Kroah-Hartman
2021-11-15 17:02 ` [PATCH 5.15 669/917] phy: Sparx5 Eth SerDes: Fix return value check in sparx5_serdes_probe() Greg Kroah-Hartman
2021-11-15 17:02 ` [PATCH 5.15 670/917] serial: xilinx_uartps: Fix race condition causing stuck TX Greg Kroah-Hartman
2021-11-15 17:02 ` [PATCH 5.15 671/917] clk: at91: sam9x60-pll: use DIV_ROUND_CLOSEST_ULL Greg Kroah-Hartman
2021-11-15 17:02 ` [PATCH 5.15 672/917] clk: at91: clk-master: check if div or pres is zero Greg Kroah-Hartman
2021-11-15 17:02 ` [PATCH 5.15 673/917] clk: at91: clk-master: fix prescaler logic Greg Kroah-Hartman
2021-11-15 17:02 ` [PATCH 5.15 674/917] HID: u2fzero: clarify error check and length calculations Greg Kroah-Hartman
2021-11-15 17:02 ` [PATCH 5.15 675/917] HID: u2fzero: properly handle timeouts in usb_submit_urb Greg Kroah-Hartman
2021-11-15 17:02 ` [PATCH 5.15 676/917] powerpc/nohash: Fix __ptep_set_access_flags() and ptep_set_wrprotect() Greg Kroah-Hartman
2021-11-15 17:02 ` [PATCH 5.15 677/917] powerpc/book3e: Fix set_memory_x() and set_memory_nx() Greg Kroah-Hartman
2021-11-15 17:02 ` [PATCH 5.15 678/917] powerpc/44x/fsp2: add missing of_node_put Greg Kroah-Hartman
2021-11-15 17:02 ` [PATCH 5.15 679/917] powerpc/xmon: fix task state output Greg Kroah-Hartman
2021-11-15 17:02 ` [PATCH 5.15 680/917] ALSA: oxfw: fix functional regression for Mackie Onyx 1640i in v5.14 or later Greg Kroah-Hartman
2021-11-15 17:02 ` [PATCH 5.15 681/917] iommu/dma: Fix incorrect error return on iommu deferred attach Greg Kroah-Hartman
2021-11-15 17:02 ` [PATCH 5.15 682/917] powerpc: Dont provide __kernel_map_pages() without ARCH_SUPPORTS_DEBUG_PAGEALLOC Greg Kroah-Hartman
2021-11-15 17:02 ` [PATCH 5.15 683/917] ASoC: cs42l42: Correct configuring of switch inversion from ts-inv Greg Kroah-Hartman
2021-11-15 17:02 ` [PATCH 5.15 684/917] RDMA/hns: Fix initial arm_st of CQ Greg Kroah-Hartman
2021-11-15 17:03 ` [PATCH 5.15 685/917] RDMA/hns: Modify the value of MAX_LP_MSG_LEN to meet hardware compatibility Greg Kroah-Hartman
2021-11-15 17:03 ` [PATCH 5.15 686/917] ASoC: rsnd: Fix an error handling path in rsnd_node_count() Greg Kroah-Hartman
2021-11-15 17:03 ` [PATCH 5.15 687/917] serial: cpm_uart: Protect udbg definitions by CONFIG_SERIAL_CPM_CONSOLE Greg Kroah-Hartman
2021-11-15 17:03 ` [PATCH 5.15 688/917] virtio_ring: check desc == NULL when using indirect with packed Greg Kroah-Hartman
2021-11-15 17:03 ` [PATCH 5.15 689/917] vdpa/mlx5: Fix clearing of VIRTIO_NET_F_MAC feature bit Greg Kroah-Hartman
2021-11-15 17:03 ` [PATCH 5.15 690/917] mips: cm: Convert to bitfield API to fix out-of-bounds access Greg Kroah-Hartman
2021-11-15 17:03 ` [PATCH 5.15 691/917] power: supply: bq27xxx: Fix kernel crash on IRQ handler register error Greg Kroah-Hartman
2021-11-15 17:03 ` [PATCH 5.15 692/917] RDMA/core: Require the driver to set the IOVA correctly during rereg_mr Greg Kroah-Hartman
2021-11-15 17:03 ` [PATCH 5.15 693/917] apparmor: fix error check Greg Kroah-Hartman
2021-11-15 17:03 ` [PATCH 5.15 694/917] rpmsg: Fix rpmsg_create_ept return when RPMSG config is not defined Greg Kroah-Hartman
2021-11-15 17:03 ` [PATCH 5.15 695/917] mtd: rawnand: intel: Fix potential buffer overflow in probe Greg Kroah-Hartman
2021-11-15 17:03 ` [PATCH 5.15 696/917] nfsd: dont alloc under spinlock in rpc_parse_scope_id Greg Kroah-Hartman
2021-11-15 17:03 ` [PATCH 5.15 697/917] rtc: ds1302: Add SPI ID table Greg Kroah-Hartman
2021-11-15 17:03 ` [PATCH 5.15 698/917] rtc: ds1390: " Greg Kroah-Hartman
2021-11-15 17:03 ` [PATCH 5.15 699/917] rtc: pcf2123: " Greg Kroah-Hartman
2021-11-15 17:03 ` [PATCH 5.15 700/917] remoteproc: imx_rproc: Fix TCM io memory type Greg Kroah-Hartman
2021-11-15 17:03 ` [PATCH 5.15 701/917] i2c: i801: Use PCI bus rescan mutex to protect P2SB access Greg Kroah-Hartman
2021-11-15 17:03 ` [PATCH 5.15 702/917] dmaengine: idxd: move out percpu_ref_exit() to ensure its outside submission Greg Kroah-Hartman
2021-11-15 17:03 ` [PATCH 5.15 703/917] rtc: mcp795: Add SPI ID table Greg Kroah-Hartman
2021-11-15 17:03 ` [PATCH 5.15 704/917] Input: ariel-pwrbutton - add SPI device " Greg Kroah-Hartman
2021-11-15 17:03 ` [PATCH 5.15 705/917] i2c: mediatek: fixing the incorrect register offset Greg Kroah-Hartman
2021-11-15 17:03 ` [PATCH 5.15 706/917] NFS: Default change_attr_type to NFS4_CHANGE_TYPE_IS_UNDEFINED Greg Kroah-Hartman
2021-11-15 17:03 ` [PATCH 5.15 707/917] NFS: Dont set NFS_INO_DATA_INVAL_DEFER and NFS_INO_INVALID_DATA Greg Kroah-Hartman
2021-11-15 17:03 ` [PATCH 5.15 708/917] NFS: Ignore the directory size when marking for revalidation Greg Kroah-Hartman
2021-11-15 17:03 ` [PATCH 5.15 709/917] NFS: Fix dentry verifier races Greg Kroah-Hartman
2021-11-15 17:03 ` [PATCH 5.15 710/917] pnfs/flexfiles: Fix misplaced barrier in nfs4_ff_layout_prepare_ds Greg Kroah-Hartman
2021-11-15 17:03 ` [PATCH 5.15 711/917] drm/bridge/lontium-lt9611uxc: fix provided connector suport Greg Kroah-Hartman
2021-11-15 17:03 ` [PATCH 5.15 712/917] drm/plane-helper: fix uninitialized variable reference Greg Kroah-Hartman
2021-11-15 17:03 ` [PATCH 5.15 713/917] PCI: aardvark: Dont spam about PIO Response Status Greg Kroah-Hartman
2021-11-15 17:03 ` [PATCH 5.15 714/917] PCI: aardvark: Fix preserving PCI_EXP_RTCTL_CRSSVE flag on emulated bridge Greg Kroah-Hartman
2021-11-15 17:03 ` [PATCH 5.15 715/917] opp: Fix return in _opp_add_static_v2() Greg Kroah-Hartman
2021-11-15 17:03 ` [PATCH 5.15 716/917] NFS: Fix deadlocks in nfs_scan_commit_list() Greg Kroah-Hartman
2021-11-15 17:03 ` [PATCH 5.15 717/917] sparc: Add missing "FORCE" target when using if_changed Greg Kroah-Hartman
2021-11-15 17:03 ` [PATCH 5.15 718/917] fs: orangefs: fix error return code of orangefs_revalidate_lookup() Greg Kroah-Hartman
2021-11-15 17:03 ` [PATCH 5.15 719/917] Input: st1232 - increase "wait ready" timeout Greg Kroah-Hartman
2021-11-15 17:03 ` [PATCH 5.15 720/917] drm/bridge: nwl-dsi: Add atomic_get_input_bus_fmts Greg Kroah-Hartman
2021-11-15 17:03 ` [PATCH 5.15 721/917] mtd: spi-nor: hisi-sfc: Remove excessive clk_disable_unprepare() Greg Kroah-Hartman
2021-11-15 17:03 ` [PATCH 5.15 722/917] PCI: uniphier: Serialize INTx masking/unmasking and fix the bit operation Greg Kroah-Hartman
2021-11-15 17:03 ` [PATCH 5.15 723/917] mtd: rawnand: arasan: Prevent an unsupported configuration Greg Kroah-Hartman
2021-11-15 17:03 ` [PATCH 5.15 724/917] mtd: core: dont remove debugfs directory if device is in use Greg Kroah-Hartman
2021-11-15 17:03 ` [PATCH 5.15 725/917] remoteproc: Fix a memory leak in an error handling path in rproc_handle_vdev() Greg Kroah-Hartman
2021-11-15 17:03 ` [PATCH 5.15 726/917] rtc: rv3032: fix error handling in rv3032_clkout_set_rate() Greg Kroah-Hartman
2021-11-15 17:03 ` [PATCH 5.15 727/917] dmaengine: at_xdmac: call at_xdmac_axi_config() on resume path Greg Kroah-Hartman
2021-11-15 17:03 ` [PATCH 5.15 728/917] dmaengine: at_xdmac: fix AT_XDMAC_CC_PERID() macro Greg Kroah-Hartman
2021-11-15 17:03 ` [PATCH 5.15 729/917] dmaengine: stm32-dma: fix stm32_dma_get_max_width Greg Kroah-Hartman
2021-11-15 17:03 ` [PATCH 5.15 730/917] NFS: Fix up commit deadlocks Greg Kroah-Hartman
2021-11-15 17:03 ` [PATCH 5.15 731/917] NFS: Fix an Oops in pnfs_mark_request_commit() Greg Kroah-Hartman
2021-11-15 17:03 ` [PATCH 5.15 732/917] Fix user namespace leak Greg Kroah-Hartman
2021-11-15 17:03 ` [PATCH 5.15 733/917] auxdisplay: img-ascii-lcd: Fix lock-up when displaying empty string Greg Kroah-Hartman
2021-11-15 17:03 ` [PATCH 5.15 734/917] auxdisplay: ht16k33: Connect backlight to fbdev Greg Kroah-Hartman
2021-11-15 17:03 ` [PATCH 5.15 735/917] auxdisplay: ht16k33: Fix frame buffer device blanking Greg Kroah-Hartman
2021-11-15 17:03 ` [PATCH 5.15 736/917] soc: fsl: dpaa2-console: free buffer before returning from dpaa2_console_read Greg Kroah-Hartman
2021-11-15 17:03 ` [PATCH 5.15 737/917] netfilter: nfnetlink_queue: fix OOB when mac header was cleared Greg Kroah-Hartman
2021-11-15 17:03 ` [PATCH 5.15 738/917] dmaengine: dmaengine_desc_callback_valid(): Check for `callback_result` Greg Kroah-Hartman
2021-11-15 17:03 ` [PATCH 5.15 739/917] dmaengine: tegra210-adma: fix pm runtime unbalance Greg Kroah-Hartman
2021-11-15 17:03 ` [PATCH 5.15 740/917] dmanegine: idxd: fix resource free ordering on driver removal Greg Kroah-Hartman
2021-11-15 17:03 ` [PATCH 5.15 741/917] dmaengine: idxd: reconfig device after device reset command Greg Kroah-Hartman
2021-11-15 17:03 ` [PATCH 5.15 742/917] signal/sh: Use force_sig(SIGKILL) instead of do_group_exit(SIGKILL) Greg Kroah-Hartman
2021-11-15 17:03 ` [PATCH 5.15 743/917] m68k: set a default value for MEMORY_RESERVE Greg Kroah-Hartman
2021-11-15 17:03 ` [PATCH 5.15 744/917] watchdog: f71808e_wdt: fix inaccurate report in WDIOC_GETTIMEOUT Greg Kroah-Hartman
2021-11-15 17:04 ` [PATCH 5.15 745/917] ar7: fix kernel builds for compiler test Greg Kroah-Hartman
2021-11-15 17:04 ` [PATCH 5.15 746/917] scsi: target: core: Remove from tmr_list during LUN unlink Greg Kroah-Hartman
2021-11-15 17:04 ` [PATCH 5.15 747/917] scsi: qla2xxx: Relogin during fabric disturbance Greg Kroah-Hartman
2021-11-15 17:04 ` [PATCH 5.15 748/917] scsi: qla2xxx: Fix gnl list corruption Greg Kroah-Hartman
2021-11-15 17:04 ` [PATCH 5.15 749/917] scsi: qla2xxx: Turn off target reset during issue_lip Greg Kroah-Hartman
2021-11-15 17:04 ` [PATCH 5.15 750/917] scsi: qla2xxx: edif: Fix app start fail Greg Kroah-Hartman
2021-11-15 17:04 ` [PATCH 5.15 751/917] scsi: qla2xxx: edif: Fix app start delay Greg Kroah-Hartman
2021-11-15 17:04 ` [PATCH 5.15 752/917] scsi: qla2xxx: edif: Flush stale events and msgs on session down Greg Kroah-Hartman
2021-11-15 17:04 ` [PATCH 5.15 753/917] scsi: qla2xxx: edif: Increase ELS payload Greg Kroah-Hartman
2021-11-15 17:04 ` [PATCH 5.15 754/917] scsi: qla2xxx: edif: Fix EDIF bsg Greg Kroah-Hartman
2021-11-15 17:04 ` [PATCH 5.15 755/917] NFSv4: Fix a regression in nfs_set_open_stateid_locked() Greg Kroah-Hartman
2021-11-15 17:04 ` [PATCH 5.15 756/917] dmaengine: idxd: fix resource leak on dmaengine driver disable Greg Kroah-Hartman
2021-11-15 17:04 ` [PATCH 5.15 757/917] i2c: xlr: Fix a resource leak in the error handling path of xlr_i2c_probe() Greg Kroah-Hartman
2021-11-15 17:04 ` [PATCH 5.15 758/917] gpio: realtek-otto: fix GPIO line IRQ offset Greg Kroah-Hartman
2021-11-15 17:04 ` [PATCH 5.15 759/917] xen-pciback: Fix return in pm_ctrl_init() Greg Kroah-Hartman
2021-11-15 17:04 ` [PATCH 5.15 760/917] nbd: fix max value for first_minor Greg Kroah-Hartman
2021-11-15 17:04 ` [PATCH 5.15 761/917] nbd: fix possible overflow for first_minor in nbd_dev_add() Greg Kroah-Hartman
2021-11-15 17:04 ` [PATCH 5.15 762/917] io-wq: fix max-workers not correctly set on multi-node system Greg Kroah-Hartman
2021-11-15 17:04 ` [PATCH 5.15 763/917] net: davinci_emac: Fix interrupt pacing disable Greg Kroah-Hartman
2021-11-15 17:04 ` [PATCH 5.15 764/917] kselftests/net: add missed icmp.sh test to Makefile Greg Kroah-Hartman
2021-11-15 17:04 ` [PATCH 5.15 765/917] kselftests/net: add missed setup_loopback.sh/setup_veth.sh " Greg Kroah-Hartman
2021-11-15 17:04 ` [PATCH 5.15 766/917] kselftests/net: add missed SRv6 tests Greg Kroah-Hartman
2021-11-15 17:04 ` [PATCH 5.15 767/917] kselftests/net: add missed vrf_strict_mode_test.sh test to Makefile Greg Kroah-Hartman
2021-11-15 17:04 ` [PATCH 5.15 768/917] kselftests/net: add missed toeplitz.sh/toeplitz_client.sh " Greg Kroah-Hartman
2021-11-15 17:04 ` [PATCH 5.15 769/917] ethtool: fix ethtool msg len calculation for pause stats Greg Kroah-Hartman
2021-11-15 17:04 ` [PATCH 5.15 770/917] openrisc: fix SMP tlb flush NULL pointer dereference Greg Kroah-Hartman
2021-11-15 17:04 ` [PATCH 5.15 771/917] net: vlan: fix a UAF in vlan_dev_real_dev() Greg Kroah-Hartman
2021-11-15 17:04 ` [PATCH 5.15 772/917] net: dsa: felix: fix broken VLAN-tagged PTP under VLAN-aware bridge Greg Kroah-Hartman
2021-11-15 17:04 ` [PATCH 5.15 773/917] ice: Fix replacing VF hardware MAC to existing MAC filter Greg Kroah-Hartman
2021-11-15 17:04 ` [PATCH 5.15 774/917] ice: Fix not stopping Tx queues for VFs Greg Kroah-Hartman
2021-11-15 17:04 ` [PATCH 5.15 775/917] kdb: Adopt schedulers task classification Greg Kroah-Hartman
2021-11-15 17:04 ` [PATCH 5.15 776/917] ACPI: PMIC: Fix intel_pmic_regs_handler() read accesses Greg Kroah-Hartman
2021-11-15 17:04 ` [PATCH 5.15 777/917] PCI: j721e: Fix j721e_pcie_probe() error path Greg Kroah-Hartman
2021-11-15 17:04 ` [PATCH 5.15 778/917] nvdimm/btt: do not call del_gendisk() if not needed Greg Kroah-Hartman
2021-11-15 17:04 ` [PATCH 5.15 779/917] scsi: bsg: Fix errno when scsi_bsg_register_queue() fails Greg Kroah-Hartman
2021-11-15 17:04 ` [PATCH 5.15 780/917] scsi: ufs: ufshpb: Use proper power management API Greg Kroah-Hartman
2021-11-15 17:04 ` [PATCH 5.15 781/917] scsi: ufs: core: Fix NULL pointer dereference Greg Kroah-Hartman
2021-11-15 17:04 ` [PATCH 5.15 782/917] scsi: ufs: ufshpb: Properly handle max-single-cmd Greg Kroah-Hartman
2021-11-15 17:04 ` [PATCH 5.15 783/917] selftests: net: properly support IPv6 in GSO GRE test Greg Kroah-Hartman
2021-11-15 17:04 ` [PATCH 5.15 784/917] drm/nouveau/svm: Fix refcount leak bug and missing check against null bug Greg Kroah-Hartman
2021-11-15 17:04 ` [PATCH 5.15 785/917] nvdimm/pmem: cleanup the disk if pmem_release_disk() is yet assigned Greg Kroah-Hartman
2021-11-15 17:04 ` [PATCH 5.15 786/917] block/ataflop: use the blk_cleanup_disk() helper Greg Kroah-Hartman
2021-11-15 17:04 ` [PATCH 5.15 787/917] block/ataflop: add registration bool before calling del_gendisk() Greg Kroah-Hartman
2021-11-15 17:04 ` [PATCH 5.15 788/917] block/ataflop: provide a helper for cleanup up an atari disk Greg Kroah-Hartman
2021-11-15 17:04 ` [PATCH 5.15 789/917] ataflop: remove ataflop_probe_lock mutex Greg Kroah-Hartman
2021-11-15 17:04 ` [PATCH 5.15 790/917] PCI: Do not enable AtomicOps on VFs Greg Kroah-Hartman
2021-11-15 17:04 ` [PATCH 5.15 791/917] cpufreq: intel_pstate: Clear HWP desired on suspend/shutdown and offline Greg Kroah-Hartman
2021-11-15 17:04 ` [PATCH 5.15 792/917] net: phy: fix duplex out of sync problem while changing settings Greg Kroah-Hartman
2021-11-15 17:04 ` [PATCH 5.15 793/917] block: fix device_add_disk() kobject_create_and_add() error handling Greg Kroah-Hartman
2021-11-15 17:04 ` [PATCH 5.15 794/917] drm/ttm: remove ttm_bo_vm_insert_huge() Greg Kroah-Hartman
2021-11-15 17:04 ` [PATCH 5.15 795/917] bonding: Fix a use-after-free problem when bond_sysfs_slave_add() failed Greg Kroah-Hartman
2021-11-15 17:04 ` [PATCH 5.15 796/917] octeontx2-pf: select CONFIG_NET_DEVLINK Greg Kroah-Hartman
2021-11-15 17:04 ` [PATCH 5.15 797/917] ALSA: memalloc: Catch call with NULL snd_dma_buffer pointer Greg Kroah-Hartman
2021-11-15 17:04 ` [PATCH 5.15 798/917] mfd: core: Add missing of_node_put for loop iteration Greg Kroah-Hartman
2021-11-15 17:04 ` [PATCH 5.15 799/917] mfd: cpcap: Add SPI device ID table Greg Kroah-Hartman
2021-11-15 17:04 ` [PATCH 5.15 800/917] mfd: sprd: " Greg Kroah-Hartman
2021-11-15 17:04 ` [PATCH 5.15 801/917] mfd: altera-sysmgr: Fix a mistake caused by resource_size conversion Greg Kroah-Hartman
2021-11-15 17:04 ` [PATCH 5.15 802/917] ACPI: PM: Fix device wakeup power reference counting error Greg Kroah-Hartman
2021-11-15 17:04 ` [PATCH 5.15 803/917] libbpf: Fix lookup_and_delete_elem_flags error reporting Greg Kroah-Hartman
2021-11-15 17:04 ` [PATCH 5.15 804/917] selftests/bpf/xdp_redirect_multi: Put the logs to tmp folder Greg Kroah-Hartman
2021-11-15 17:05 ` [PATCH 5.15 805/917] selftests/bpf/xdp_redirect_multi: Use arping to accurate the arp number Greg Kroah-Hartman
2021-11-15 17:05 ` [PATCH 5.15 806/917] selftests/bpf/xdp_redirect_multi: Give tcpdump a chance to terminate cleanly Greg Kroah-Hartman
2021-11-15 17:05 ` [PATCH 5.15 807/917] selftests/bpf/xdp_redirect_multi: Limit the tests in netns Greg Kroah-Hartman
2021-11-15 17:05 ` [PATCH 5.15 808/917] drm: fb_helper: improve CONFIG_FB dependency Greg Kroah-Hartman
2021-11-19  7:50   ` Jiri Slaby
2021-11-19  7:56     ` Jiri Slaby
2021-11-19  8:10       ` Arnd Bergmann
2021-11-19  8:57         ` Alan J. Wylie
2021-11-19  9:33           ` Arnd Bergmann
2021-11-19 11:15     ` Greg Kroah-Hartman
2021-11-15 17:05 ` [PATCH 5.15 809/917] Revert "drm/imx: Annotate dma-fence critical section in commit path" Greg Kroah-Hartman
2021-11-15 17:05 ` [PATCH 5.15 810/917] drm/amdgpu/powerplay: fix sysfs_emit/sysfs_emit_at handling Greg Kroah-Hartman
2021-11-15 17:05 ` [PATCH 5.15 811/917] can: etas_es58x: es58x_rx_err_msg(): fix memory leak in error path Greg Kroah-Hartman
2021-11-15 17:05 ` [PATCH 5.15 812/917] can: mcp251xfd: mcp251xfd_chip_start(): fix error handling for mcp251xfd_chip_rx_int_enable() Greg Kroah-Hartman
2021-11-15 17:05 ` [PATCH 5.15 813/917] mm/zsmalloc.c: close race window between zs_pool_dec_isolated() and zs_unregister_migration() Greg Kroah-Hartman
2021-11-15 17:05 ` [PATCH 5.15 814/917] zram: off by one in read_block_state() Greg Kroah-Hartman
2021-11-15 17:05 ` [PATCH 5.15 815/917] perf bpf: Add missing free to bpf_event__print_bpf_prog_info() Greg Kroah-Hartman
2021-11-15 17:05 ` [PATCH 5.15 816/917] llc: fix out-of-bound array index in llc_sk_dev_hash() Greg Kroah-Hartman
2021-11-15 17:05 ` [PATCH 5.15 817/917] nfc: pn533: Fix double free when pn533_fill_fragment_skbs() fails Greg Kroah-Hartman
2021-11-15 17:05 ` [PATCH 5.15 818/917] litex_liteeth: Fix a double free in the remove function Greg Kroah-Hartman
2021-11-15 17:05 ` [PATCH 5.15 819/917] arm64: arm64_ftr_reg->name may not be a human-readable string Greg Kroah-Hartman
2021-11-15 17:05 ` [PATCH 5.15 820/917] arm64: pgtable: make __pte_to_phys/__phys_to_pte_val inline functions Greg Kroah-Hartman
2021-11-15 17:05 ` [PATCH 5.15 821/917] bpf, sockmap: Remove unhash handler for BPF sockmap usage Greg Kroah-Hartman
2021-11-15 17:05 ` [PATCH 5.15 822/917] bpf, sockmap: Fix race in ingress receive verdict with redirect to self Greg Kroah-Hartman
2021-11-15 17:05 ` [PATCH 5.15 823/917] bpf: sockmap, strparser, and tls are reusing qdisc_skb_cb and colliding Greg Kroah-Hartman
2021-11-15 17:05 ` [PATCH 5.15 824/917] bpf, sockmap: sk_skb data_end access incorrect when src_reg = dst_reg Greg Kroah-Hartman
2021-11-15 17:05 ` [PATCH 5.15 825/917] dmaengine: stm32-dma: fix burst in case of unaligned memory address Greg Kroah-Hartman
2021-11-15 17:05 ` [PATCH 5.15 826/917] dmaengine: stm32-dma: avoid 64-bit division in stm32_dma_get_max_width Greg Kroah-Hartman
2021-11-15 17:05 ` [PATCH 5.15 827/917] gve: Fix off by one in gve_tx_timeout() Greg Kroah-Hartman
2021-11-15 17:05 ` [PATCH 5.15 828/917] drm/i915/fb: Fix rounding error in subsampled plane size calculation Greg Kroah-Hartman
2021-11-15 17:05 ` [PATCH 5.15 829/917] init: make unknown command line param message clearer Greg Kroah-Hartman
2021-11-15 17:05 ` [PATCH 5.15 830/917] seq_file: fix passing wrong private data Greg Kroah-Hartman
2021-11-15 17:05 ` [PATCH 5.15 831/917] drm/amdgpu: fix uvd crash on Polaris12 during driver unloading Greg Kroah-Hartman
2021-11-15 17:05 ` [PATCH 5.15 832/917] net: dsa: mv88e6xxx: Dont support >1G speeds on 6191X on ports other than 10 Greg Kroah-Hartman
2021-11-15 17:05 ` [PATCH 5.15 833/917] net/sched: sch_taprio: fix undefined behavior in ktime_mono_to_any Greg Kroah-Hartman
2021-11-15 17:05 ` [PATCH 5.15 834/917] net: hns3: fix ROCE base interrupt vector initialization bug Greg Kroah-Hartman
2021-11-15 17:05 ` [PATCH 5.15 835/917] net: hns3: fix pfc packet number incorrect after querying pfc parameters Greg Kroah-Hartman
2021-11-15 17:05 ` [PATCH 5.15 836/917] net: hns3: fix kernel crash when unload VF while it is being reset Greg Kroah-Hartman
2021-11-15 17:05 ` [PATCH 5.15 837/917] net: hns3: allow configure ETS bandwidth of all TCs Greg Kroah-Hartman
2021-11-15 17:05 ` [PATCH 5.15 838/917] net: stmmac: allow a tc-taprio base-time of zero Greg Kroah-Hartman
2021-11-15 17:05 ` [PATCH 5.15 839/917] net: ethernet: ti: cpsw_ale: Fix access to un-initialized memory Greg Kroah-Hartman
2021-11-15 17:05 ` [PATCH 5.15 840/917] net: marvell: mvpp2: Fix wrong SerDes reconfiguration order Greg Kroah-Hartman
2021-11-15 17:05 ` [PATCH 5.15 841/917] vsock: prevent unnecessary refcnt inc for nonblocking connect Greg Kroah-Hartman
2021-11-15 17:05 ` [PATCH 5.15 842/917] net/smc: fix sk_refcnt underflow on linkdown and fallback Greg Kroah-Hartman
2021-11-15 17:05 ` [PATCH 5.15 843/917] cxgb4: fix eeprom len when diagnostics not implemented Greg Kroah-Hartman
2021-11-15 17:05 ` [PATCH 5.15 844/917] selftests/net: udpgso_bench_rx: fix port argument Greg Kroah-Hartman
2021-11-15 17:05 ` [PATCH 5.15 845/917] thermal: int340x: fix build on 32-bit targets Greg Kroah-Hartman
2021-11-15 17:05 ` [PATCH 5.15 846/917] smb3: do not error on fsync when readonly Greg Kroah-Hartman
2021-11-15 17:05 ` [PATCH 5.15 847/917] ARM: 9155/1: fix early early_iounmap() Greg Kroah-Hartman
2021-11-15 17:05 ` [PATCH 5.15 848/917] ARM: 9156/1: drop cc-option fallbacks for architecture selection Greg Kroah-Hartman
2021-11-15 17:05 ` [PATCH 5.15 849/917] parisc: Fix backtrace to always include init funtion names Greg Kroah-Hartman
2021-11-15 17:05 ` [PATCH 5.15 850/917] parisc: Flush kernel data mapping in set_pte_at() when installing pte for user page Greg Kroah-Hartman
2021-11-15 17:05 ` [PATCH 5.15 851/917] MIPS: fix duplicated slashes for Platform file path Greg Kroah-Hartman
2021-11-15 17:05 ` [PATCH 5.15 852/917] MIPS: fix *-pkg builds for loongson2ef platform Greg Kroah-Hartman
2021-11-15 17:05 ` [PATCH 5.15 853/917] MIPS: Fix assembly error from MIPSr2 code used within MIPS_ISA_ARCH_LEVEL Greg Kroah-Hartman
2021-11-15 17:05 ` [PATCH 5.15 854/917] x86/mce: Add errata workaround for Skylake SKX37 Greg Kroah-Hartman
2021-11-15 17:05 ` [PATCH 5.15 855/917] PCI/MSI: Move non-mask check back into low level accessors Greg Kroah-Hartman
2021-11-15 17:05 ` [PATCH 5.15 856/917] PCI/MSI: Destroy sysfs before freeing entries Greg Kroah-Hartman
2021-11-15 17:05 ` [PATCH 5.15 857/917] KVM: x86: move guest_pv_has out of user_access section Greg Kroah-Hartman
2021-11-15 17:05 ` [PATCH 5.15 858/917] posix-cpu-timers: Clear task::posix_cputimers_work in copy_process() Greg Kroah-Hartman
2021-11-15 17:05 ` [PATCH 5.15 859/917] irqchip/sifive-plic: Fixup EOI failed when masked Greg Kroah-Hartman
2021-11-15 17:05 ` [PATCH 5.15 860/917] f2fs: should use GFP_NOFS for directory inodes Greg Kroah-Hartman
2021-11-15 17:05 ` [PATCH 5.15 861/917] f2fs: include non-compressed blocks in compr_written_block Greg Kroah-Hartman
2021-11-15 17:05 ` [PATCH 5.15 862/917] f2fs: fix UAF in f2fs_available_free_memory Greg Kroah-Hartman
2021-11-15 17:05 ` [PATCH 5.15 863/917] ceph: fix mdsmap decode when there are MDSs beyond max_mds Greg Kroah-Hartman
2021-11-15 17:05 ` [PATCH 5.15 864/917] erofs: fix unsafe pagevec reuse of hooked pclusters Greg Kroah-Hartman
2021-11-15 17:06 ` [PATCH 5.15 865/917] drm/i915/guc: Fix blocked context accounting Greg Kroah-Hartman
2021-11-15 17:06 ` [PATCH 5.15 866/917] block: Hold invalidate_lock in BLKDISCARD ioctl Greg Kroah-Hartman
2021-11-15 17:06 ` [PATCH 5.15 867/917] block: Hold invalidate_lock in BLKZEROOUT ioctl Greg Kroah-Hartman
2021-11-15 17:06 ` [PATCH 5.15 868/917] block: Hold invalidate_lock in BLKRESETZONE ioctl Greg Kroah-Hartman
2021-11-15 17:06 ` [PATCH 5.15 869/917] ksmbd: Fix buffer length check in fsctl_validate_negotiate_info() Greg Kroah-Hartman
2021-11-15 17:06 ` [PATCH 5.15 870/917] ksmbd: dont need 8byte alignment for request length in ksmbd_check_message Greg Kroah-Hartman
2021-11-15 17:06 ` [PATCH 5.15 871/917] dmaengine: ti: k3-udma: Set bchan to NULL if a channel request fail Greg Kroah-Hartman
2021-11-15 17:06 ` [PATCH 5.15 872/917] dmaengine: ti: k3-udma: Set r/tchan or rflow to NULL if " Greg Kroah-Hartman
2021-11-15 17:06 ` [PATCH 5.15 873/917] dmaengine: bestcomm: fix system boot lockups Greg Kroah-Hartman
2021-11-15 17:06 ` [PATCH 5.15 874/917] net, neigh: Enable state migration between NUD_PERMANENT and NTF_USE Greg Kroah-Hartman
2021-11-15 17:06 ` [PATCH 5.15 875/917] 9p/net: fix missing error check in p9_check_errors Greg Kroah-Hartman
2021-11-15 17:06 ` [PATCH 5.15 876/917] mm/filemap.c: remove bogus VM_BUG_ON Greg Kroah-Hartman
2021-11-15 17:06 ` [PATCH 5.15 877/917] memcg: prohibit unconditional exceeding the limit of dying tasks Greg Kroah-Hartman
2021-11-15 17:06 ` [PATCH 5.15 878/917] mm, oom: pagefault_out_of_memory: dont force global OOM for " Greg Kroah-Hartman
2021-11-15 17:06 ` [PATCH 5.15 879/917] mm, oom: do not trigger out_of_memory from the #PF Greg Kroah-Hartman
2021-11-15 17:06 ` [PATCH 5.15 880/917] mm, thp: lock filemap when truncating page cache Greg Kroah-Hartman
2021-11-15 17:06 ` [PATCH 5.15 881/917] mm, thp: fix incorrect unmap behavior for private pages Greg Kroah-Hartman
2021-11-15 17:06 ` [PATCH 5.15 882/917] mfd: dln2: Add cell for initializing DLN2 ADC Greg Kroah-Hartman
2021-11-15 17:06 ` [PATCH 5.15 883/917] video: backlight: Drop maximum brightness override for brightness zero Greg Kroah-Hartman
2021-11-15 17:06 ` [PATCH 5.15 884/917] bcache: fix use-after-free problem in bcache_device_free() Greg Kroah-Hartman
2021-11-15 17:06 ` [PATCH 5.15 885/917] bcache: Revert "bcache: use bvec_virt" Greg Kroah-Hartman
2021-11-15 17:06 ` [PATCH 5.15 886/917] PM: sleep: Avoid calling put_device() under dpm_list_mtx Greg Kroah-Hartman
2021-11-15 17:06 ` [PATCH 5.15 887/917] s390/cpumf: cpum_cf PMU displays invalid value after hotplug remove Greg Kroah-Hartman
2021-11-15 17:06 ` [PATCH 5.15 888/917] s390/cio: check the subchannel validity for dev_busid Greg Kroah-Hartman
2021-11-15 17:06 ` [PATCH 5.15 889/917] s390/tape: fix timer initialization in tape_std_assign() Greg Kroah-Hartman
2021-11-15 17:06 ` [PATCH 5.15 890/917] s390/ap: Fix hanging ioctl caused by orphaned replies Greg Kroah-Hartman
2021-11-15 17:06 ` [PATCH 5.15 891/917] s390/cio: make ccw_device_dma_* more robust Greg Kroah-Hartman
2021-11-15 17:06 ` [PATCH 5.15 892/917] remoteproc: elf_loader: Fix loading segment when is_iomem true Greg Kroah-Hartman
2021-11-15 17:06 ` [PATCH 5.15 893/917] remoteproc: Fix the wrong default value of is_iomem Greg Kroah-Hartman
2021-11-15 17:06 ` [PATCH 5.15 894/917] remoteproc: imx_rproc: Fix ignoring mapping vdev regions Greg Kroah-Hartman
2021-11-15 17:06 ` [PATCH 5.15 895/917] remoteproc: imx_rproc: Fix rsc-table name Greg Kroah-Hartman
2021-11-15 17:06 ` [PATCH 5.15 896/917] mtd: rawnand: fsmc: Fix use of SM ORDER Greg Kroah-Hartman
2021-11-15 17:06 ` [PATCH 5.15 897/917] mtd: rawnand: ams-delta: Keep the driver compatible with on-die ECC engines Greg Kroah-Hartman
2021-11-15 17:06 ` [PATCH 5.15 898/917] mtd: rawnand: xway: " Greg Kroah-Hartman
2021-11-15 17:06 ` [PATCH 5.15 899/917] mtd: rawnand: mpc5121: " Greg Kroah-Hartman
2021-11-15 17:06 ` [PATCH 5.15 900/917] mtd: rawnand: gpio: " Greg Kroah-Hartman
2021-11-15 17:06 ` [PATCH 5.15 901/917] mtd: rawnand: pasemi: " Greg Kroah-Hartman
2021-11-15 17:06 ` [PATCH 5.15 902/917] mtd: rawnand: orion: " Greg Kroah-Hartman
2021-11-15 17:06 ` [PATCH 5.15 903/917] mtd: rawnand: plat_nand: " Greg Kroah-Hartman
2021-11-15 17:06 ` [PATCH 5.15 904/917] mtd: rawnand: au1550nd: " Greg Kroah-Hartman
2021-11-15 17:06 ` [PATCH 5.15 905/917] powerpc/vas: Fix potential NULL pointer dereference Greg Kroah-Hartman
2021-11-15 17:06 ` [PATCH 5.15 906/917] powerpc/bpf: Fix write protecting JIT code Greg Kroah-Hartman
2021-11-15 17:06 ` [PATCH 5.15 907/917] powerpc/32e: Ignore ESR in instruction storage interrupt handler Greg Kroah-Hartman
2021-11-15 17:06 ` [PATCH 5.15 908/917] powerpc/powernv/prd: Unregister OPAL_MSG_PRD2 notifier during module unload Greg Kroah-Hartman
2021-11-15 17:06 ` [PATCH 5.15 909/917] powerpc/security: Use a mutex for interrupt exit code patching Greg Kroah-Hartman
2021-11-15 17:06 ` [PATCH 5.15 910/917] powerpc/64s/interrupt: Fix check_return_regs_valid() false positive Greg Kroah-Hartman
2021-11-15 17:06 ` [PATCH 5.15 911/917] powerpc/pseries/mobility: ignore ibm, platform-facilities updates Greg Kroah-Hartman
2021-11-15 17:06 ` [PATCH 5.15 912/917] powerpc/85xx: fix timebase sync issue when CONFIG_HOTPLUG_CPU=n Greg Kroah-Hartman
2021-11-15 17:06 ` [PATCH 5.15 913/917] drm/sun4i: Fix macros in sun8i_csc.h Greg Kroah-Hartman
2021-11-15 17:06 ` [PATCH 5.15 914/917] PCI: Add PCI_EXP_DEVCTL_PAYLOAD_* macros Greg Kroah-Hartman
2021-11-15 17:06 ` [PATCH 5.15 915/917] PCI: aardvark: Fix PCIe Max Payload Size setting Greg Kroah-Hartman
2021-11-15 17:06 ` [PATCH 5.15 916/917] SUNRPC: Partial revert of commit 6f9f17287e78 Greg Kroah-Hartman
2021-11-15 17:06 ` [PATCH 5.15 917/917] drm/amd/display: Look at firmware version to determine using dmub on dcn21 Greg Kroah-Hartman
2021-11-16  0:51 ` [PATCH 5.15 000/917] 5.15.3-rc1 review Shuah Khan
2021-11-16  6:00 ` Fox Chen
2021-11-16  6:36 ` Naresh Kamboju
2021-11-16  8:39   ` Naresh Kamboju
2021-11-16  8:48     ` Greg Kroah-Hartman
2021-11-16  9:20       ` Jon Hunter
2021-11-16 10:12         ` Geert Uytterhoeven
2021-11-16 10:39           ` Greg Kroah-Hartman
2021-11-16 14:06             ` Greg Kroah-Hartman
2021-11-16 10:10       ` Naresh Kamboju

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=20211115165446.629423940@linuxfoundation.org \
    --to=gregkh@linuxfoundation.org \
    --cc=geert@linux-m68k.org \
    --cc=keescook@chromium.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=mark.rutland@arm.com \
    --cc=peterz@infradead.org \
    --cc=rmk+kernel@armlinux.org.uk \
    --cc=sashal@kernel.org \
    --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;
as well as URLs for NNTP newsgroup(s).