patches.lists.linux.dev archive mirror
 help / color / mirror / Atom feed
From: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
To: stable@vger.kernel.org
Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>,
	patches@lists.linux.dev, Eduard Zingerman <eddyz87@gmail.com>,
	Leon Hwang <hffilwlqm@gmail.com>,
	Alexei Starovoitov <ast@kernel.org>,
	Andrii Nakryiko <andrii@kernel.org>,
	Sasha Levin <sashal@kernel.org>
Subject: [PATCH 6.11 255/695] bpf, x64: Fix tailcall hierarchy
Date: Wed,  2 Oct 2024 14:54:13 +0200	[thread overview]
Message-ID: <20241002125832.626154001@linuxfoundation.org> (raw)
In-Reply-To: <20241002125822.467776898@linuxfoundation.org>

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

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

From: Leon Hwang <hffilwlqm@gmail.com>

[ Upstream commit 116e04ba1459fc08f80cf27b8c9f9f188be0fcb2 ]

This patch fixes a tailcall issue caused by abusing the tailcall in
bpf2bpf feature.

As we know, tail_call_cnt propagates by rax from caller to callee when
to call subprog in tailcall context. But, like the following example,
MAX_TAIL_CALL_CNT won't work because of missing tail_call_cnt
back-propagation from callee to caller.

\#include <linux/bpf.h>
\#include <bpf/bpf_helpers.h>
\#include "bpf_legacy.h"

struct {
	__uint(type, BPF_MAP_TYPE_PROG_ARRAY);
	__uint(max_entries, 1);
	__uint(key_size, sizeof(__u32));
	__uint(value_size, sizeof(__u32));
} jmp_table SEC(".maps");

int count = 0;

static __noinline
int subprog_tail1(struct __sk_buff *skb)
{
	bpf_tail_call_static(skb, &jmp_table, 0);
	return 0;
}

static __noinline
int subprog_tail2(struct __sk_buff *skb)
{
	bpf_tail_call_static(skb, &jmp_table, 0);
	return 0;
}

SEC("tc")
int entry(struct __sk_buff *skb)
{
	volatile int ret = 1;

	count++;
	subprog_tail1(skb);
	subprog_tail2(skb);

	return ret;
}

char __license[] SEC("license") = "GPL";

At run time, the tail_call_cnt in entry() will be propagated to
subprog_tail1() and subprog_tail2(). But, when the tail_call_cnt in
subprog_tail1() updates when bpf_tail_call_static(), the tail_call_cnt
in entry() won't be updated at the same time. As a result, in entry(),
when tail_call_cnt in entry() is less than MAX_TAIL_CALL_CNT and
subprog_tail1() returns because of MAX_TAIL_CALL_CNT limit,
bpf_tail_call_static() in suprog_tail2() is able to run because the
tail_call_cnt in subprog_tail2() propagated from entry() is less than
MAX_TAIL_CALL_CNT.

So, how many tailcalls are there for this case if no error happens?

>From top-down view, does it look like hierarchy layer and layer?

With this view, there will be 2+4+8+...+2^33 = 2^34 - 2 = 17,179,869,182
tailcalls for this case.

How about there are N subprog_tail() in entry()? There will be almost
N^34 tailcalls.

Then, in this patch, it resolves this case on x86_64.

In stead of propagating tail_call_cnt from caller to callee, it
propagates its pointer, tail_call_cnt_ptr, tcc_ptr for short.

However, where does it store tail_call_cnt?

It stores tail_call_cnt on the stack of main prog. When tail call
happens in subprog, it increments tail_call_cnt by tcc_ptr.

Meanwhile, it stores tail_call_cnt_ptr on the stack of main prog, too.

And, before jump to tail callee, it has to pop tail_call_cnt and
tail_call_cnt_ptr.

Then, at the prologue of subprog, it must not make rax as
tail_call_cnt_ptr again. It has to reuse tail_call_cnt_ptr from caller.

As a result, at run time, it has to recognize rax is tail_call_cnt or
tail_call_cnt_ptr at prologue by:

1. rax is tail_call_cnt if rax is <= MAX_TAIL_CALL_CNT.
2. rax is tail_call_cnt_ptr if rax is > MAX_TAIL_CALL_CNT, because a
   pointer won't be <= MAX_TAIL_CALL_CNT.

Here's an example to dump JITed.

struct {
	__uint(type, BPF_MAP_TYPE_PROG_ARRAY);
	__uint(max_entries, 1);
	__uint(key_size, sizeof(__u32));
	__uint(value_size, sizeof(__u32));
} jmp_table SEC(".maps");

int count = 0;

static __noinline
int subprog_tail(struct __sk_buff *skb)
{
	bpf_tail_call_static(skb, &jmp_table, 0);
	return 0;
}

SEC("tc")
int entry(struct __sk_buff *skb)
{
	int ret = 1;

	count++;
	subprog_tail(skb);
	subprog_tail(skb);

	return ret;
}

When bpftool p d j id 42:

int entry(struct __sk_buff * skb):
bpf_prog_0c0f4c2413ef19b1_entry:
; int entry(struct __sk_buff *skb)
   0:	endbr64
   4:	nopl	(%rax,%rax)
   9:	xorq	%rax, %rax		;; rax = 0 (tail_call_cnt)
   c:	pushq	%rbp
   d:	movq	%rsp, %rbp
  10:	endbr64
  14:	cmpq	$33, %rax		;; if rax > 33, rax = tcc_ptr
  18:	ja	0x20			;; if rax > 33 goto 0x20 ---+
  1a:	pushq	%rax			;; [rbp - 8] = rax = 0      |
  1b:	movq	%rsp, %rax		;; rax = rbp - 8            |
  1e:	jmp	0x21			;; ---------+               |
  20:	pushq	%rax			;; <--------|---------------+
  21:	pushq	%rax			;; <--------+ [rbp - 16] = rax
  22:	pushq	%rbx			;; callee saved
  23:	movq	%rdi, %rbx		;; rbx = skb (callee saved)
; count++;
  26:	movabsq	$-82417199407104, %rdi
  30:	movl	(%rdi), %esi
  33:	addl	$1, %esi
  36:	movl	%esi, (%rdi)
; subprog_tail(skb);
  39:	movq	%rbx, %rdi		;; rdi = skb
  3c:	movq	-16(%rbp), %rax		;; rax = tcc_ptr
  43:	callq	0x80			;; call subprog_tail()
; subprog_tail(skb);
  48:	movq	%rbx, %rdi		;; rdi = skb
  4b:	movq	-16(%rbp), %rax		;; rax = tcc_ptr
  52:	callq	0x80			;; call subprog_tail()
; return ret;
  57:	movl	$1, %eax
  5c:	popq	%rbx
  5d:	leave
  5e:	retq

int subprog_tail(struct __sk_buff * skb):
bpf_prog_3a140cef239a4b4f_subprog_tail:
; int subprog_tail(struct __sk_buff *skb)
   0:	endbr64
   4:	nopl	(%rax,%rax)
   9:	nopl	(%rax)			;; do not touch tail_call_cnt
   c:	pushq	%rbp
   d:	movq	%rsp, %rbp
  10:	endbr64
  14:	pushq	%rax			;; [rbp - 8]  = rax (tcc_ptr)
  15:	pushq	%rax			;; [rbp - 16] = rax (tcc_ptr)
  16:	pushq	%rbx			;; callee saved
  17:	pushq	%r13			;; callee saved
  19:	movq	%rdi, %rbx		;; rbx = skb
; asm volatile("r1 = %[ctx]\n\t"
  1c:	movabsq	$-105487587488768, %r13	;; r13 = jmp_table
  26:	movq	%rbx, %rdi		;; 1st arg, skb
  29:	movq	%r13, %rsi		;; 2nd arg, jmp_table
  2c:	xorl	%edx, %edx		;; 3rd arg, index = 0
  2e:	movq	-16(%rbp), %rax		;; rax = [rbp - 16] (tcc_ptr)
  35:	cmpq	$33, (%rax)
  39:	jae	0x4e			;; if *tcc_ptr >= 33 goto 0x4e --------+
  3b:	jmp	0x4e			;; jmp bypass, toggled by poking       |
  40:	addq	$1, (%rax)		;; (*tcc_ptr)++                        |
  44:	popq	%r13			;; callee saved                        |
  46:	popq	%rbx			;; callee saved                        |
  47:	popq	%rax			;; undo rbp-16 push                    |
  48:	popq	%rax			;; undo rbp-8  push                    |
  49:	nopl	(%rax,%rax)		;; tail call target, toggled by poking |
; return 0;				;;                                     |
  4e:	popq	%r13			;; restore callee saved <--------------+
  50:	popq	%rbx			;; restore callee saved
  51:	leave
  52:	retq

Furthermore, when trampoline is the caller of bpf prog, which is
tail_call_reachable, it is required to propagate rax through trampoline.

Fixes: ebf7d1f508a7 ("bpf, x64: rework pro/epilogue and tailcall handling in JIT")
Fixes: e411901c0b77 ("bpf: allow for tailcalls in BPF subprograms for x64 JIT")
Reviewed-by: Eduard Zingerman <eddyz87@gmail.com>
Signed-off-by: Leon Hwang <hffilwlqm@gmail.com>
Link: https://lore.kernel.org/r/20240714123902.32305-2-hffilwlqm@gmail.com
Signed-off-by: Alexei Starovoitov <ast@kernel.org>
Signed-off-by: Andrii Nakryiko <andrii@kernel.org>
Signed-off-by: Sasha Levin <sashal@kernel.org>
---
 arch/x86/net/bpf_jit_comp.c | 107 ++++++++++++++++++++++++++----------
 1 file changed, 79 insertions(+), 28 deletions(-)

diff --git a/arch/x86/net/bpf_jit_comp.c b/arch/x86/net/bpf_jit_comp.c
index d25d81c8ecc00..074b41fafbe3f 100644
--- a/arch/x86/net/bpf_jit_comp.c
+++ b/arch/x86/net/bpf_jit_comp.c
@@ -273,7 +273,7 @@ struct jit_context {
 /* Number of bytes emit_patch() needs to generate instructions */
 #define X86_PATCH_SIZE		5
 /* Number of bytes that will be skipped on tailcall */
-#define X86_TAIL_CALL_OFFSET	(11 + ENDBR_INSN_SIZE)
+#define X86_TAIL_CALL_OFFSET	(12 + ENDBR_INSN_SIZE)
 
 static void push_r12(u8 **pprog)
 {
@@ -403,6 +403,37 @@ static void emit_cfi(u8 **pprog, u32 hash)
 	*pprog = prog;
 }
 
+static void emit_prologue_tail_call(u8 **pprog, bool is_subprog)
+{
+	u8 *prog = *pprog;
+
+	if (!is_subprog) {
+		/* cmp rax, MAX_TAIL_CALL_CNT */
+		EMIT4(0x48, 0x83, 0xF8, MAX_TAIL_CALL_CNT);
+		EMIT2(X86_JA, 6);        /* ja 6 */
+		/* rax is tail_call_cnt if <= MAX_TAIL_CALL_CNT.
+		 * case1: entry of main prog.
+		 * case2: tail callee of main prog.
+		 */
+		EMIT1(0x50);             /* push rax */
+		/* Make rax as tail_call_cnt_ptr. */
+		EMIT3(0x48, 0x89, 0xE0); /* mov rax, rsp */
+		EMIT2(0xEB, 1);          /* jmp 1 */
+		/* rax is tail_call_cnt_ptr if > MAX_TAIL_CALL_CNT.
+		 * case: tail callee of subprog.
+		 */
+		EMIT1(0x50);             /* push rax */
+		/* push tail_call_cnt_ptr */
+		EMIT1(0x50);             /* push rax */
+	} else { /* is_subprog */
+		/* rax is tail_call_cnt_ptr. */
+		EMIT1(0x50);             /* push rax */
+		EMIT1(0x50);             /* push rax */
+	}
+
+	*pprog = prog;
+}
+
 /*
  * Emit x86-64 prologue code for BPF program.
  * bpf_tail_call helper will skip the first X86_TAIL_CALL_OFFSET bytes
@@ -424,10 +455,10 @@ static void emit_prologue(u8 **pprog, u32 stack_depth, bool ebpf_from_cbpf,
 			/* When it's the entry of the whole tailcall context,
 			 * zeroing rax means initialising tail_call_cnt.
 			 */
-			EMIT2(0x31, 0xC0); /* xor eax, eax */
+			EMIT3(0x48, 0x31, 0xC0); /* xor rax, rax */
 		else
 			/* Keep the same instruction layout. */
-			EMIT2(0x66, 0x90); /* nop2 */
+			emit_nops(&prog, 3);     /* nop3 */
 	}
 	/* Exception callback receives FP as third parameter */
 	if (is_exception_cb) {
@@ -453,7 +484,7 @@ static void emit_prologue(u8 **pprog, u32 stack_depth, bool ebpf_from_cbpf,
 	if (stack_depth)
 		EMIT3_off32(0x48, 0x81, 0xEC, round_up(stack_depth, 8));
 	if (tail_call_reachable)
-		EMIT1(0x50);         /* push rax */
+		emit_prologue_tail_call(&prog, is_subprog);
 	*pprog = prog;
 }
 
@@ -589,13 +620,15 @@ static void emit_return(u8 **pprog, u8 *ip)
 	*pprog = prog;
 }
 
+#define BPF_TAIL_CALL_CNT_PTR_STACK_OFF(stack)	(-16 - round_up(stack, 8))
+
 /*
  * Generate the following code:
  *
  * ... bpf_tail_call(void *ctx, struct bpf_array *array, u64 index) ...
  *   if (index >= array->map.max_entries)
  *     goto out;
- *   if (tail_call_cnt++ >= MAX_TAIL_CALL_CNT)
+ *   if ((*tcc_ptr)++ >= MAX_TAIL_CALL_CNT)
  *     goto out;
  *   prog = array->ptrs[index];
  *   if (prog == NULL)
@@ -608,7 +641,7 @@ static void emit_bpf_tail_call_indirect(struct bpf_prog *bpf_prog,
 					u32 stack_depth, u8 *ip,
 					struct jit_context *ctx)
 {
-	int tcc_off = -4 - round_up(stack_depth, 8);
+	int tcc_ptr_off = BPF_TAIL_CALL_CNT_PTR_STACK_OFF(stack_depth);
 	u8 *prog = *pprog, *start = *pprog;
 	int offset;
 
@@ -630,16 +663,14 @@ static void emit_bpf_tail_call_indirect(struct bpf_prog *bpf_prog,
 	EMIT2(X86_JBE, offset);                   /* jbe out */
 
 	/*
-	 * if (tail_call_cnt++ >= MAX_TAIL_CALL_CNT)
+	 * if ((*tcc_ptr)++ >= MAX_TAIL_CALL_CNT)
 	 *	goto out;
 	 */
-	EMIT2_off32(0x8B, 0x85, tcc_off);         /* mov eax, dword ptr [rbp - tcc_off] */
-	EMIT3(0x83, 0xF8, MAX_TAIL_CALL_CNT);     /* cmp eax, MAX_TAIL_CALL_CNT */
+	EMIT3_off32(0x48, 0x8B, 0x85, tcc_ptr_off); /* mov rax, qword ptr [rbp - tcc_ptr_off] */
+	EMIT4(0x48, 0x83, 0x38, MAX_TAIL_CALL_CNT); /* cmp qword ptr [rax], MAX_TAIL_CALL_CNT */
 
 	offset = ctx->tail_call_indirect_label - (prog + 2 - start);
 	EMIT2(X86_JAE, offset);                   /* jae out */
-	EMIT3(0x83, 0xC0, 0x01);                  /* add eax, 1 */
-	EMIT2_off32(0x89, 0x85, tcc_off);         /* mov dword ptr [rbp - tcc_off], eax */
 
 	/* prog = array->ptrs[index]; */
 	EMIT4_off32(0x48, 0x8B, 0x8C, 0xD6,       /* mov rcx, [rsi + rdx * 8 + offsetof(...)] */
@@ -654,6 +685,9 @@ static void emit_bpf_tail_call_indirect(struct bpf_prog *bpf_prog,
 	offset = ctx->tail_call_indirect_label - (prog + 2 - start);
 	EMIT2(X86_JE, offset);                    /* je out */
 
+	/* Inc tail_call_cnt if the slot is populated. */
+	EMIT4(0x48, 0x83, 0x00, 0x01);            /* add qword ptr [rax], 1 */
+
 	if (bpf_prog->aux->exception_boundary) {
 		pop_callee_regs(&prog, all_callee_regs_used);
 		pop_r12(&prog);
@@ -663,6 +697,11 @@ static void emit_bpf_tail_call_indirect(struct bpf_prog *bpf_prog,
 			pop_r12(&prog);
 	}
 
+	/* Pop tail_call_cnt_ptr. */
+	EMIT1(0x58);                              /* pop rax */
+	/* Pop tail_call_cnt, if it's main prog.
+	 * Pop tail_call_cnt_ptr, if it's subprog.
+	 */
 	EMIT1(0x58);                              /* pop rax */
 	if (stack_depth)
 		EMIT3_off32(0x48, 0x81, 0xC4,     /* add rsp, sd */
@@ -691,21 +730,19 @@ static void emit_bpf_tail_call_direct(struct bpf_prog *bpf_prog,
 				      bool *callee_regs_used, u32 stack_depth,
 				      struct jit_context *ctx)
 {
-	int tcc_off = -4 - round_up(stack_depth, 8);
+	int tcc_ptr_off = BPF_TAIL_CALL_CNT_PTR_STACK_OFF(stack_depth);
 	u8 *prog = *pprog, *start = *pprog;
 	int offset;
 
 	/*
-	 * if (tail_call_cnt++ >= MAX_TAIL_CALL_CNT)
+	 * if ((*tcc_ptr)++ >= MAX_TAIL_CALL_CNT)
 	 *	goto out;
 	 */
-	EMIT2_off32(0x8B, 0x85, tcc_off);             /* mov eax, dword ptr [rbp - tcc_off] */
-	EMIT3(0x83, 0xF8, MAX_TAIL_CALL_CNT);         /* cmp eax, MAX_TAIL_CALL_CNT */
+	EMIT3_off32(0x48, 0x8B, 0x85, tcc_ptr_off);   /* mov rax, qword ptr [rbp - tcc_ptr_off] */
+	EMIT4(0x48, 0x83, 0x38, MAX_TAIL_CALL_CNT);   /* cmp qword ptr [rax], MAX_TAIL_CALL_CNT */
 
 	offset = ctx->tail_call_direct_label - (prog + 2 - start);
 	EMIT2(X86_JAE, offset);                       /* jae out */
-	EMIT3(0x83, 0xC0, 0x01);                      /* add eax, 1 */
-	EMIT2_off32(0x89, 0x85, tcc_off);             /* mov dword ptr [rbp - tcc_off], eax */
 
 	poke->tailcall_bypass = ip + (prog - start);
 	poke->adj_off = X86_TAIL_CALL_OFFSET;
@@ -715,6 +752,9 @@ static void emit_bpf_tail_call_direct(struct bpf_prog *bpf_prog,
 	emit_jump(&prog, (u8 *)poke->tailcall_target + X86_PATCH_SIZE,
 		  poke->tailcall_bypass);
 
+	/* Inc tail_call_cnt if the slot is populated. */
+	EMIT4(0x48, 0x83, 0x00, 0x01);                /* add qword ptr [rax], 1 */
+
 	if (bpf_prog->aux->exception_boundary) {
 		pop_callee_regs(&prog, all_callee_regs_used);
 		pop_r12(&prog);
@@ -724,6 +764,11 @@ static void emit_bpf_tail_call_direct(struct bpf_prog *bpf_prog,
 			pop_r12(&prog);
 	}
 
+	/* Pop tail_call_cnt_ptr. */
+	EMIT1(0x58);                                  /* pop rax */
+	/* Pop tail_call_cnt, if it's main prog.
+	 * Pop tail_call_cnt_ptr, if it's subprog.
+	 */
 	EMIT1(0x58);                                  /* pop rax */
 	if (stack_depth)
 		EMIT3_off32(0x48, 0x81, 0xC4, round_up(stack_depth, 8));
@@ -1311,9 +1356,11 @@ static void emit_shiftx(u8 **pprog, u32 dst_reg, u8 src_reg, bool is64, u8 op)
 
 #define INSN_SZ_DIFF (((addrs[i] - addrs[i - 1]) - (prog - temp)))
 
-/* mov rax, qword ptr [rbp - rounded_stack_depth - 8] */
-#define RESTORE_TAIL_CALL_CNT(stack)				\
-	EMIT3_off32(0x48, 0x8B, 0x85, -round_up(stack, 8) - 8)
+#define __LOAD_TCC_PTR(off)			\
+	EMIT3_off32(0x48, 0x8B, 0x85, off)
+/* mov rax, qword ptr [rbp - rounded_stack_depth - 16] */
+#define LOAD_TAIL_CALL_CNT_PTR(stack)				\
+	__LOAD_TCC_PTR(BPF_TAIL_CALL_CNT_PTR_STACK_OFF(stack))
 
 static int do_jit(struct bpf_prog *bpf_prog, int *addrs, u8 *image, u8 *rw_image,
 		  int oldproglen, struct jit_context *ctx, bool jmp_padding)
@@ -2031,7 +2078,7 @@ st:			if (is_imm8(insn->off))
 
 			func = (u8 *) __bpf_call_base + imm32;
 			if (tail_call_reachable) {
-				RESTORE_TAIL_CALL_CNT(bpf_prog->aux->stack_depth);
+				LOAD_TAIL_CALL_CNT_PTR(bpf_prog->aux->stack_depth);
 				ip += 7;
 			}
 			if (!imm32)
@@ -2706,6 +2753,10 @@ static int invoke_bpf_mod_ret(const struct btf_func_model *m, u8 **pprog,
 	return 0;
 }
 
+/* mov rax, qword ptr [rbp - rounded_stack_depth - 8] */
+#define LOAD_TRAMP_TAIL_CALL_CNT_PTR(stack)	\
+	__LOAD_TCC_PTR(-round_up(stack, 8) - 8)
+
 /* Example:
  * __be16 eth_type_trans(struct sk_buff *skb, struct net_device *dev);
  * its 'struct btf_func_model' will be nr_args=2
@@ -2826,7 +2877,7 @@ static int __arch_prepare_bpf_trampoline(struct bpf_tramp_image *im, void *rw_im
 	 *                     [ ...        ]
 	 *                     [ stack_arg2 ]
 	 * RBP - arg_stack_off [ stack_arg1 ]
-	 * RSP                 [ tail_call_cnt ] BPF_TRAMP_F_TAIL_CALL_CTX
+	 * RSP                 [ tail_call_cnt_ptr ] BPF_TRAMP_F_TAIL_CALL_CTX
 	 */
 
 	/* room for return value of orig_call or fentry prog */
@@ -2955,10 +3006,10 @@ static int __arch_prepare_bpf_trampoline(struct bpf_tramp_image *im, void *rw_im
 		save_args(m, &prog, arg_stack_off, true);
 
 		if (flags & BPF_TRAMP_F_TAIL_CALL_CTX) {
-			/* Before calling the original function, restore the
-			 * tail_call_cnt from stack to rax.
+			/* Before calling the original function, load the
+			 * tail_call_cnt_ptr from stack to rax.
 			 */
-			RESTORE_TAIL_CALL_CNT(stack_size);
+			LOAD_TRAMP_TAIL_CALL_CNT_PTR(stack_size);
 		}
 
 		if (flags & BPF_TRAMP_F_ORIG_STACK) {
@@ -3017,10 +3068,10 @@ static int __arch_prepare_bpf_trampoline(struct bpf_tramp_image *im, void *rw_im
 			goto cleanup;
 		}
 	} else if (flags & BPF_TRAMP_F_TAIL_CALL_CTX) {
-		/* Before running the original function, restore the
-		 * tail_call_cnt from stack to rax.
+		/* Before running the original function, load the
+		 * tail_call_cnt_ptr from stack to rax.
 		 */
-		RESTORE_TAIL_CALL_CNT(stack_size);
+		LOAD_TRAMP_TAIL_CALL_CNT_PTR(stack_size);
 	}
 
 	/* restore return value of orig_call or fentry prog back into RAX */
-- 
2.43.0




  parent reply	other threads:[~2024-10-02 13:32 UTC|newest]

Thread overview: 722+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-10-02 12:49 [PATCH 6.11 000/695] 6.11.2-rc1 review Greg Kroah-Hartman
2024-10-02 12:49 ` [PATCH 6.11 001/695] wifi: ath11k: use work queue to process beacon tx event Greg Kroah-Hartman
2024-10-02 12:50 ` [PATCH 6.11 002/695] EDAC/synopsys: Fix error injection on Zynq UltraScale+ Greg Kroah-Hartman
2024-10-02 12:50 ` [PATCH 6.11 003/695] wifi: rtw88: always wait for both firmware loading attempts Greg Kroah-Hartman
2024-10-02 12:50 ` [PATCH 6.11 004/695] crypto: xor - fix template benchmarking Greg Kroah-Hartman
2024-10-02 12:50 ` [PATCH 6.11 005/695] crypto: qat - disable IOV in adf_dev_stop() Greg Kroah-Hartman
2024-10-02 12:50 ` [PATCH 6.11 006/695] crypto: qat - fix recovery flow for VFs Greg Kroah-Hartman
2024-10-02 12:50 ` [PATCH 6.11 007/695] crypto: qat - ensure correct order in VF restarting handler Greg Kroah-Hartman
2024-10-02 12:50 ` [PATCH 6.11 008/695] crypto: iaa - Fix potential use after free bug Greg Kroah-Hartman
2024-10-02 12:50 ` [PATCH 6.11 009/695] ACPI: PMIC: Remove unneeded check in tps68470_pmic_opregion_probe() Greg Kroah-Hartman
2024-10-02 12:50 ` [PATCH 6.11 010/695] eth: fbnic: select DEVLINK and PAGE_POOL Greg Kroah-Hartman
2024-10-02 12:50 ` [PATCH 6.11 011/695] wifi: brcmfmac: introducing fwil query functions Greg Kroah-Hartman
2024-10-02 12:50 ` [PATCH 6.11 012/695] wifi: ath9k: Remove error checks when creating debugfs entries Greg Kroah-Hartman
2024-10-02 12:50 ` [PATCH 6.11 013/695] wifi: ath12k: fix BSS chan info request WMI command Greg Kroah-Hartman
2024-10-02 12:50 ` [PATCH 6.11 014/695] wifi: ath12k: match WMI BSS chan info structure with firmware definition Greg Kroah-Hartman
2024-10-02 12:50 ` [PATCH 6.11 015/695] wifi: ath12k: fix invalid AMPDU factor calculation in ath12k_peer_assoc_h_he() Greg Kroah-Hartman
2024-10-02 12:50 ` [PATCH 6.11 016/695] hwrng: cn10k - Enable by default CN10K driver if Thunder SoC is enabled Greg Kroah-Hartman
2024-10-02 12:50 ` [PATCH 6.11 017/695] crypto: x86/aes-gcm - fix PREEMPT_RT issue in gcm_crypt() Greg Kroah-Hartman
2024-10-02 12:50 ` [PATCH 6.11 018/695] net: stmmac: dwmac-loongson: Init ref and PTP clocks rate Greg Kroah-Hartman
2024-10-02 12:50 ` [PATCH 6.11 019/695] virtio: rename virtio_config_enabled to virtio_config_core_enabled Greg Kroah-Hartman
2024-10-02 12:50 ` [PATCH 6.11 020/695] virtio: allow driver to disable the configure change notification Greg Kroah-Hartman
2024-10-02 12:50 ` [PATCH 6.11 021/695] virtio-net: synchronize operstate with admin state on up/down Greg Kroah-Hartman
2024-10-02 12:50 ` [PATCH 6.11 022/695] virtio-net: synchronize probe with ndo_set_features Greg Kroah-Hartman
2024-10-02 12:50 ` [PATCH 6.11 023/695] arm64: signal: Fix some under-bracketed UAPI macros Greg Kroah-Hartman
2024-10-02 12:50 ` [PATCH 6.11 024/695] wifi: rtw89: remove unused C2H event ID RTW89_MAC_C2H_FUNC_READ_WOW_CAM to prevent out-of-bounds reading Greg Kroah-Hartman
2024-10-02 12:50 ` [PATCH 6.11 025/695] wifi: rtw88: remove CPT execution branch never used Greg Kroah-Hartman
2024-10-02 12:50 ` [PATCH 6.11 026/695] RISC-V: KVM: Fix sbiret init before forwarding to userspace Greg Kroah-Hartman
2024-10-02 12:50 ` [PATCH 6.11 027/695] RISC-V: KVM: Dont zero-out PMU snapshot area before freeing data Greg Kroah-Hartman
2024-10-02 12:50 ` [PATCH 6.11 028/695] RISC-V: KVM: Allow legacy PMU access from guest Greg Kroah-Hartman
2024-10-02 12:50 ` [PATCH 6.11 029/695] RISC-V: KVM: Fix to allow hpmcounter31 from the guest Greg Kroah-Hartman
2024-10-02 12:50 ` [PATCH 6.11 030/695] mount: handle OOM on mnt_warn_timestamp_expiry Greg Kroah-Hartman
2024-10-02 12:50 ` [PATCH 6.11 031/695] autofs: fix missing fput for FSCONFIG_SET_FD Greg Kroah-Hartman
2024-10-02 12:50 ` [PATCH 6.11 032/695] netfilter: nf_tables: store new sets in dedicated list Greg Kroah-Hartman
2024-10-02 12:50 ` [PATCH 6.11 033/695] ARM: 9410/1: vfp: Use asm volatile in fmrx/fmxr macros Greg Kroah-Hartman
2024-10-02 12:50 ` [PATCH 6.11 034/695] powercap: intel_rapl: Fix off by one in get_rpi() Greg Kroah-Hartman
2024-10-02 12:50 ` [PATCH 6.11 035/695] wifi: rtw89: limit the PPDU length for VHT rate to 0x40000 Greg Kroah-Hartman
2024-10-02 12:50 ` [PATCH 6.11 036/695] kselftest/arm64: signal: fix/refactor SVE vector length enumeration Greg Kroah-Hartman
2024-10-02 12:50 ` [PATCH 6.11 037/695] arm64: smp: smp_send_stop() and crash_smp_send_stop() should try non-NMI first Greg Kroah-Hartman
2024-10-02 12:50 ` [PATCH 6.11 038/695] thermal: core: Fold two functions into their respective callers Greg Kroah-Hartman
2024-10-02 12:50 ` [PATCH 6.11 039/695] thermal: core: Fix rounding of delay jiffies Greg Kroah-Hartman
2024-10-02 12:50 ` [PATCH 6.11 040/695] drivers/perf: Fix ali_drw_pmu driver interrupt status clearing Greg Kroah-Hartman
2024-10-02 12:50 ` [PATCH 6.11 041/695] perf/dwc_pcie: Fix registration issue in multi PCIe controller instances Greg Kroah-Hartman
2024-10-02 12:50 ` [PATCH 6.11 042/695] perf/dwc_pcie: Always register for PCIe bus notifier Greg Kroah-Hartman
2024-10-02 12:50 ` [PATCH 6.11 043/695] crypto: qat - fix "Full Going True" macro definition Greg Kroah-Hartman
2024-10-02 12:50 ` [PATCH 6.11 044/695] ACPI: video: force native for Apple MacbookPro9,2 Greg Kroah-Hartman
2024-10-02 12:50 ` [PATCH 6.11 045/695] wifi: mac80211_hwsim: correct MODULE_PARM_DESC of multi_radio Greg Kroah-Hartman
2024-10-02 12:50 ` [PATCH 6.11 046/695] wifi: mac80211: dont use rate mask for offchannel TX either Greg Kroah-Hartman
2024-10-02 12:50 ` [PATCH 6.11 047/695] wifi: iwlwifi: config: label gl devices as discrete Greg Kroah-Hartman
2024-10-02 12:50 ` [PATCH 6.11 048/695] wifi: iwlwifi: mvm: set the cipher for secured NDP ranging Greg Kroah-Hartman
2024-10-02 12:50 ` [PATCH 6.11 049/695] wifi: iwlwifi: mvm: increase the time between ranging measurements Greg Kroah-Hartman
2024-10-02 12:50 ` [PATCH 6.11 050/695] wifi: cfg80211: fix bug of mapping AF3x to incorrect User Priority Greg Kroah-Hartman
2024-10-02 12:50 ` [PATCH 6.11 051/695] wifi: mac80211: fix the comeback long retry times Greg Kroah-Hartman
2024-10-02 12:50 ` [PATCH 6.11 052/695] wifi: iwlwifi: mvm: allow ESR when we the ROC expires Greg Kroah-Hartman
2024-10-02 12:50 ` [PATCH 6.11 053/695] wifi: mac80211: Check for missing VHT elements only for 5 GHz Greg Kroah-Hartman
2024-10-02 12:50 ` [PATCH 6.11 054/695] ACPICA: Implement ACPI_WARNING_ONCE and ACPI_ERROR_ONCE Greg Kroah-Hartman
2024-10-02 12:50 ` [PATCH 6.11 055/695] ACPICA: executer/exsystem: Dont nag user about every Stall() violating the spec Greg Kroah-Hartman
2024-10-02 12:50 ` [PATCH 6.11 056/695] padata: Honor the callers alignment in case of chunk_size 0 Greg Kroah-Hartman
2024-10-02 12:50 ` [PATCH 6.11 057/695] drivers/perf: hisi_pcie: Record hardware counts correctly Greg Kroah-Hartman
2024-10-02 12:50 ` [PATCH 6.11 058/695] drivers/perf: hisi_pcie: Fix TLP headers bandwidth counting Greg Kroah-Hartman
2024-10-02 12:50 ` [PATCH 6.11 059/695] kselftest/arm64: Actually test SME vector length changes via sigreturn Greg Kroah-Hartman
2024-10-02 12:50 ` [PATCH 6.11 060/695] can: j1939: use correct function name in comment Greg Kroah-Hartman
2024-10-02 12:50 ` [PATCH 6.11 061/695] wifi: rtw89: wow: fix wait condition for AOAC report request Greg Kroah-Hartman
2024-10-02 12:51 ` [PATCH 6.11 062/695] ACPI: CPPC: Fix MASK_VAL() usage Greg Kroah-Hartman
2024-10-02 12:51 ` [PATCH 6.11 063/695] netfilter: nf_tables: elements with timeout below CONFIG_HZ never expire Greg Kroah-Hartman
2024-10-02 12:51 ` [PATCH 6.11 064/695] netfilter: nf_tables: reject element expiration with no timeout Greg Kroah-Hartman
2024-10-02 12:51 ` [PATCH 6.11 065/695] netfilter: nf_tables: reject expiration higher than timeout Greg Kroah-Hartman
2024-10-02 12:51 ` [PATCH 6.11 066/695] netfilter: nf_tables: remove annotation to access set timeout while holding lock Greg Kroah-Hartman
2024-10-02 12:51 ` [PATCH 6.11 067/695] netfilter: nft_dynset: annotate data-races around set timeout Greg Kroah-Hartman
2024-10-02 12:51 ` [PATCH 6.11 068/695] perf/arm-cmn: Refactor node ID handling. Again Greg Kroah-Hartman
2024-10-02 12:51 ` [PATCH 6.11 069/695] perf/arm-cmn: Fix CCLA register offset Greg Kroah-Hartman
2024-10-02 12:51 ` [PATCH 6.11 070/695] perf/arm-cmn: Ensure dtm_idx is big enough Greg Kroah-Hartman
2024-10-02 12:51 ` [PATCH 6.11 071/695] cpufreq: ti-cpufreq: Introduce quirks to handle syscon fails appropriately Greg Kroah-Hartman
2024-10-02 12:51 ` [PATCH 6.11 072/695] thermal: gov_bang_bang: Adjust states of all uninitialized instances Greg Kroah-Hartman
2024-10-02 12:51 ` [PATCH 6.11 073/695] wifi: mt76: mt7915: fix oops on non-dbdc mt7986 Greg Kroah-Hartman
2024-10-02 12:51 ` [PATCH 6.11 074/695] wifi: mt76: mt7921: fix wrong UNII-4 freq range check for the channel usage Greg Kroah-Hartman
2024-10-02 12:51 ` [PATCH 6.11 075/695] wifi: mt76: mt7996: use hweight16 to get correct tx antenna Greg Kroah-Hartman
2024-10-02 12:51 ` [PATCH 6.11 076/695] wifi: mt76: mt7996: fix traffic delay when switching back to working channel Greg Kroah-Hartman
2024-10-02 12:51 ` [PATCH 6.11 077/695] wifi: mt76: mt7996: fix wmm set of station interface to 3 Greg Kroah-Hartman
2024-10-02 12:51 ` [PATCH 6.11 078/695] wifi: mt76: mt7996: fix HE and EHT beamforming capabilities Greg Kroah-Hartman
2024-10-02 12:51 ` [PATCH 6.11 079/695] wifi: mt76: mt7996: fix EHT beamforming capability check Greg Kroah-Hartman
2024-10-02 12:51 ` [PATCH 6.11 080/695] x86/sgx: Fix deadlock in SGX NUMA node search Greg Kroah-Hartman
2024-10-02 12:51 ` [PATCH 6.11 081/695] pm:cpupower: Add missing powercap_set_enabled() stub function Greg Kroah-Hartman
2024-10-02 12:51 ` [PATCH 6.11 082/695] crypto: ccp - do not request interrupt on cmd completion when irqs disabled Greg Kroah-Hartman
2024-10-02 12:51 ` [PATCH 6.11 083/695] crypto: hisilicon/hpre - mask cluster timeout error Greg Kroah-Hartman
2024-10-02 12:51 ` [PATCH 6.11 084/695] crypto: hisilicon/qm - reset device before enabling it Greg Kroah-Hartman
2024-10-02 12:51 ` [PATCH 6.11 085/695] crypto: hisilicon/qm - inject error before stopping queue Greg Kroah-Hartman
2024-10-02 12:51 ` [PATCH 6.11 086/695] wifi: mt76: mt7996: fix handling mbss enable/disable Greg Kroah-Hartman
2024-10-02 12:51 ` [PATCH 6.11 087/695] wifi: mt76: connac: fix checksum offload fields of connac3 RXD Greg Kroah-Hartman
2024-10-02 12:51 ` [PATCH 6.11 088/695] wifi: mt76: mt7603: fix mixed declarations and code Greg Kroah-Hartman
2024-10-02 12:51 ` [PATCH 6.11 089/695] wifi: cfg80211: fix UBSAN noise in cfg80211_wext_siwscan() Greg Kroah-Hartman
2024-10-02 12:51 ` [PATCH 6.11 090/695] wifi: mt76: mt7915: fix rx filter setting for bfee functionality Greg Kroah-Hartman
2024-10-02 12:51 ` [PATCH 6.11 091/695] wifi: mt76: mt7996: fix uninitialized TLV data Greg Kroah-Hartman
2024-10-02 12:51 ` [PATCH 6.11 092/695] wifi: cfg80211: fix two more possible UBSAN-detected off-by-one errors Greg Kroah-Hartman
2024-10-02 12:51 ` [PATCH 6.11 093/695] wifi: mac80211: use two-phase skb reclamation in ieee80211_do_stop() Greg Kroah-Hartman
2024-10-02 12:51 ` [PATCH 6.11 094/695] wifi: wilc1000: fix potential RCU dereference issue in wilc_parse_join_bss_param Greg Kroah-Hartman
2024-10-02 12:51 ` [PATCH 6.11 095/695] af_unix: Dont call skb_get() for OOB skb Greg Kroah-Hartman
2024-10-02 12:51 ` [PATCH 6.11 096/695] af_unix: Remove single nest in manage_oob() Greg Kroah-Hartman
2024-10-02 12:51 ` [PATCH 6.11 097/695] af_unix: Rename unlinked_skb " Greg Kroah-Hartman
2024-10-02 12:51 ` [PATCH 6.11 098/695] af_unix: Move spin_lock() " Greg Kroah-Hartman
2024-10-02 12:51 ` [PATCH 6.11 099/695] af_unix: Dont return OOB skb " Greg Kroah-Hartman
2024-10-02 12:51 ` [PATCH 6.11 100/695] Bluetooth: hci_core: Fix sending MGMT_EV_CONNECT_FAILED Greg Kroah-Hartman
2024-10-02 12:51 ` [PATCH 6.11 101/695] Bluetooth: hci_sync: Ignore errors from HCI_OP_REMOTE_NAME_REQ_CANCEL Greg Kroah-Hartman
2024-10-02 12:51 ` [PATCH 6.11 102/695] sock_map: Add a cond_resched() in sock_hash_free() Greg Kroah-Hartman
2024-10-02 12:51 ` [PATCH 6.11 103/695] can: bcm: Clear bo->bcm_proc_read after remove_proc_entry() Greg Kroah-Hartman
2024-10-02 12:51 ` [PATCH 6.11 104/695] can: m_can: enable NAPI before enabling interrupts Greg Kroah-Hartman
2024-10-02 12:51 ` [PATCH 6.11 105/695] can: m_can: m_can_close(): stop clocks after device has been shut down Greg Kroah-Hartman
2024-10-02 12:51 ` [PATCH 6.11 106/695] Bluetooth: btusb: Fix not handling ZPL/short-transfer Greg Kroah-Hartman
2024-10-02 12:51 ` [PATCH 6.11 107/695] bareudp: Pull inner IP header in bareudp_udp_encap_recv() Greg Kroah-Hartman
2024-10-02 12:51 ` [PATCH 6.11 108/695] bareudp: Pull inner IP header on xmit Greg Kroah-Hartman
2024-10-02 12:51 ` [PATCH 6.11 109/695] net: enetc: Use IRQF_NO_AUTOEN flag in request_irq() Greg Kroah-Hartman
2024-10-02 12:51 ` [PATCH 6.11 110/695] crypto: n2 - Set err to EINVAL if snprintf fails for hmac Greg Kroah-Hartman
2024-10-02 12:51 ` [PATCH 6.11 111/695] xsk: fix batch alloc API on non-coherent systems Greg Kroah-Hartman
2024-10-02 12:51 ` [PATCH 6.11 112/695] netkit: Assign missing bpf_net_context Greg Kroah-Hartman
2024-10-02 12:51 ` [PATCH 6.11 113/695] r8169: disable ALDPS per default for RTL8125 Greg Kroah-Hartman
2024-10-02 12:51 ` [PATCH 6.11 114/695] net: ipv6: rpl_iptunnel: Fix memory leak in rpl_input Greg Kroah-Hartman
2024-10-02 12:51 ` [PATCH 6.11 115/695] fbnic: Set napi irq value after calling netif_napi_add Greg Kroah-Hartman
2024-10-02 12:51 ` [PATCH 6.11 116/695] net: tipc: avoid possible garbage value Greg Kroah-Hartman
2024-10-02 12:51 ` [PATCH 6.11 117/695] ipv6: avoid possible NULL deref in rt6_uncached_list_flush_dev() Greg Kroah-Hartman
2024-10-02 12:51 ` [PATCH 6.11 118/695] ublk: move zone report data out of request pdu Greg Kroah-Hartman
2024-10-02 12:51 ` [PATCH 6.11 119/695] nbd: fix race between timeout and normal completion Greg Kroah-Hartman
2024-10-02 12:51 ` [PATCH 6.11 120/695] block, bfq: fix possible UAF for bfqq->bic with merge chain Greg Kroah-Hartman
2024-10-02 12:51 ` [PATCH 6.11 121/695] block, bfq: choose the last bfqq from merge chain in bfq_setup_cooperator() Greg Kroah-Hartman
2024-10-02 12:52 ` [PATCH 6.11 122/695] block, bfq: dont break merge chain in bfq_split_bfqq() Greg Kroah-Hartman
2024-10-02 12:52 ` [PATCH 6.11 123/695] cachefiles: Fix non-taking of sb_writers around set/removexattr Greg Kroah-Hartman
2024-10-02 12:52 ` [PATCH 6.11 124/695] nbd: correct the maximum value for discard sectors Greg Kroah-Hartman
2024-10-02 12:52 ` [PATCH 6.11 125/695] erofs: fix incorrect symlink detection in fast symlink Greg Kroah-Hartman
2024-10-02 12:52 ` [PATCH 6.11 126/695] erofs: fix error handling in z_erofs_init_decompressor Greg Kroah-Hartman
2024-10-02 12:52 ` [PATCH 6.11 127/695] erofs: handle overlapped pclusters out of crafted images properly Greg Kroah-Hartman
2024-10-02 12:52 ` [PATCH 6.11 128/695] block, bfq: fix uaf for accessing waker_bfqq after splitting Greg Kroah-Hartman
2024-10-02 12:52 ` [PATCH 6.11 129/695] block, bfq: fix procress reference leakage for bfqq in merge chain Greg Kroah-Hartman
2024-10-02 12:52 ` [PATCH 6.11 130/695] io_uring/io-wq: do not allow pinning outside of cpuset Greg Kroah-Hartman
2024-10-02 12:52 ` [PATCH 6.11 131/695] io_uring/io-wq: inherit cpuset of cgroup in io worker Greg Kroah-Hartman
2024-10-02 12:52 ` [PATCH 6.11 132/695] block: fix potential invalid pointer dereference in blk_add_partition Greg Kroah-Hartman
2024-10-02 12:52 ` [PATCH 6.11 133/695] spi: ppc4xx: handle irq_of_parse_and_map() errors Greg Kroah-Hartman
2024-10-02 12:52 ` [PATCH 6.11 134/695] arm64: dts: exynos: exynos7885-jackpotlte: Correct RAM amount to 4GB Greg Kroah-Hartman
2024-10-02 12:52 ` [PATCH 6.11 135/695] arm64: dts: mediatek: mt8186: Fix supported-hw mask for GPU OPPs Greg Kroah-Hartman
2024-10-02 12:52 ` [PATCH 6.11 136/695] firmware: arm_scmi: Fix double free in OPTEE transport Greg Kroah-Hartman
2024-10-02 12:52 ` [PATCH 6.11 137/695] spi: ppc4xx: Avoid returning 0 when failed to parse and map IRQ Greg Kroah-Hartman
2024-10-02 12:52 ` [PATCH 6.11 138/695] firmware: qcom: scm: Disable SDI and write no dump to dump mode Greg Kroah-Hartman
2024-10-02 12:52 ` [PATCH 6.11 139/695] regulator: Return actual error in of_regulator_bulk_get_all() Greg Kroah-Hartman
2024-10-02 12:52 ` [PATCH 6.11 140/695] arm64: dts: renesas: r9a08g045: Correct GICD and GICR sizes Greg Kroah-Hartman
2024-10-02 12:52 ` [PATCH 6.11 141/695] arm64: dts: renesas: r9a07g043u: " Greg Kroah-Hartman
2024-10-02 12:52 ` [PATCH 6.11 142/695] arm64: dts: renesas: r9a07g054: " Greg Kroah-Hartman
2024-10-02 12:52 ` [PATCH 6.11 143/695] arm64: dts: renesas: r9a07g044: " Greg Kroah-Hartman
2024-10-02 12:52 ` [PATCH 6.11 144/695] ARM: dts: microchip: sam9x60: Fix rtc/rtt clocks Greg Kroah-Hartman
2024-10-02 12:52 ` [PATCH 6.11 145/695] arm64: tegra: Correct location of power-sensors for IGX Orin Greg Kroah-Hartman
2024-10-02 12:52 ` [PATCH 6.11 146/695] arm64: dts: rockchip: Correct vendor prefix for Hardkernel ODROID-M1 Greg Kroah-Hartman
2024-10-02 12:52 ` [PATCH 6.11 147/695] arm64: dts: ti: k3-j721e-sk: Fix reversed C6x carveout locations Greg Kroah-Hartman
2024-10-02 12:52 ` [PATCH 6.11 148/695] arm64: dts: ti: k3-j721e-beagleboneai64: " Greg Kroah-Hartman
2024-10-02 12:52 ` [PATCH 6.11 149/695] spi: bcmbca-hsspi: Fix missing pm_runtime_disable() Greg Kroah-Hartman
2024-10-02 12:52 ` [PATCH 6.11 150/695] arm64: dts: qcom: x1e80100: Fix PHY for DP2 Greg Kroah-Hartman
2024-10-02 12:52 ` [PATCH 6.11 151/695] ARM: dts: microchip: sama7g5: Fix RTT clock Greg Kroah-Hartman
2024-10-02 12:52 ` [PATCH 6.11 152/695] ARM: dts: imx7d-zii-rmu2: fix Ethernet PHY pinctrl property Greg Kroah-Hartman
2024-10-02 12:52 ` [PATCH 6.11 153/695] arm64: dts: ti: k3-am654-idk: Fix dtbs_check warning in ICSSG dmas Greg Kroah-Hartman
2024-10-02 12:52 ` [PATCH 6.11 154/695] ARM: versatile: fix OF node leak in CPUs prepare Greg Kroah-Hartman
2024-10-02 12:52 ` [PATCH 6.11 155/695] reset: berlin: fix OF node leak in probe() error path Greg Kroah-Hartman
2024-10-02 12:52 ` [PATCH 6.11 156/695] reset: k210: " Greg Kroah-Hartman
2024-10-02 12:52 ` [PATCH 6.11 157/695] platform: cznic: turris-omnia-mcu: Fix error check in omnia_mcu_register_trng() Greg Kroah-Hartman
2024-10-02 12:52 ` [PATCH 6.11 158/695] clocksource/drivers/qcom: Add missing iounmap() on errors in msm_dt_timer_init() Greg Kroah-Hartman
2024-10-02 12:52 ` [PATCH 6.11 159/695] arm64: dts: mediatek: mt8195: Correct clock order for dp_intf* Greg Kroah-Hartman
2024-10-02 12:52 ` [PATCH 6.11 160/695] x86/mm: Use IPIs to synchronize LAM enablement Greg Kroah-Hartman
2024-10-02 12:52 ` [PATCH 6.11 161/695] ASoC: rt5682s: Return devm_of_clk_add_hw_provider to transfer the error Greg Kroah-Hartman
2024-10-02 12:52 ` [PATCH 6.11 162/695] ASoC: tas2781: Fix a compiling warning reported by robot kernel test due to adding tas2563_dvc_table Greg Kroah-Hartman
2024-10-02 12:52 ` [PATCH 6.11 163/695] ASoC: tas2781-i2c: Drop weird GPIO code Greg Kroah-Hartman
2024-10-02 12:52 ` [PATCH 6.11 164/695] ASoC: tas2781-i2c: Get the right GPIO line Greg Kroah-Hartman
2024-10-02 12:52 ` [PATCH 6.11 165/695] selftests/ftrace: Add required dependency for kprobe tests Greg Kroah-Hartman
2024-10-02 12:52 ` [PATCH 6.11 166/695] ALSA: hda: cs35l41: fix module autoloading Greg Kroah-Hartman
2024-10-02 12:52 ` [PATCH 6.11 167/695] selftests/ftrace: Fix test to handle both old and new kernels Greg Kroah-Hartman
2024-10-02 12:52 ` [PATCH 6.11 168/695] x86/boot/64: Strip percpu address space when setting up GDT descriptors Greg Kroah-Hartman
2024-10-02 12:52 ` [PATCH 6.11 169/695] m68k: Fix kernel_clone_args.flags in m68k_clone() Greg Kroah-Hartman
2024-10-02 12:52 ` [PATCH 6.11 170/695] ASoC: loongson: fix error release Greg Kroah-Hartman
2024-10-02 12:52 ` [PATCH 6.11 171/695] selftests/ftrace: Fix eventfs ownership testcase to find mount point Greg Kroah-Hartman
2024-10-02 12:52 ` [PATCH 6.11 172/695] selftests:resctrl: Fix build failure on archs without __cpuid_count() Greg Kroah-Hartman
2024-10-02 12:52 ` [PATCH 6.11 173/695] cgroup/pids: Avoid spurious event notification Greg Kroah-Hartman
2024-10-02 12:52 ` [PATCH 6.11 174/695] hwmon: (max16065) Fix overflows seen when writing limits Greg Kroah-Hartman
2024-10-02 12:52 ` [PATCH 6.11 175/695] hwmon: (max16065) Fix alarm attributes Greg Kroah-Hartman
2024-10-02 12:52 ` [PATCH 6.11 176/695] iommu/arm-smmu: Un-demote unhandled-fault msg Greg Kroah-Hartman
2024-10-02 12:52 ` [PATCH 6.11 177/695] iommu/arm-smmu-v3: Fix a NULL vs IS_ERR() check Greg Kroah-Hartman
2024-10-02 12:52 ` [PATCH 6.11 178/695] mtd: slram: insert break after errors in parsing the map Greg Kroah-Hartman
2024-10-02 12:52 ` [PATCH 6.11 179/695] hwmon: (ntc_thermistor) fix module autoloading Greg Kroah-Hartman
2024-10-02 12:52 ` [PATCH 6.11 180/695] power: supply: axp20x_battery: Remove design from min and max voltage Greg Kroah-Hartman
2024-10-02 12:52 ` [PATCH 6.11 181/695] power: supply: max17042_battery: Fix SOC threshold calc w/ no current sense Greg Kroah-Hartman
2024-10-02 12:53 ` [PATCH 6.11 182/695] fbdev: hpfb: Fix an error handling path in hpfb_dio_probe() Greg Kroah-Hartman
2024-10-02 12:53 ` [PATCH 6.11 183/695] iommu/amd: Handle error path in amd_iommu_probe_device() Greg Kroah-Hartman
2024-10-02 12:53 ` [PATCH 6.11 184/695] iommu/amd: Allocate the page table root using GFP_KERNEL Greg Kroah-Hartman
2024-10-02 12:53 ` [PATCH 6.11 185/695] iommu/amd: Move allocation of the top table into v1_alloc_pgtable Greg Kroah-Hartman
2024-10-02 12:53 ` [PATCH 6.11 186/695] iommu/amd: Set the pgsize_bitmap correctly Greg Kroah-Hartman
2024-10-02 12:53 ` [PATCH 6.11 187/695] iommu/amd: Do not set the D bit on AMD v2 table entries Greg Kroah-Hartman
2024-10-02 12:53 ` [PATCH 6.11 188/695] mtd: powernv: Add check devm_kasprintf() returned value Greg Kroah-Hartman
2024-10-02 12:53 ` [PATCH 6.11 189/695] rcu/nocb: Fix RT throttling hrtimer armed from offline CPU Greg Kroah-Hartman
2024-10-02 12:53 ` [PATCH 6.11 190/695] mtd: rawnand: mtk: Use for_each_child_of_node_scoped() Greg Kroah-Hartman
2024-10-02 12:53 ` [PATCH 6.11 191/695] mtd: rawnand: mtk: Factorize out the logic cleaning mtk chips Greg Kroah-Hartman
2024-10-02 12:53 ` [PATCH 6.11 192/695] mtd: rawnand: mtk: Fix init error path Greg Kroah-Hartman
2024-10-02 12:53 ` [PATCH 6.11 193/695] iommu/arm-smmu-qcom: hide last LPASS SMMU context bank from linux Greg Kroah-Hartman
2024-10-02 12:53 ` [PATCH 6.11 194/695] iommu/arm-smmu-qcom: Work around SDM845 Adreno SMMU w/ 16K pages Greg Kroah-Hartman
2024-10-02 12:53 ` [PATCH 6.11 195/695] iommu/arm-smmu-qcom: apply num_context_bank fixes for SDM630 / SDM660 Greg Kroah-Hartman
2024-10-02 12:53 ` [PATCH 6.11 196/695] pmdomain: core: Harden inter-column space in debug summary Greg Kroah-Hartman
2024-10-02 12:53 ` [PATCH 6.11 197/695] pmdomain: core: Fix "managed by" alignment " Greg Kroah-Hartman
2024-10-02 12:53 ` [PATCH 6.11 198/695] drm/stm: Fix an error handling path in stm_drm_platform_probe() Greg Kroah-Hartman
2024-10-02 12:53 ` [PATCH 6.11 199/695] drm/stm: ltdc: check memory returned by devm_kzalloc() Greg Kroah-Hartman
2024-10-02 12:53 ` [PATCH 6.11 200/695] drm/amd/display: free bo used for dmub bounding box Greg Kroah-Hartman
2024-10-02 12:53 ` [PATCH 6.11 201/695] drm/amd/display: Check link_res->hpo_dp_link_enc before using it Greg Kroah-Hartman
2024-10-02 12:53 ` [PATCH 6.11 202/695] drm/amd/display: Add null check for set_output_gamma in dcn30_set_output_transfer_func Greg Kroah-Hartman
2024-10-02 12:53 ` [PATCH 6.11 203/695] drm/amdgpu: properly handle vbios fake edid sizing Greg Kroah-Hartman
2024-10-02 12:53 ` [PATCH 6.11 204/695] drm/radeon: " Greg Kroah-Hartman
2024-10-02 12:53 ` [PATCH 6.11 205/695] drm/amd/display: Reset VRR config during resume Greg Kroah-Hartman
2024-10-02 12:53 ` [PATCH 6.11 206/695] scsi: smartpqi: revert propagate-the-multipath-failure-to-SML-quickly Greg Kroah-Hartman
2024-10-02 12:53 ` [PATCH 6.11 207/695] scsi: sd: Dont check if a write for REQ_ATOMIC Greg Kroah-Hartman
2024-10-02 12:53 ` [PATCH 6.11 208/695] scsi: block: Dont check REQ_ATOMIC for reads Greg Kroah-Hartman
2024-10-02 12:53 ` [PATCH 6.11 209/695] scsi: NCR5380: Check for phase match during PDMA fixup Greg Kroah-Hartman
2024-10-02 12:53 ` [PATCH 6.11 210/695] drm/amd/amdgpu: Properly tune the size of struct Greg Kroah-Hartman
2024-10-02 12:53 ` [PATCH 6.11 211/695] drm/amd/display: Improve FAM control for DCN401 Greg Kroah-Hartman
2024-10-02 12:53 ` [PATCH 6.11 212/695] drm/rockchip: vop: Allow 4096px width scaling Greg Kroah-Hartman
2024-10-02 12:53 ` [PATCH 6.11 213/695] drm/rockchip: dw_hdmi: Fix reading EDID when using a forced mode Greg Kroah-Hartman
2024-10-02 12:53 ` [PATCH 6.11 214/695] drm/radeon/evergreen_cs: fix int overflow errors in cs track offsets Greg Kroah-Hartman
2024-10-02 12:53 ` [PATCH 6.11 215/695] drm/xe: Move and export xe_hw_engine lookup Greg Kroah-Hartman
2024-10-02 12:53 ` [PATCH 6.11 216/695] drm/xe: Use reserved copy engine for user binds on faulting devices Greg Kroah-Hartman
2024-10-02 12:53 ` [PATCH 6.11 217/695] drm/bridge: lontium-lt8912b: Validate mode in drm_bridge_funcs::mode_valid() Greg Kroah-Hartman
2024-10-02 12:53 ` [PATCH 6.11 218/695] drm/vc4: hdmi: Handle error case of pm_runtime_resume_and_get Greg Kroah-Hartman
2024-10-02 12:53 ` [PATCH 6.11 219/695] scsi: elx: libefc: Fix potential use after free in efc_nport_vport_del() Greg Kroah-Hartman
2024-10-02 12:53 ` [PATCH 6.11 220/695] jfs: fix out-of-bounds in dbNextAG() and diAlloc() Greg Kroah-Hartman
2024-10-02 12:53 ` [PATCH 6.11 221/695] drm/mediatek: Fix missing configuration flags in mtk_crtc_ddp_config() Greg Kroah-Hartman
2024-10-02 12:53 ` [PATCH 6.11 222/695] drm/mediatek: Use spin_lock_irqsave() for CRTC event lock Greg Kroah-Hartman
2024-10-02 12:53 ` [PATCH 6.11 223/695] powerpc/8xx: Fix initial memory mapping Greg Kroah-Hartman
2024-10-02 12:53 ` [PATCH 6.11 224/695] powerpc/8xx: Fix kernel vs user address comparison Greg Kroah-Hartman
2024-10-02 12:53 ` [PATCH 6.11 225/695] powerpc/vdso: Inconditionally use CFUNC macro Greg Kroah-Hartman
2024-10-02 12:53 ` [PATCH 6.11 226/695] drm/msm: Use a7xx family directly in gpu_state Greg Kroah-Hartman
2024-10-02 12:53 ` [PATCH 6.11 227/695] drm/msm: Dump correct dbgahb clusters on a750 Greg Kroah-Hartman
2024-10-02 12:53 ` [PATCH 6.11 228/695] drm/msm: Fix CP_BV_DRAW_STATE_ADDR name Greg Kroah-Hartman
2024-10-02 12:53 ` [PATCH 6.11 229/695] drm/msm: Fix incorrect file name output in adreno_request_fw() Greg Kroah-Hartman
2024-10-02 12:53 ` [PATCH 6.11 230/695] drm/msm/a5xx: disable preemption in submits by default Greg Kroah-Hartman
2024-10-02 12:53 ` [PATCH 6.11 231/695] drm/msm/a5xx: properly clear preemption records on resume Greg Kroah-Hartman
2024-10-02 12:53 ` [PATCH 6.11 232/695] drm/msm/a5xx: fix races in preemption evaluation stage Greg Kroah-Hartman
2024-10-02 12:53 ` [PATCH 6.11 233/695] drm/msm/a5xx: workaround early ring-buffer emptiness check Greg Kroah-Hartman
2024-10-02 12:53 ` [PATCH 6.11 234/695] ipmi: docs: dont advertise deprecated sysfs entries Greg Kroah-Hartman
2024-10-02 12:53 ` [PATCH 6.11 235/695] drm/msm/dp: enable widebus on all relevant chipsets Greg Kroah-Hartman
2024-10-02 12:53 ` [PATCH 6.11 236/695] drm/msm/dsi: correct programming sequence for SM8350 / SM8450 Greg Kroah-Hartman
2024-10-02 12:53 ` [PATCH 6.11 237/695] drm/msm: fix %s null argument error Greg Kroah-Hartman
2024-10-02 12:53 ` [PATCH 6.11 238/695] platform/x86: ideapad-laptop: Make the scope_guard() clear of its scope Greg Kroah-Hartman
2024-10-02 12:53 ` [PATCH 6.11 239/695] kselftest: dt: Ignore nodes that have ancestors disabled Greg Kroah-Hartman
2024-10-02 12:53 ` [PATCH 6.11 240/695] drivers:drm:exynos_drm_gsc:Fix wrong assignment in gsc_bind() Greg Kroah-Hartman
2024-10-02 12:53 ` [PATCH 6.11 241/695] drm/amdgpu: fix invalid fence handling in amdgpu_vm_tlb_flush Greg Kroah-Hartman
2024-10-02 12:54 ` [PATCH 6.11 242/695] xen: use correct end address of kernel for conflict checking Greg Kroah-Hartman
2024-10-02 12:54 ` [PATCH 6.11 243/695] HID: wacom: Support sequence numbers smaller than 16-bit Greg Kroah-Hartman
2024-10-02 12:54 ` [PATCH 6.11 244/695] HID: wacom: Do not warn about dropped packets for first packet Greg Kroah-Hartman
2024-10-02 12:54 ` [PATCH 6.11 245/695] ata: libata: Clear DID_TIME_OUT for ATA PT commands with sense data Greg Kroah-Hartman
2024-10-02 12:54 ` [PATCH 6.11 246/695] xen: introduce generic helper checking for memory map conflicts Greg Kroah-Hartman
2024-10-02 12:54 ` [PATCH 6.11 247/695] xen: move max_pfn in xen_memory_setup() out of function scope Greg Kroah-Hartman
2024-10-02 12:54 ` [PATCH 6.11 248/695] xen: add capability to remap non-RAM pages to different PFNs Greg Kroah-Hartman
2024-10-02 12:54 ` [PATCH 6.11 249/695] xen: tolerate ACPI NVS memory overlapping with Xen allocated memory Greg Kroah-Hartman
2024-10-02 12:54 ` [PATCH 6.11 250/695] drm/xe: fix missing xe_vm_put Greg Kroah-Hartman
2024-10-02 12:54 ` [PATCH 6.11 251/695] xen/swiotlb: add alignment check for dma buffers Greg Kroah-Hartman
2024-10-02 12:54 ` [PATCH 6.11 252/695] xen/swiotlb: fix allocated size Greg Kroah-Hartman
2024-10-02 12:54 ` [PATCH 6.11 253/695] tpm: Clean up TPM space after command failure Greg Kroah-Hartman
2024-10-02 12:54 ` [PATCH 6.11 254/695] sched/fair: Make SCHED_IDLE entity be preempted in strict hierarchy Greg Kroah-Hartman
2024-10-02 12:54 ` Greg Kroah-Hartman [this message]
2024-10-02 12:54 ` [PATCH 6.11 256/695] bpf, arm64: Fix tailcall hierarchy Greg Kroah-Hartman
2024-10-02 12:54 ` [PATCH 6.11 257/695] bpf, lsm: Add check for BPF LSM return value Greg Kroah-Hartman
2024-10-02 12:54 ` [PATCH 6.11 258/695] bpf: Fix compare error in function retval_range_within Greg Kroah-Hartman
2024-10-02 12:54 ` [PATCH 6.11 259/695] selftests/bpf: Workaround strict bpf_lsm return value check Greg Kroah-Hartman
2024-10-02 12:54 ` [PATCH 6.11 260/695] selftests/bpf: Fix error linking uprobe_multi on mips Greg Kroah-Hartman
2024-10-02 12:54 ` [PATCH 6.11 261/695] selftests/bpf: Fix wrong binary in Makefile log output Greg Kroah-Hartman
2024-10-02 12:54 ` [PATCH 6.11 262/695] tools/runqslower: Fix LDFLAGS and add LDLIBS support Greg Kroah-Hartman
2024-10-02 12:54 ` [PATCH 6.11 263/695] bpf: Fail verification for sign-extension of packet data/data_end/data_meta Greg Kroah-Hartman
2024-10-02 12:54 ` [PATCH 6.11 264/695] selftests/bpf: Use pid_t consistently in test_progs.c Greg Kroah-Hartman
2024-10-02 12:54 ` [PATCH 6.11 265/695] selftests/bpf: Fix compile error from rlim_t in sk_storage_map.c Greg Kroah-Hartman
2024-10-02 12:54 ` [PATCH 6.11 266/695] selftests/bpf: Fix error compiling bpf_iter_setsockopt.c with musl libc Greg Kroah-Hartman
2024-10-02 12:54 ` [PATCH 6.11 267/695] selftests/bpf: Drop unneeded error.h includes Greg Kroah-Hartman
2024-10-02 12:54 ` [PATCH 6.11 268/695] selftests/bpf: Fix missing ARRAY_SIZE() definition in bench.c Greg Kroah-Hartman
2024-10-02 12:54 ` [PATCH 6.11 269/695] selftests/bpf: Fix missing UINT_MAX definitions in benchmarks Greg Kroah-Hartman
2024-10-02 12:54 ` [PATCH 6.11 270/695] selftests/bpf: Fix missing BUILD_BUG_ON() declaration Greg Kroah-Hartman
2024-10-02 12:54 ` [PATCH 6.11 271/695] selftests/bpf: Fix include of <sys/fcntl.h> Greg Kroah-Hartman
2024-10-02 12:54 ` [PATCH 6.11 272/695] selftests/bpf: Fix compiling parse_tcp_hdr_opt.c with musl-libc Greg Kroah-Hartman
2024-10-02 12:54 ` [PATCH 6.11 273/695] selftests/bpf: Fix compiling kfree_skb.c " Greg Kroah-Hartman
2024-10-02 12:54 ` [PATCH 6.11 274/695] selftests/bpf: Fix compiling flow_dissector.c " Greg Kroah-Hartman
2024-10-02 12:54 ` [PATCH 6.11 275/695] selftests/bpf: Fix compiling tcp_rtt.c " Greg Kroah-Hartman
2024-10-02 12:54 ` [PATCH 6.11 276/695] selftests/bpf: Fix compiling core_reloc.c " Greg Kroah-Hartman
2024-10-02 12:54 ` [PATCH 6.11 277/695] selftests/bpf: Fix errors compiling lwt_redirect.c with musl libc Greg Kroah-Hartman
2024-10-02 12:54 ` [PATCH 6.11 278/695] selftests/bpf: Fix errors compiling decap_sanity.c " Greg Kroah-Hartman
2024-10-02 12:54 ` [PATCH 6.11 279/695] selftests/bpf: Fix errors compiling crypto_sanity.c " Greg Kroah-Hartman
2024-10-02 12:54 ` [PATCH 6.11 280/695] selftests/bpf: Fix errors compiling cg_storage_multi.h " Greg Kroah-Hartman
2024-10-02 12:54 ` [PATCH 6.11 281/695] libbpf: Dont take direct pointers into BTF data from st_ops Greg Kroah-Hartman
2024-10-02 12:54 ` [PATCH 6.11 282/695] selftests/bpf: Fix arg parsing in veristat, test_progs Greg Kroah-Hartman
2024-10-02 12:54 ` [PATCH 6.11 283/695] selftests/bpf: Fix error compiling test_lru_map.c Greg Kroah-Hartman
2024-10-02 12:54 ` [PATCH 6.11 284/695] selftests/bpf: Fix C++ compile error from missing _Bool type Greg Kroah-Hartman
2024-10-02 12:54 ` [PATCH 6.11 285/695] selftests/bpf: Fix redefinition errors compiling lwt_reroute.c Greg Kroah-Hartman
2024-10-02 12:54 ` [PATCH 6.11 286/695] selftests/bpf: Fix compile if backtrace support missing in libc Greg Kroah-Hartman
2024-10-02 12:54 ` [PATCH 6.11 287/695] selftests/bpf: Fix error compiling tc_redirect.c with musl libc Greg Kroah-Hartman
2024-10-02 12:54 ` [PATCH 6.11 288/695] s390/entry: Move early program check handler to entry.S Greg Kroah-Hartman
2024-10-02 12:54 ` [PATCH 6.11 289/695] s390/entry: Make early program check handler relocated lowcore aware Greg Kroah-Hartman
2024-10-02 12:54 ` [PATCH 6.11 290/695] libbpf: Fix license for btf_relocate.c Greg Kroah-Hartman
2024-10-02 12:54 ` [PATCH 6.11 291/695] samples/bpf: Fix compilation errors with cf-protection option Greg Kroah-Hartman
2024-10-02 12:54 ` [PATCH 6.11 292/695] selftests/bpf: no need to track next_match_pos in struct test_loader Greg Kroah-Hartman
2024-10-02 12:54 ` [PATCH 6.11 293/695] selftests/bpf: extract test_loader->expect_msgs as a data structure Greg Kroah-Hartman
2024-10-02 12:54 ` [PATCH 6.11 294/695] selftests/bpf: allow checking xlated programs in verifier_* tests Greg Kroah-Hartman
2024-10-02 12:54 ` [PATCH 6.11 295/695] selftests/bpf: __arch_* macro to limit test cases to specific archs Greg Kroah-Hartman
2024-10-02 12:54 ` [PATCH 6.11 296/695] selftests/bpf: fix to avoid __msg tag de-duplication by clang Greg Kroah-Hartman
2024-10-02 12:54 ` [PATCH 6.11 297/695] bpf: correctly handle malformed BPF_CORE_TYPE_ID_LOCAL relos Greg Kroah-Hartman
2024-10-02 12:54 ` [PATCH 6.11 298/695] selftests/bpf: Fix incorrect parameters in NULL pointer checking Greg Kroah-Hartman
2024-10-02 12:54 ` [PATCH 6.11 299/695] libbpf: Fix bpf_object__open_skeleton()s mishandling of options Greg Kroah-Hartman
2024-10-02 12:54 ` [PATCH 6.11 300/695] s390/ap: Fix deadlock caused by recursive lock of the AP bus scan mutex Greg Kroah-Hartman
2024-10-02 12:54 ` [PATCH 6.11 301/695] libbpf: Ensure new BTF objects inherit input endianness Greg Kroah-Hartman
2024-10-02 12:55 ` [PATCH 6.11 302/695] xz: cleanup CRC32 edits from 2018 Greg Kroah-Hartman
2024-10-02 12:55 ` [PATCH 6.11 303/695] kthread: fix task state in kthread worker if being frozen Greg Kroah-Hartman
2024-10-02 12:55 ` [PATCH 6.11 304/695] ext4: clear EXT4_GROUP_INFO_WAS_TRIMMED_BIT even mount with discard Greg Kroah-Hartman
2024-10-02 12:55 ` [PATCH 6.11 305/695] bpftool: Fix handling enum64 in btf dump sorting Greg Kroah-Hartman
2024-10-02 12:55 ` [PATCH 6.11 306/695] sched/deadline: Fix schedstats vs deadline servers Greg Kroah-Hartman
2024-10-02 12:55 ` [PATCH 6.11 307/695] smackfs: Use rcu_assign_pointer() to ensure safe assignment in smk_set_cipso Greg Kroah-Hartman
2024-10-02 12:55 ` [PATCH 6.11 308/695] ext4: avoid buffer_head leak in ext4_mark_inode_used() Greg Kroah-Hartman
2024-10-02 12:55 ` [PATCH 6.11 309/695] ext4: avoid potential buffer_head leak in __ext4_new_inode() Greg Kroah-Hartman
2024-10-02 12:55 ` [PATCH 6.11 310/695] ext4: avoid negative min_clusters in find_group_orlov() Greg Kroah-Hartman
2024-10-02 12:55 ` [PATCH 6.11 311/695] ext4: return error on ext4_find_inline_entry Greg Kroah-Hartman
2024-10-02 12:55 ` [PATCH 6.11 312/695] ext4: avoid OOB when system.data xattr changes underneath the filesystem Greg Kroah-Hartman
2024-10-02 12:55 ` [PATCH 6.11 313/695] ext4: check stripe size compatibility on remount as well Greg Kroah-Hartman
2024-10-02 12:55 ` [PATCH 6.11 314/695] sched/numa: Fix the vma scan starving issue Greg Kroah-Hartman
2024-10-02 12:55 ` [PATCH 6.11 315/695] nilfs2: fix potential null-ptr-deref in nilfs_btree_insert() Greg Kroah-Hartman
2024-10-02 12:55 ` [PATCH 6.11 316/695] nilfs2: determine empty node blocks as corrupted Greg Kroah-Hartman
2024-10-02 12:55 ` [PATCH 6.11 317/695] nilfs2: fix potential oob read in nilfs_btree_check_delete() Greg Kroah-Hartman
2024-10-02 12:55 ` [PATCH 6.11 318/695] sched/pelt: Use rq_clock_task() for hw_pressure Greg Kroah-Hartman
2024-10-02 12:55 ` [PATCH 6.11 319/695] bpf: Fix bpf_strtol and bpf_strtoul helpers for 32bit Greg Kroah-Hartman
2024-10-02 12:55 ` [PATCH 6.11 320/695] bpf: Fix helper writes to read-only maps Greg Kroah-Hartman
2024-10-02 12:55 ` [PATCH 6.11 321/695] bpf: Improve check_raw_mode_ok test for MEM_UNINIT-tagged types Greg Kroah-Hartman
2024-10-02 12:55 ` [PATCH 6.11 322/695] bpf: Zero former ARG_PTR_TO_{LONG,INT} args in case of error Greg Kroah-Hartman
2024-10-02 12:55 ` [PATCH 6.11 323/695] perf scripts python cs-etm: Restore first sample log in verbose mode Greg Kroah-Hartman
2024-10-02 12:55 ` [PATCH 6.11 324/695] perf bpf: Move BPF disassembly routines to separate file to avoid clash with capstone bpf headers Greg Kroah-Hartman
2024-10-02 12:55 ` [PATCH 6.11 325/695] perf mem: Free the allocated sort string, fixing a leak Greg Kroah-Hartman
2024-10-02 12:55 ` [PATCH 6.11 326/695] perf callchain: Fix stitch LBR memory leaks Greg Kroah-Hartman
2024-10-02 12:55 ` [PATCH 6.11 327/695] perf lock contention: Change stack_id type to s32 Greg Kroah-Hartman
2024-10-02 12:55 ` [PATCH 6.11 328/695] perf vendor events: SKX, CLX, SNR uncore cache event fixes Greg Kroah-Hartman
2024-10-02 12:55 ` [PATCH 6.11 329/695] perf inject: Fix leader sampling inserting additional samples Greg Kroah-Hartman
2024-10-02 12:55 ` [PATCH 6.11 330/695] perf report: Fix --total-cycles --stdio output error Greg Kroah-Hartman
2024-10-02 12:55 ` [PATCH 6.11 331/695] perf build: Fix up broken capstone feature detection fast path Greg Kroah-Hartman
2024-10-02 12:55 ` [PATCH 6.11 332/695] perf sched timehist: Fix missing free of session in perf_sched__timehist() Greg Kroah-Hartman
2024-10-02 12:55 ` [PATCH 6.11 333/695] perf stat: Display iostat headers correctly Greg Kroah-Hartman
2024-10-02 12:55 ` [PATCH 6.11 334/695] perf dwarf-aux: Check allowed location expressions when collecting variables Greg Kroah-Hartman
2024-10-02 12:55 ` [PATCH 6.11 335/695] perf annotate-data: Fix off-by-one in location range check Greg Kroah-Hartman
2024-10-02 12:55 ` [PATCH 6.11 336/695] perf dwarf-aux: Handle bitfield members from pointer access Greg Kroah-Hartman
2024-10-02 12:55 ` [PATCH 6.11 337/695] perf hist: Dont set hpp_fmt_value for members in --no-group Greg Kroah-Hartman
2024-10-02 12:55 ` [PATCH 6.11 338/695] perf sched timehist: Fixed timestamp error when unable to confirm event sched_in time Greg Kroah-Hartman
2024-10-02 12:55 ` [PATCH 6.11 339/695] perf time-utils: Fix 32-bit nsec parsing Greg Kroah-Hartman
2024-10-02 12:55 ` [PATCH 6.11 340/695] perf mem: Check mem_events for all eligible PMUs Greg Kroah-Hartman
2024-10-02 12:55 ` [PATCH 6.11 341/695] perf mem: Fix missed p-core mem events on ADL and RPL Greg Kroah-Hartman
2024-10-02 12:55 ` [PATCH 6.11 342/695] clk: imx: clk-audiomix: Correct parent clock for earc_phy and audpll Greg Kroah-Hartman
2024-10-02 12:55 ` [PATCH 6.11 343/695] clk: imx: imx6ul: fix default parent for enet*_ref_sel Greg Kroah-Hartman
2024-10-02 12:55 ` [PATCH 6.11 344/695] clk: imx: composite-8m: Enable gate clk with mcore_booted Greg Kroah-Hartman
2024-10-02 12:55 ` [PATCH 6.11 345/695] clk: imx: composite-93: keep root clock on when mcore enabled Greg Kroah-Hartman
2024-10-02 12:55 ` [PATCH 6.11 346/695] clk: imx: composite-7ulp: Check the PCC present bit Greg Kroah-Hartman
2024-10-02 12:55 ` [PATCH 6.11 347/695] clk: imx: fracn-gppll: fix fractional part of PLL getting lost Greg Kroah-Hartman
2024-10-02 12:55 ` [PATCH 6.11 348/695] clk: imx: imx8mp: fix clock tree update of TF-A managed clocks Greg Kroah-Hartman
2024-10-02 12:55 ` [PATCH 6.11 349/695] clk: imx: imx8qxp: Register dc0_bypass0_clk before disp clk Greg Kroah-Hartman
2024-10-02 12:55 ` [PATCH 6.11 350/695] clk: imx: imx8qxp: Parent should be initialized earlier than the clock Greg Kroah-Hartman
2024-10-02 12:55 ` [PATCH 6.11 351/695] quota: avoid missing put_quota_format when DQUOT_SUSPENDED is passed Greg Kroah-Hartman
2024-10-02 12:55 ` [PATCH 6.11 352/695] remoteproc: imx_rproc: Correct ddr alias for i.MX8M Greg Kroah-Hartman
2024-10-02 12:55 ` [PATCH 6.11 353/695] remoteproc: imx_rproc: Initialize workqueue earlier Greg Kroah-Hartman
2024-10-02 12:55 ` [PATCH 6.11 354/695] clk: rockchip: Set parent rate for DCLK_VOP clock on RK3228 Greg Kroah-Hartman
2024-10-02 12:55 ` [PATCH 6.11 355/695] clk: qcom: dispcc-sm8550: fix several supposed typos Greg Kroah-Hartman
2024-10-02 12:55 ` [PATCH 6.11 356/695] clk: qcom: dispcc-sm8550: use rcg2_ops for mdss_dptx1_aux_clk_src Greg Kroah-Hartman
2024-10-02 12:55 ` [PATCH 6.11 357/695] clk: qcom: dispcc-sm8650: Update the GDSC flags Greg Kroah-Hartman
2024-10-02 12:55 ` [PATCH 6.11 358/695] clk: qcom: dispcc-sm8550: use rcg2_shared_ops for ESC RCGs Greg Kroah-Hartman
2024-10-02 12:55 ` [PATCH 6.11 359/695] leds: bd2606mvv: Fix device child node usage in bd2606mvv_probe() Greg Kroah-Hartman
2024-10-02 12:55 ` [PATCH 6.11 360/695] pinctrl: renesas: rzg2l: Return -EINVAL if the pin doesnt support PIN_CFG_OEN Greg Kroah-Hartman
2024-10-02 12:55 ` [PATCH 6.11 361/695] pinctrl: ti: ti-iodelay: Fix some error handling paths Greg Kroah-Hartman
2024-10-02 12:56 ` [PATCH 6.11 362/695] phy: phy-rockchip-samsung-hdptx: Explicitly include pm_runtime.h Greg Kroah-Hartman
2024-10-02 12:56 ` [PATCH 6.11 363/695] Input: ilitek_ts_i2c - avoid wrong input subsystem sync Greg Kroah-Hartman
2024-10-02 12:56 ` [PATCH 6.11 364/695] Input: ilitek_ts_i2c - add report id message validation Greg Kroah-Hartman
2024-10-02 12:56 ` [PATCH 6.11 365/695] drivers: media: dvb-frontends/rtl2832: fix an out-of-bounds write error Greg Kroah-Hartman
2024-10-02 12:56 ` [PATCH 6.11 366/695] drivers: media: dvb-frontends/rtl2830: " Greg Kroah-Hartman
2024-10-02 12:56 ` [PATCH 6.11 367/695] media: raspberrypi: VIDEO_RASPBERRYPI_PISP_BE should depend on ARCH_BCM2835 Greg Kroah-Hartman
2024-10-02 12:56 ` [PATCH 6.11 368/695] PCI: Wait for Link before restoring Downstream Buses Greg Kroah-Hartman
2024-10-02 12:56 ` [PATCH 6.11 369/695] firewire: core: correct range of block for case of switch statement Greg Kroah-Hartman
2024-10-02 12:56 ` [PATCH 6.11 370/695] PCI: keystone: Fix if-statement expression in ks_pcie_quirk() Greg Kroah-Hartman
2024-10-02 12:56 ` [PATCH 6.11 371/695] media: staging: media: starfive: camss: Drop obsolete return value documentation Greg Kroah-Hartman
2024-10-02 12:56 ` [PATCH 6.11 372/695] clk: qcom: ipq5332: Register gcc_qdss_tsctr_clk_src Greg Kroah-Hartman
2024-10-02 12:56 ` [PATCH 6.11 373/695] clk: qcom: dispcc-sm8250: use special function for Lucid 5LPE PLL Greg Kroah-Hartman
2024-10-02 12:56 ` [PATCH 6.11 374/695] leds: pca995x: Use device_for_each_child_node() to access device child nodes Greg Kroah-Hartman
2024-10-02 12:56 ` [PATCH 6.11 375/695] leds: pca995x: Fix device child node usage in pca995x_probe() Greg Kroah-Hartman
2024-10-02 12:56 ` [PATCH 6.11 376/695] x86/PCI: Check pcie_find_root_port() return for NULL Greg Kroah-Hartman
2024-10-02 12:56 ` [PATCH 6.11 377/695] nvdimm: Fix devs leaks in scan_labels() Greg Kroah-Hartman
2024-10-02 12:56 ` [PATCH 6.11 378/695] PCI: xilinx-nwl: Fix register misspelling Greg Kroah-Hartman
2024-10-02 12:56 ` [PATCH 6.11 379/695] PCI: xilinx-nwl: Clean up clock on probe failure/removal Greg Kroah-Hartman
2024-10-02 12:56 ` [PATCH 6.11 380/695] leds: gpio: Set num_leds after allocation Greg Kroah-Hartman
2024-10-02 12:56 ` [PATCH 6.11 381/695] media: platform: rzg2l-cru: rzg2l-csi2: Add missing MODULE_DEVICE_TABLE Greg Kroah-Hartman
2024-10-02 12:56 ` [PATCH 6.11 382/695] RDMA/iwcm: Fix WARNING:at_kernel/workqueue.c:#check_flush_dependency Greg Kroah-Hartman
2024-10-02 12:56 ` [PATCH 6.11 383/695] pinctrl: single: fix missing error code in pcs_probe() Greg Kroah-Hartman
2024-10-02 12:56 ` [PATCH 6.11 384/695] clk: at91: sama7g5: Allocate only the needed amount of memory for PLLs Greg Kroah-Hartman
2024-10-02 12:56 ` [PATCH 6.11 385/695] iommufd/selftest: Fix buffer read overrrun in the dirty test Greg Kroah-Hartman
2024-10-02 12:56 ` [PATCH 6.11 386/695] RDMA/bnxt_re: Fix the table size for PSN/MSN entries Greg Kroah-Hartman
2024-10-02 12:56 ` [PATCH 6.11 387/695] media: mediatek: vcodec: Fix H264 multi stateless decoder smatch warning Greg Kroah-Hartman
2024-10-02 12:56 ` [PATCH 6.11 388/695] media: mediatek: vcodec: Fix VP8 " Greg Kroah-Hartman
2024-10-02 12:56 ` [PATCH 6.11 389/695] media: mediatek: vcodec: Fix H264 " Greg Kroah-Hartman
2024-10-02 12:56 ` [PATCH 6.11 390/695] media: imagination: VIDEO_E5010_JPEG_ENC should depend on ARCH_K3 Greg Kroah-Hartman
2024-10-02 12:56 ` [PATCH 6.11 391/695] RDMA/rtrs: Reset hb_missed_cnt after receiving other traffic from peer Greg Kroah-Hartman
2024-10-02 12:56 ` [PATCH 6.11 392/695] RDMA/rtrs-clt: Reset cid to con_num - 1 to stay in bounds Greg Kroah-Hartman
2024-10-02 12:56 ` [PATCH 6.11 393/695] clk: ti: dra7-atl: Fix leak of of_nodes Greg Kroah-Hartman
2024-10-02 12:56 ` [PATCH 6.11 394/695] clk: starfive: Use pm_runtime_resume_and_get to fix pm_runtime_get_sync() usage Greg Kroah-Hartman
2024-10-02 12:56 ` [PATCH 6.11 395/695] clk: rockchip: rk3588: Fix 32k clock name for pmu_24m_32k_100m_src_p Greg Kroah-Hartman
2024-10-02 12:56 ` [PATCH 6.11 396/695] nfsd: remove unneeded EEXIST error check in nfsd_do_file_acquire Greg Kroah-Hartman
2024-10-02 12:56 ` [PATCH 6.11 397/695] nfsd: fix refcount leak when file is unhashed after being found Greg Kroah-Hartman
2024-10-02 14:12   ` Youzhong Yang
2024-10-03  7:19     ` Greg Kroah-Hartman
2024-10-03 13:53       ` Chuck Lever III
2024-10-04 14:01         ` Youzhong Yang
2024-10-04 14:10           ` Greg Kroah-Hartman
2024-10-04 14:17             ` Youzhong Yang
2024-10-04 14:26               ` Greg Kroah-Hartman
2024-10-04 14:35                 ` Greg Kroah-Hartman
2024-10-04 15:41                   ` Youzhong Yang
2024-10-04 17:22                   ` Chuck Lever III
2024-10-04 17:59                     ` Youzhong Yang
2024-10-04 18:09                       ` Chuck Lever III
2024-10-06 11:57                         ` Youzhong Yang
2024-10-02 12:56 ` [PATCH 6.11 398/695] pinctrl: mvebu: Fix devinit_dove_pinctrl_probe function Greg Kroah-Hartman
2024-10-02 12:56 ` [PATCH 6.11 399/695] IB/mlx5: Fix UMR pd cleanup on error flow of driver init Greg Kroah-Hartman
2024-10-02 12:56 ` [PATCH 6.11 400/695] IB/core: Fix ib_cache_setup_one error flow cleanup Greg Kroah-Hartman
2024-10-02 12:56 ` [PATCH 6.11 401/695] dt-bindings: PCI: layerscape-pci: Replace fsl,lx2160a-pcie with fsl,lx2160ar2-pcie Greg Kroah-Hartman
2024-10-02 12:56 ` [PATCH 6.11 402/695] iommufd: Check the domain owner of the parent before creating a nesting domain Greg Kroah-Hartman
2024-10-02 12:56 ` [PATCH 6.11 403/695] PCI: kirin: Fix buffer overflow in kirin_pcie_parse_port() Greg Kroah-Hartman
2024-10-02 12:56 ` [PATCH 6.11 404/695] RDMA/erdma: Return QP state in erdma_query_qp Greg Kroah-Hartman
2024-10-02 12:56 ` [PATCH 6.11 405/695] RDMA/mlx5: Fix counter update on MR cache mkey creation Greg Kroah-Hartman
2024-10-02 12:56 ` [PATCH 6.11 406/695] RDMA/mlx5: Limit usage of over-sized mkeys from the MR cache Greg Kroah-Hartman
2024-10-02 12:56 ` [PATCH 6.11 407/695] RDMA/mlx5: Drop redundant work canceling from clean_keys() Greg Kroah-Hartman
2024-10-02 12:56 ` [PATCH 6.11 408/695] RDMA/mlx5: Fix MR cache temp entries cleanup Greg Kroah-Hartman
2024-10-02 12:56 ` [PATCH 6.11 409/695] watchdog: imx_sc_wdt: Dont disable WDT in suspend Greg Kroah-Hartman
2024-10-02 12:56 ` [PATCH 6.11 410/695] RDMA/hns: Dont modify rq next block addr in HIP09 QPC Greg Kroah-Hartman
2024-10-02 12:56 ` [PATCH 6.11 411/695] RDMA/hns: Fix Use-After-Free of rsv_qp on HIP08 Greg Kroah-Hartman
2024-10-02 12:56 ` [PATCH 6.11 412/695] RDMA/hns: Fix the overflow risk of hem_list_calc_ba_range() Greg Kroah-Hartman
2024-10-02 12:56 ` [PATCH 6.11 413/695] RDMA/hns: Fix spin_unlock_irqrestore() called with IRQs enabled Greg Kroah-Hartman
2024-10-02 12:56 ` [PATCH 6.11 414/695] RDMA/hns: Fix VF triggering PF reset in abnormal interrupt handler Greg Kroah-Hartman
2024-10-02 12:56 ` [PATCH 6.11 415/695] RDMA/hns: Fix 1bit-ECC recovery address in non-4K OS Greg Kroah-Hartman
2024-10-02 12:56 ` [PATCH 6.11 416/695] RDMA/hns: Optimize hem allocation performance Greg Kroah-Hartman
2024-10-02 12:56 ` [PATCH 6.11 417/695] RDMA/hns: Fix restricted __le16 degrades to integer issue Greg Kroah-Hartman
2024-10-02 12:56 ` [PATCH 6.11 418/695] Input: ims-pcu - fix calling interruptible mutex Greg Kroah-Hartman
2024-10-02 12:56 ` [PATCH 6.11 419/695] RDMA/mlx5: Obtain upper net device only when needed Greg Kroah-Hartman
2024-10-02 12:56 ` [PATCH 6.11 420/695] PCI: qcom-ep: Enable controller resources like PHY only after refclk is available Greg Kroah-Hartman
2024-10-02 12:56 ` [PATCH 6.11 421/695] riscv: Fix fp alignment bug in perf_callchain_user() Greg Kroah-Hartman
2024-10-02 12:57 ` [PATCH 6.11 422/695] RDMA/hns: Fix ah error counter in sw stat not increasing Greg Kroah-Hartman
2024-10-02 12:57 ` [PATCH 6.11 423/695] RDMA/cxgb4: Added NULL check for lookup_atid Greg Kroah-Hartman
2024-10-02 12:57 ` [PATCH 6.11 424/695] RDMA/irdma: fix error message in irdma_modify_qp_roce() Greg Kroah-Hartman
2024-10-02 12:57 ` [PATCH 6.11 425/695] ntb: intel: Fix the NULL vs IS_ERR() bug for debugfs_create_dir() Greg Kroah-Hartman
2024-10-02 12:57 ` [PATCH 6.11 426/695] ntb_perf: Fix printk format Greg Kroah-Hartman
2024-10-02 12:57 ` [PATCH 6.11 427/695] ntb: Force physically contiguous allocation of rx ring buffers Greg Kroah-Hartman
2024-10-02 12:57 ` [PATCH 6.11 428/695] nfsd: call cache_put if xdr_reserve_space returns NULL Greg Kroah-Hartman
2024-10-02 12:57 ` [PATCH 6.11 429/695] nfsd: return -EINVAL when namelen is 0 Greg Kroah-Hartman
2024-10-02 12:57 ` [PATCH 6.11 430/695] nfsd: untangle code in nfsd4_deleg_getattr_conflict() Greg Kroah-Hartman
2024-10-02 12:57 ` [PATCH 6.11 431/695] nfsd: fix initial getattr on write delegation Greg Kroah-Hartman
2024-10-02 12:57 ` [PATCH 6.11 432/695] crypto: caam - Pad SG length when allocating hash edesc Greg Kroah-Hartman
2024-10-02 12:57 ` [PATCH 6.11 433/695] crypto: powerpc/p10-aes-gcm - Disable CRYPTO_AES_GCM_P10 Greg Kroah-Hartman
2024-10-02 12:57 ` [PATCH 6.11 434/695] f2fs: atomic: fix to avoid racing w/ GC Greg Kroah-Hartman
2024-10-02 12:57 ` [PATCH 6.11 435/695] f2fs: reduce expensive checkpoint trigger frequency Greg Kroah-Hartman
2024-10-02 12:57 ` [PATCH 6.11 436/695] f2fs: fix to avoid racing in between read and OPU dio write Greg Kroah-Hartman
2024-10-02 12:57 ` [PATCH 6.11 437/695] f2fs: Create COW inode from parent dentry for atomic write Greg Kroah-Hartman
2024-10-02 12:57 ` [PATCH 6.11 438/695] f2fs: fix to wait page writeback before setting gcing flag Greg Kroah-Hartman
2024-10-02 12:57 ` [PATCH 6.11 439/695] f2fs: atomic: fix to truncate pagecache before on-disk metadata truncation Greg Kroah-Hartman
2024-10-02 12:57 ` [PATCH 6.11 440/695] f2fs: fix to avoid use-after-free in f2fs_stop_gc_thread() Greg Kroah-Hartman
2024-10-02 12:57 ` [PATCH 6.11 441/695] f2fs: compress: dont redirty sparse cluster during {,de}compress Greg Kroah-Hartman
2024-10-02 12:57 ` [PATCH 6.11 442/695] f2fs: prevent atomic file from being dirtied before commit Greg Kroah-Hartman
2024-10-02 12:57 ` [PATCH 6.11 443/695] f2fs: get rid of online repaire on corrupted directory Greg Kroah-Hartman
2024-10-02 12:57 ` [PATCH 6.11 444/695] f2fs: fix to dont set SB_RDONLY in f2fs_handle_critical_error() Greg Kroah-Hartman
2024-10-02 12:57 ` [PATCH 6.11 445/695] spi: airoha: fix dirmap_{read,write} operations Greg Kroah-Hartman
2024-10-02 12:57 ` [PATCH 6.11 446/695] spi: airoha: fix airoha_snand_{write,read}_data data_len estimation Greg Kroah-Hartman
2024-10-02 12:57 ` [PATCH 6.11 447/695] spi: atmel-quadspi: Undo runtime PM changes at driver exit time Greg Kroah-Hartman
2024-10-02 12:57 ` [PATCH 6.11 448/695] spi: spi-fsl-lpspi: " Greg Kroah-Hartman
2024-10-02 12:57 ` [PATCH 6.11 449/695] lib/sbitmap: define swap_lock as raw_spinlock_t Greg Kroah-Hartman
2024-10-02 12:57 ` [PATCH 6.11 450/695] spi: airoha: remove read cache in airoha_snand_dirmap_read() Greg Kroah-Hartman
2024-10-02 12:57 ` [PATCH 6.11 451/695] spi: atmel-quadspi: Avoid overwriting delay register settings Greg Kroah-Hartman
2024-10-02 13:59   ` Alexander Dahl
2024-10-03  7:12     ` Greg Kroah-Hartman
2024-10-02 12:57 ` [PATCH 6.11 452/695] NFSv4.2: Fix detection of "Proxying of Times" server support Greg Kroah-Hartman
2024-10-02 12:57 ` [PATCH 6.11 453/695] nvme-multipath: system fails to create generic nvme device Greg Kroah-Hartman
2024-10-02 12:57 ` [PATCH 6.11 454/695] iio: adc: ad7606: fix oversampling gpio array Greg Kroah-Hartman
2024-10-02 12:57 ` [PATCH 6.11 455/695] iio: adc: ad7606: fix standby gpio state to match the documentation Greg Kroah-Hartman
2024-10-02 12:57 ` [PATCH 6.11 456/695] driver core: Fix error handling in driver API device_rename() Greg Kroah-Hartman
2024-10-02 12:57 ` [PATCH 6.11 457/695] ABI: testing: fix admv8818 attr description Greg Kroah-Hartman
2024-10-02 12:57 ` [PATCH 6.11 458/695] iio: chemical: bme680: Fix read/write ops to device by adding mutexes Greg Kroah-Hartman
2024-10-02 12:57 ` [PATCH 6.11 459/695] iio: magnetometer: ak8975: drop incorrect AK09116 compatible Greg Kroah-Hartman
2024-10-02 12:57 ` [PATCH 6.11 460/695] dt-bindings: iio: asahi-kasei,ak8975: " Greg Kroah-Hartman
2024-10-02 12:57 ` [PATCH 6.11 461/695] driver core: Fix a potential null-ptr-deref in module_add_driver() Greg Kroah-Hartman
2024-10-02 12:57 ` [PATCH 6.11 462/695] serial: 8250: omap: Cleanup on error in request_irq Greg Kroah-Hartman
2024-10-02 12:57 ` [PATCH 6.11 463/695] Coresight: Set correct cs_mode for TPDM to fix disable issue Greg Kroah-Hartman
2024-10-02 12:57 ` [PATCH 6.11 464/695] Coresight: Set correct cs_mode for dummy source " Greg Kroah-Hartman
2024-10-02 12:57 ` [PATCH 6.11 465/695] coresight: tmc: sg: Do not leak sg_table Greg Kroah-Hartman
2024-10-02 12:57 ` [PATCH 6.11 466/695] interconnect: icc-clk: Add missed num_nodes initialization Greg Kroah-Hartman
2024-10-02 12:57 ` [PATCH 6.11 467/695] interconnect: qcom: sm8250: Enable sync_state Greg Kroah-Hartman
2024-10-02 12:57 ` [PATCH 6.11 468/695] dm integrity: fix gcc 5 warning Greg Kroah-Hartman
2024-10-02 12:57 ` [PATCH 6.11 469/695] cxl/pci: Fix to record only non-zero ranges Greg Kroah-Hartman
2024-10-02 12:57 ` [PATCH 6.11 470/695] vdpa/mlx5: Fix invalid mr resource destroy Greg Kroah-Hartman
2024-10-02 12:57 ` [PATCH 6.11 471/695] vhost_vdpa: assign irq bypass producer token correctly Greg Kroah-Hartman
2024-10-02 12:57 ` [PATCH 6.11 472/695] ep93xx: clock: Fix off by one in ep93xx_div_recalc_rate() Greg Kroah-Hartman
2024-10-02 12:57 ` [PATCH 6.11 473/695] um: remove ARCH_NO_PREEMPT_DYNAMIC Greg Kroah-Hartman
2024-10-02 12:57 ` [PATCH 6.11 474/695] Revert "dm: requeue IO if mapping table not yet available" Greg Kroah-Hartman
2024-10-02 12:57 ` [PATCH 6.11 475/695] net: phy: aquantia: fix -ETIMEDOUT PHY probe failure when firmware not present Greg Kroah-Hartman
2024-10-02 12:57 ` [PATCH 6.11 476/695] net: xilinx: axienet: Schedule NAPI in two steps Greg Kroah-Hartman
2024-10-02 12:57 ` [PATCH 6.11 477/695] net: xilinx: axienet: Fix packet counting Greg Kroah-Hartman
2024-10-02 12:57 ` [PATCH 6.11 478/695] netfilter: nf_reject_ipv6: fix nf_reject_ip6_tcphdr_put() Greg Kroah-Hartman
2024-10-02 12:57 ` [PATCH 6.11 479/695] net: seeq: Fix use after free vulnerability in ether3 Driver Due to Race Condition Greg Kroah-Hartman
2024-10-02 12:57 ` [PATCH 6.11 480/695] net: ipv6: select DST_CACHE from IPV6_RPL_LWTUNNEL Greg Kroah-Hartman
2024-10-02 12:57 ` [PATCH 6.11 481/695] tcp: check skb is non-NULL in tcp_rto_delta_us() Greg Kroah-Hartman
2024-10-02 12:58 ` [PATCH 6.11 482/695] net: qrtr: Update packets cloning when broadcasting Greg Kroah-Hartman
2024-10-02 12:58 ` [PATCH 6.11 483/695] net: phy: aquantia: fix setting active_low bit Greg Kroah-Hartman
2024-10-02 12:58 ` [PATCH 6.11 484/695] net: phy: aquantia: fix applying active_low bit after reset Greg Kroah-Hartman
2024-10-02 12:58 ` [PATCH 6.11 485/695] net: ravb: Fix maximum TX frame size for GbEth devices Greg Kroah-Hartman
2024-10-02 12:58 ` [PATCH 6.11 486/695] net: ravb: Fix R-Car RX frame size limit Greg Kroah-Hartman
2024-10-02 12:58 ` [PATCH 6.11 487/695] bonding: Fix unnecessary warnings and logs from bond_xdp_get_xmit_slave() Greg Kroah-Hartman
2024-10-02 12:58 ` [PATCH 6.11 488/695] virtio_net: Fix mismatched buf address when unmapping for small packets Greg Kroah-Hartman
2024-10-02 12:58 ` [PATCH 6.11 489/695] net: stmmac: set PP_FLAG_DMA_SYNC_DEV only if XDP is enabled Greg Kroah-Hartman
2024-10-02 12:58 ` [PATCH 6.11 490/695] netfilter: nf_tables: Keep deleted flowtable hooks until after RCU Greg Kroah-Hartman
2024-10-02 12:58 ` [PATCH 6.11 491/695] netfilter: ctnetlink: compile ctnetlink_label_size with CONFIG_NF_CONNTRACK_EVENTS Greg Kroah-Hartman
2024-10-02 12:58 ` [PATCH 6.11 492/695] netfilter: nf_tables: use rcu chain hook list iterator from netlink dump path Greg Kroah-Hartman
2024-10-02 12:58 ` [PATCH 6.11 493/695] netfilter: nf_tables: missing objects with no memcg accounting Greg Kroah-Hartman
2024-10-02 12:58 ` [PATCH 6.11 494/695] selftests: netfilter: Avoid hanging ipvs.sh Greg Kroah-Hartman
2024-10-02 12:58 ` [PATCH 6.11 495/695] io_uring/sqpoll: do not allow pinning outside of cpuset Greg Kroah-Hartman
2024-10-02 12:58 ` [PATCH 6.11 496/695] io_uring/rw: treat -EOPNOTSUPP for IOCB_NOWAIT like -EAGAIN Greg Kroah-Hartman
2024-10-02 12:58 ` [PATCH 6.11 497/695] io_uring: check for presence of task_work rather than TIF_NOTIFY_SIGNAL Greg Kroah-Hartman
2024-10-02 12:58 ` [PATCH 6.11 498/695] fuse: use exclusive lock when FUSE_I_CACHE_IO_MODE is set Greg Kroah-Hartman
2024-10-02 12:58 ` [PATCH 6.11 499/695] mm: migrate: annotate data-race in migrate_folio_unmap() Greg Kroah-Hartman
2024-10-02 12:58 ` [PATCH 6.11 500/695] mm: call the security_mmap_file() LSM hook in remap_file_pages() Greg Kroah-Hartman
2024-10-02 12:58 ` [PATCH 6.11 501/695] drm/amd/display: Fix Synaptics Cascaded Panamera DSC Determination Greg Kroah-Hartman
2024-10-02 12:58 ` [PATCH 6.11 502/695] drm/amd/display: Add DSC Debug Log Greg Kroah-Hartman
2024-10-02 12:58 ` [PATCH 6.11 503/695] drm/amdgpu/display: Fix a mistake in revert commit Greg Kroah-Hartman
2024-10-02 12:58 ` [PATCH 6.11 504/695] xen: move checks for e820 conflicts further up Greg Kroah-Hartman
2024-10-02 12:58 ` [PATCH 6.11 505/695] xen: allow mapping ACPI data using a different physical address Greg Kroah-Hartman
2024-10-02 12:58 ` [PATCH 6.11 506/695] io_uring/sqpoll: retain test for whether the CPU is valid Greg Kroah-Hartman
2024-10-02 12:58 ` [PATCH 6.11 507/695] drm/amd/display: disable_hpo_dp_link_output: Check link_res->hpo_dp_link_enc before using it Greg Kroah-Hartman
2024-10-02 12:58 ` [PATCH 6.11 508/695] drm/xe: fix engine_class bounds check again Greg Kroah-Hartman
2024-10-02 12:58 ` [PATCH 6.11 509/695] io_uring/sqpoll: do not put cpumask on stack Greg Kroah-Hartman
2024-10-02 12:58 ` [PATCH 6.11 510/695] selftests/bpf: correctly move log upon successful match Greg Kroah-Hartman
2024-10-02 12:58 ` [PATCH 6.11 511/695] Remove *.orig pattern from .gitignore Greg Kroah-Hartman
2024-10-02 12:58 ` [PATCH 6.11 512/695] PCI: Revert to the original speed after PCIe failed link retraining Greg Kroah-Hartman
2024-10-02 12:58 ` [PATCH 6.11 513/695] PCI: Clear the LBMS bit after a link retrain Greg Kroah-Hartman
2024-10-02 12:58 ` [PATCH 6.11 514/695] PCI: dra7xx: Fix threaded IRQ request for "dra7xx-pcie-main" IRQ Greg Kroah-Hartman
2024-10-02 12:58 ` [PATCH 6.11 515/695] PCI: imx6: Fix missing call to phy_power_off() in error handling Greg Kroah-Hartman
2024-10-02 12:58 ` [PATCH 6.11 516/695] PCI: imx6: Fix establish link failure in EP mode for i.MX8MM and i.MX8MP Greg Kroah-Hartman
2024-10-02 12:58 ` [PATCH 6.11 517/695] PCI: imx6: Fix i.MX8MP PCIe EPs occasional failure to trigger MSI Greg Kroah-Hartman
2024-10-02 12:58 ` [PATCH 6.11 518/695] PCI: Correct error reporting with PCIe failed link retraining Greg Kroah-Hartman
2024-10-02 12:58 ` [PATCH 6.11 519/695] PCI: Use an error code " Greg Kroah-Hartman
2024-10-02 12:58 ` [PATCH 6.11 520/695] PCI: xilinx-nwl: Fix off-by-one in INTx IRQ handler Greg Kroah-Hartman
2024-10-02 12:58 ` [PATCH 6.11 521/695] PCI: dra7xx: Fix error handling when IRQ request fails in probe Greg Kroah-Hartman
2024-10-02 12:58 ` [PATCH 6.11 522/695] Revert "soc: qcom: smd-rpm: Match rpmsg channel instead of compatible" Greg Kroah-Hartman
2024-10-02 12:58 ` [PATCH 6.11 523/695] ASoC: rt5682: Return devm_of_clk_add_hw_provider to transfer the error Greg Kroah-Hartman
2024-10-02 12:58 ` [PATCH 6.11 524/695] soc: fsl: cpm1: qmc: Update TRNSYNC only in transparent mode Greg Kroah-Hartman
2024-10-02 12:58 ` [PATCH 6.11 525/695] soc: fsl: cpm1: tsa: Fix tsa_write8() Greg Kroah-Hartman
2024-10-02 12:58 ` [PATCH 6.11 526/695] soc: versatile: integrator: fix OF node leak in probe() error path Greg Kroah-Hartman
2024-10-02 12:58 ` [PATCH 6.11 527/695] Revert "media: tuners: fix error return code of hybrid_tuner_request_state()" Greg Kroah-Hartman
2024-10-02 12:58 ` [PATCH 6.11 528/695] iommu/amd: Fix argument order in amd_iommu_dev_flush_pasid_all() Greg Kroah-Hartman
2024-10-02 12:58 ` [PATCH 6.11 529/695] iommufd: Protect against overflow of ALIGN() during iova allocation Greg Kroah-Hartman
2024-10-02 12:58 ` [PATCH 6.11 530/695] Input: adp5588-keys - fix check on return code Greg Kroah-Hartman
2024-10-02 12:58 ` [PATCH 6.11 531/695] Input: i8042 - add TUXEDO Stellaris 16 Gen5 AMD to i8042 quirk table Greg Kroah-Hartman
2024-10-02 12:58 ` [PATCH 6.11 532/695] Input: i8042 - add TUXEDO Stellaris 15 Slim Gen6 " Greg Kroah-Hartman
2024-10-02 12:58 ` [PATCH 6.11 533/695] Input: i8042 - add another board name for TUXEDO Stellaris Gen5 AMD line Greg Kroah-Hartman
2024-10-02 12:58 ` [PATCH 6.11 534/695] KVM: arm64: Add memory length checks and remove inline in do_ffa_mem_xfer Greg Kroah-Hartman
2024-10-02 12:58 ` [PATCH 6.11 535/695] KVM: x86: Enforce x2APICs must-be-zero reserved ICR bits Greg Kroah-Hartman
2024-10-02 12:58 ` [PATCH 6.11 536/695] KVM: x86: Move x2APIC ICR helper above kvm_apic_write_nodecode() Greg Kroah-Hartman
2024-10-02 12:58 ` [PATCH 6.11 537/695] KVM: x86: Re-split x2APIC ICR into ICR+ICR2 for AMD (x2AVIC) Greg Kroah-Hartman
2024-10-02 12:58 ` [PATCH 6.11 538/695] KVM: Use dedicated mutex to protect kvm_usage_count to avoid deadlock Greg Kroah-Hartman
2024-10-02 12:58 ` [PATCH 6.11 539/695] drm/amd/display: Skip Recompute DSC Params if no Stream on Link Greg Kroah-Hartman
2024-10-02 12:58 ` [PATCH 6.11 540/695] drm/amdgpu/mes12: reduce timeout Greg Kroah-Hartman
2024-10-02 12:58 ` [PATCH 6.11 541/695] drm/amdgpu/mes11: " Greg Kroah-Hartman
2024-10-02 12:59 ` [PATCH 6.11 542/695] drm/amdkfd: Add SDMA queue quantum support for GFX12 Greg Kroah-Hartman
2024-10-02 12:59 ` [PATCH 6.11 543/695] drm/amdgpu: update golden regs for gfx12 Greg Kroah-Hartman
2024-10-02 12:59 ` [PATCH 6.11 544/695] drm/amdgpu/mes12: set enable_level_process_quantum_check Greg Kroah-Hartman
2024-10-02 12:59 ` [PATCH 6.11 545/695] drm/amdgpu/vcn: enable AV1 on both instances Greg Kroah-Hartman
2024-10-02 12:59 ` [PATCH 6.11 546/695] drm/amd/pm: update workload mask after the setting Greg Kroah-Hartman
2024-10-02 12:59 ` [PATCH 6.11 547/695] drm/amdgpu: fix PTE copy corruption for sdma 7 Greg Kroah-Hartman
2024-10-02 12:59 ` [PATCH 6.11 548/695] drm/amdgpu: bump driver version for cleared VRAM Greg Kroah-Hartman
2024-10-02 12:59 ` [PATCH 6.11 549/695] drm/amdgpu/mes12: switch SET_SHADER_DEBUGGER pkt to mes schq pipe Greg Kroah-Hartman
2024-10-02 12:59 ` [PATCH 6.11 550/695] drm/amdgpu: Fix selfring initialization sequence on soc24 Greg Kroah-Hartman
2024-10-02 12:59 ` [PATCH 6.11 551/695] drm/amd/display: Add HDMI DSC native YCbCr422 support Greg Kroah-Hartman
2024-10-02 12:59 ` [PATCH 6.11 552/695] drm/amd/display: Round calculated vtotal Greg Kroah-Hartman
2024-10-02 12:59 ` [PATCH 6.11 553/695] drm/amd/display: Clean up dsc blocks in accelerated mode Greg Kroah-Hartman
2024-10-02 12:59 ` [PATCH 6.11 554/695] drm/amd/display: Block timing sync for different output formats in pmo Greg Kroah-Hartman
2024-10-02 12:59 ` [PATCH 6.11 555/695] drm/amd/display: Validate backlight caps are sane Greg Kroah-Hartman
2024-10-02 12:59 ` [PATCH 6.11 556/695] drm/amd/display: Disable SYMCLK32_LE root clock gating Greg Kroah-Hartman
2024-10-02 12:59 ` [PATCH 6.11 557/695] drm/amd/display: Block dynamic IPS2 on DCN35 for incompatible FW versions Greg Kroah-Hartman
2024-10-02 12:59 ` [PATCH 6.11 558/695] drm/amd/display: Enable DML2 override_det_buffer_size_kbytes Greg Kroah-Hartman
2024-10-02 12:59 ` [PATCH 6.11 559/695] drm/amd/display: Skip to enable dsc if it has been off Greg Kroah-Hartman
2024-10-02 12:59 ` [PATCH 6.11 560/695] drm/amd/display: Fix underflow when setting underscan on DCN401 Greg Kroah-Hartman
2024-10-02 12:59 ` [PATCH 6.11 561/695] drm/amd/display: Update IPS default mode for DCN35/DCN351 Greg Kroah-Hartman
2024-10-02 12:59 ` [PATCH 6.11 562/695] objtool: Handle frame pointer related instructions Greg Kroah-Hartman
2024-10-02 12:59 ` [PATCH 6.11 563/695] x86/tdx: Fix "in-kernel MMIO" check Greg Kroah-Hartman
2024-10-02 12:59 ` [PATCH 6.11 564/695] KEYS: prevent NULL pointer dereference in find_asymmetric_key() Greg Kroah-Hartman
2024-10-02 12:59 ` [PATCH 6.11 565/695] powerpc/atomic: Use YZ constraints for DS-form instructions Greg Kroah-Hartman
2024-10-02 12:59 ` [PATCH 6.11 566/695] ksmbd: make __dir_empty() compatible with POSIX Greg Kroah-Hartman
2024-10-02 12:59 ` [PATCH 6.11 567/695] ksmbd: allow write with FILE_APPEND_DATA Greg Kroah-Hartman
2024-10-02 12:59 ` [PATCH 6.11 568/695] ksmbd: handle caseless file creation Greg Kroah-Hartman
2024-10-02 12:59 ` [PATCH 6.11 569/695] ata: libata-scsi: Fix ata_msense_control() CDL page reporting Greg Kroah-Hartman
2024-10-02 12:59 ` [PATCH 6.11 570/695] scsi: sd: Fix off-by-one error in sd_read_block_characteristics() Greg Kroah-Hartman
2024-10-02 12:59 ` [PATCH 6.11 571/695] scsi: ufs: qcom: Update MODE_MAX cfg_bw value Greg Kroah-Hartman
2024-10-02 12:59 ` [PATCH 6.11 572/695] scsi: lpfc: Restrict support for 32 byte CDBs to specific HBAs Greg Kroah-Hartman
2024-10-02 12:59 ` [PATCH 6.11 573/695] scsi: mac_scsi: Revise printk(KERN_DEBUG ...) messages Greg Kroah-Hartman
2024-10-02 12:59 ` [PATCH 6.11 574/695] scsi: mac_scsi: Refactor polling loop Greg Kroah-Hartman
2024-10-02 12:59 ` [PATCH 6.11 575/695] scsi: mac_scsi: Disallow bus errors during PDMA send Greg Kroah-Hartman
2024-10-02 12:59 ` [PATCH 6.11 576/695] can: esd_usb: Remove CAN_CTRLMODE_3_SAMPLES for CAN-USB/3-FD Greg Kroah-Hartman
2024-10-02 12:59 ` [PATCH 6.11 577/695] wifi: rtw88: Fix USB/SDIO devices not transmitting beacons Greg Kroah-Hartman
2024-10-02 12:59 ` [PATCH 6.11 578/695] usbnet: fix cyclical race on disconnect with work queue Greg Kroah-Hartman
2024-10-02 12:59 ` [PATCH 6.11 579/695] arm64: dts: mediatek: mt8195-cherry: Mark USB 3.0 on xhci1 as disabled Greg Kroah-Hartman
2024-10-02 12:59 ` [PATCH 6.11 580/695] arm64: dts: mediatek: mt8395-nio-12l: " Greg Kroah-Hartman
2024-10-02 12:59 ` [PATCH 6.11 581/695] USB: appledisplay: close race between probe and completion handler Greg Kroah-Hartman
2024-10-02 12:59 ` [PATCH 6.11 582/695] USB: misc: cypress_cy7c63: check for short transfer Greg Kroah-Hartman
2024-10-02 12:59 ` [PATCH 6.11 583/695] USB: class: CDC-ACM: fix race between get_serial and set_serial Greg Kroah-Hartman
2024-10-02 12:59 ` [PATCH 6.11 584/695] USB: misc: yurex: fix race between read and write Greg Kroah-Hartman
2024-10-02 12:59 ` [PATCH 6.11 585/695] usb: xhci: fix loss of data on Cadence xHC Greg Kroah-Hartman
2024-10-02 12:59 ` [PATCH 6.11 586/695] usb: cdnsp: Fix incorrect usb_request status Greg Kroah-Hartman
2024-10-02 12:59 ` [PATCH 6.11 587/695] usb: xHCI: add XHCI_RESET_ON_RESUME quirk for Phytium xHCI host Greg Kroah-Hartman
2024-10-02 12:59 ` [PATCH 6.11 588/695] usb: gadget: dummy_hcd: execute hrtimer callback in softirq context Greg Kroah-Hartman
2024-10-02 12:59 ` [PATCH 6.11 589/695] usb: dwc2: drd: fix clock gating on USB role switch Greg Kroah-Hartman
2024-10-02 12:59 ` [PATCH 6.11 590/695] bus: integrator-lm: fix OF node leak in probe() Greg Kroah-Hartman
2024-10-02 12:59 ` [PATCH 6.11 591/695] bus: mhi: host: pci_generic: Update EDL firmware path for Foxconn modems Greg Kroah-Hartman
2024-10-02 12:59 ` [PATCH 6.11 592/695] bus: mhi: host: pci_generic: Fix the name for the Telit FE990A Greg Kroah-Hartman
2024-10-02 12:59 ` [PATCH 6.11 593/695] firmware_loader: Block path traversal Greg Kroah-Hartman
2024-10-02 12:59 ` [PATCH 6.11 594/695] tty: rp2: Fix reset with non forgiving PCIe host bridges Greg Kroah-Hartman
2024-10-02 12:59 ` [PATCH 6.11 595/695] pps: add an error check in parport_attach Greg Kroah-Hartman
2024-10-02 12:59 ` [PATCH 6.11 596/695] serial: dont use uninitialized value in uart_poll_init() Greg Kroah-Hartman
2024-10-02 12:59 ` [PATCH 6.11 597/695] xhci: Set quirky xHC PCI hosts to D3 _after_ stopping and freeing them Greg Kroah-Hartman
2024-10-02 12:59 ` [PATCH 6.11 598/695] serial: qcom-geni: fix fifo polling timeout Greg Kroah-Hartman
2024-10-02 12:59 ` [PATCH 6.11 599/695] serial: qcom-geni: fix false console tx restart Greg Kroah-Hartman
2024-10-02 12:59 ` [PATCH 6.11 600/695] crypto: qcom-rng - fix support for ACPI-based systems Greg Kroah-Hartman
2024-10-02 12:59 ` [PATCH 6.11 601/695] crypto: ccp - Properly unregister /dev/sev on sev PLATFORM_STATUS failure Greg Kroah-Hartman
2024-10-02 13:00 ` [PATCH 6.11 602/695] drbd: Fix atomicity violation in drbd_uuid_set_bm() Greg Kroah-Hartman
2024-10-02 13:00 ` [PATCH 6.11 603/695] drbd: Add NULL check for net_conf to prevent dereference in state validation Greg Kroah-Hartman
2024-10-02 13:00 ` [PATCH 6.11 604/695] ACPI: sysfs: validate return type of _STR method Greg Kroah-Hartman
2024-10-02 13:00 ` [PATCH 6.11 605/695] ACPI: resource: Do IRQ override on MECHREV GM7XG0M Greg Kroah-Hartman
2024-10-02 13:00 ` [PATCH 6.11 606/695] ACPI: resource: Add another DMI match for the TongFang GMxXGxx Greg Kroah-Hartman
2024-10-02 13:00 ` [PATCH 6.11 607/695] efistub/tpm: Use ACPI reclaim memory for event log to avoid corruption Greg Kroah-Hartman
2024-10-02 13:00 ` [PATCH 6.11 608/695] intel_idle: add Granite Rapids Xeon support Greg Kroah-Hartman
2024-10-04  9:14   ` Artem Bityutskiy
2024-10-04 14:36     ` Artem Bityutskiy
2024-10-02 13:00 ` [PATCH 6.11 609/695] intel_idle: fix ACPI _CST matching for newer Xeon platforms Greg Kroah-Hartman
2024-10-02 13:00 ` [PATCH 6.11 610/695] x86/entry: Remove unwanted instrumentation in common_interrupt() Greg Kroah-Hartman
2024-10-02 13:00 ` [PATCH 6.11 611/695] perf/x86/intel: Allow to setup LBR for counting event for BPF Greg Kroah-Hartman
2024-10-02 13:00 ` [PATCH 6.11 612/695] perf/x86/intel/pt: Fix sampling synchronization Greg Kroah-Hartman
2024-10-02 13:00 ` [PATCH 6.11 613/695] btrfs: subpage: fix the bitmap dump which can cause bitmap corruption Greg Kroah-Hartman
2024-10-02 13:00 ` [PATCH 6.11 614/695] wifi: mt76: mt7921: Check devm_kasprintf() returned value Greg Kroah-Hartman
2024-10-02 13:00 ` [PATCH 6.11 615/695] wifi: mt76: mt7915: check " Greg Kroah-Hartman
2024-10-02 13:00 ` [PATCH 6.11 616/695] wifi: mt76: mt7996: fix NULL pointer dereference in mt7996_mcu_sta_bfer_he Greg Kroah-Hartman
2024-10-02 13:00 ` [PATCH 6.11 617/695] idpf: fix netdev Tx queue stop/wake Greg Kroah-Hartman
2024-10-02 13:00 ` [PATCH 6.11 618/695] wifi: mt76: mt7925: fix a potential array-index-out-of-bounds issue for clc Greg Kroah-Hartman
2024-10-02 13:00 ` [PATCH 6.11 619/695] wifi: rtw88: 8821cu: Remove VID/PID 0bda:c82c Greg Kroah-Hartman
2024-10-02 13:00 ` [PATCH 6.11 620/695] wifi: rtw88: 8822c: Fix reported RX band width Greg Kroah-Hartman
2024-10-02 13:00 ` [PATCH 6.11 621/695] wifi: rtw88: 8703b: " Greg Kroah-Hartman
2024-10-02 13:00 ` [PATCH 6.11 622/695] wifi: mt76: mt7615: check devm_kasprintf() returned value Greg Kroah-Hartman
2024-10-02 13:00 ` [PATCH 6.11 623/695] wifi: mt76: mt7925: fix a potential association failure upon resuming Greg Kroah-Hartman
2024-10-02 13:00 ` [PATCH 6.11 624/695] debugfs show actual source in /proc/mounts Greg Kroah-Hartman
2024-10-02 13:00 ` [PATCH 6.11 625/695] debugobjects: Fix conditions in fill_pool() Greg Kroah-Hartman
2024-10-02 13:00 ` [PATCH 6.11 626/695] btrfs: fix race setting file private on concurrent lseek using same fd Greg Kroah-Hartman
2024-10-02 13:00 ` [PATCH 6.11 627/695] btrfs: tree-checker: fix the wrong output of data backref objectid Greg Kroah-Hartman
2024-10-02 13:00 ` [PATCH 6.11 628/695] btrfs: always update fstrim_range on failure in FITRIM ioctl Greg Kroah-Hartman
2024-10-02 13:00 ` [PATCH 6.11 629/695] f2fs: fix to wait dio completion Greg Kroah-Hartman
2024-10-02 13:00 ` [PATCH 6.11 630/695] f2fs: fix several potential integer overflows in file offsets Greg Kroah-Hartman
2024-10-02 13:00 ` [PATCH 6.11 631/695] f2fs: prevent possible int overflow in dir_block_index() Greg Kroah-Hartman
2024-10-02 13:00 ` [PATCH 6.11 632/695] f2fs: avoid potential int overflow in sanity_check_area_boundary() Greg Kroah-Hartman
2024-10-02 13:00 ` [PATCH 6.11 633/695] f2fs: Require FMODE_WRITE for atomic write ioctls Greg Kroah-Hartman
2024-10-02 13:00 ` [PATCH 6.11 634/695] f2fs: check discard support for conventional zones Greg Kroah-Hartman
2024-10-02 13:00 ` [PATCH 6.11 635/695] f2fs: fix to check atomic_file in f2fs ioctl interfaces Greg Kroah-Hartman
2024-10-02 13:00 ` [PATCH 6.11 636/695] hwrng: mtk - Use devm_pm_runtime_enable Greg Kroah-Hartman
2024-10-02 13:00 ` [PATCH 6.11 637/695] hwrng: bcm2835 - Add missing clk_disable_unprepare in bcm2835_rng_init Greg Kroah-Hartman
2024-10-02 13:00 ` [PATCH 6.11 638/695] hwrng: cctrng - Add missing clk_disable_unprepare in cctrng_resume Greg Kroah-Hartman
2024-10-02 13:00 ` [PATCH 6.11 639/695] arm64: esr: Define ESR_ELx_EC_* constants as UL Greg Kroah-Hartman
2024-10-02 13:00 ` [PATCH 6.11 640/695] arm64: errata: Enable the AC03_CPU_38 workaround for ampere1a Greg Kroah-Hartman
2024-10-02 13:00 ` [PATCH 6.11 641/695] arm64: dts: mediatek: mt8186-corsola: Disable DPI display interface Greg Kroah-Hartman
2024-10-02 13:00 ` [PATCH 6.11 642/695] arm64: dts: rockchip: Raise Pinebook Pros panel backlight PWM frequency Greg Kroah-Hartman
2024-10-02 13:00 ` [PATCH 6.11 643/695] arm64: dts: qcom: sa8775p: Mark APPS and PCIe SMMUs as DMA coherent Greg Kroah-Hartman
2024-10-02 13:00 ` [PATCH 6.11 644/695] arm64: dts: rockchip: Correct the Pinebook Pro battery design capacity Greg Kroah-Hartman
2024-10-02 13:00 ` [PATCH 6.11 645/695] vfs: fix race between evice_inodes() and find_inode()&iput() Greg Kroah-Hartman
2024-10-02 13:00 ` [PATCH 6.11 646/695] netfs: Delete subtree of fs/netfs when netfs module exits Greg Kroah-Hartman
2024-10-02 13:00 ` [PATCH 6.11 647/695] fs: Fix file_set_fowner LSM hook inconsistencies Greg Kroah-Hartman
2024-10-02 13:00 ` [PATCH 6.11 648/695] nfs: fix memory leak in error path of nfs4_do_reclaim Greg Kroah-Hartman
2024-10-02 13:00 ` [PATCH 6.11 649/695] EDAC/igen6: Fix conversion of system address to physical memory address Greg Kroah-Hartman
2024-10-02 13:00 ` [PATCH 6.11 650/695] icmp: change the order of rate limits Greg Kroah-Hartman
2024-10-02 13:00 ` [PATCH 6.11 651/695] eventpoll: Annotate data-race of busy_poll_usecs Greg Kroah-Hartman
2024-10-02 13:00 ` [PATCH 6.11 652/695] md: Dont flush sync_work in md_write_start() Greg Kroah-Hartman
2024-10-02 13:00 ` [PATCH 6.11 653/695] cpuidle: riscv-sbi: Use scoped device node handling to fix missing of_node_put Greg Kroah-Hartman
2024-10-02 13:00 ` [PATCH 6.11 654/695] padata: use integer wrap around to prevent deadlock on seq_nr overflow Greg Kroah-Hartman
2024-10-02 13:00 ` [PATCH 6.11 655/695] lsm: add the inode_free_security_rcu() LSM implementation hook Greg Kroah-Hartman
2024-10-02 13:00 ` [PATCH 6.11 656/695] spi: fspi: involve lut_num for struct nxp_fspi_devtype_data Greg Kroah-Hartman
2024-10-02 13:00 ` [PATCH 6.11 657/695] dt-bindings: spi: nxp-fspi: add imx8ulp support Greg Kroah-Hartman
2024-10-02 13:00 ` [PATCH 6.11 658/695] ARM: dts: imx6ul-geam: fix fsl,pins property in tscgrp pinctrl Greg Kroah-Hartman
2024-10-02 13:00 ` [PATCH 6.11 659/695] ARM: dts: imx6ull-seeed-npi: " Greg Kroah-Hartman
2024-10-02 13:00 ` [PATCH 6.11 660/695] tools/nolibc: include arch.h from string.h Greg Kroah-Hartman
2024-10-02 13:00 ` [PATCH 6.11 661/695] soc: versatile: realview: fix memory leak during device remove Greg Kroah-Hartman
2024-10-02 13:01 ` [PATCH 6.11 662/695] soc: versatile: realview: fix soc_dev " Greg Kroah-Hartman
2024-10-02 13:01 ` [PATCH 6.11 663/695] usb: typec: ucsi: Call CANCEL from single location Greg Kroah-Hartman
2024-10-02 13:01 ` [PATCH 6.11 664/695] usb: typec: ucsi: Fix busy loop on ASUS VivoBooks Greg Kroah-Hartman
2024-10-02 13:01 ` [PATCH 6.11 665/695] soc: qcom: geni-se: add GP_LENGTH/IRQ_EN_SET/IRQ_EN_CLEAR registers Greg Kroah-Hartman
2024-10-02 13:01 ` [PATCH 6.11 666/695] serial: qcom-geni: fix arg types for qcom_geni_serial_poll_bit() Greg Kroah-Hartman
2024-10-02 13:01 ` [PATCH 6.11 667/695] serial: qcom-geni: introduce qcom_geni_serial_poll_bitfield() Greg Kroah-Hartman
2024-10-02 13:01 ` [PATCH 6.11 668/695] serial: qcom-geni: fix console corruption Greg Kroah-Hartman
2024-10-02 13:01 ` [PATCH 6.11 669/695] thermal: core: Store trip sysfs attributes in thermal_trip_desc Greg Kroah-Hartman
2024-10-02 13:01 ` [PATCH 6.11 670/695] thermal: sysfs: Get to trips via attribute pointers Greg Kroah-Hartman
2024-10-02 13:01 ` [PATCH 6.11 671/695] thermal: sysfs: Refine the handling of trip hysteresis changes Greg Kroah-Hartman
2024-10-02 13:01 ` [PATCH 6.11 672/695] thermal: sysfs: Add sanity checks for trip temperature and hysteresis Greg Kroah-Hartman
2024-10-02 13:01 ` [PATCH 6.11 673/695] lsm: infrastructure management of the sock security Greg Kroah-Hartman
2024-10-02 13:01 ` [PATCH 6.11 674/695] bpf: lsm: Set bpf_lsm_blob_sizes.lbs_task to 0 Greg Kroah-Hartman
2024-10-02 13:01 ` [PATCH 6.11 675/695] dm-verity: restart or panic on an I/O error Greg Kroah-Hartman
2024-10-02 13:01 ` [PATCH 6.11 676/695] compiler.h: specify correct attribute for .rodata..c_jump_table Greg Kroah-Hartman
2024-10-02 13:01 ` [PATCH 6.11 677/695] lockdep: fix deadlock issue between lockdep and rcu Greg Kroah-Hartman
2024-10-02 13:01 ` [PATCH 6.11 678/695] exfat: resolve memory leak from exfat_create_upcase_table() Greg Kroah-Hartman
2024-10-02 13:01 ` [PATCH 6.11 679/695] mm/hugetlb_vmemmap: batch HVO work when demoting Greg Kroah-Hartman
2024-10-02 13:01 ` [PATCH 6.11 680/695] s390/ftrace: Avoid calling unwinder in ftrace_return_address() Greg Kroah-Hartman
2024-10-02 13:01 ` [PATCH 6.11 681/695] selftest mm/mseal: fix test_seal_mremap_move_dontunmap_anyaddr Greg Kroah-Hartman
2024-10-02 13:01 ` [PATCH 6.11 682/695] mm: only enforce minimum stack gap size if its sensible Greg Kroah-Hartman
2024-10-02 13:01 ` [PATCH 6.11 683/695] spi: fspi: add support for imx8ulp Greg Kroah-Hartman
2024-10-02 13:01 ` [PATCH 6.11 684/695] module: Fix KCOV-ignored file name Greg Kroah-Hartman
2024-10-02 13:01 ` [PATCH 6.11 685/695] fbdev: xen-fbfront: Assign fb_info->device Greg Kroah-Hartman
2024-10-02 13:01 ` [PATCH 6.11 686/695] tpm: export tpm2_sessions_init() to fix ibmvtpm building Greg Kroah-Hartman
2024-10-02 13:01 ` [PATCH 6.11 687/695] mm/hugetlb.c: fix UAF of vma in hugetlb fault pathway Greg Kroah-Hartman
2024-10-02 13:01 ` [PATCH 6.11 688/695] mm/huge_memory: ensure huge_zero_folio wont have large_rmappable flag set Greg Kroah-Hartman
2024-10-02 13:01 ` [PATCH 6.11 689/695] mm: change vmf_anon_prepare() to __vmf_anon_prepare() Greg Kroah-Hartman
2024-10-02 13:01 ` [PATCH 6.11 690/695] mm/damon/vaddr: protect vma traversal in __damon_va_thre_regions() with rcu read lock Greg Kroah-Hartman
2024-10-02 13:01 ` [PATCH 6.11 691/695] i2c: aspeed: Update the stop sw state when the bus recovery occurs Greg Kroah-Hartman
2024-10-02 13:01 ` [PATCH 6.11 692/695] i2c: isch: Add missed else Greg Kroah-Hartman
2024-10-02 13:01 ` [PATCH 6.11 693/695] i2c: xiic: Try re-initialization on bus busy timeout Greg Kroah-Hartman
2024-10-02 13:01 ` [PATCH 6.11 694/695] Documentation: KVM: fix warning in "make htmldocs" Greg Kroah-Hartman
2024-10-02 13:01 ` [PATCH 6.11 695/695] bpf: Fix use-after-free in bpf_uprobe_multi_link_attach() Greg Kroah-Hartman
2024-10-02 18:29 ` [PATCH 6.11 000/695] 6.11.2-rc1 review Florian Fainelli
2024-10-02 18:35 ` Jon Hunter
2024-10-03  0:17 ` Shuah Khan
2024-10-03  5:41 ` Naresh Kamboju
2024-10-03 11:05 ` Mark Brown
2024-10-03 15:19 ` Peter Schneider
2024-10-03 21:06 ` Allen
2024-10-03 23:33 ` Ron Economos
2024-10-04 11:32 ` Kexy Biscuit

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=20241002125832.626154001@linuxfoundation.org \
    --to=gregkh@linuxfoundation.org \
    --cc=andrii@kernel.org \
    --cc=ast@kernel.org \
    --cc=eddyz87@gmail.com \
    --cc=hffilwlqm@gmail.com \
    --cc=patches@lists.linux.dev \
    --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).