public inbox for stable@vger.kernel.org
 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.10 228/634] bpf, x64: Fix tailcall hierarchy
Date: Wed,  2 Oct 2024 14:55:28 +0200	[thread overview]
Message-ID: <20241002125820.099484862@linuxfoundation.org> (raw)
In-Reply-To: <20241002125811.070689334@linuxfoundation.org>

6.10-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 5159c7a229229..2f28a9b34b91e 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));
@@ -1313,9 +1358,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)
@@ -2038,7 +2085,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)
@@ -2713,6 +2760,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
@@ -2833,7 +2884,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 */
@@ -2962,10 +3013,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) {
@@ -3024,10 +3075,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 14:04 UTC|newest]

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