linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
To: linux-kernel@vger.kernel.org
Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>,
	stable@vger.kernel.org, Peter Zijlstra <peterz@infradead.org>,
	Joerg Roedel <jroedel@suse.de>, Borislav Petkov <bp@suse.de>,
	Sasha Levin <sashal@kernel.org>
Subject: [PATCH 5.10 263/593] x86/sev: Split up runtime #VC handler for correct state tracking
Date: Mon, 12 Jul 2021 08:07:03 +0200	[thread overview]
Message-ID: <20210712060912.279271729@linuxfoundation.org> (raw)
In-Reply-To: <20210712060843.180606720@linuxfoundation.org>

From: Joerg Roedel <jroedel@suse.de>

[ Upstream commit be1a5408868af341f61f93c191b5e346ee88c82a ]

Split up the #VC handler code into a from-user and a from-kernel part.
This allows clean and correct state tracking, as the #VC handler needs
to enter NMI-state when raised from kernel mode and plain IRQ state when
raised from user-mode.

Fixes: 62441a1fb532 ("x86/sev-es: Correctly track IRQ states in runtime #VC handler")
Suggested-by: Peter Zijlstra <peterz@infradead.org>
Signed-off-by: Joerg Roedel <jroedel@suse.de>
Signed-off-by: Borislav Petkov <bp@suse.de>
Acked-by: Peter Zijlstra (Intel) <peterz@infradead.org>
Link: https://lkml.kernel.org/r/20210618115409.22735-3-joro@8bytes.org
Signed-off-by: Sasha Levin <sashal@kernel.org>
---
 arch/x86/entry/entry_64.S       |   4 +-
 arch/x86/include/asm/idtentry.h |  29 +++----
 arch/x86/kernel/sev-es.c        | 148 +++++++++++++++++---------------
 3 files changed, 91 insertions(+), 90 deletions(-)

diff --git a/arch/x86/entry/entry_64.S b/arch/x86/entry/entry_64.S
index cad08703c4ad..f18f3932e971 100644
--- a/arch/x86/entry/entry_64.S
+++ b/arch/x86/entry/entry_64.S
@@ -508,7 +508,7 @@ SYM_CODE_START(\asmsym)
 
 	movq	%rsp, %rdi		/* pt_regs pointer */
 
-	call	\cfunc
+	call	kernel_\cfunc
 
 	/*
 	 * No need to switch back to the IST stack. The current stack is either
@@ -519,7 +519,7 @@ SYM_CODE_START(\asmsym)
 
 	/* Switch to the regular task stack */
 .Lfrom_usermode_switch_stack_\@:
-	idtentry_body safe_stack_\cfunc, has_error_code=1
+	idtentry_body user_\cfunc, has_error_code=1
 
 _ASM_NOKPROBE(\asmsym)
 SYM_CODE_END(\asmsym)
diff --git a/arch/x86/include/asm/idtentry.h b/arch/x86/include/asm/idtentry.h
index 0e3325790f3a..dc2a8b1657f4 100644
--- a/arch/x86/include/asm/idtentry.h
+++ b/arch/x86/include/asm/idtentry.h
@@ -315,8 +315,8 @@ static __always_inline void __##func(struct pt_regs *regs)
  */
 #define DECLARE_IDTENTRY_VC(vector, func)				\
 	DECLARE_IDTENTRY_RAW_ERRORCODE(vector, func);			\
-	__visible noinstr void ist_##func(struct pt_regs *regs, unsigned long error_code);	\
-	__visible noinstr void safe_stack_##func(struct pt_regs *regs, unsigned long error_code)
+	__visible noinstr void kernel_##func(struct pt_regs *regs, unsigned long error_code);	\
+	__visible noinstr void   user_##func(struct pt_regs *regs, unsigned long error_code)
 
 /**
  * DEFINE_IDTENTRY_IST - Emit code for IST entry points
@@ -358,33 +358,24 @@ static __always_inline void __##func(struct pt_regs *regs)
 	DEFINE_IDTENTRY_RAW_ERRORCODE(func)
 
 /**
- * DEFINE_IDTENTRY_VC_SAFE_STACK - Emit code for VMM communication handler
-				   which runs on a safe stack.
+ * DEFINE_IDTENTRY_VC_KERNEL - Emit code for VMM communication handler
+			       when raised from kernel mode
  * @func:	Function name of the entry point
  *
  * Maps to DEFINE_IDTENTRY_RAW_ERRORCODE
  */
-#define DEFINE_IDTENTRY_VC_SAFE_STACK(func)				\
-	DEFINE_IDTENTRY_RAW_ERRORCODE(safe_stack_##func)
+#define DEFINE_IDTENTRY_VC_KERNEL(func)				\
+	DEFINE_IDTENTRY_RAW_ERRORCODE(kernel_##func)
 
 /**
- * DEFINE_IDTENTRY_VC_IST - Emit code for VMM communication handler
-			    which runs on the VC fall-back stack
+ * DEFINE_IDTENTRY_VC_USER - Emit code for VMM communication handler
+			     when raised from user mode
  * @func:	Function name of the entry point
  *
  * Maps to DEFINE_IDTENTRY_RAW_ERRORCODE
  */
-#define DEFINE_IDTENTRY_VC_IST(func)				\
-	DEFINE_IDTENTRY_RAW_ERRORCODE(ist_##func)
-
-/**
- * DEFINE_IDTENTRY_VC - Emit code for VMM communication handler
- * @func:	Function name of the entry point
- *
- * Maps to DEFINE_IDTENTRY_RAW_ERRORCODE
- */
-#define DEFINE_IDTENTRY_VC(func)					\
-	DEFINE_IDTENTRY_RAW_ERRORCODE(func)
+#define DEFINE_IDTENTRY_VC_USER(func)				\
+	DEFINE_IDTENTRY_RAW_ERRORCODE(user_##func)
 
 #else	/* CONFIG_X86_64 */
 
diff --git a/arch/x86/kernel/sev-es.c b/arch/x86/kernel/sev-es.c
index 0b5e35a51804..f3202b2e3c15 100644
--- a/arch/x86/kernel/sev-es.c
+++ b/arch/x86/kernel/sev-es.c
@@ -759,7 +759,7 @@ void __init sev_es_init_vc_handling(void)
 	sev_es_setup_play_dead();
 
 	/* Secondary CPUs use the runtime #VC handler */
-	initial_vc_handler = (unsigned long)safe_stack_exc_vmm_communication;
+	initial_vc_handler = (unsigned long)kernel_exc_vmm_communication;
 }
 
 static void __init vc_early_forward_exception(struct es_em_ctxt *ctxt)
@@ -1197,14 +1197,6 @@ static enum es_result vc_handle_trap_ac(struct ghcb *ghcb,
 	return ES_EXCEPTION;
 }
 
-static __always_inline void vc_handle_trap_db(struct pt_regs *regs)
-{
-	if (user_mode(regs))
-		noist_exc_debug(regs);
-	else
-		exc_debug(regs);
-}
-
 static enum es_result vc_handle_exitcode(struct es_em_ctxt *ctxt,
 					 struct ghcb *ghcb,
 					 unsigned long exit_code)
@@ -1300,41 +1292,13 @@ static __always_inline bool on_vc_fallback_stack(struct pt_regs *regs)
 	return (sp >= __this_cpu_ist_bottom_va(VC2) && sp < __this_cpu_ist_top_va(VC2));
 }
 
-/*
- * Main #VC exception handler. It is called when the entry code was able to
- * switch off the IST to a safe kernel stack.
- *
- * With the current implementation it is always possible to switch to a safe
- * stack because #VC exceptions only happen at known places, like intercepted
- * instructions or accesses to MMIO areas/IO ports. They can also happen with
- * code instrumentation when the hypervisor intercepts #DB, but the critical
- * paths are forbidden to be instrumented, so #DB exceptions currently also
- * only happen in safe places.
- */
-DEFINE_IDTENTRY_VC_SAFE_STACK(exc_vmm_communication)
+static bool vc_raw_handle_exception(struct pt_regs *regs, unsigned long error_code)
 {
-	irqentry_state_t irq_state;
 	struct ghcb_state state;
 	struct es_em_ctxt ctxt;
 	enum es_result result;
 	struct ghcb *ghcb;
-
-	/*
-	 * Handle #DB before calling into !noinstr code to avoid recursive #DB.
-	 */
-	if (error_code == SVM_EXIT_EXCP_BASE + X86_TRAP_DB) {
-		vc_handle_trap_db(regs);
-		return;
-	}
-
-	irq_state = irqentry_nmi_enter(regs);
-	instrumentation_begin();
-
-	/*
-	 * This is invoked through an interrupt gate, so IRQs are disabled. The
-	 * code below might walk page-tables for user or kernel addresses, so
-	 * keep the IRQs disabled to protect us against concurrent TLB flushes.
-	 */
+	bool ret = true;
 
 	ghcb = __sev_get_ghcb(&state);
 
@@ -1354,15 +1318,18 @@ DEFINE_IDTENTRY_VC_SAFE_STACK(exc_vmm_communication)
 	case ES_UNSUPPORTED:
 		pr_err_ratelimited("Unsupported exit-code 0x%02lx in early #VC exception (IP: 0x%lx)\n",
 				   error_code, regs->ip);
-		goto fail;
+		ret = false;
+		break;
 	case ES_VMM_ERROR:
 		pr_err_ratelimited("Failure in communication with VMM (exit-code 0x%02lx IP: 0x%lx)\n",
 				   error_code, regs->ip);
-		goto fail;
+		ret = false;
+		break;
 	case ES_DECODE_FAILED:
 		pr_err_ratelimited("Failed to decode instruction (exit-code 0x%02lx IP: 0x%lx)\n",
 				   error_code, regs->ip);
-		goto fail;
+		ret = false;
+		break;
 	case ES_EXCEPTION:
 		vc_forward_exception(&ctxt);
 		break;
@@ -1378,24 +1345,52 @@ DEFINE_IDTENTRY_VC_SAFE_STACK(exc_vmm_communication)
 		BUG();
 	}
 
-out:
-	instrumentation_end();
-	irqentry_nmi_exit(regs, irq_state);
+	return ret;
+}
 
-	return;
+static __always_inline bool vc_is_db(unsigned long error_code)
+{
+	return error_code == SVM_EXIT_EXCP_BASE + X86_TRAP_DB;
+}
 
-fail:
-	if (user_mode(regs)) {
-		/*
-		 * Do not kill the machine if user-space triggered the
-		 * exception. Send SIGBUS instead and let user-space deal with
-		 * it.
-		 */
-		force_sig_fault(SIGBUS, BUS_OBJERR, (void __user *)0);
-	} else {
-		pr_emerg("PANIC: Unhandled #VC exception in kernel space (result=%d)\n",
-			 result);
+/*
+ * Runtime #VC exception handler when raised from kernel mode. Runs in NMI mode
+ * and will panic when an error happens.
+ */
+DEFINE_IDTENTRY_VC_KERNEL(exc_vmm_communication)
+{
+	irqentry_state_t irq_state;
+
+	/*
+	 * With the current implementation it is always possible to switch to a
+	 * safe stack because #VC exceptions only happen at known places, like
+	 * intercepted instructions or accesses to MMIO areas/IO ports. They can
+	 * also happen with code instrumentation when the hypervisor intercepts
+	 * #DB, but the critical paths are forbidden to be instrumented, so #DB
+	 * exceptions currently also only happen in safe places.
+	 *
+	 * But keep this here in case the noinstr annotations are violated due
+	 * to bug elsewhere.
+	 */
+	if (unlikely(on_vc_fallback_stack(regs))) {
+		instrumentation_begin();
+		panic("Can't handle #VC exception from unsupported context\n");
+		instrumentation_end();
+	}
+
+	/*
+	 * Handle #DB before calling into !noinstr code to avoid recursive #DB.
+	 */
+	if (vc_is_db(error_code)) {
+		exc_debug(regs);
+		return;
+	}
+
+	irq_state = irqentry_nmi_enter(regs);
 
+	instrumentation_begin();
+
+	if (!vc_raw_handle_exception(regs, error_code)) {
 		/* Show some debug info */
 		show_regs(regs);
 
@@ -1406,23 +1401,38 @@ fail:
 		panic("Returned from Terminate-Request to Hypervisor\n");
 	}
 
-	goto out;
+	instrumentation_end();
+	irqentry_nmi_exit(regs, irq_state);
 }
 
-/* This handler runs on the #VC fall-back stack. It can cause further #VC exceptions */
-DEFINE_IDTENTRY_VC_IST(exc_vmm_communication)
+/*
+ * Runtime #VC exception handler when raised from user mode. Runs in IRQ mode
+ * and will kill the current task with SIGBUS when an error happens.
+ */
+DEFINE_IDTENTRY_VC_USER(exc_vmm_communication)
 {
+	/*
+	 * Handle #DB before calling into !noinstr code to avoid recursive #DB.
+	 */
+	if (vc_is_db(error_code)) {
+		noist_exc_debug(regs);
+		return;
+	}
+
+	irqentry_enter_from_user_mode(regs);
 	instrumentation_begin();
-	panic("Can't handle #VC exception from unsupported context\n");
-	instrumentation_end();
-}
 
-DEFINE_IDTENTRY_VC(exc_vmm_communication)
-{
-	if (likely(!on_vc_fallback_stack(regs)))
-		safe_stack_exc_vmm_communication(regs, error_code);
-	else
-		ist_exc_vmm_communication(regs, error_code);
+	if (!vc_raw_handle_exception(regs, error_code)) {
+		/*
+		 * Do not kill the machine if user-space triggered the
+		 * exception. Send SIGBUS instead and let user-space deal with
+		 * it.
+		 */
+		force_sig_fault(SIGBUS, BUS_OBJERR, (void __user *)0);
+	}
+
+	instrumentation_end();
+	irqentry_exit_to_user_mode(regs);
 }
 
 bool __init handle_vc_boot_ghcb(struct pt_regs *regs)
-- 
2.30.2




  parent reply	other threads:[~2021-07-12  6:54 UTC|newest]

Thread overview: 615+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-07-12  6:02 [PATCH 5.10 000/593] 5.10.50-rc1 review Greg Kroah-Hartman
2021-07-12  6:02 ` [PATCH 5.10 001/593] Bluetooth: hci_qca: fix potential GPF Greg Kroah-Hartman
2021-07-12  6:02 ` [PATCH 5.10 002/593] Bluetooth: btqca: Dont modify firmware contents in-place Greg Kroah-Hartman
2021-07-12  6:02 ` [PATCH 5.10 003/593] Bluetooth: Remove spurious error message Greg Kroah-Hartman
2021-07-12  6:02 ` [PATCH 5.10 004/593] ALSA: usb-audio: fix rate on Ozone Z90 USB headset Greg Kroah-Hartman
2021-07-12  6:02 ` [PATCH 5.10 005/593] ALSA: usb-audio: Fix OOB access at proc output Greg Kroah-Hartman
2021-07-12  6:02 ` [PATCH 5.10 006/593] ALSA: firewire-motu: fix stream format for MOTU 8pre FireWire Greg Kroah-Hartman
2021-07-12  6:02 ` [PATCH 5.10 007/593] ALSA: usb-audio: scarlett2: Fix wrong resume call Greg Kroah-Hartman
2021-07-13 20:46   ` Pavel Machek
2021-07-14  7:00     ` Takashi Iwai
2021-07-12  6:02 ` [PATCH 5.10 008/593] ALSA: intel8x0: Fix breakage at ac97 clock measurement Greg Kroah-Hartman
2021-07-12  6:02 ` [PATCH 5.10 009/593] ALSA: hda/realtek: fix mute/micmute LEDs for HP ProBook 450 G8 Greg Kroah-Hartman
2021-07-12  6:02 ` [PATCH 5.10 010/593] ALSA: hda/realtek: fix mute/micmute LEDs for HP ProBook 445 G8 Greg Kroah-Hartman
2021-07-12  6:02 ` [PATCH 5.10 011/593] ALSA: hda/realtek: fix mute/micmute LEDs for HP ProBook 630 G8 Greg Kroah-Hartman
2021-07-12  6:02 ` [PATCH 5.10 012/593] ALSA: hda/realtek: Add another ALC236 variant support Greg Kroah-Hartman
2021-07-12  6:02 ` [PATCH 5.10 013/593] ALSA: hda/realtek: fix mute/micmute LEDs for HP EliteBook x360 830 G8 Greg Kroah-Hartman
2021-07-12  6:02 ` [PATCH 5.10 014/593] ALSA: hda/realtek: Improve fixup for HP Spectre x360 15-df0xxx Greg Kroah-Hartman
2021-07-12  6:02 ` [PATCH 5.10 015/593] ALSA: hda/realtek: Fix bass speaker DAC mapping for Asus UM431D Greg Kroah-Hartman
2021-07-12  6:02 ` [PATCH 5.10 016/593] ALSA: hda/realtek: Apply LED fixup for HP Dragonfly G1, too Greg Kroah-Hartman
2021-07-12  6:02 ` [PATCH 5.10 017/593] ALSA: hda/realtek: fix mute/micmute LEDs for HP EliteBook 830 G8 Notebook PC Greg Kroah-Hartman
2021-07-12  6:02 ` [PATCH 5.10 018/593] media: dvb-usb: fix wrong definition Greg Kroah-Hartman
2021-07-12  6:02 ` [PATCH 5.10 019/593] Input: usbtouchscreen - fix control-request directions Greg Kroah-Hartman
2021-07-12  6:03 ` [PATCH 5.10 020/593] net: can: ems_usb: fix use-after-free in ems_usb_disconnect() Greg Kroah-Hartman
2021-07-12  6:03 ` [PATCH 5.10 021/593] usb: gadget: eem: fix echo command packet response issue Greg Kroah-Hartman
2021-07-13 20:49   ` Pavel Machek
2021-07-12  6:03 ` [PATCH 5.10 022/593] usb: renesas-xhci: Fix handling of unknown ROM state Greg Kroah-Hartman
2021-07-12  6:03 ` [PATCH 5.10 023/593] USB: cdc-acm: blacklist Heimann USB Appset device Greg Kroah-Hartman
2021-07-12  6:03 ` [PATCH 5.10 024/593] usb: dwc3: Fix debugfs creation flow Greg Kroah-Hartman
2021-07-12  6:03 ` [PATCH 5.10 025/593] usb: typec: Add the missed altmode_id_remove() in typec_register_altmode() Greg Kroah-Hartman
2021-07-12  6:03 ` [PATCH 5.10 026/593] xhci: solve a double free problem while doing s4 Greg Kroah-Hartman
2021-07-12  6:03 ` [PATCH 5.10 027/593] gfs2: Fix underflow in gfs2_page_mkwrite Greg Kroah-Hartman
2021-07-12  6:03 ` [PATCH 5.10 028/593] gfs2: Fix error handling in init_statfs Greg Kroah-Hartman
2021-07-12  6:03 ` [PATCH 5.10 029/593] ntfs: fix validity check for file name attribute Greg Kroah-Hartman
2021-07-12  6:03 ` [PATCH 5.10 030/593] selftests/lkdtm: Avoid needing explicit sub-shell Greg Kroah-Hartman
2021-07-12  6:03 ` [PATCH 5.10 031/593] copy_page_to_iter(): fix ITER_DISCARD case Greg Kroah-Hartman
2021-07-12  6:03 ` [PATCH 5.10 032/593] [xarray] iov_iter_fault_in_readable() should do nothing in xarray case Greg Kroah-Hartman
2021-07-12  6:03 ` [PATCH 5.10 033/593] Input: joydev - prevent use of not validated data in JSIOCSBTNMAP ioctl Greg Kroah-Hartman
2021-07-12  6:03 ` [PATCH 5.10 034/593] crypto: nx - Fix memcpy() over-reading in nonce Greg Kroah-Hartman
2021-07-12  6:03 ` [PATCH 5.10 035/593] crypto: ccp - Annotate SEV Firmware file names Greg Kroah-Hartman
2021-07-12  6:03 ` [PATCH 5.10 036/593] arm_pmu: Fix write counter incorrect in ARMv7 big-endian mode Greg Kroah-Hartman
2021-07-12  6:03 ` [PATCH 5.10 037/593] ARM: dts: ux500: Fix LED probing Greg Kroah-Hartman
2021-07-12  6:03 ` [PATCH 5.10 038/593] ARM: dts: at91: sama5d4: fix pinctrl muxing Greg Kroah-Hartman
2021-07-12  6:03 ` [PATCH 5.10 039/593] btrfs: send: fix invalid path for unlink operations after parent orphanization Greg Kroah-Hartman
2021-07-12  6:03 ` [PATCH 5.10 040/593] btrfs: compression: dont try to compress if we dont have enough pages Greg Kroah-Hartman
2021-07-12  6:03 ` [PATCH 5.10 041/593] btrfs: clear defrag status of a root if starting transaction fails Greg Kroah-Hartman
2021-07-12  6:03 ` [PATCH 5.10 042/593] ext4: cleanup in-core orphan list if ext4_truncate() failed to get a transaction handle Greg Kroah-Hartman
2021-07-12  6:03 ` [PATCH 5.10 043/593] ext4: fix kernel infoleak via ext4_extent_header Greg Kroah-Hartman
2021-07-12  6:03 ` [PATCH 5.10 044/593] ext4: fix overflow in ext4_iomap_alloc() Greg Kroah-Hartman
2021-07-12  6:03 ` [PATCH 5.10 045/593] ext4: return error code when ext4_fill_flex_info() fails Greg Kroah-Hartman
2021-07-12  6:03 ` [PATCH 5.10 046/593] ext4: correct the cache_nr in tracepoint ext4_es_shrink_exit Greg Kroah-Hartman
2021-07-12  6:03 ` [PATCH 5.10 047/593] ext4: remove check for zero nr_to_scan in ext4_es_scan() Greg Kroah-Hartman
2021-07-12  6:03 ` [PATCH 5.10 048/593] ext4: fix avefreec in find_group_orlov Greg Kroah-Hartman
2021-07-12  6:03 ` [PATCH 5.10 049/593] ext4: use ext4_grp_locked_error in mb_find_extent Greg Kroah-Hartman
2021-07-12  6:03 ` [PATCH 5.10 050/593] can: bcm: delay release of struct bcm_op after synchronize_rcu() Greg Kroah-Hartman
2021-07-12  6:03 ` [PATCH 5.10 051/593] can: gw: synchronize rcu operations before removing gw job entry Greg Kroah-Hartman
2021-07-12  6:03 ` [PATCH 5.10 052/593] can: isotp: isotp_release(): omit unintended hrtimer restart on socket release Greg Kroah-Hartman
2021-07-12  6:03 ` [PATCH 5.10 053/593] can: j1939: j1939_sk_init(): set SOCK_RCU_FREE to call sk_destruct() after RCU is done Greg Kroah-Hartman
2021-07-12  6:03 ` [PATCH 5.10 054/593] can: peak_pciefd: pucan_handle_status(): fix a potential starvation issue in TX path Greg Kroah-Hartman
2021-07-12  6:03 ` [PATCH 5.10 055/593] mac80211: remove iwlwifi specific workaround that broke sta NDP tx Greg Kroah-Hartman
2021-07-12  6:03 ` [PATCH 5.10 056/593] SUNRPC: Fix the batch tasks count wraparound Greg Kroah-Hartman
2021-07-12  6:03 ` [PATCH 5.10 057/593] SUNRPC: Should wake up the privileged task firstly Greg Kroah-Hartman
2021-07-12  6:03 ` [PATCH 5.10 058/593] bus: mhi: Wait for M2 state during system resume Greg Kroah-Hartman
2021-07-12  6:03 ` [PATCH 5.10 059/593] mm/gup: fix try_grab_compound_head() race with split_huge_page() Greg Kroah-Hartman
2021-07-12  6:03 ` [PATCH 5.10 060/593] perf/smmuv3: Dont trample existing events with global filter Greg Kroah-Hartman
2021-07-12  6:03 ` [PATCH 5.10 061/593] KVM: nVMX: Handle split-lock #AC exceptions that happen in L2 Greg Kroah-Hartman
2021-07-12  6:03 ` [PATCH 5.10 062/593] KVM: PPC: Book3S HV: Workaround high stack usage with clang Greg Kroah-Hartman
2021-07-12  6:03 ` [PATCH 5.10 063/593] KVM: x86/mmu: Treat NX as used (not reserved) for all !TDP shadow MMUs Greg Kroah-Hartman
2021-07-12  6:03 ` [PATCH 5.10 064/593] KVM: x86/mmu: Use MMUs role to detect CR4.SMEP value in nested NPT walk Greg Kroah-Hartman
2021-07-12  6:03 ` [PATCH 5.10 065/593] s390/cio: dont call css_wait_for_slow_path() inside a lock Greg Kroah-Hartman
2021-07-12  6:03 ` [PATCH 5.10 066/593] s390: mm: Fix secure storage access exception handling Greg Kroah-Hartman
2021-07-12  6:03 ` [PATCH 5.10 067/593] f2fs: Prevent swap file in LFS mode Greg Kroah-Hartman
2021-07-12  6:03 ` [PATCH 5.10 068/593] clk: agilex/stratix10/n5x: fix how the bypass_reg is handled Greg Kroah-Hartman
2021-07-12  6:03 ` [PATCH 5.10 069/593] clk: agilex/stratix10: remove noc_clk Greg Kroah-Hartman
2021-07-12  6:03 ` [PATCH 5.10 070/593] clk: agilex/stratix10: fix bypass representation Greg Kroah-Hartman
2021-07-12  6:03 ` [PATCH 5.10 071/593] rtc: stm32: Fix unbalanced clk_disable_unprepare() on probe error path Greg Kroah-Hartman
2021-07-12  6:03 ` [PATCH 5.10 072/593] iio: frequency: adf4350: disable reg and clk on error in adf4350_probe() Greg Kroah-Hartman
2021-07-12  6:03 ` [PATCH 5.10 073/593] iio: light: tcs3472: do not free unallocated IRQ Greg Kroah-Hartman
2021-07-13 21:31   ` Pavel Machek
2021-07-14  9:04     ` Jonathan Cameron
2021-07-12  6:03 ` [PATCH 5.10 074/593] iio: ltr501: mark register holding upper 8 bits of ALS_DATA{0,1} and PS_DATA as volatile, too Greg Kroah-Hartman
2021-07-12  6:03 ` [PATCH 5.10 075/593] iio: ltr501: ltr559: fix initialization of LTR501_ALS_CONTR Greg Kroah-Hartman
2021-07-12  6:03 ` [PATCH 5.10 076/593] iio: ltr501: ltr501_read_ps(): add missing endianness conversion Greg Kroah-Hartman
2021-07-12  6:03 ` [PATCH 5.10 077/593] iio: accel: bma180: Fix BMA25x bandwidth register values Greg Kroah-Hartman
2021-07-12  6:03 ` [PATCH 5.10 078/593] serial: mvebu-uart: fix calculation of clock divisor Greg Kroah-Hartman
2021-07-12  6:03 ` [PATCH 5.10 079/593] serial: sh-sci: Stop dmaengine transfer in sci_stop_tx() Greg Kroah-Hartman
2021-07-12  6:04 ` [PATCH 5.10 080/593] serial_cs: Add Option International GSM-Ready 56K/ISDN modem Greg Kroah-Hartman
2021-07-12  6:04 ` [PATCH 5.10 081/593] serial_cs: remove wrong GLOBETROTTER.cis entry Greg Kroah-Hartman
2021-07-12  6:04 ` [PATCH 5.10 082/593] ath9k: Fix kernel NULL pointer dereference during ath_reset_internal() Greg Kroah-Hartman
2021-07-12  6:04 ` [PATCH 5.10 083/593] ssb: sdio: Dont overwrite const buffer if block_write fails Greg Kroah-Hartman
2021-07-12  6:04 ` [PATCH 5.10 084/593] rsi: Assign beacon rate settings to the correct rate_info descriptor field Greg Kroah-Hartman
2021-07-12  6:04 ` [PATCH 5.10 085/593] rsi: fix AP mode with WPA failure due to encrypted EAPOL Greg Kroah-Hartman
2021-07-12  6:04 ` [PATCH 5.10 086/593] tracing/histograms: Fix parsing of "sym-offset" modifier Greg Kroah-Hartman
2021-07-12  6:04 ` [PATCH 5.10 087/593] tracepoint: Add tracepoint_probe_register_may_exist() for BPF tracing Greg Kroah-Hartman
2021-07-12  6:04 ` [PATCH 5.10 088/593] seq_buf: Make trace_seq_putmem_hex() support data longer than 8 Greg Kroah-Hartman
2021-07-12  6:04 ` [PATCH 5.10 089/593] powerpc/stacktrace: Fix spurious "stale" traces in raise_backtrace_ipi() Greg Kroah-Hartman
2021-07-12  6:04 ` [PATCH 5.10 090/593] loop: Fix missing discard support when using LOOP_CONFIGURE Greg Kroah-Hartman
2021-07-12  6:04 ` [PATCH 5.10 091/593] evm: Execute evm_inode_init_security() only when an HMAC key is loaded Greg Kroah-Hartman
2021-07-12  6:04 ` [PATCH 5.10 092/593] evm: Refuse EVM_ALLOW_METADATA_WRITES only if " Greg Kroah-Hartman
2021-07-12  6:04 ` [PATCH 5.10 093/593] fuse: Fix crash in fuse_dentry_automount() error path Greg Kroah-Hartman
2021-07-12  6:04 ` [PATCH 5.10 094/593] fuse: Fix crash if superblock of submount gets killed early Greg Kroah-Hartman
2021-07-12  6:04 ` [PATCH 5.10 095/593] fuse: Fix infinite loop in sget_fc() Greg Kroah-Hartman
2021-07-12  6:04 ` [PATCH 5.10 096/593] fuse: ignore PG_workingset after stealing Greg Kroah-Hartman
2021-07-12  6:04 ` [PATCH 5.10 097/593] fuse: check connected before queueing on fpq->io Greg Kroah-Hartman
2021-07-12  6:04 ` [PATCH 5.10 098/593] fuse: reject internal errno Greg Kroah-Hartman
2021-07-12  6:04 ` [PATCH 5.10 099/593] thermal/cpufreq_cooling: Update offline CPUs per-cpu thermal_pressure Greg Kroah-Hartman
2021-07-12  6:04 ` [PATCH 5.10 100/593] spi: Make of_register_spi_device also set the fwnode Greg Kroah-Hartman
2021-07-12  6:04 ` [PATCH 5.10 101/593] Add a reference to ucounts for each cred Greg Kroah-Hartman
2021-07-12  6:04 ` [PATCH 5.10 102/593] staging: media: rkvdec: fix pm_runtime_get_sync() usage count Greg Kroah-Hartman
2021-07-12  6:04 ` [PATCH 5.10 103/593] media: marvel-ccic: fix some issues when getting pm_runtime Greg Kroah-Hartman
2021-07-12  6:04 ` [PATCH 5.10 104/593] media: mdk-mdp: fix pm_runtime_get_sync() usage count Greg Kroah-Hartman
2021-07-12  6:04 ` [PATCH 5.10 105/593] media: s5p: " Greg Kroah-Hartman
2021-07-12  6:04 ` [PATCH 5.10 106/593] media: am437x: " Greg Kroah-Hartman
2021-07-12  6:04 ` [PATCH 5.10 107/593] media: sh_vou: " Greg Kroah-Hartman
2021-07-12  6:04 ` [PATCH 5.10 108/593] media: mtk-vcodec: fix PM runtime get logic Greg Kroah-Hartman
2021-07-12  6:04 ` [PATCH 5.10 109/593] media: s5p-jpeg: fix pm_runtime_get_sync() usage count Greg Kroah-Hartman
2021-07-12  6:04 ` [PATCH 5.10 110/593] media: sunxi: " Greg Kroah-Hartman
2021-07-12  6:04 ` [PATCH 5.10 111/593] media: sti/bdisp: " Greg Kroah-Hartman
2021-07-12  6:04 ` [PATCH 5.10 112/593] media: exynos4-is: " Greg Kroah-Hartman
2021-07-12  6:04 ` [PATCH 5.10 113/593] media: exynos-gsc: " Greg Kroah-Hartman
2021-07-12  6:04 ` [PATCH 5.10 114/593] spi: spi-loopback-test: Fix tx_buf might be rx_buf Greg Kroah-Hartman
2021-07-12  6:04 ` [PATCH 5.10 115/593] spi: spi-topcliff-pch: Fix potential double free in pch_spi_process_messages() Greg Kroah-Hartman
2021-07-12  6:04 ` [PATCH 5.10 116/593] spi: omap-100k: Fix the length judgment problem Greg Kroah-Hartman
2021-07-12  6:04 ` [PATCH 5.10 117/593] regulator: uniphier: Add missing MODULE_DEVICE_TABLE Greg Kroah-Hartman
2021-07-12  6:04 ` [PATCH 5.10 118/593] sched/core: Initialize the idle task with preemption disabled Greg Kroah-Hartman
2021-07-12  6:04 ` [PATCH 5.10 119/593] hwrng: exynos - Fix runtime PM imbalance on error Greg Kroah-Hartman
2021-07-12  6:04 ` [PATCH 5.10 120/593] crypto: nx - add missing MODULE_DEVICE_TABLE Greg Kroah-Hartman
2021-07-12  6:04 ` [PATCH 5.10 121/593] media: sti: fix obj-$(config) targets Greg Kroah-Hartman
2021-07-12  6:04 ` [PATCH 5.10 122/593] media: cpia2: fix memory leak in cpia2_usb_probe Greg Kroah-Hartman
2021-07-12  6:04 ` [PATCH 5.10 123/593] media: cobalt: fix race condition in setting HPD Greg Kroah-Hartman
2021-07-12  6:04 ` [PATCH 5.10 124/593] media: hevc: Fix dependent slice segment flags Greg Kroah-Hartman
2021-07-12  6:04 ` [PATCH 5.10 125/593] media: pvrusb2: fix warning in pvr2_i2c_core_done Greg Kroah-Hartman
2021-07-12  6:04 ` [PATCH 5.10 126/593] media: imx: imx7_mipi_csis: Fix logging of only error event counters Greg Kroah-Hartman
2021-07-12  6:04 ` [PATCH 5.10 127/593] crypto: qat - check return code of qat_hal_rd_rel_reg() Greg Kroah-Hartman
2021-07-12  6:04 ` [PATCH 5.10 128/593] crypto: qat - remove unused macro in FW loader Greg Kroah-Hartman
2021-07-12  6:04 ` [PATCH 5.10 129/593] crypto: qce: skcipher: Fix incorrect sg count for dma transfers Greg Kroah-Hartman
2021-07-14 19:40   ` Pavel Machek
2021-07-15 10:46     ` Greg Kroah-Hartman
2021-07-12  6:04 ` [PATCH 5.10 130/593] arm64: perf: Convert snprintf to sysfs_emit Greg Kroah-Hartman
2021-07-12  6:04 ` [PATCH 5.10 131/593] sched/fair: Fix ascii art by relpacing tabs Greg Kroah-Hartman
2021-07-14 19:44   ` Pavel Machek
2021-07-12  6:04 ` [PATCH 5.10 132/593] media: i2c: ov2659: Use clk_{prepare_enable,disable_unprepare}() to set xvclk on/off Greg Kroah-Hartman
2021-07-12  6:04 ` [PATCH 5.10 133/593] media: bt878: do not schedule tasklet when it is not setup Greg Kroah-Hartman
2021-07-12  6:04 ` [PATCH 5.10 134/593] media: em28xx: Fix possible memory leak of em28xx struct Greg Kroah-Hartman
2021-07-12  6:04 ` [PATCH 5.10 135/593] media: hantro: Fix .buf_prepare Greg Kroah-Hartman
2021-07-12  6:04 ` [PATCH 5.10 136/593] media: cedrus: " Greg Kroah-Hartman
2021-07-12  6:04 ` [PATCH 5.10 137/593] media: v4l2-core: Avoid the dangling pointer in v4l2_fh_release Greg Kroah-Hartman
2021-07-12  6:04 ` [PATCH 5.10 138/593] media: bt8xx: Fix a missing check bug in bt878_probe Greg Kroah-Hartman
2021-07-12  6:04 ` [PATCH 5.10 139/593] media: st-hva: Fix potential NULL pointer dereferences Greg Kroah-Hartman
2021-07-12  6:05 ` [PATCH 5.10 140/593] crypto: hisilicon/sec - fixup 3des minimum key size declaration Greg Kroah-Hartman
2021-07-12  6:05 ` [PATCH 5.10 141/593] Makefile: fix GDB warning with CONFIG_RELR Greg Kroah-Hartman
2021-07-12  6:05 ` [PATCH 5.10 142/593] media: dvd_usb: memory leak in cinergyt2_fe_attach Greg Kroah-Hartman
2021-07-12  6:05 ` [PATCH 5.10 143/593] memstick: rtsx_usb_ms: fix UAF Greg Kroah-Hartman
2021-07-12  6:05 ` [PATCH 5.10 144/593] mmc: sdhci-sprd: use sdhci_sprd_writew Greg Kroah-Hartman
2021-07-12  6:05 ` [PATCH 5.10 145/593] mmc: via-sdmmc: add a check against NULL pointer dereference Greg Kroah-Hartman
2021-07-12  6:05 ` [PATCH 5.10 146/593] spi: meson-spicc: fix a wrong goto jump for avoiding memory leak Greg Kroah-Hartman
2021-07-12  6:05 ` [PATCH 5.10 147/593] spi: meson-spicc: fix memory leak in meson_spicc_probe Greg Kroah-Hartman
2021-07-12  6:05 ` [PATCH 5.10 148/593] crypto: shash - avoid comparing pointers to exported functions under CFI Greg Kroah-Hartman
2021-07-12  6:05 ` [PATCH 5.10 149/593] media: dvb_net: avoid speculation from net slot Greg Kroah-Hartman
2021-07-12  6:05 ` [PATCH 5.10 150/593] media: siano: fix device register error path Greg Kroah-Hartman
2021-07-12  6:05 ` [PATCH 5.10 151/593] media: imx-csi: Skip first few frames from a BT.656 source Greg Kroah-Hartman
2021-07-12  6:05 ` [PATCH 5.10 152/593] hwmon: (max31790) Report correct current pwm duty cycles Greg Kroah-Hartman
2021-07-12  6:05 ` [PATCH 5.10 153/593] hwmon: (max31790) Fix pwmX_enable attributes Greg Kroah-Hartman
2021-07-12  6:05 ` [PATCH 5.10 154/593] drivers/perf: fix the missed ida_simple_remove() in ddr_perf_probe() Greg Kroah-Hartman
2021-07-12  6:05 ` [PATCH 5.10 155/593] KVM: PPC: Book3S HV: Fix TLB management on SMT8 POWER9 and POWER10 processors Greg Kroah-Hartman
2021-07-12  6:05 ` [PATCH 5.10 156/593] btrfs: fix error handling in __btrfs_update_delayed_inode Greg Kroah-Hartman
2021-07-12  6:05 ` [PATCH 5.10 157/593] btrfs: abort transaction if we fail to update the delayed inode Greg Kroah-Hartman
2021-07-12  6:05 ` [PATCH 5.10 158/593] btrfs: sysfs: fix format string for some discard stats Greg Kroah-Hartman
2021-07-12  6:05 ` [PATCH 5.10 159/593] btrfs: dont clear page extent mapped if were not invalidating the full page Greg Kroah-Hartman
2021-07-12  6:05 ` [PATCH 5.10 160/593] btrfs: disable build on platforms having page size 256K Greg Kroah-Hartman
2021-07-12  6:05 ` [PATCH 5.10 161/593] locking/lockdep: Fix the dep path printing for backwards BFS Greg Kroah-Hartman
2021-07-12  6:05 ` [PATCH 5.10 162/593] lockding/lockdep: Avoid to find wrong lock dep path in check_irq_usage() Greg Kroah-Hartman
2021-07-12  6:05 ` [PATCH 5.10 163/593] KVM: s390: get rid of register asm usage Greg Kroah-Hartman
2021-07-12  6:05 ` [PATCH 5.10 164/593] regulator: mt6358: Fix vdram2 .vsel_mask Greg Kroah-Hartman
2021-07-12  6:05 ` [PATCH 5.10 165/593] regulator: da9052: Ensure enough delay time for .set_voltage_time_sel Greg Kroah-Hartman
2021-07-12  6:05 ` [PATCH 5.10 166/593] media: Fix Media Controller API config checks Greg Kroah-Hartman
2021-07-12  6:05 ` [PATCH 5.10 167/593] ACPI: video: use native backlight for GA401/GA502/GA503 Greg Kroah-Hartman
2021-07-12  6:05 ` [PATCH 5.10 168/593] HID: do not use down_interruptible() when unbinding devices Greg Kroah-Hartman
2021-07-12  6:05 ` [PATCH 5.10 169/593] EDAC/ti: Add missing MODULE_DEVICE_TABLE Greg Kroah-Hartman
2021-07-12  6:05 ` [PATCH 5.10 170/593] ACPI: processor idle: Fix up C-state latency if not ordered Greg Kroah-Hartman
2021-07-12  6:05 ` [PATCH 5.10 171/593] hv_utils: Fix passing zero to PTR_ERR warning Greg Kroah-Hartman
2021-07-12  6:05 ` [PATCH 5.10 172/593] lib: vsprintf: Fix handling of number field widths in vsscanf Greg Kroah-Hartman
2021-07-12  6:05 ` [PATCH 5.10 173/593] Input: goodix - platform/x86: touchscreen_dmi - Move upside down quirks to touchscreen_dmi.c Greg Kroah-Hartman
2021-07-12  6:05 ` [PATCH 5.10 174/593] platform/x86: touchscreen_dmi: Add an extra entry for the upside down Goodix touchscreen on Teclast X89 tablets Greg Kroah-Hartman
2021-07-12  6:05 ` [PATCH 5.10 175/593] platform/x86: touchscreen_dmi: Add info for the Goodix GT912 panel of TM800A550L tablets Greg Kroah-Hartman
2021-07-12  6:05 ` [PATCH 5.10 176/593] ACPI: EC: Make more Asus laptops use ECDT _GPE Greg Kroah-Hartman
2021-07-12  6:05 ` [PATCH 5.10 177/593] block_dump: remove block_dump feature in mark_inode_dirty() Greg Kroah-Hartman
2021-07-12  6:05 ` [PATCH 5.10 178/593] blk-mq: grab rq->refcount before calling ->fn in blk_mq_tagset_busy_iter Greg Kroah-Hartman
2021-07-12  6:05 ` [PATCH 5.10 179/593] blk-mq: clear stale request in tags->rq[] before freeing one request pool Greg Kroah-Hartman
2021-07-12  6:05 ` [PATCH 5.10 180/593] fs: dlm: cancel work sync othercon Greg Kroah-Hartman
2021-07-12  6:05 ` [PATCH 5.10 181/593] random32: Fix implicit truncation warning in prandom_seed_state() Greg Kroah-Hartman
2021-07-12  6:05 ` [PATCH 5.10 182/593] open: dont silently ignore unknown O-flags in openat2() Greg Kroah-Hartman
2021-07-12  6:05 ` [PATCH 5.10 183/593] drivers: hv: Fix missing error code in vmbus_connect() Greg Kroah-Hartman
2021-07-12  6:05 ` [PATCH 5.10 184/593] fs: dlm: fix memory leak when fenced Greg Kroah-Hartman
2021-07-12  6:05 ` [PATCH 5.10 185/593] ACPICA: Fix memory leak caused by _CID repair function Greg Kroah-Hartman
2021-07-12  6:05 ` [PATCH 5.10 186/593] ACPI: bus: Call kobject_put() in acpi_init() error path Greg Kroah-Hartman
2021-07-12  6:05 ` [PATCH 5.10 187/593] ACPI: resources: Add checks for ACPI IRQ override Greg Kroah-Hartman
2021-07-15  8:49   ` Jamie Heilman
2021-07-15 10:45     ` Greg Kroah-Hartman
2021-07-16  4:13       ` Jamie Heilman
2021-07-16  4:33         ` Greg Kroah-Hartman
2021-07-16  5:18     ` Hui Wang
2021-07-12  6:05 ` [PATCH 5.10 188/593] block: fix race between adding/removing rq qos and normal IO Greg Kroah-Hartman
2021-07-12  6:05 ` [PATCH 5.10 189/593] platform/x86: asus-nb-wmi: Revert "Drop duplicate DMI quirk structures" Greg Kroah-Hartman
2021-07-12  6:05 ` [PATCH 5.10 190/593] platform/x86: asus-nb-wmi: Revert "add support for ASUS ROG Zephyrus G14 and G15" Greg Kroah-Hartman
2021-07-12  6:05 ` [PATCH 5.10 191/593] platform/x86: toshiba_acpi: Fix missing error code in toshiba_acpi_setup_keyboard() Greg Kroah-Hartman
2021-07-12  6:05 ` [PATCH 5.10 192/593] nvme-pci: fix var. type for increasing cq_head Greg Kroah-Hartman
2021-07-12  6:05 ` [PATCH 5.10 193/593] nvmet-fc: do not check for invalid target port in nvmet_fc_handle_fcp_rqst() Greg Kroah-Hartman
2021-07-12  6:05 ` [PATCH 5.10 194/593] EDAC/Intel: Do not load EDAC driver when running as a guest Greg Kroah-Hartman
2021-07-12  6:05 ` [PATCH 5.10 195/593] PCI: hv: Add check for hyperv_initialized in init_hv_pci_drv() Greg Kroah-Hartman
2021-07-12  6:05 ` [PATCH 5.10 196/593] cifs: improve fallocate emulation Greg Kroah-Hartman
2021-07-12  6:05 ` [PATCH 5.10 197/593] ACPI: EC: trust DSDT GPE for certain HP laptop Greg Kroah-Hartman
2021-07-12  6:05 ` [PATCH 5.10 198/593] clocksource: Retry clock read if long delays detected Greg Kroah-Hartman
2021-07-12  6:05 ` [PATCH 5.10 199/593] clocksource: Check per-CPU clock synchronization when marked unstable Greg Kroah-Hartman
2021-07-12  6:06 ` [PATCH 5.10 200/593] tpm_tis_spi: add missing SPI device ID entries Greg Kroah-Hartman
2021-07-12  6:06 ` [PATCH 5.10 201/593] ACPI: tables: Add custom DSDT file as makefile prerequisite Greg Kroah-Hartman
2021-07-12  6:06 ` [PATCH 5.10 202/593] HID: wacom: Correct base usage for capacitive ExpressKey status bits Greg Kroah-Hartman
2021-07-12  6:06 ` [PATCH 5.10 203/593] cifs: fix missing spinlock around update to ses->status Greg Kroah-Hartman
2021-07-12  6:06 ` [PATCH 5.10 204/593] mailbox: qcom: Use PLATFORM_DEVID_AUTO to register platform device Greg Kroah-Hartman
2021-07-12  6:06 ` [PATCH 5.10 205/593] block: fix discard request merge Greg Kroah-Hartman
2021-07-12  6:06 ` [PATCH 5.10 206/593] kthread_worker: fix return value when kthread_mod_delayed_work() races with kthread_cancel_delayed_work_sync() Greg Kroah-Hartman
2021-07-12  6:06 ` [PATCH 5.10 207/593] ia64: mca_drv: fix incorrect array size calculation Greg Kroah-Hartman
2021-07-12  6:06 ` [PATCH 5.10 208/593] writeback, cgroup: increment isw_nr_in_flight before grabbing an inode Greg Kroah-Hartman
2021-07-12  6:06 ` [PATCH 5.10 209/593] spi: Allow to have all native CSs in use along with GPIOs Greg Kroah-Hartman
2021-07-12  6:06 ` [PATCH 5.10 210/593] spi: Avoid undefined behaviour when counting unused native CSs Greg Kroah-Hartman
2021-07-12  6:06 ` [PATCH 5.10 211/593] media: venus: Rework error fail recover logic Greg Kroah-Hartman
2021-07-12  6:06 ` [PATCH 5.10 212/593] media: s5p_cec: decrement usage count if disabled Greg Kroah-Hartman
2021-07-12  6:06 ` [PATCH 5.10 213/593] media: hantro: do a PM resume earlier Greg Kroah-Hartman
2021-07-12  6:06 ` [PATCH 5.10 214/593] crypto: ixp4xx - dma_unmap the correct address Greg Kroah-Hartman
2021-07-12  6:06 ` [PATCH 5.10 215/593] crypto: ixp4xx - update IV after requests Greg Kroah-Hartman
2021-07-12  6:06 ` [PATCH 5.10 216/593] crypto: ux500 - Fix error return code in hash_hw_final() Greg Kroah-Hartman
2021-07-12  6:06 ` [PATCH 5.10 217/593] sata_highbank: fix deferred probing Greg Kroah-Hartman
2021-07-12  6:06 ` [PATCH 5.10 218/593] pata_rb532_cf: " Greg Kroah-Hartman
2021-07-12  6:06 ` [PATCH 5.10 219/593] media: I2C: change RST to "RSET" to fix multiple build errors Greg Kroah-Hartman
2021-07-12  6:06 ` [PATCH 5.10 220/593] sched/uclamp: Fix wrong implementation of cpu.uclamp.min Greg Kroah-Hartman
2021-07-12  6:06 ` [PATCH 5.10 221/593] sched/uclamp: Fix locking around cpu_util_update_eff() Greg Kroah-Hartman
2021-07-12  6:06 ` [PATCH 5.10 222/593] kbuild: Fix objtool dependency for OBJECT_FILES_NON_STANDARD_<obj> := n Greg Kroah-Hartman
2021-07-12  6:06 ` [PATCH 5.10 223/593] pata_octeon_cf: avoid WARN_ON() in ata_host_activate() Greg Kroah-Hartman
2021-07-12  6:06 ` [PATCH 5.10 224/593] evm: fix writing <securityfs>/evm overflow Greg Kroah-Hartman
2021-07-12  6:06 ` [PATCH 5.10 225/593] x86/elf: Use _BITUL() macro in UAPI headers Greg Kroah-Hartman
2021-07-12  6:06 ` [PATCH 5.10 226/593] crypto: sa2ul - Fix leaks on failure paths with sa_dma_init() Greg Kroah-Hartman
2021-07-12  6:06 ` [PATCH 5.10 227/593] crypto: sa2ul - Fix pm_runtime enable in sa_ul_probe() Greg Kroah-Hartman
2021-07-12  6:06 ` [PATCH 5.10 228/593] crypto: ccp - Fix a resource leak in an error handling path Greg Kroah-Hartman
2021-07-12  6:06 ` [PATCH 5.10 229/593] media: rc: i2c: Fix an error message Greg Kroah-Hartman
2021-07-12  6:06 ` [PATCH 5.10 230/593] pata_ep93xx: fix deferred probing Greg Kroah-Hartman
2021-07-12  6:06 ` [PATCH 5.10 231/593] locking/lockdep: Reduce LOCKDEP dependency list Greg Kroah-Hartman
2021-07-12  6:06 ` [PATCH 5.10 232/593] media: rkvdec: Fix .buf_prepare Greg Kroah-Hartman
2021-07-12  6:06 ` [PATCH 5.10 233/593] media: exynos4-is: Fix a use after free in isp_video_release Greg Kroah-Hartman
2021-07-12  6:06 ` [PATCH 5.10 234/593] media: au0828: fix a NULL vs IS_ERR() check Greg Kroah-Hartman
2021-07-12  6:06 ` [PATCH 5.10 235/593] media: tc358743: Fix error return code in tc358743_probe_of() Greg Kroah-Hartman
2021-07-12  6:06 ` [PATCH 5.10 236/593] media: gspca/gl860: fix zero-length control requests Greg Kroah-Hartman
2021-07-12  6:06 ` [PATCH 5.10 237/593] m68k: atari: Fix ATARI_KBD_CORE kconfig unmet dependency warning Greg Kroah-Hartman
2021-07-12  6:06 ` [PATCH 5.10 238/593] media: siano: Fix out-of-bounds warnings in smscore_load_firmware_family2() Greg Kroah-Hartman
2021-07-12  6:06 ` [PATCH 5.10 239/593] regulator: fan53880: Fix vsel_mask setting for FAN53880_BUCK Greg Kroah-Hartman
2021-07-12  6:06 ` [PATCH 5.10 240/593] crypto: nitrox - fix unchecked variable in nitrox_register_interrupts Greg Kroah-Hartman
2021-07-12  6:06 ` [PATCH 5.10 241/593] crypto: omap-sham - Fix PM reference leak in omap sham ops Greg Kroah-Hartman
2021-07-12  6:06 ` [PATCH 5.10 242/593] crypto: x86/curve25519 - fix cpu feature checking logic in mod_exit Greg Kroah-Hartman
2021-07-12  6:06 ` [PATCH 5.10 243/593] crypto: sm2 - remove unnecessary reset operations Greg Kroah-Hartman
2021-07-12  6:06 ` [PATCH 5.10 244/593] crypto: sm2 - fix a memory leak in sm2 Greg Kroah-Hartman
2021-07-12  6:06 ` [PATCH 5.10 245/593] mmc: usdhi6rol0: fix error return code in usdhi6_probe() Greg Kroah-Hartman
2021-07-12  6:06 ` [PATCH 5.10 246/593] arm64: consistently use reserved_pg_dir Greg Kroah-Hartman
2021-07-12  6:06 ` [PATCH 5.10 247/593] arm64/mm: Fix ttbr0 values stored in struct thread_info for software-pan Greg Kroah-Hartman
2021-07-12  6:06 ` [PATCH 5.10 248/593] media: subdev: remove VIDIOC_DQEVENT_TIME32 handling Greg Kroah-Hartman
2021-07-12  6:06 ` [PATCH 5.10 249/593] media: s5p-g2d: Fix a memory leak on ctx->fh.m2m_ctx Greg Kroah-Hartman
2021-07-12  6:06 ` [PATCH 5.10 250/593] hwmon: (lm70) Use device_get_match_data() Greg Kroah-Hartman
2021-07-12  6:06 ` [PATCH 5.10 251/593] hwmon: (lm70) Revert "hwmon: (lm70) Add support for ACPI" Greg Kroah-Hartman
2021-07-12  6:06 ` [PATCH 5.10 252/593] hwmon: (max31722) Remove non-standard ACPI device IDs Greg Kroah-Hartman
2021-07-12  6:06 ` [PATCH 5.10 253/593] hwmon: (max31790) Fix fan speed reporting for fan7..12 Greg Kroah-Hartman
2021-07-12  6:06 ` [PATCH 5.10 254/593] KVM: nVMX: Sync all PGDs on nested transition with shadow paging Greg Kroah-Hartman
2021-07-12  6:06 ` [PATCH 5.10 255/593] KVM: nVMX: Ensure 64-bit shift when checking VMFUNC bitmap Greg Kroah-Hartman
2021-07-12  6:06 ` [PATCH 5.10 256/593] KVM: nVMX: Dont clobber nested MMUs A/D status on EPTP switch Greg Kroah-Hartman
2021-07-12  6:06 ` [PATCH 5.10 257/593] KVM: x86/mmu: Fix return value in tdp_mmu_map_handle_target_level() Greg Kroah-Hartman
2021-07-12  6:06 ` [PATCH 5.10 258/593] perf/arm-cmn: Fix invalid pointer when access dtc object sharing the same IRQ number Greg Kroah-Hartman
2021-07-12  6:06 ` [PATCH 5.10 259/593] KVM: arm64: Dont zero the cycle count register when PMCR_EL0.P is set Greg Kroah-Hartman
2021-07-12  6:07 ` [PATCH 5.10 260/593] regulator: hi655x: Fix pass wrong pointer to config.driver_data Greg Kroah-Hartman
2021-07-12  6:07 ` [PATCH 5.10 261/593] btrfs: clear log tree recovering status if starting transaction fails Greg Kroah-Hartman
2021-07-12  6:07 ` [PATCH 5.10 262/593] x86/sev: Make sure IRQs are disabled while GHCB is active Greg Kroah-Hartman
2021-07-12  6:07 ` Greg Kroah-Hartman [this message]
2021-07-12  6:07 ` [PATCH 5.10 264/593] sched/rt: Fix RT utilization tracking during policy change Greg Kroah-Hartman
2021-07-12  6:07 ` [PATCH 5.10 265/593] sched/rt: Fix Deadline " Greg Kroah-Hartman
2021-07-12  6:07 ` [PATCH 5.10 266/593] sched/uclamp: Fix uclamp_tg_restrict() Greg Kroah-Hartman
2021-07-12  6:07 ` [PATCH 5.10 267/593] lockdep: Fix wait-type for empty stack Greg Kroah-Hartman
2021-07-12  6:07 ` [PATCH 5.10 268/593] lockdep/selftests: Fix selftests vs PROVE_RAW_LOCK_NESTING Greg Kroah-Hartman
2021-07-12  6:07 ` [PATCH 5.10 269/593] spi: spi-sun6i: Fix chipselect/clock bug Greg Kroah-Hartman
2021-07-12  6:07 ` [PATCH 5.10 270/593] crypto: nx - Fix RCU warning in nx842_OF_upd_status Greg Kroah-Hartman
2021-07-12  6:07 ` [PATCH 5.10 271/593] psi: Fix race between psi_trigger_create/destroy Greg Kroah-Hartman
2021-07-12  6:07 ` [PATCH 5.10 272/593] media: v4l2-async: Clean v4l2_async_notifier_add_fwnode_remote_subdev Greg Kroah-Hartman
2021-07-12  6:07 ` [PATCH 5.10 273/593] media: video-mux: Skip dangling endpoints Greg Kroah-Hartman
2021-07-12  6:07 ` [PATCH 5.10 274/593] PM / devfreq: Add missing error code in devfreq_add_device() Greg Kroah-Hartman
2021-07-12  6:07 ` [PATCH 5.10 275/593] ACPI: PM / fan: Put fan device IDs into separate header file Greg Kroah-Hartman
2021-07-12  6:07 ` [PATCH 5.10 276/593] block: avoid double io accounting for flush request Greg Kroah-Hartman
2021-07-12  6:07 ` [PATCH 5.10 277/593] nvme-pci: look for StorageD3Enable on companion ACPI device instead Greg Kroah-Hartman
2021-07-12  6:07 ` [PATCH 5.10 278/593] ACPI: sysfs: Fix a buffer overrun problem with description_show() Greg Kroah-Hartman
2021-07-12  6:07 ` [PATCH 5.10 279/593] mark pstore-blk as broken Greg Kroah-Hartman
2021-07-12  6:07 ` [PATCH 5.10 280/593] clocksource/drivers/timer-ti-dm: Save and restore timer TIOCP_CFG Greg Kroah-Hartman
2021-07-12  6:07 ` [PATCH 5.10 281/593] extcon: extcon-max8997: Fix IRQ freeing at error path Greg Kroah-Hartman
2021-07-12  6:07 ` [PATCH 5.10 282/593] ACPI: APEI: fix synchronous external aborts in user-mode Greg Kroah-Hartman
2021-07-12  6:07 ` [PATCH 5.10 283/593] blk-wbt: introduce a new disable state to prevent false positive by rwb_enabled() Greg Kroah-Hartman
2021-07-12  6:07 ` [PATCH 5.10 284/593] blk-wbt: make sure throttle is enabled properly Greg Kroah-Hartman
2021-07-12  6:07 ` [PATCH 5.10 285/593] ACPI: Use DEVICE_ATTR_<RW|RO|WO> macros Greg Kroah-Hartman
2021-07-12  6:07 ` [PATCH 5.10 286/593] ACPI: bgrt: Fix CFI violation Greg Kroah-Hartman
2021-07-12  6:07 ` [PATCH 5.10 287/593] cpufreq: Make cpufreq_online() call driver->offline() on errors Greg Kroah-Hartman
2021-07-12  6:07 ` [PATCH 5.10 288/593] blk-mq: update hctx->dispatch_busy in case of real scheduler Greg Kroah-Hartman
2021-07-12  6:07 ` [PATCH 5.10 289/593] ocfs2: fix snprintf() checking Greg Kroah-Hartman
2021-07-12  6:07 ` [PATCH 5.10 290/593] dax: fix ENOMEM handling in grab_mapping_entry() Greg Kroah-Hartman
2021-07-12  6:07 ` [PATCH 5.10 291/593] mm/debug_vm_pgtable/basic: add validation for dirtiness after write protect Greg Kroah-Hartman
2021-07-12  6:07 ` [PATCH 5.10 292/593] mm/debug_vm_pgtable/basic: iterate over entire protection_map[] Greg Kroah-Hartman
2021-07-12  6:07 ` [PATCH 5.10 293/593] mm/debug_vm_pgtable: ensure THP availability via has_transparent_hugepage() Greg Kroah-Hartman
2021-07-12  6:07 ` [PATCH 5.10 294/593] swap: fix do_swap_page() race with swapoff Greg Kroah-Hartman
2021-07-12  6:07 ` [PATCH 5.10 295/593] mm/shmem: fix shmem_swapin() " Greg Kroah-Hartman
2021-07-12  6:07 ` [PATCH 5.10 296/593] mm: memcg/slab: properly set up gfp flags for objcg pointer array Greg Kroah-Hartman
2021-07-12  6:07 ` [PATCH 5.10 297/593] mm: page_alloc: refactor setup_per_zone_lowmem_reserve() Greg Kroah-Hartman
2021-07-12  6:07 ` [PATCH 5.10 298/593] mm/page_alloc: fix counting of managed_pages Greg Kroah-Hartman
2021-07-12  6:07 ` [PATCH 5.10 299/593] xfrm: xfrm_state_mtu should return at least 1280 for ipv6 Greg Kroah-Hartman
2021-07-12  6:07 ` [PATCH 5.10 300/593] drm/bridge/sii8620: fix dependency on extcon Greg Kroah-Hartman
2021-07-12  6:07 ` [PATCH 5.10 301/593] drm/bridge: Fix the stop condition of drm_bridge_chain_pre_enable() Greg Kroah-Hartman
2021-07-12  6:07 ` [PATCH 5.10 302/593] drm/amd/dc: Fix a missing check bug in dm_dp_mst_detect() Greg Kroah-Hartman
2021-07-12  6:07 ` [PATCH 5.10 303/593] drm/ast: Fix missing conversions to managed API Greg Kroah-Hartman
2021-07-12  6:07 ` [PATCH 5.10 304/593] video: fbdev: imxfb: Fix an error message Greg Kroah-Hartman
2021-07-12  6:07 ` [PATCH 5.10 305/593] net: mvpp2: Put fwnode in error case during ->probe() Greg Kroah-Hartman
2021-07-12  6:07 ` [PATCH 5.10 306/593] net: pch_gbe: Propagate error from devm_gpio_request_one() Greg Kroah-Hartman
2021-07-12  6:07 ` [PATCH 5.10 307/593] pinctrl: renesas: r8a7796: Add missing bias for PRESET# pin Greg Kroah-Hartman
2021-07-12  6:07 ` [PATCH 5.10 308/593] pinctrl: renesas: r8a77990: JTAG pins do not have pull-down capabilities Greg Kroah-Hartman
2021-07-12  6:07 ` [PATCH 5.10 309/593] drm/vmwgfx: Mark a surface gpu-dirty after the SVGA3dCmdDXGenMips command Greg Kroah-Hartman
2021-07-12  6:07 ` [PATCH 5.10 310/593] drm/vmwgfx: Fix cpu updates of coherent multisample surfaces Greg Kroah-Hartman
2021-07-12  6:07 ` [PATCH 5.10 311/593] net: qrtr: ns: Fix error return code in qrtr_ns_init() Greg Kroah-Hartman
2021-07-12  6:07 ` [PATCH 5.10 312/593] clk: meson: g12a: fix gp0 and hifi ranges Greg Kroah-Hartman
2021-07-12  6:07 ` [PATCH 5.10 313/593] net: ftgmac100: add missing error return code in ftgmac100_probe() Greg Kroah-Hartman
2021-07-12  6:07 ` [PATCH 5.10 314/593] drm: rockchip: set alpha_en to 0 if it is not used Greg Kroah-Hartman
2021-07-12  6:07 ` [PATCH 5.10 315/593] drm/rockchip: cdn-dp-core: add missing clk_disable_unprepare() on error in cdn_dp_grf_write() Greg Kroah-Hartman
2021-07-12  6:07 ` [PATCH 5.10 316/593] drm/rockchip: dsi: move all lane config except LCDC mux to bind() Greg Kroah-Hartman
2021-07-12  6:07 ` [PATCH 5.10 317/593] drm/rockchip: lvds: Fix an error handling path Greg Kroah-Hartman
2021-07-12  6:07 ` [PATCH 5.10 318/593] drm/rockchip: cdn-dp: fix sign extension on an int multiply for a u64 result Greg Kroah-Hartman
2021-07-12  6:07 ` [PATCH 5.10 319/593] mptcp: fix pr_debug in mptcp_token_new_connect Greg Kroah-Hartman
2021-07-12  6:08 ` [PATCH 5.10 320/593] mptcp: generate subflow hmac after mptcp_finish_join() Greg Kroah-Hartman
2021-07-12  6:08 ` [PATCH 5.10 321/593] RDMA/srp: Fix a recently introduced memory leak Greg Kroah-Hartman
2021-07-12  6:08 ` [PATCH 5.10 322/593] RDMA/rtrs-clt: Check state of the rtrs_clt_sess before reading its stats Greg Kroah-Hartman
2021-07-12  6:08 ` [PATCH 5.10 323/593] RDMA/rtrs: Do not reset hb_missed_max after re-connection Greg Kroah-Hartman
2021-07-12  6:08 ` [PATCH 5.10 324/593] RDMA/rtrs-srv: Fix memory leak of unfreed rtrs_srv_stats object Greg Kroah-Hartman
2021-07-12  6:08 ` [PATCH 5.10 325/593] RDMA/rtrs-srv: Fix memory leak when having multiple sessions Greg Kroah-Hartman
2021-07-12  6:08 ` [PATCH 5.10 326/593] RDMA/rtrs-clt: Check if the queue_depth has changed during a reconnection Greg Kroah-Hartman
2021-07-12  6:08 ` [PATCH 5.10 327/593] RDMA/rtrs-clt: Fix memory leak of not-freed sess->stats and stats->pcpu_stats Greg Kroah-Hartman
2021-07-12  6:08 ` [PATCH 5.10 328/593] ehea: fix error return code in ehea_restart_qps() Greg Kroah-Hartman
2021-07-12  6:08 ` [PATCH 5.10 329/593] clk: tegra30: Use 300MHz for video decoder by default Greg Kroah-Hartman
2021-07-12  6:08 ` [PATCH 5.10 330/593] xfrm: remove the fragment check for ipv6 beet mode Greg Kroah-Hartman
2021-07-12  6:08 ` [PATCH 5.10 331/593] net/sched: act_vlan: Fix modify to allow 0 Greg Kroah-Hartman
2021-07-12  6:08 ` [PATCH 5.10 332/593] RDMA/core: Sanitize WQ state received from the userspace Greg Kroah-Hartman
2021-07-12  6:08 ` [PATCH 5.10 333/593] drm/pl111: depend on CONFIG_VEXPRESS_CONFIG Greg Kroah-Hartman
2021-07-12  6:08 ` [PATCH 5.10 334/593] RDMA/rxe: Fix failure during driver load Greg Kroah-Hartman
2021-07-12  6:08 ` [PATCH 5.10 335/593] drm/pl111: Actually fix CONFIG_VEXPRESS_CONFIG depends Greg Kroah-Hartman
2021-07-12  6:08 ` [PATCH 5.10 336/593] drm/vc4: hdmi: Fix error path of hpd-gpios Greg Kroah-Hartman
2021-07-12  6:08 ` [PATCH 5.10 337/593] clk: vc5: fix output disabling when enabling a FOD Greg Kroah-Hartman
2021-07-12  6:08 ` [PATCH 5.10 338/593] drm: qxl: ensure surf.data is ininitialized Greg Kroah-Hartman
2021-07-12  6:08 ` [PATCH 5.10 339/593] tools/bpftool: Fix error return code in do_batch() Greg Kroah-Hartman
2021-07-12  6:08 ` [PATCH 5.10 340/593] ath10k: go to path err_unsupported when chip id is not supported Greg Kroah-Hartman
2021-07-12  6:08 ` [PATCH 5.10 341/593] ath10k: add missing error return code in ath10k_pci_probe() Greg Kroah-Hartman
2021-07-12  6:08 ` [PATCH 5.10 342/593] wireless: carl9170: fix LEDS build errors & warnings Greg Kroah-Hartman
2021-07-12  6:08 ` [PATCH 5.10 343/593] ieee802154: hwsim: Fix possible memory leak in hwsim_subscribe_all_others Greg Kroah-Hartman
2021-07-12  6:08 ` [PATCH 5.10 344/593] clk: imx8mq: remove SYS PLL 1/2 clock gates Greg Kroah-Hartman
2021-07-12  6:08 ` [PATCH 5.10 345/593] wcn36xx: Move hal_buf allocation to devm_kmalloc in probe Greg Kroah-Hartman
2021-07-12  6:08 ` [PATCH 5.10 346/593] ssb: Fix error return code in ssb_bus_scan() Greg Kroah-Hartman
2021-07-12  6:08 ` [PATCH 5.10 347/593] brcmfmac: fix setting of station info chains bitmask Greg Kroah-Hartman
2021-07-12  6:08 ` [PATCH 5.10 348/593] brcmfmac: correctly report average RSSI in station info Greg Kroah-Hartman
2021-07-12  6:08 ` [PATCH 5.10 349/593] brcmfmac: Fix a double-free in brcmf_sdio_bus_reset Greg Kroah-Hartman
2021-07-12  6:08 ` [PATCH 5.10 350/593] brcmsmac: mac80211_if: Fix a resource leak in an error handling path Greg Kroah-Hartman
2021-07-12  6:08 ` [PATCH 5.10 351/593] cw1200: Revert unnecessary patches that fix unreal use-after-free bugs Greg Kroah-Hartman
2021-07-12  6:08 ` [PATCH 5.10 352/593] ath11k: Fix an error handling path in ath11k_core_fetch_board_data_api_n() Greg Kroah-Hartman
2021-07-12  6:08 ` [PATCH 5.10 353/593] ath10k: Fix an error code in ath10k_add_interface() Greg Kroah-Hartman
2021-07-12  6:08 ` [PATCH 5.10 354/593] ath11k: send beacon template after vdev_start/restart during csa Greg Kroah-Hartman
2021-07-12  6:08 ` [PATCH 5.10 355/593] netlabel: Fix memory leak in netlbl_mgmt_add_common Greg Kroah-Hartman
2021-07-12  6:08 ` [PATCH 5.10 356/593] RDMA/mlx5: Dont add slave port to unaffiliated list Greg Kroah-Hartman
2021-07-12  6:08 ` [PATCH 5.10 357/593] netfilter: nft_exthdr: check for IPv6 packet before further processing Greg Kroah-Hartman
2021-07-12  6:08 ` [PATCH 5.10 358/593] netfilter: nft_osf: check for TCP " Greg Kroah-Hartman
2021-07-12  6:08 ` [PATCH 5.10 359/593] netfilter: nft_tproxy: restrict support to TCP and UDP transport protocols Greg Kroah-Hartman
2021-07-12  6:08 ` [PATCH 5.10 360/593] RDMA/rxe: Fix qp reference counting for atomic ops Greg Kroah-Hartman
2021-07-12  6:08 ` [PATCH 5.10 361/593] selftests/bpf: Whitelist test_progs.h from .gitignore Greg Kroah-Hartman
2021-07-12  6:08 ` [PATCH 5.10 362/593] xsk: Fix missing validation for skb and unaligned mode Greg Kroah-Hartman
2021-07-12  6:08 ` [PATCH 5.10 363/593] xsk: Fix broken Tx ring validation Greg Kroah-Hartman
2021-07-12  6:08 ` [PATCH 5.10 364/593] bpf: Fix libelf endian handling in resolv_btfids Greg Kroah-Hartman
2021-07-12  6:08 ` [PATCH 5.10 365/593] RDMA/rtrs-srv: Set minimal max_send_wr and max_recv_wr Greg Kroah-Hartman
2021-07-12  6:08 ` [PATCH 5.10 366/593] samples/bpf: Fix Segmentation fault for xdp_redirect command Greg Kroah-Hartman
2021-07-12  6:08 ` [PATCH 5.10 367/593] samples/bpf: Fix the error return code of xdp_redirects main() Greg Kroah-Hartman
2021-07-12  6:08 ` [PATCH 5.10 368/593] mt76: fix possible NULL pointer dereference in mt76_tx Greg Kroah-Hartman
2021-07-12  6:08 ` [PATCH 5.10 369/593] mt76: mt7615: fix NULL pointer dereference in tx_prepare_skb() Greg Kroah-Hartman
2021-07-12  6:08 ` [PATCH 5.10 370/593] net: ethernet: aeroflex: fix UAF in greth_of_remove Greg Kroah-Hartman
2021-07-12  6:08 ` [PATCH 5.10 371/593] net: ethernet: ezchip: fix UAF in nps_enet_remove Greg Kroah-Hartman
2021-07-12  6:08 ` [PATCH 5.10 372/593] net: ethernet: ezchip: fix error handling Greg Kroah-Hartman
2021-07-12  6:08 ` [PATCH 5.10 373/593] vrf: do not push non-ND strict packets with a source LLA through packet taps again Greg Kroah-Hartman
2021-07-12  6:08 ` [PATCH 5.10 374/593] net: sched: add barrier to ensure correct ordering for lockless qdisc Greg Kroah-Hartman
2021-07-12  6:08 ` [PATCH 5.10 375/593] tls: prevent oversized sendfile() hangs by ignoring MSG_MORE Greg Kroah-Hartman
2021-07-12  6:08 ` [PATCH 5.10 376/593] netfilter: nf_tables_offload: check FLOW_DISSECTOR_KEY_BASIC in VLAN transfer logic Greg Kroah-Hartman
2021-07-12  6:08 ` [PATCH 5.10 377/593] pkt_sched: sch_qfq: fix qfq_change_class() error path Greg Kroah-Hartman
2021-07-12  6:08 ` [PATCH 5.10 378/593] xfrm: Fix xfrm offload fallback fail case Greg Kroah-Hartman
2021-07-12  6:08 ` [PATCH 5.10 379/593] iwlwifi: increase PNVM load timeout Greg Kroah-Hartman
2021-07-12  6:09 ` [PATCH 5.10 380/593] rtw88: 8822c: fix lc calibration timing Greg Kroah-Hartman
2021-07-12  6:09 ` [PATCH 5.10 381/593] vxlan: add missing rcu_read_lock() in neigh_reduce() Greg Kroah-Hartman
2021-07-12  6:09 ` [PATCH 5.10 382/593] ip6_tunnel: fix GRE6 segmentation Greg Kroah-Hartman
2021-07-12  6:09 ` [PATCH 5.10 383/593] net/ipv4: swap flow ports when validating source Greg Kroah-Hartman
2021-07-12  6:09 ` [PATCH 5.10 384/593] net: ti: am65-cpsw-nuss: Fix crash when changing number of TX queues Greg Kroah-Hartman
2021-07-12  6:09 ` [PATCH 5.10 385/593] tc-testing: fix list handling Greg Kroah-Hartman
2021-07-12  6:09 ` [PATCH 5.10 386/593] ieee802154: hwsim: Fix memory leak in hwsim_add_one Greg Kroah-Hartman
2021-07-12  6:09 ` [PATCH 5.10 387/593] ieee802154: hwsim: avoid possible crash in hwsim_del_edge_nl() Greg Kroah-Hartman
2021-07-12  6:09 ` [PATCH 5.10 388/593] bpf: Fix null ptr deref with mixed tail calls and subprogs Greg Kroah-Hartman
2021-07-12  6:09 ` [PATCH 5.10 389/593] drm/msm: Fix error return code in msm_drm_init() Greg Kroah-Hartman
2021-07-12  6:09 ` [PATCH 5.10 390/593] drm/msm/dpu: Fix error return code in dpu_mdss_init() Greg Kroah-Hartman
2021-07-12  6:09 ` [PATCH 5.10 391/593] mac80211: remove iwlwifi specific workaround NDPs of null_response Greg Kroah-Hartman
2021-07-12  6:09 ` [PATCH 5.10 392/593] net: bcmgenet: Fix attaching to PYH failed on RPi 4B Greg Kroah-Hartman
2021-07-12  6:09 ` [PATCH 5.10 393/593] ipv6: exthdrs: do not blindly use init_net Greg Kroah-Hartman
2021-07-12  6:09 ` [PATCH 5.10 394/593] can: j1939: j1939_sk_setsockopt(): prevent allocation of j1939 filter for optlen == 0 Greg Kroah-Hartman
2021-07-12  6:09 ` [PATCH 5.10 395/593] bpf: Do not change gso_size during bpf_skb_change_proto() Greg Kroah-Hartman
2021-07-12  6:09 ` [PATCH 5.10 396/593] i40e: Fix error handling in i40e_vsi_open Greg Kroah-Hartman
2021-07-12  6:09 ` [PATCH 5.10 397/593] i40e: Fix autoneg disabling for non-10GBaseT links Greg Kroah-Hartman
2021-07-12  6:09 ` [PATCH 5.10 398/593] i40e: Fix missing rtnl locking when setting up pf switch Greg Kroah-Hartman
2021-07-12  6:09 ` [PATCH 5.10 399/593] Revert "ibmvnic: remove duplicate napi_schedule call in open function" Greg Kroah-Hartman
2021-07-12  6:09 ` [PATCH 5.10 400/593] ibmvnic: set ltb->buff to NULL after freeing Greg Kroah-Hartman
2021-07-12  6:09 ` [PATCH 5.10 401/593] ibmvnic: free tx_pool if tso_pool alloc fails Greg Kroah-Hartman
2021-07-12  6:09 ` [PATCH 5.10 402/593] RDMA/cma: Protect RMW with qp_mutex Greg Kroah-Hartman
2021-07-12  6:09 ` [PATCH 5.10 403/593] net: macsec: fix the length used to copy the key for offloading Greg Kroah-Hartman
2021-07-12  6:09 ` [PATCH 5.10 404/593] net: phy: mscc: fix macsec key length Greg Kroah-Hartman
2021-07-12  6:09 ` [PATCH 5.10 405/593] net: atlantic: fix the " Greg Kroah-Hartman
2021-07-12  6:09 ` [PATCH 5.10 406/593] ipv6: fix out-of-bound access in ip6_parse_tlv() Greg Kroah-Hartman
2021-07-12  6:09 ` [PATCH 5.10 407/593] e1000e: Check the PCIm state Greg Kroah-Hartman
2021-07-12  6:09 ` [PATCH 5.10 408/593] net: dsa: sja1105: fix NULL pointer dereference in sja1105_reload_cbs() Greg Kroah-Hartman
2021-07-12  6:09 ` [PATCH 5.10 409/593] bpfilter: Specify the log level for the kmsg message Greg Kroah-Hartman
2021-07-12  6:09 ` [PATCH 5.10 410/593] RDMA/cma: Fix incorrect Packet Lifetime calculation Greg Kroah-Hartman
2021-07-12  6:09 ` [PATCH 5.10 411/593] gve: Fix swapped vars when fetching max queues Greg Kroah-Hartman
2021-07-12  6:09 ` [PATCH 5.10 412/593] Revert "be2net: disable bh with spin_lock in be_process_mcc" Greg Kroah-Hartman
2021-07-12  6:09 ` [PATCH 5.10 413/593] Bluetooth: mgmt: Fix slab-out-of-bounds in tlv_data_is_valid Greg Kroah-Hartman
2021-07-12  6:09 ` [PATCH 5.10 414/593] Bluetooth: Fix not sending Set Extended Scan Response Greg Kroah-Hartman
2021-07-12  6:09 ` [PATCH 5.10 415/593] Bluetooth: Fix Set Extended (Scan Response) Data Greg Kroah-Hartman
2021-07-12  6:09 ` [PATCH 5.10 416/593] Bluetooth: Fix handling of HCI_LE_Advertising_Set_Terminated event Greg Kroah-Hartman
2021-07-12  6:09 ` [PATCH 5.10 417/593] clk: actions: Fix UART clock dividers on Owl S500 SoC Greg Kroah-Hartman
2021-07-12  6:09 ` [PATCH 5.10 418/593] clk: actions: Fix SD clocks factor table " Greg Kroah-Hartman
2021-07-12  6:09 ` [PATCH 5.10 419/593] clk: actions: Fix bisp_factor_table based clocks " Greg Kroah-Hartman
2021-07-12  6:09 ` [PATCH 5.10 420/593] clk: actions: Fix AHPPREDIV-H-AHB clock chain " Greg Kroah-Hartman
2021-07-12  6:09 ` [PATCH 5.10 421/593] clk: qcom: clk-alpha-pll: fix CAL_L write in alpha_pll_fabia_prepare Greg Kroah-Hartman
2021-07-12  6:09 ` [PATCH 5.10 422/593] clk: si5341: Wait for DEVICE_READY on startup Greg Kroah-Hartman
2021-07-12  6:09 ` [PATCH 5.10 423/593] clk: si5341: Avoid divide errors due to bogus register contents Greg Kroah-Hartman
2021-07-12  6:09 ` [PATCH 5.10 424/593] clk: si5341: Check for input clock presence and PLL lock on startup Greg Kroah-Hartman
2021-07-12  6:09 ` [PATCH 5.10 425/593] clk: si5341: Update initialization magic Greg Kroah-Hartman
2021-07-12  6:09 ` [PATCH 5.10 426/593] writeback: fix obtain a reference to a freeing memcg css Greg Kroah-Hartman
2021-07-12  6:09 ` [PATCH 5.10 427/593] net: lwtunnel: handle MTU calculation in forwading Greg Kroah-Hartman
2021-07-12  6:09 ` [PATCH 5.10 428/593] net: sched: fix warning in tcindex_alloc_perfect_hash Greg Kroah-Hartman
2021-07-12  6:09 ` [PATCH 5.10 429/593] net: tipc: fix FB_MTU eat two pages Greg Kroah-Hartman
2021-07-12  6:09 ` [PATCH 5.10 430/593] RDMA/mlx5: Dont access NULL-cleared mpi pointer Greg Kroah-Hartman
2021-07-12  6:09 ` [PATCH 5.10 431/593] RDMA/core: Always release restrack object Greg Kroah-Hartman
2021-07-12  6:09 ` [PATCH 5.10 432/593] MIPS: Fix PKMAP with 32-bit MIPS huge page support Greg Kroah-Hartman
2021-07-12  6:09 ` [PATCH 5.10 433/593] staging: fbtft: Rectify GPIO handling Greg Kroah-Hartman
2021-07-12  6:09 ` [PATCH 5.10 434/593] staging: fbtft: Dont spam logs when probe is deferred Greg Kroah-Hartman
2021-07-12  6:09 ` [PATCH 5.10 435/593] ASoC: rt5682: Disable irq on shutdown Greg Kroah-Hartman
2021-07-12  6:09 ` [PATCH 5.10 436/593] rcu: Invoke rcu_spawn_core_kthreads() from rcu_spawn_gp_kthread() Greg Kroah-Hartman
2021-07-12  6:09 ` [PATCH 5.10 437/593] serial: fsl_lpuart: dont modify arbitrary data on lpuart32 Greg Kroah-Hartman
2021-07-12  6:09 ` [PATCH 5.10 438/593] serial: fsl_lpuart: remove RTSCTS handling from get_mctrl() Greg Kroah-Hartman
2021-07-12  6:09 ` [PATCH 5.10 439/593] serial: 8250_omap: fix a timeout loop condition Greg Kroah-Hartman
2021-07-12  6:10 ` [PATCH 5.10 440/593] tty: nozomi: Fix a resource leak in an error handling function Greg Kroah-Hartman
2021-07-12  6:10 ` [PATCH 5.10 441/593] mwifiex: re-fix for unaligned accesses Greg Kroah-Hartman
2021-07-12  6:10 ` [PATCH 5.10 442/593] iio: adis_buffer: do not return ints in irq handlers Greg Kroah-Hartman
2021-07-12  6:10 ` [PATCH 5.10 443/593] iio: adis16400: " Greg Kroah-Hartman
2021-07-12  6:10 ` [PATCH 5.10 444/593] iio: adis16475: " Greg Kroah-Hartman
2021-07-12  6:10 ` [PATCH 5.10 445/593] iio: accel: bma180: Fix buffer alignment in iio_push_to_buffers_with_timestamp() Greg Kroah-Hartman
2021-07-12  6:10 ` [PATCH 5.10 446/593] iio: accel: bma220: " Greg Kroah-Hartman
2021-07-12  6:10 ` [PATCH 5.10 447/593] iio: accel: hid: " Greg Kroah-Hartman
2021-07-12  6:10 ` [PATCH 5.10 448/593] iio: accel: kxcjk-1013: " Greg Kroah-Hartman
2021-07-12  6:10 ` [PATCH 5.10 449/593] iio: accel: mxc4005: Fix overread of data and alignment issue Greg Kroah-Hartman
2021-07-12  6:10 ` [PATCH 5.10 450/593] iio: accel: stk8312: Fix buffer alignment in iio_push_to_buffers_with_timestamp() Greg Kroah-Hartman
2021-07-12  6:10 ` [PATCH 5.10 451/593] iio: accel: stk8ba50: " Greg Kroah-Hartman
2021-07-12  6:10 ` [PATCH 5.10 452/593] iio: adc: ti-ads1015: " Greg Kroah-Hartman
2021-07-12  6:10 ` [PATCH 5.10 453/593] iio: adc: vf610: " Greg Kroah-Hartman
2021-07-12  6:10 ` [PATCH 5.10 454/593] iio: gyro: bmg160: " Greg Kroah-Hartman
2021-07-12  6:10 ` [PATCH 5.10 455/593] iio: humidity: am2315: " Greg Kroah-Hartman
2021-07-12  6:10 ` [PATCH 5.10 456/593] iio: prox: srf08: " Greg Kroah-Hartman
2021-07-12  6:10 ` [PATCH 5.10 457/593] iio: prox: pulsed-light: " Greg Kroah-Hartman
2021-07-12  6:10 ` [PATCH 5.10 458/593] iio: prox: as3935: " Greg Kroah-Hartman
2021-07-12  6:10 ` [PATCH 5.10 459/593] iio: magn: hmc5843: " Greg Kroah-Hartman
2021-07-12  6:10 ` [PATCH 5.10 460/593] iio: magn: bmc150: " Greg Kroah-Hartman
2021-07-12  6:10 ` [PATCH 5.10 461/593] iio: light: isl29125: " Greg Kroah-Hartman
2021-07-12  6:10 ` [PATCH 5.10 462/593] iio: light: tcs3414: " Greg Kroah-Hartman
2021-07-12  6:10 ` [PATCH 5.10 463/593] iio: light: tcs3472: " Greg Kroah-Hartman
2021-07-12  6:10 ` [PATCH 5.10 464/593] iio: chemical: atlas: " Greg Kroah-Hartman
2021-07-12  6:10 ` [PATCH 5.10 465/593] iio: cros_ec_sensors: Fix alignment of buffer " Greg Kroah-Hartman
2021-07-12  6:10 ` [PATCH 5.10 466/593] iio: potentiostat: lmp91000: " Greg Kroah-Hartman
2021-07-12  6:10 ` [PATCH 5.10 467/593] ASoC: rk3328: fix missing clk_disable_unprepare() on error in rk3328_platform_probe() Greg Kroah-Hartman
2021-07-12  6:10 ` [PATCH 5.10 468/593] ASoC: hisilicon: fix missing clk_disable_unprepare() on error in hi6210_i2s_startup() Greg Kroah-Hartman
2021-07-12  6:10 ` [PATCH 5.10 469/593] backlight: lm3630a_bl: Put fwnode in error case during ->probe() Greg Kroah-Hartman
2021-07-12  6:10 ` [PATCH 5.10 470/593] ASoC: rsnd: tidyup loop on rsnd_adg_clk_query() Greg Kroah-Hartman
2021-07-12  6:10 ` [PATCH 5.10 471/593] Input: hil_kbd - fix error return code in hil_dev_connect() Greg Kroah-Hartman
2021-07-12  6:10 ` [PATCH 5.10 472/593] perf scripting python: Fix tuple_set_u64() Greg Kroah-Hartman
2021-07-12  6:10 ` [PATCH 5.10 473/593] mtd: partitions: redboot: seek fis-index-block in the right node Greg Kroah-Hartman
2021-07-12  6:10 ` [PATCH 5.10 474/593] mtd: rawnand: arasan: Ensure proper configuration for the asserted target Greg Kroah-Hartman
2021-07-12  6:10 ` [PATCH 5.10 475/593] staging: mmal-vchiq: Fix incorrect static vchiq_instance Greg Kroah-Hartman
2021-07-12  6:10 ` [PATCH 5.10 476/593] char: pcmcia: error out if num_bytes_read is greater than 4 in set_protocol() Greg Kroah-Hartman
2021-07-12  6:10 ` [PATCH 5.10 477/593] firmware: stratix10-svc: Fix a resource leak in an error handling path Greg Kroah-Hartman
2021-07-12  6:10 ` [PATCH 5.10 478/593] tty: nozomi: Fix the error handling path of nozomi_card_init() Greg Kroah-Hartman
2021-07-12  6:10 ` [PATCH 5.10 479/593] leds: class: The -ENOTSUPP should never be seen by user space Greg Kroah-Hartman
2021-07-12  6:10 ` [PATCH 5.10 480/593] leds: lm3532: select regmap I2C API Greg Kroah-Hartman
2021-07-12  6:10 ` [PATCH 5.10 481/593] leds: lm36274: Put fwnode in error case during ->probe() Greg Kroah-Hartman
2021-07-12  6:10 ` [PATCH 5.10 482/593] leds: lm3692x: Put fwnode in any " Greg Kroah-Hartman
2021-07-12  6:10 ` [PATCH 5.10 483/593] leds: lm3697: Dont spam logs when probe is deferred Greg Kroah-Hartman
2021-07-12  6:10 ` [PATCH 5.10 484/593] leds: lp50xx: Put fwnode in error case during ->probe() Greg Kroah-Hartman
2021-07-12  6:10 ` [PATCH 5.10 485/593] scsi: FlashPoint: Rename si_flags field Greg Kroah-Hartman
2021-07-12  6:10 ` [PATCH 5.10 486/593] scsi: iscsi: Flush block work before unblock Greg Kroah-Hartman
2021-07-12  6:10 ` [PATCH 5.10 487/593] mfd: mp2629: Select MFD_CORE to fix build error Greg Kroah-Hartman
2021-07-12  6:10 ` [PATCH 5.10 488/593] mfd: rn5t618: Fix IRQ trigger by changing it to level mode Greg Kroah-Hartman
2021-07-12  6:10 ` [PATCH 5.10 489/593] fsi: core: Fix return of error values on failures Greg Kroah-Hartman
2021-07-12  6:10 ` [PATCH 5.10 490/593] fsi: scom: Reset the FSI2PIB engine for any error Greg Kroah-Hartman
2021-07-12  6:10 ` [PATCH 5.10 491/593] fsi: occ: Dont accept response from un-initialized OCC Greg Kroah-Hartman
2021-07-12  6:10 ` [PATCH 5.10 492/593] fsi/sbefifo: Clean up correct FIFO when receiving reset request from SBE Greg Kroah-Hartman
2021-07-12  6:10 ` [PATCH 5.10 493/593] fsi/sbefifo: Fix reset timeout Greg Kroah-Hartman
2021-07-12  6:10 ` [PATCH 5.10 494/593] visorbus: fix error return code in visorchipset_init() Greg Kroah-Hartman
2021-07-12  6:10 ` [PATCH 5.10 495/593] iommu/amd: Fix extended features logging Greg Kroah-Hartman
2021-07-12  6:10 ` [PATCH 5.10 496/593] s390/irq: select HAVE_IRQ_EXIT_ON_IRQ_STACK Greg Kroah-Hartman
2021-07-12  6:10 ` [PATCH 5.10 497/593] s390: enable HAVE_IOREMAP_PROT Greg Kroah-Hartman
2021-07-12  6:10 ` [PATCH 5.10 498/593] s390: appldata depends on PROC_SYSCTL Greg Kroah-Hartman
2021-07-12  6:10 ` [PATCH 5.10 499/593] selftests: splice: Adjust for handler fallback removal Greg Kroah-Hartman
2021-07-12  6:11 ` [PATCH 5.10 500/593] iommu/dma: Fix IOVA reserve dma ranges Greg Kroah-Hartman
2021-07-12  6:11 ` [PATCH 5.10 501/593] ASoC: max98373-sdw: use first_hw_init flag on resume Greg Kroah-Hartman
2021-07-12  6:11 ` [PATCH 5.10 502/593] ASoC: rt1308-sdw: " Greg Kroah-Hartman
2021-07-12  6:11 ` [PATCH 5.10 503/593] ASoC: rt5682-sdw: " Greg Kroah-Hartman
2021-07-12  6:11 ` [PATCH 5.10 504/593] ASoC: rt700-sdw: " Greg Kroah-Hartman
2021-07-12  6:11 ` [PATCH 5.10 505/593] ASoC: rt711-sdw: " Greg Kroah-Hartman
2021-07-12  6:11 ` [PATCH 5.10 506/593] ASoC: rt715-sdw: " Greg Kroah-Hartman
2021-07-12  6:11 ` [PATCH 5.10 507/593] ASoC: rt5682: fix getting the wrong device id when the suspend_stress_test Greg Kroah-Hartman
2021-07-12  6:11 ` [PATCH 5.10 508/593] ASoC: rt5682-sdw: set regcache_cache_only false before reading RT5682_DEVICE_ID Greg Kroah-Hartman
2021-07-12  6:11 ` [PATCH 5.10 509/593] ASoC: mediatek: mtk-btcvsd: Fix an error handling path in mtk_btcvsd_snd_probe() Greg Kroah-Hartman
2021-07-12  6:11 ` [PATCH 5.10 510/593] usb: gadget: f_fs: Fix setting of device and driver data cross-references Greg Kroah-Hartman
2021-07-12  6:11 ` [PATCH 5.10 511/593] usb: dwc2: Dont reset the core after setting turnaround time Greg Kroah-Hartman
2021-07-12  6:11 ` [PATCH 5.10 512/593] eeprom: idt_89hpesx: Put fwnode in matching case during ->probe() Greg Kroah-Hartman
2021-07-12  6:11 ` [PATCH 5.10 513/593] eeprom: idt_89hpesx: Restore printing the unsupported fwnode name Greg Kroah-Hartman
2021-07-12  6:11 ` [PATCH 5.10 514/593] thunderbolt: Bond lanes only when dual_link_port != NULL in alloc_dev_default() Greg Kroah-Hartman
2021-07-12  6:11 ` [PATCH 5.10 515/593] iio: adc: at91-sama5d2: Fix buffer alignment in iio_push_to_buffers_with_timestamp() Greg Kroah-Hartman
2021-07-12  6:11 ` [PATCH 5.10 516/593] iio: adc: hx711: " Greg Kroah-Hartman
2021-07-12  6:11 ` [PATCH 5.10 517/593] iio: adc: mxs-lradc: " Greg Kroah-Hartman
2021-07-12  6:11 ` [PATCH 5.10 518/593] iio: adc: ti-ads8688: Fix alignment of buffer " Greg Kroah-Hartman
2021-07-12  6:11 ` [PATCH 5.10 519/593] iio: magn: rm3100: " Greg Kroah-Hartman
2021-07-12  6:11 ` [PATCH 5.10 520/593] iio: light: vcnl4000: Fix buffer alignment " Greg Kroah-Hartman
2021-07-12  6:11 ` [PATCH 5.10 521/593] ASoC: fsl_spdif: Fix error handler with pm_runtime_enable Greg Kroah-Hartman
2021-07-12  6:11 ` [PATCH 5.10 522/593] staging: gdm724x: check for buffer overflow in gdm_lte_multi_sdu_pkt() Greg Kroah-Hartman
2021-07-12  6:11 ` [PATCH 5.10 523/593] staging: gdm724x: check for overflow in gdm_lte_netif_rx() Greg Kroah-Hartman
2021-07-12  6:11 ` [PATCH 5.10 524/593] staging: rtl8712: fix error handling in r871xu_drv_init Greg Kroah-Hartman
2021-07-12  6:11 ` [PATCH 5.10 525/593] staging: rtl8712: fix memory leak in rtl871x_load_fw_cb Greg Kroah-Hartman
2021-07-12  6:11 ` [PATCH 5.10 526/593] coresight: core: Fix use of uninitialized pointer Greg Kroah-Hartman
2021-07-12  6:11 ` [PATCH 5.10 527/593] staging: mt7621-dts: fix pci address for PCI memory range Greg Kroah-Hartman
2021-07-12  6:11 ` [PATCH 5.10 528/593] serial: 8250: Actually allow UPF_MAGIC_MULTIPLIER baud rates Greg Kroah-Hartman
2021-07-12  6:11 ` [PATCH 5.10 529/593] iio: light: vcnl4035: Fix buffer alignment in iio_push_to_buffers_with_timestamp() Greg Kroah-Hartman
2021-07-12  6:11 ` [PATCH 5.10 530/593] iio: prox: isl29501: " Greg Kroah-Hartman
2021-07-12  6:11 ` [PATCH 5.10 531/593] ASoC: cs42l42: Correct definition of CS42L42_ADC_PDN_MASK Greg Kroah-Hartman
2021-07-12  6:11 ` [PATCH 5.10 532/593] of: Fix truncation of memory sizes on 32-bit platforms Greg Kroah-Hartman
2021-07-12  6:11 ` [PATCH 5.10 533/593] mtd: rawnand: marvell: add missing clk_disable_unprepare() on error in marvell_nfc_resume() Greg Kroah-Hartman
2021-07-12  6:11 ` [PATCH 5.10 534/593] habanalabs: Fix an error handling path in hl_pci_probe() Greg Kroah-Hartman
2021-07-12  6:11 ` [PATCH 5.10 535/593] scsi: mpt3sas: Fix error return value in _scsih_expander_add() Greg Kroah-Hartman
2021-07-12  6:11 ` [PATCH 5.10 536/593] soundwire: stream: Fix test for DP prepare complete Greg Kroah-Hartman
2021-07-12  6:11 ` [PATCH 5.10 537/593] phy: uniphier-pcie: Fix updating phy parameters Greg Kroah-Hartman
2021-07-12  6:11 ` [PATCH 5.10 538/593] phy: ti: dm816x: Fix the error handling path in dm816x_usb_phy_probe() Greg Kroah-Hartman
2021-07-12  6:11 ` [PATCH 5.10 539/593] extcon: sm5502: Drop invalid register write in sm5502_reg_data Greg Kroah-Hartman
2021-07-12  6:11 ` [PATCH 5.10 540/593] extcon: max8997: Add missing modalias string Greg Kroah-Hartman
2021-07-12  6:11 ` [PATCH 5.10 541/593] powerpc/powernv: Fix machine check reporting of async store errors Greg Kroah-Hartman
2021-07-12  6:11 ` [PATCH 5.10 542/593] ASoC: atmel-i2s: Fix usage of capture and playback at the same time Greg Kroah-Hartman
2021-07-12  6:11 ` [PATCH 5.10 543/593] configfs: fix memleak in configfs_release_bin_file Greg Kroah-Hartman
2021-07-12  6:11 ` [PATCH 5.10 544/593] ASoC: Intel: sof_sdw: add SOF_RT715_DAI_ID_FIX for AlderLake Greg Kroah-Hartman
2021-07-12  6:11 ` [PATCH 5.10 545/593] ASoC: Intel: sof_sdw: add quirk support for Brya and BT-offload Greg Kroah-Hartman
2021-07-12  6:11 ` [PATCH 5.10 546/593] ASoC: Intel: sof_sdw: use mach data for ADL RVP DMIC count Greg Kroah-Hartman
2021-07-12  6:11 ` [PATCH 5.10 547/593] ASoC: fsl_spdif: Fix unexpected interrupt after suspend Greg Kroah-Hartman
2021-07-12  6:11 ` [PATCH 5.10 548/593] leds: as3645a: Fix error return code in as3645a_parse_node() Greg Kroah-Hartman
2021-07-12  6:11 ` [PATCH 5.10 549/593] leds: ktd2692: Fix an error handling path Greg Kroah-Hartman
2021-07-12  6:11 ` [PATCH 5.10 550/593] selftests/ftrace: fix event-no-pid on 1-core machine Greg Kroah-Hartman
2021-07-12  6:11 ` [PATCH 5.10 551/593] serial: 8250: 8250_omap: Disable RX interrupt after DMA enable Greg Kroah-Hartman
2021-07-12  6:11 ` [PATCH 5.10 552/593] serial: 8250: 8250_omap: Fix possible interrupt storm on K3 SoCs Greg Kroah-Hartman
2021-07-12  6:11 ` [PATCH 5.10 553/593] powerpc: Offline CPU in stop_this_cpu() Greg Kroah-Hartman
2021-07-12  6:11 ` [PATCH 5.10 554/593] powerpc/papr_scm: Properly handle UUID types and API Greg Kroah-Hartman
2021-07-12  6:11 ` [PATCH 5.10 555/593] powerpc/64s: Fix copy-paste data exposure into newly created tasks Greg Kroah-Hartman
2021-07-12  6:11 ` [PATCH 5.10 556/593] powerpc/papr_scm: Make perf_stats invisible if perf-stats unavailable Greg Kroah-Hartman
2021-07-12  6:11 ` [PATCH 5.10 557/593] ALSA: firewire-lib: Fix amdtp_domain_start() when no AMDTP_OUT_STREAM stream is found Greg Kroah-Hartman
2021-07-12  6:11 ` [PATCH 5.10 558/593] serial: mvebu-uart: do not allow changing baudrate when uartclk is not available Greg Kroah-Hartman
2021-07-12  6:11 ` [PATCH 5.10 559/593] serial: mvebu-uart: correctly calculate minimal possible baudrate Greg Kroah-Hartman
2021-07-12  6:12 ` [PATCH 5.10 560/593] arm64: dts: marvell: armada-37xx: Fix reg for standard variant of UART Greg Kroah-Hartman
2021-07-12  6:12 ` [PATCH 5.10 561/593] vfio/pci: Handle concurrent vma faults Greg Kroah-Hartman
2021-07-12  6:12 ` [PATCH 5.10 562/593] mm/pmem: avoid inserting hugepage PTE entry with fsdax if hugepage support is disabled Greg Kroah-Hartman
2021-07-12  6:12 ` [PATCH 5.10 563/593] mm/huge_memory.c: remove dedicated macro HPAGE_CACHE_INDEX_MASK Greg Kroah-Hartman
2021-07-12  6:12 ` [PATCH 5.10 564/593] mm/huge_memory.c: add missing read-only THP checking in transparent_hugepage_enabled() Greg Kroah-Hartman
2021-07-12  6:12 ` [PATCH 5.10 565/593] mm/huge_memory.c: dont discard hugepage if other processes are mapping it Greg Kroah-Hartman
2021-07-12  6:12 ` [PATCH 5.10 566/593] mm/hugetlb: use helper huge_page_order and pages_per_huge_page Greg Kroah-Hartman
2021-07-12  6:12 ` [PATCH 5.10 567/593] mm/hugetlb: remove redundant check in preparing and destroying gigantic page Greg Kroah-Hartman
2021-07-12  6:12 ` [PATCH 5.10 568/593] hugetlb: remove prep_compound_huge_page cleanup Greg Kroah-Hartman
2021-07-12  6:12 ` [PATCH 5.10 569/593] hugetlb: address ref count racing in prep_compound_gigantic_page Greg Kroah-Hartman
2021-07-13 21:38   ` Mike Kravetz
2021-07-12  6:12 ` [PATCH 5.10 570/593] include/linux/huge_mm.h: remove extern keyword Greg Kroah-Hartman
2021-07-12  6:12 ` [PATCH 5.10 571/593] mm/z3fold: fix potential memory leak in z3fold_destroy_pool() Greg Kroah-Hartman
2021-07-12  6:12 ` [PATCH 5.10 572/593] mm/z3fold: use release_z3fold_page_locked() to release locked z3fold page Greg Kroah-Hartman
2021-07-12  6:12 ` [PATCH 5.10 573/593] lib/math/rational.c: fix divide by zero Greg Kroah-Hartman
2021-07-12  6:12 ` [PATCH 5.10 574/593] selftests/vm/pkeys: fix alloc_random_pkey() to make it really, really random Greg Kroah-Hartman
2021-07-12  6:12 ` [PATCH 5.10 575/593] selftests/vm/pkeys: handle negative sys_pkey_alloc() return code Greg Kroah-Hartman
2021-07-12  6:12 ` [PATCH 5.10 576/593] selftests/vm/pkeys: refill shadow register after implicit kernel write Greg Kroah-Hartman
2021-07-12  6:12 ` [PATCH 5.10 577/593] perf llvm: Return -ENOMEM when asprintf() fails Greg Kroah-Hartman
2021-07-12  6:12 ` [PATCH 5.10 578/593] csky: fix syscache.c fallthrough warning Greg Kroah-Hartman
2021-07-12  6:12 ` [PATCH 5.10 579/593] csky: syscache: Fixup duplicate cache flush Greg Kroah-Hartman
2021-07-12  6:12 ` [PATCH 5.10 580/593] exfat: handle wrong stream entry size in exfat_readdir() Greg Kroah-Hartman
2021-07-12  6:12 ` [PATCH 5.10 581/593] scsi: fc: Correct RHBA attributes length Greg Kroah-Hartman
2021-07-12  6:12 ` [PATCH 5.10 582/593] scsi: target: cxgbit: Unmap DMA buffer before calling target_execute_cmd() Greg Kroah-Hartman
2021-07-12  6:12 ` [PATCH 5.10 583/593] mailbox: qcom-ipcc: Fix IPCC mbox channel exhaustion Greg Kroah-Hartman
2021-07-12  6:12 ` [PATCH 5.10 584/593] fscrypt: dont ignore minor_hash when hash is 0 Greg Kroah-Hartman
2021-07-12  6:12 ` [PATCH 5.10 585/593] fscrypt: fix derivation of SipHash keys on big endian CPUs Greg Kroah-Hartman
2021-07-12  6:12 ` [PATCH 5.10 586/593] tpm: Replace WARN_ONCE() with dev_err_once() in tpm_tis_status() Greg Kroah-Hartman
2021-07-12  6:12 ` [PATCH 5.10 587/593] erofs: fix error return code in erofs_read_superblock() Greg Kroah-Hartman
2021-07-12  6:12 ` [PATCH 5.10 588/593] block: return the correct bvec when checking for gaps Greg Kroah-Hartman
2021-07-12  6:12 ` [PATCH 5.10 589/593] io_uring: fix blocking inline submission Greg Kroah-Hartman
2021-07-12  6:12 ` [PATCH 5.10 590/593] mmc: block: Disable CMDQ on the ioctl path Greg Kroah-Hartman
2021-07-12  6:12 ` [PATCH 5.10 591/593] mmc: vub3000: fix control-request direction Greg Kroah-Hartman
2021-07-12  6:12 ` [PATCH 5.10 592/593] media: exynos4-is: remove a now unused integer Greg Kroah-Hartman
2021-07-12  6:12 ` [PATCH 5.10 593/593] scsi: core: Retry I/O for Notify (Enable Spinup) Required error Greg Kroah-Hartman
2021-07-12  9:35 ` [PATCH 5.10 000/593] 5.10.50-rc1 review Pavel Machek
2021-07-12 12:21 ` Naresh Kamboju
2021-07-12 18:54   ` Greg Kroah-Hartman
2021-07-12 13:46 ` Guenter Roeck
2021-07-12 18:53   ` Greg Kroah-Hartman
2021-07-12 17:05 ` Florian Fainelli
2021-07-12 19:14 ` Fox Chen

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=20210712060912.279271729@linuxfoundation.org \
    --to=gregkh@linuxfoundation.org \
    --cc=bp@suse.de \
    --cc=jroedel@suse.de \
    --cc=linux-kernel@vger.kernel.org \
    --cc=peterz@infradead.org \
    --cc=sashal@kernel.org \
    --cc=stable@vger.kernel.org \
    /path/to/YOUR_REPLY

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

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