stable.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, John David Anglin <dave.anglin@bell.net>,
	Helge Deller <deller@gmx.de>, Sasha Levin <sashal@kernel.org>
Subject: [PATCH 5.10 467/599] parisc: Fix handling off probe non-access faults
Date: Tue,  5 Apr 2022 09:32:41 +0200	[thread overview]
Message-ID: <20220405070312.724163665@linuxfoundation.org> (raw)
In-Reply-To: <20220405070258.802373272@linuxfoundation.org>

From: John David Anglin <dave.anglin@bell.net>

[ Upstream commit e00b0a2ab8ec019c344e53bfc76e31c18bb587b7 ]

Currently, the parisc kernel does not fully support non-access TLB
fault handling for probe instructions. In the fast path, we set the
target register to zero if it is not a shadowed register. The slow
path is not implemented, so we call do_page_fault. The architecture
indicates that non-access faults should not cause a page fault from
disk.

This change adds to code to provide non-access fault support for
probe instructions. It also modifies the handling of faults on
userspace so that if the address lies in a valid VMA and the access
type matches that for the VMA, the probe target register is set to
one. Otherwise, the target register is set to zero.

This was done to make probe instructions more useful for userspace.
Probe instructions are not very useful if they set the target register
to zero whenever a page is not present in memory. Nominally, the
purpose of the probe instruction is determine whether read or write
access to a given address is allowed.

This fixes a problem in function pointer comparison noticed in the
glibc testsuite (stdio-common/tst-vfprintf-user-type). The same
problem is likely in glibc (_dl_lookup_address).

V2 adds flush and lpa instruction support to handle_nadtlb_fault.

Signed-off-by: John David Anglin <dave.anglin@bell.net>
Signed-off-by: Helge Deller <deller@gmx.de>
Signed-off-by: Sasha Levin <sashal@kernel.org>
---
 arch/parisc/include/asm/traps.h |  1 +
 arch/parisc/kernel/traps.c      |  2 +
 arch/parisc/mm/fault.c          | 89 +++++++++++++++++++++++++++++++++
 3 files changed, 92 insertions(+)

diff --git a/arch/parisc/include/asm/traps.h b/arch/parisc/include/asm/traps.h
index 8ecc1f0c0483..d0e090a2c000 100644
--- a/arch/parisc/include/asm/traps.h
+++ b/arch/parisc/include/asm/traps.h
@@ -17,6 +17,7 @@ void die_if_kernel(char *str, struct pt_regs *regs, long err);
 const char *trap_name(unsigned long code);
 void do_page_fault(struct pt_regs *regs, unsigned long code,
 		unsigned long address);
+int handle_nadtlb_fault(struct pt_regs *regs);
 #endif
 
 #endif
diff --git a/arch/parisc/kernel/traps.c b/arch/parisc/kernel/traps.c
index 269b737d2629..bce47e0fb692 100644
--- a/arch/parisc/kernel/traps.c
+++ b/arch/parisc/kernel/traps.c
@@ -661,6 +661,8 @@ void notrace handle_interruption(int code, struct pt_regs *regs)
 			 by hand. Technically we need to emulate:
 			 fdc,fdce,pdc,"fic,4f",prober,probeir,probew, probeiw
 		*/
+		if (code == 17 && handle_nadtlb_fault(regs))
+			return;
 		fault_address = regs->ior;
 		fault_space = regs->isr;
 		break;
diff --git a/arch/parisc/mm/fault.c b/arch/parisc/mm/fault.c
index 716960f5d92e..5faa3cff4738 100644
--- a/arch/parisc/mm/fault.c
+++ b/arch/parisc/mm/fault.c
@@ -424,3 +424,92 @@ void do_page_fault(struct pt_regs *regs, unsigned long code,
 		goto no_context;
 	pagefault_out_of_memory();
 }
+
+/* Handle non-access data TLB miss faults.
+ *
+ * For probe instructions, accesses to userspace are considered allowed
+ * if they lie in a valid VMA and the access type matches. We are not
+ * allowed to handle MM faults here so there may be situations where an
+ * actual access would fail even though a probe was successful.
+ */
+int
+handle_nadtlb_fault(struct pt_regs *regs)
+{
+	unsigned long insn = regs->iir;
+	int breg, treg, xreg, val = 0;
+	struct vm_area_struct *vma, *prev_vma;
+	struct task_struct *tsk;
+	struct mm_struct *mm;
+	unsigned long address;
+	unsigned long acc_type;
+
+	switch (insn & 0x380) {
+	case 0x280:
+		/* FDC instruction */
+		fallthrough;
+	case 0x380:
+		/* PDC and FIC instructions */
+		if (printk_ratelimit()) {
+			pr_warn("BUG: nullifying cache flush/purge instruction\n");
+			show_regs(regs);
+		}
+		if (insn & 0x20) {
+			/* Base modification */
+			breg = (insn >> 21) & 0x1f;
+			xreg = (insn >> 16) & 0x1f;
+			if (breg && xreg)
+				regs->gr[breg] += regs->gr[xreg];
+		}
+		regs->gr[0] |= PSW_N;
+		return 1;
+
+	case 0x180:
+		/* PROBE instruction */
+		treg = insn & 0x1f;
+		if (regs->isr) {
+			tsk = current;
+			mm = tsk->mm;
+			if (mm) {
+				/* Search for VMA */
+				address = regs->ior;
+				mmap_read_lock(mm);
+				vma = find_vma_prev(mm, address, &prev_vma);
+				mmap_read_unlock(mm);
+
+				/*
+				 * Check if access to the VMA is okay.
+				 * We don't allow for stack expansion.
+				 */
+				acc_type = (insn & 0x40) ? VM_WRITE : VM_READ;
+				if (vma
+				    && address >= vma->vm_start
+				    && (vma->vm_flags & acc_type) == acc_type)
+					val = 1;
+			}
+		}
+		if (treg)
+			regs->gr[treg] = val;
+		regs->gr[0] |= PSW_N;
+		return 1;
+
+	case 0x300:
+		/* LPA instruction */
+		if (insn & 0x20) {
+			/* Base modification */
+			breg = (insn >> 21) & 0x1f;
+			xreg = (insn >> 16) & 0x1f;
+			if (breg && xreg)
+				regs->gr[breg] += regs->gr[xreg];
+		}
+		treg = insn & 0x1f;
+		if (treg)
+			regs->gr[treg] = 0;
+		regs->gr[0] |= PSW_N;
+		return 1;
+
+	default:
+		break;
+	}
+
+	return 0;
+}
-- 
2.34.1




  parent reply	other threads:[~2022-04-05 12:19 UTC|newest]

Thread overview: 630+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-04-05  7:24 [PATCH 5.10 000/599] 5.10.110-rc1 review Greg Kroah-Hartman
2022-04-05  7:24 ` [PATCH 5.10 001/599] swiotlb: fix info leak with DMA_FROM_DEVICE Greg Kroah-Hartman
2022-04-05  7:24 ` [PATCH 5.10 002/599] USB: serial: pl2303: add IBM device IDs Greg Kroah-Hartman
2022-04-05  7:24 ` [PATCH 5.10 003/599] USB: serial: simple: add Nokia phone driver Greg Kroah-Hartman
2022-04-05  7:24 ` [PATCH 5.10 004/599] hv: utils: add PTP_1588_CLOCK to Kconfig to fix build Greg Kroah-Hartman
2022-04-05  7:24 ` [PATCH 5.10 005/599] netdevice: add the case if dev is NULL Greg Kroah-Hartman
2022-04-05  7:25 ` [PATCH 5.10 006/599] HID: logitech-dj: add new lightspeed receiver id Greg Kroah-Hartman
2022-04-05  7:25 ` [PATCH 5.10 007/599] xfrm: fix tunnel model fragmentation behavior Greg Kroah-Hartman
2022-04-05  7:25 ` [PATCH 5.10 008/599] ARM: mstar: Select HAVE_ARM_ARCH_TIMER Greg Kroah-Hartman
2022-04-05  7:25 ` [PATCH 5.10 009/599] virtio_console: break out of buf poll on remove Greg Kroah-Hartman
2022-04-05  7:25 ` [PATCH 5.10 010/599] vdpa/mlx5: should verify CTRL_VQ feature exists for MQ Greg Kroah-Hartman
2022-04-05  7:25 ` [PATCH 5.10 011/599] tools/virtio: fix virtio_test execution Greg Kroah-Hartman
2022-04-05  7:25 ` [PATCH 5.10 012/599] ethernet: sun: Free the coherent when failing in probing Greg Kroah-Hartman
2022-04-05  7:25 ` [PATCH 5.10 013/599] gpio: Revert regression in sysfs-gpio (gpiolib.c) Greg Kroah-Hartman
2022-04-05  7:25 ` [PATCH 5.10 014/599] spi: Fix invalid sgs value Greg Kroah-Hartman
2022-04-05  7:25 ` [PATCH 5.10 015/599] net:mcf8390: Use platform_get_irq() to get the interrupt Greg Kroah-Hartman
2022-04-05  7:25 ` [PATCH 5.10 016/599] Revert "gpio: Revert regression in sysfs-gpio (gpiolib.c)" Greg Kroah-Hartman
2022-04-05  7:25 ` [PATCH 5.10 017/599] spi: Fix erroneous sgs value with min_t() Greg Kroah-Hartman
2022-04-05  7:25 ` [PATCH 5.10 018/599] Input: zinitix - do not report shadow fingers Greg Kroah-Hartman
2022-04-05  7:25 ` [PATCH 5.10 019/599] af_key: add __GFP_ZERO flag for compose_sadb_supported in function pfkey_register Greg Kroah-Hartman
2022-04-05  7:25 ` [PATCH 5.10 020/599] net: dsa: microchip: add spi_device_id tables Greg Kroah-Hartman
2022-04-05  7:25 ` [PATCH 5.10 021/599] locking/lockdep: Avoid potential access of invalid memory in lock_class Greg Kroah-Hartman
2022-04-05  7:25 ` [PATCH 5.10 022/599] iommu/iova: Improve 32-bit free space estimate Greg Kroah-Hartman
2022-04-05  7:25 ` [PATCH 5.10 023/599] tpm: fix reference counting for struct tpm_chip Greg Kroah-Hartman
2022-04-05  7:25 ` [PATCH 5.10 024/599] virtio-blk: Use blk_validate_block_size() to validate block size Greg Kroah-Hartman
2022-04-05  7:25 ` [PATCH 5.10 025/599] USB: usb-storage: Fix use of bitfields for hardware data in ene_ub6250.c Greg Kroah-Hartman
2022-04-05  7:25 ` [PATCH 5.10 026/599] xhci: fix garbage USBSTS being logged in some cases Greg Kroah-Hartman
2022-04-05  7:25 ` [PATCH 5.10 027/599] xhci: fix runtime PM imbalance in USB2 resume Greg Kroah-Hartman
2022-04-05  7:25 ` [PATCH 5.10 028/599] xhci: make xhci_handshake timeout for xhci_reset() adjustable Greg Kroah-Hartman
2022-04-05  7:25 ` [PATCH 5.10 029/599] xhci: fix uninitialized string returned by xhci_decode_ctrl_ctx() Greg Kroah-Hartman
2022-04-05  7:25 ` [PATCH 5.10 030/599] mei: me: add Alder Lake N device id Greg Kroah-Hartman
2022-04-05  7:25 ` [PATCH 5.10 031/599] mei: avoid iterator usage outside of list_for_each_entry Greg Kroah-Hartman
2022-04-05  7:25 ` [PATCH 5.10 032/599] coresight: Fix TRCCONFIGR.QE sysfs interface Greg Kroah-Hartman
2022-04-05  7:25 ` [PATCH 5.10 033/599] iio: afe: rescale: use s64 for temporary scale calculations Greg Kroah-Hartman
2022-04-05  7:25 ` [PATCH 5.10 034/599] iio: inkern: apply consumer scale on IIO_VAL_INT cases Greg Kroah-Hartman
2022-04-05  7:25 ` [PATCH 5.10 035/599] iio: inkern: apply consumer scale when no channel scale is available Greg Kroah-Hartman
2022-04-05  7:25 ` [PATCH 5.10 036/599] iio: inkern: make a best effort on offset calculation Greg Kroah-Hartman
2022-04-05  7:25 ` [PATCH 5.10 037/599] greybus: svc: fix an error handling bug in gb_svc_hello() Greg Kroah-Hartman
2022-04-05  7:25 ` [PATCH 5.10 038/599] clk: uniphier: Fix fixed-rate initialization Greg Kroah-Hartman
2022-04-05  7:25 ` [PATCH 5.10 039/599] ptrace: Check PTRACE_O_SUSPEND_SECCOMP permission on PTRACE_SEIZE Greg Kroah-Hartman
2022-04-05  7:25 ` [PATCH 5.10 040/599] KEYS: fix length validation in keyctl_pkey_params_get_2() Greg Kroah-Hartman
2022-04-05  7:25 ` [PATCH 5.10 041/599] Documentation: add link to stable release candidate tree Greg Kroah-Hartman
2022-04-05  7:25 ` [PATCH 5.10 042/599] Documentation: update stable tree link Greg Kroah-Hartman
2022-04-05  7:25 ` [PATCH 5.10 043/599] firmware: stratix10-svc: add missing callback parameter on RSU Greg Kroah-Hartman
2022-04-05  7:25 ` [PATCH 5.10 044/599] HID: intel-ish-hid: Use dma_alloc_coherent for firmware update Greg Kroah-Hartman
2022-04-05  7:25 ` [PATCH 5.10 045/599] SUNRPC: avoid race between mod_timer() and del_timer_sync() Greg Kroah-Hartman
2022-04-05  7:25 ` [PATCH 5.10 046/599] NFSD: prevent underflow in nfssvc_decode_writeargs() Greg Kroah-Hartman
2022-04-05  7:25 ` [PATCH 5.10 047/599] NFSD: prevent integer overflow on 32 bit systems Greg Kroah-Hartman
2022-04-05  7:25 ` [PATCH 5.10 048/599] f2fs: fix to unlock page correctly in error path of is_alive() Greg Kroah-Hartman
2022-04-05  7:25 ` [PATCH 5.10 049/599] f2fs: quota: fix loop condition at f2fs_quota_sync() Greg Kroah-Hartman
2022-04-05  7:25 ` [PATCH 5.10 050/599] f2fs: fix to do sanity check on .cp_pack_total_block_count Greg Kroah-Hartman
2022-04-05  7:25 ` [PATCH 5.10 051/599] remoteproc: Fix count check in rproc_coredump_write() Greg Kroah-Hartman
2022-04-05  7:25 ` [PATCH 5.10 052/599] pinctrl: samsung: drop pin banks references on error paths Greg Kroah-Hartman
2022-04-05  7:25 ` [PATCH 5.10 053/599] spi: mxic: Fix the transmit path Greg Kroah-Hartman
2022-04-05  7:25 ` [PATCH 5.10 054/599] mtd: rawnand: protect access to rawnand devices while in suspend Greg Kroah-Hartman
2022-04-05  7:25 ` [PATCH 5.10 055/599] can: ems_usb: ems_usb_start_xmit(): fix double dev_kfree_skb() in error path Greg Kroah-Hartman
2022-04-05  7:25 ` [PATCH 5.10 056/599] jffs2: fix use-after-free in jffs2_clear_xattr_subsystem Greg Kroah-Hartman
2022-04-05  7:25 ` [PATCH 5.10 057/599] jffs2: fix memory leak in jffs2_do_mount_fs Greg Kroah-Hartman
2022-04-05  7:25 ` [PATCH 5.10 058/599] jffs2: fix memory leak in jffs2_scan_medium Greg Kroah-Hartman
2022-04-05  7:25 ` [PATCH 5.10 059/599] mm/pages_alloc.c: dont create ZONE_MOVABLE beyond the end of a node Greg Kroah-Hartman
2022-04-05  7:25 ` [PATCH 5.10 060/599] mm: invalidate hwpoison page cache page in fault path Greg Kroah-Hartman
2022-04-05  7:25 ` [PATCH 5.10 061/599] mempolicy: mbind_range() set_policy() after vma_merge() Greg Kroah-Hartman
2022-04-05  7:25 ` [PATCH 5.10 062/599] scsi: libsas: Fix sas_ata_qc_issue() handling of NCQ NON DATA commands Greg Kroah-Hartman
2022-04-05  7:25 ` [PATCH 5.10 063/599] qed: display VF trust config Greg Kroah-Hartman
2022-04-05  7:25 ` [PATCH 5.10 064/599] qed: validate and restrict untrusted VFs vlan promisc mode Greg Kroah-Hartman
2022-04-05  7:25 ` [PATCH 5.10 065/599] riscv: Fix fill_callchain return value Greg Kroah-Hartman
2022-04-05  7:26 ` [PATCH 5.10 066/599] riscv: Increase stack size under KASAN Greg Kroah-Hartman
2022-04-05  7:26 ` [PATCH 5.10 067/599] Revert "Input: clear BTN_RIGHT/MIDDLE on buttonpads" Greg Kroah-Hartman
2022-04-05  7:26 ` [PATCH 5.10 068/599] cifs: prevent bad output lengths in smb2_ioctl_query_info() Greg Kroah-Hartman
2022-04-05  7:26 ` [PATCH 5.10 069/599] cifs: fix NULL ptr dereference " Greg Kroah-Hartman
2022-04-05  7:26 ` [PATCH 5.10 070/599] ALSA: cs4236: fix an incorrect NULL check on list iterator Greg Kroah-Hartman
2022-04-05  7:26 ` [PATCH 5.10 071/599] ALSA: hda: Avoid unsol event during RPM suspending Greg Kroah-Hartman
2022-04-05  7:26 ` [PATCH 5.10 072/599] ALSA: pcm: Fix potential AB/BA lock with buffer_mutex and mmap_lock Greg Kroah-Hartman
2022-04-05  7:26 ` [PATCH 5.10 073/599] ALSA: hda/realtek: Fix audio regression on Mi Notebook Pro 2020 Greg Kroah-Hartman
2022-04-05  7:26 ` [PATCH 5.10 074/599] mm: madvise: skip unmapped vma holes passed to process_madvise Greg Kroah-Hartman
2022-04-05  7:26 ` [PATCH 5.10 075/599] mm: madvise: return correct bytes advised with process_madvise Greg Kroah-Hartman
2022-04-05  7:26 ` [PATCH 5.10 076/599] Revert "mm: madvise: skip unmapped vma holes passed to process_madvise" Greg Kroah-Hartman
2022-04-05  7:26 ` [PATCH 5.10 077/599] mm,hwpoison: unmap poisoned page before invalidation Greg Kroah-Hartman
2022-04-05  7:26 ` [PATCH 5.10 078/599] mm/kmemleak: reset tag when compare object pointer Greg Kroah-Hartman
2022-04-05  7:26 ` [PATCH 5.10 079/599] dm integrity: set journal entry unused when shrinking device Greg Kroah-Hartman
2022-04-05  7:26 ` [PATCH 5.10 080/599] drbd: fix potential silent data corruption Greg Kroah-Hartman
2022-04-05  7:26 ` [PATCH 5.10 081/599] can: isotp: sanitize CAN ID checks in isotp_bind() Greg Kroah-Hartman
2022-04-05  7:26 ` [PATCH 5.10 082/599] powerpc/kvm: Fix kvm_use_magic_page Greg Kroah-Hartman
2022-04-05  7:26 ` [PATCH 5.10 083/599] udp: call udp_encap_enable for v6 sockets when enabling encap Greg Kroah-Hartman
2022-04-05  7:26 ` [PATCH 5.10 084/599] arm64: signal: nofpsimd: Do not allocate fp/simd context when not available Greg Kroah-Hartman
2022-04-05  7:26 ` [PATCH 5.10 085/599] arm64: dts: ti: k3-am65: Fix gic-v3 compatible regs Greg Kroah-Hartman
2022-04-05  7:26 ` [PATCH 5.10 086/599] arm64: dts: ti: k3-j721e: " Greg Kroah-Hartman
2022-04-05  7:26 ` [PATCH 5.10 087/599] arm64: dts: ti: k3-j7200: " Greg Kroah-Hartman
2022-04-05  7:26 ` [PATCH 5.10 088/599] ACPI: properties: Consistently return -ENOENT if there are no more references Greg Kroah-Hartman
2022-04-05  7:26 ` [PATCH 5.10 089/599] coredump: Also dump first pages of non-executable ELF libraries Greg Kroah-Hartman
2022-04-05  7:26 ` [PATCH 5.10 090/599] ext4: fix ext4_fc_stats trace point Greg Kroah-Hartman
2022-04-05  7:26 ` [PATCH 5.10 091/599] ext4: fix fs corruption when tring to remove a non-empty directory with IO error Greg Kroah-Hartman
2022-04-05  7:26 ` [PATCH 5.10 092/599] drivers: hamradio: 6pack: fix UAF bug caused by mod_timer() Greg Kroah-Hartman
2022-04-12  6:24   ` xujia (Q)
2022-04-05  7:26 ` [PATCH 5.10 093/599] mailbox: tegra-hsp: Flush whole channel Greg Kroah-Hartman
2022-04-05  7:26 ` [PATCH 5.10 094/599] block: limit request dispatch loop duration Greg Kroah-Hartman
2022-04-05  7:26 ` [PATCH 5.10 095/599] block: dont merge across cgroup boundaries if blkcg is enabled Greg Kroah-Hartman
2022-04-05  7:26 ` [PATCH 5.10 096/599] drm/edid: check basic audio support on CEA extension block Greg Kroah-Hartman
2022-04-05  7:26 ` [PATCH 5.10 097/599] video: fbdev: sm712fb: Fix crash in smtcfb_read() Greg Kroah-Hartman
2022-04-05  7:26 ` [PATCH 5.10 098/599] video: fbdev: atari: Atari 2 bpp (STe) palette bugfix Greg Kroah-Hartman
2022-04-05  7:26 ` [PATCH 5.10 099/599] ARM: dts: at91: sama5d2: Fix PMERRLOC resource size Greg Kroah-Hartman
2022-04-05  7:26 ` [PATCH 5.10 100/599] ARM: dts: exynos: fix UART3 pins configuration in Exynos5250 Greg Kroah-Hartman
2022-04-05  7:26 ` [PATCH 5.10 101/599] ARM: dts: exynos: add missing HDMI supplies on SMDK5250 Greg Kroah-Hartman
2022-04-05  7:26 ` [PATCH 5.10 102/599] ARM: dts: exynos: add missing HDMI supplies on SMDK5420 Greg Kroah-Hartman
2022-04-05  7:26 ` [PATCH 5.10 103/599] mgag200 fix memmapsl configuration in GCTL6 register Greg Kroah-Hartman
2022-04-05  7:26 ` [PATCH 5.10 104/599] carl9170: fix missing bit-wise or operator for tx_params Greg Kroah-Hartman
2022-04-05  7:26 ` [PATCH 5.10 105/599] pstore: Dont use semaphores in always-atomic-context code Greg Kroah-Hartman
2022-04-05  7:26 ` [PATCH 5.10 106/599] thermal: int340x: Increase bitmap size Greg Kroah-Hartman
2022-04-05  7:26 ` [PATCH 5.10 107/599] lib/raid6/test: fix multiple definition linking error Greg Kroah-Hartman
2022-04-05  7:26 ` [PATCH 5.10 108/599] exec: Force single empty string when argv is empty Greg Kroah-Hartman
2022-04-05  7:26 ` [PATCH 5.10 109/599] crypto: rsa-pkcs1pad - only allow with rsa Greg Kroah-Hartman
2022-04-05  7:26 ` [PATCH 5.10 110/599] crypto: rsa-pkcs1pad - correctly get hash from source scatterlist Greg Kroah-Hartman
2022-04-05  7:26 ` [PATCH 5.10 111/599] crypto: rsa-pkcs1pad - restore signature length check Greg Kroah-Hartman
2022-04-05  7:26 ` [PATCH 5.10 112/599] crypto: rsa-pkcs1pad - fix buffer overread in pkcs1pad_verify_complete() Greg Kroah-Hartman
2022-04-05  7:26 ` [PATCH 5.10 113/599] bcache: fixup multiple threads crash Greg Kroah-Hartman
2022-04-05  7:26 ` [PATCH 5.10 114/599] DEC: Limit PMAX memory probing to R3k systems Greg Kroah-Hartman
2022-04-05  7:26 ` [PATCH 5.10 115/599] media: gpio-ir-tx: fix transmit with long spaces on Orange Pi PC Greg Kroah-Hartman
2022-04-05  7:26 ` [PATCH 5.10 116/599] media: davinci: vpif: fix unbalanced runtime PM get Greg Kroah-Hartman
2022-04-05  7:26 ` [PATCH 5.10 117/599] media: davinci: vpif: fix unbalanced runtime PM enable Greg Kroah-Hartman
2022-04-05  7:26 ` [PATCH 5.10 118/599] xtensa: fix stop_machine_cpuslocked call in patch_text Greg Kroah-Hartman
2022-04-05  7:26 ` [PATCH 5.10 119/599] xtensa: fix xtensa_wsr always writing 0 Greg Kroah-Hartman
2022-04-05  7:26 ` [PATCH 5.10 120/599] brcmfmac: firmware: Allocate space for default boardrev in nvram Greg Kroah-Hartman
2022-04-05  7:26 ` [PATCH 5.10 121/599] brcmfmac: pcie: Release firmwares in the brcmf_pcie_setup error path Greg Kroah-Hartman
2022-04-05  7:26 ` [PATCH 5.10 122/599] brcmfmac: pcie: Replace brcmf_pcie_copy_mem_todev with memcpy_toio Greg Kroah-Hartman
2022-04-05  7:26 ` [PATCH 5.10 123/599] brcmfmac: pcie: Fix crashes due to early IRQs Greg Kroah-Hartman
2022-04-05  7:26 ` [PATCH 5.10 124/599] drm/i915/opregion: check port number bounds for SWSCI display power state Greg Kroah-Hartman
2022-04-05  7:26 ` [PATCH 5.10 125/599] drm/i915/gem: add missing boundary check in vm_access Greg Kroah-Hartman
2022-04-05  7:27 ` [PATCH 5.10 126/599] PCI: pciehp: Clear cmd_busy bit in polling mode Greg Kroah-Hartman
2022-04-09  8:13   ` Pavel Machek
2022-04-19 14:13     ` Bjorn Helgaas
2022-05-08 12:31     ` Lukas Wunner
2022-04-05  7:27 ` [PATCH 5.10 127/599] PCI: xgene: Revert "PCI: xgene: Fix IB window setup" Greg Kroah-Hartman
2022-04-05  7:27 ` [PATCH 5.10 128/599] regulator: qcom_smd: fix for_each_child.cocci warnings Greg Kroah-Hartman
2022-04-05  7:27 ` [PATCH 5.10 129/599] selinux: check return value of sel_make_avc_files Greg Kroah-Hartman
2022-04-05  7:27 ` [PATCH 5.10 130/599] hwrng: cavium - Check health status while reading random data Greg Kroah-Hartman
2022-04-05  7:27 ` [PATCH 5.10 131/599] hwrng: cavium - HW_RANDOM_CAVIUM should depend on ARCH_THUNDER Greg Kroah-Hartman
2022-04-05  7:27 ` [PATCH 5.10 132/599] crypto: sun8i-ss - really disable hash on A80 Greg Kroah-Hartman
2022-04-05  7:27 ` [PATCH 5.10 133/599] crypto: authenc - Fix sleep in atomic context in decrypt_tail Greg Kroah-Hartman
2022-04-05  7:27 ` [PATCH 5.10 134/599] crypto: mxs-dcp - Fix scatterlist processing Greg Kroah-Hartman
2022-04-05  7:27 ` [PATCH 5.10 135/599] thermal: int340x: Check for NULL after calling kmemdup() Greg Kroah-Hartman
2022-04-05  7:27 ` [PATCH 5.10 136/599] spi: tegra114: Add missing IRQ check in tegra_spi_probe Greg Kroah-Hartman
2022-04-05  7:27 ` [PATCH 5.10 137/599] arm64/mm: avoid fixmap race condition when create pud mapping Greg Kroah-Hartman
2022-04-05  7:27 ` [PATCH 5.10 138/599] selftests/x86: Add validity check and allow field splitting Greg Kroah-Hartman
2022-04-05  7:27 ` [PATCH 5.10 139/599] crypto: rockchip - ECB does not need IV Greg Kroah-Hartman
2022-04-05  7:27 ` [PATCH 5.10 140/599] audit: log AUDIT_TIME_* records only from rules Greg Kroah-Hartman
2022-04-05  7:27 ` [PATCH 5.10 141/599] EVM: fix the evm= __setup handler return value Greg Kroah-Hartman
2022-04-05  7:27 ` [PATCH 5.10 142/599] crypto: ccree - dont attempt 0 len DMA mappings Greg Kroah-Hartman
2022-04-05  7:27 ` [PATCH 5.10 143/599] spi: pxa2xx-pci: Balance reference count for PCI DMA device Greg Kroah-Hartman
2022-04-05  7:27 ` [PATCH 5.10 144/599] hwmon: (pmbus) Add mutex to regulator ops Greg Kroah-Hartman
2022-04-05  7:27 ` [PATCH 5.10 145/599] hwmon: (sch56xx-common) Replace WDOG_ACTIVE with WDOG_HW_RUNNING Greg Kroah-Hartman
2022-04-05  7:27 ` [PATCH 5.10 146/599] nvme: cleanup __nvme_check_ids Greg Kroah-Hartman
2022-04-05  7:27 ` [PATCH 5.10 147/599] block: dont delete queue kobject before its children Greg Kroah-Hartman
2022-04-05  7:27 ` [PATCH 5.10 148/599] PM: hibernate: fix __setup handler error handling Greg Kroah-Hartman
2022-04-05  7:27 ` [PATCH 5.10 149/599] PM: suspend: fix return value of __setup handler Greg Kroah-Hartman
2022-04-05  7:27 ` [PATCH 5.10 150/599] spi: spi-zynqmp-gqspi: Handle error for dma_set_mask Greg Kroah-Hartman
2022-04-05  7:27 ` [PATCH 5.10 151/599] hwrng: atmel - disable trng on failure path Greg Kroah-Hartman
2022-04-05  7:27 ` [PATCH 5.10 152/599] crypto: sun8i-ss - call finalize with bh disabled Greg Kroah-Hartman
2022-04-05  7:27 ` [PATCH 5.10 153/599] crypto: sun8i-ce " Greg Kroah-Hartman
2022-04-05  7:27 ` [PATCH 5.10 154/599] crypto: amlogic " Greg Kroah-Hartman
2022-04-05  7:27 ` [PATCH 5.10 155/599] crypto: vmx - add missing dependencies Greg Kroah-Hartman
2022-04-05  7:27 ` [PATCH 5.10 156/599] clocksource/drivers/timer-ti-dm: Fix regression from errata i940 fix Greg Kroah-Hartman
2022-04-05  7:27 ` [PATCH 5.10 157/599] clocksource/drivers/exynos_mct: Refactor resources allocation Greg Kroah-Hartman
2022-04-05  7:27 ` [PATCH 5.10 158/599] clocksource/drivers/exynos_mct: Handle DTS with higher number of interrupts Greg Kroah-Hartman
2022-04-05  7:27 ` [PATCH 5.10 159/599] clocksource/drivers/timer-microchip-pit64b: Use notrace Greg Kroah-Hartman
2022-04-05  7:27 ` [PATCH 5.10 160/599] clocksource/drivers/timer-of: Check return value of of_iomap in timer_of_base_init() Greg Kroah-Hartman
2022-04-05  7:27 ` [PATCH 5.10 161/599] ACPI: APEI: fix return value of __setup handlers Greg Kroah-Hartman
2022-04-05  7:27 ` [PATCH 5.10 162/599] crypto: ccp - ccp_dmaengine_unregister release dma channels Greg Kroah-Hartman
2022-04-05  7:27 ` [PATCH 5.10 163/599] crypto: ccree - Fix use after free in cc_cipher_exit() Greg Kroah-Hartman
2022-04-05  7:27 ` [PATCH 5.10 164/599] vfio: platform: simplify device removal Greg Kroah-Hartman
2022-04-05  7:27 ` [PATCH 5.10 165/599] amba: Make the remove callback return void Greg Kroah-Hartman
2022-04-05  7:27 ` [PATCH 5.10 166/599] hwrng: nomadik - Change clk_disable to clk_disable_unprepare Greg Kroah-Hartman
2022-04-05  7:27 ` [PATCH 5.10 167/599] hwmon: (pmbus) Add Vin unit off handling Greg Kroah-Hartman
2022-04-05  7:27 ` [PATCH 5.10 168/599] clocksource: acpi_pm: fix return value of __setup handler Greg Kroah-Hartman
2022-04-05  7:27 ` [PATCH 5.10 169/599] io_uring: terminate manual loop iterator loop correctly for non-vecs Greg Kroah-Hartman
2022-04-05  7:27 ` [PATCH 5.10 170/599] watch_queue: Fix NULL dereference in error cleanup Greg Kroah-Hartman
2022-04-05  7:27 ` [PATCH 5.10 171/599] watch_queue: Actually free the watch Greg Kroah-Hartman
2022-04-05  7:27 ` [PATCH 5.10 172/599] f2fs: fix to enable ATGC correctly via gc_idle sysfs interface Greg Kroah-Hartman
2022-04-05  7:27 ` [PATCH 5.10 173/599] sched/debug: Remove mpol_get/put and task_lock/unlock from sched_show_numa Greg Kroah-Hartman
2022-04-05  7:27 ` [PATCH 5.10 174/599] sched/core: Export pelt_thermal_tp Greg Kroah-Hartman
2022-04-05  7:27 ` [PATCH 5.10 175/599] rseq: Optimise rseq_get_rseq_cs() and clear_rseq_cs() Greg Kroah-Hartman
2022-04-05  7:27 ` [PATCH 5.10 176/599] rseq: Remove broken uapi field layout on 32-bit little endian Greg Kroah-Hartman
2022-04-05  7:27 ` [PATCH 5.10 177/599] perf/core: Fix address filter parser for multiple filters Greg Kroah-Hartman
2022-04-05  7:27 ` [PATCH 5.10 178/599] perf/x86/intel/pt: Fix address filter config for 32-bit kernel Greg Kroah-Hartman
2022-04-05  7:27 ` [PATCH 5.10 179/599] f2fs: fix missing free nid in f2fs_handle_failed_inode Greg Kroah-Hartman
2022-04-05  7:27 ` [PATCH 5.10 180/599] nfsd: more robust allocation failure handling in nfsd_file_cache_init Greg Kroah-Hartman
2022-04-05  7:27 ` [PATCH 5.10 181/599] f2fs: fix to avoid potential deadlock Greg Kroah-Hartman
2022-04-05  7:27 ` [PATCH 5.10 182/599] btrfs: fix unexpected error path when reflinking an inline extent Greg Kroah-Hartman
2022-04-05  7:27 ` [PATCH 5.10 183/599] f2fs: compress: remove unneeded read when rewrite whole cluster Greg Kroah-Hartman
2022-04-05  7:27 ` [PATCH 5.10 184/599] f2fs: fix compressed file start atomic write may cause data corruption Greg Kroah-Hartman
2022-04-05  7:27 ` [PATCH 5.10 185/599] selftests, x86: fix how check_cc.sh is being invoked Greg Kroah-Hartman
2022-04-05  7:28 ` [PATCH 5.10 186/599] kunit: make kunit_test_timeout compatible with comment Greg Kroah-Hartman
2022-04-05  7:28 ` [PATCH 5.10 187/599] media: staging: media: zoran: fix usage of vb2_dma_contig_set_max_seg_size Greg Kroah-Hartman
2022-04-05  7:28 ` [PATCH 5.10 188/599] media: v4l2-mem2mem: Apply DST_QUEUE_OFF_BASE on MMAP buffers across ioctls Greg Kroah-Hartman
2022-04-05  7:28 ` [PATCH 5.10 189/599] media: mtk-vcodec: potential dereference of null pointer Greg Kroah-Hartman
2022-04-05  7:28 ` [PATCH 5.10 190/599] media: bttv: fix WARNING regression on tunerless devices Greg Kroah-Hartman
2022-04-05  7:28 ` [PATCH 5.10 191/599] ASoC: xilinx: xlnx_formatter_pcm: Handle sysclk setting Greg Kroah-Hartman
2022-04-05  7:28 ` [PATCH 5.10 192/599] ASoC: generic: simple-card-utils: remove useless assignment Greg Kroah-Hartman
2022-04-05  7:28 ` [PATCH 5.10 193/599] media: coda: Fix missing put_device() call in coda_get_vdoa_data Greg Kroah-Hartman
2022-04-05  7:28 ` [PATCH 5.10 194/599] media: meson: vdec: potential dereference of null pointer Greg Kroah-Hartman
2022-04-05  7:28 ` [PATCH 5.10 195/599] media: hantro: Fix overfill bottom register field name Greg Kroah-Hartman
2022-04-05  7:28 ` [PATCH 5.10 196/599] media: aspeed: Correct value for h-total-pixels Greg Kroah-Hartman
2022-04-05  7:28 ` [PATCH 5.10 197/599] video: fbdev: matroxfb: set maxvram of vbG200eW to the same as vbG200 to avoid black screen Greg Kroah-Hartman
2022-04-05  7:28 ` [PATCH 5.10 198/599] video: fbdev: controlfb: Fix set but not used warnings Greg Kroah-Hartman
2022-04-05  7:28 ` [PATCH 5.10 199/599] video: fbdev: controlfb: Fix COMPILE_TEST build Greg Kroah-Hartman
2022-04-05  7:28 ` [PATCH 5.10 200/599] video: fbdev: smscufx: Fix null-ptr-deref in ufx_usb_probe() Greg Kroah-Hartman
2022-04-05  7:28 ` [PATCH 5.10 201/599] video: fbdev: atmel_lcdfb: fix an error code in atmel_lcdfb_probe() Greg Kroah-Hartman
2022-04-05  7:28 ` [PATCH 5.10 202/599] video: fbdev: fbcvt.c: fix printing in fb_cvt_print_name() Greg Kroah-Hartman
2022-04-05  7:28 ` [PATCH 5.10 203/599] firmware: qcom: scm: Remove reassignment to desc following initializer Greg Kroah-Hartman
2022-04-05  7:28 ` [PATCH 5.10 204/599] ARM: dts: qcom: ipq4019: fix sleep clock Greg Kroah-Hartman
2022-04-05  7:28 ` [PATCH 5.10 205/599] soc: qcom: rpmpd: Check for null return of devm_kcalloc Greg Kroah-Hartman
2022-04-05  7:28 ` [PATCH 5.10 206/599] soc: qcom: ocmem: Fix missing put_device() call in of_get_ocmem Greg Kroah-Hartman
2022-04-05  7:28 ` [PATCH 5.10 207/599] soc: qcom: aoss: remove spurious IRQF_ONESHOT flags Greg Kroah-Hartman
2022-04-05  7:28 ` [PATCH 5.10 208/599] arm64: dts: qcom: sdm845: fix microphone bias properties and values Greg Kroah-Hartman
2022-04-05  7:28 ` [PATCH 5.10 209/599] arm64: dts: qcom: sm8150: Correct TCS configuration for apps rsc Greg Kroah-Hartman
2022-04-05  7:28 ` [PATCH 5.10 210/599] firmware: ti_sci: Fix compilation failure when CONFIG_TI_SCI_PROTOCOL is not defined Greg Kroah-Hartman
2022-04-05  7:28 ` [PATCH 5.10 211/599] soc: ti: wkup_m3_ipc: Fix IRQ check in wkup_m3_ipc_probe Greg Kroah-Hartman
2022-04-05  7:28 ` [PATCH 5.10 212/599] ARM: dts: sun8i: v3s: Move the csi1 block to follow address order Greg Kroah-Hartman
2022-04-05  7:28 ` [PATCH 5.10 213/599] ARM: ftrace: ensure that ADR takes the Thumb bit into account Greg Kroah-Hartman
2022-04-05  7:28 ` [PATCH 5.10 214/599] ARM: dts: imx: Add missing LVDS decoder on M53Menlo Greg Kroah-Hartman
2022-04-05  7:28 ` [PATCH 5.10 215/599] media: video/hdmi: handle short reads of hdmi info frame Greg Kroah-Hartman
2022-04-05  7:28 ` [PATCH 5.10 216/599] media: em28xx: initialize refcount before kref_get Greg Kroah-Hartman
2022-04-05  7:28 ` [PATCH 5.10 217/599] media: usb: go7007: s2250-board: fix leak in probe() Greg Kroah-Hartman
2022-04-05  7:28 ` [PATCH 5.10 218/599] media: cedrus: H265: Fix neighbour info buffer size Greg Kroah-Hartman
2022-04-05  7:28 ` [PATCH 5.10 219/599] media: cedrus: h264: " Greg Kroah-Hartman
2022-04-05  7:28 ` [PATCH 5.10 220/599] ASoC: codecs: wcd934x: fix return value of wcd934x_rx_hph_mode_put Greg Kroah-Hartman
2022-04-05  7:28 ` [PATCH 5.10 221/599] uaccess: fix nios2 and microblaze get_user_8() Greg Kroah-Hartman
2022-04-05  7:28 ` [PATCH 5.10 222/599] ASoC: rt5663: check the return value of devm_kzalloc() in rt5663_parse_dp() Greg Kroah-Hartman
2022-04-05  7:28 ` [PATCH 5.10 223/599] ASoC: ti: davinci-i2s: Add check for clk_enable() Greg Kroah-Hartman
2022-04-05  7:28 ` [PATCH 5.10 224/599] ALSA: spi: " Greg Kroah-Hartman
2022-04-05  7:28 ` [PATCH 5.10 225/599] arm64: dts: ns2: Fix spi-cpol and spi-cpha property Greg Kroah-Hartman
2022-04-05  7:28 ` [PATCH 5.10 226/599] arm64: dts: broadcom: Fix sata nodename Greg Kroah-Hartman
2022-04-05  7:28 ` [PATCH 5.10 227/599] printk: fix return value of printk.devkmsg __setup handler Greg Kroah-Hartman
2022-04-05  7:28 ` [PATCH 5.10 228/599] ASoC: mxs-saif: Handle errors for clk_enable Greg Kroah-Hartman
2022-04-05  7:28 ` [PATCH 5.10 229/599] ASoC: atmel_ssc_dai: " Greg Kroah-Hartman
2022-04-05  7:28 ` [PATCH 5.10 230/599] ASoC: dwc-i2s: " Greg Kroah-Hartman
2022-04-05  7:28 ` [PATCH 5.10 231/599] ASoC: soc-compress: prevent the potentially use of null pointer Greg Kroah-Hartman
2022-04-05  7:28 ` [PATCH 5.10 232/599] memory: emif: Add check for setup_interrupts Greg Kroah-Hartman
2022-04-05  7:28 ` [PATCH 5.10 233/599] memory: emif: check the pointer temp in get_device_details() Greg Kroah-Hartman
2022-04-05  7:28 ` [PATCH 5.10 234/599] ALSA: firewire-lib: fix uninitialized flag for AV/C deferred transaction Greg Kroah-Hartman
2022-04-05  7:28 ` [PATCH 5.10 235/599] arm64: dts: rockchip: Fix SDIO regulator supply properties on rk3399-firefly Greg Kroah-Hartman
2022-04-05  7:28 ` [PATCH 5.10 236/599] m68k: coldfire/device.c: only build for MCF_EDMA when h/w macros are defined Greg Kroah-Hartman
2022-04-05  7:28 ` [PATCH 5.10 237/599] media: stk1160: If start stream fails, return buffers with VB2_BUF_STATE_QUEUED Greg Kroah-Hartman
2022-04-05  7:28 ` [PATCH 5.10 238/599] media: vidtv: Check for null return of vzalloc Greg Kroah-Hartman
2022-04-05  7:28 ` [PATCH 5.10 239/599] ASoC: atmel: Add missing of_node_put() in at91sam9g20ek_audio_probe Greg Kroah-Hartman
2022-04-05  7:28 ` [PATCH 5.10 240/599] ASoC: wm8350: Handle error for wm8350_register_irq Greg Kroah-Hartman
2022-04-05  7:28 ` [PATCH 5.10 241/599] ASoC: fsi: Add check for clk_enable Greg Kroah-Hartman
2022-04-05  7:28 ` [PATCH 5.10 242/599] video: fbdev: omapfb: Add missing of_node_put() in dvic_probe_of Greg Kroah-Hartman
2022-04-05  7:28 ` [PATCH 5.10 243/599] media: saa7134: convert list_for_each to entry variant Greg Kroah-Hartman
2022-04-05  7:28 ` [PATCH 5.10 244/599] media: saa7134: fix incorrect use to determine if list is empty Greg Kroah-Hartman
2022-04-05  7:28 ` [PATCH 5.10 245/599] ivtv: fix incorrect device_caps for ivtvfb Greg Kroah-Hartman
2022-04-05  7:29 ` [PATCH 5.10 246/599] ASoC: rockchip: i2s: Use devm_platform_get_and_ioremap_resource() Greg Kroah-Hartman
2022-04-05  7:29 ` [PATCH 5.10 247/599] ASoC: rockchip: i2s: Fix missing clk_disable_unprepare() in rockchip_i2s_probe Greg Kroah-Hartman
2022-04-05  7:29 ` [PATCH 5.10 248/599] ASoC: SOF: Add missing of_node_put() in imx8m_probe Greg Kroah-Hartman
2022-04-05  7:29 ` [PATCH 5.10 249/599] ASoC: dmaengine: do not use a NULL prepare_slave_config() callback Greg Kroah-Hartman
2022-04-05  7:29 ` [PATCH 5.10 250/599] ASoC: mxs: Fix error handling in mxs_sgtl5000_probe Greg Kroah-Hartman
2022-04-05  7:29 ` [PATCH 5.10 251/599] ASoC: fsl_spdif: Disable TX clock when stop Greg Kroah-Hartman
2022-04-05  7:29 ` [PATCH 5.10 252/599] ASoC: imx-es8328: Fix error return code in imx_es8328_probe() Greg Kroah-Hartman
2022-04-05  7:29 ` [PATCH 5.10 253/599] ASoC: msm8916-wcd-digital: Fix missing clk_disable_unprepare() in msm8916_wcd_digital_probe Greg Kroah-Hartman
2022-04-05  7:29 ` [PATCH 5.10 254/599] mmc: davinci_mmc: Handle error for clk_enable Greg Kroah-Hartman
2022-04-05  7:29 ` [PATCH 5.10 255/599] ASoC: atmel: sam9x5_wm8731: use devm_snd_soc_register_card() Greg Kroah-Hartman
2022-04-05  7:29 ` [PATCH 5.10 256/599] ASoC: atmel: Fix error handling in sam9x5_wm8731_driver_probe Greg Kroah-Hartman
2022-04-05  7:29 ` [PATCH 5.10 257/599] ASoC: msm8916-wcd-analog: Fix error handling in pm8916_wcd_analog_spmi_probe Greg Kroah-Hartman
2022-04-05  7:29 ` [PATCH 5.10 258/599] ASoC: codecs: wcd934x: Add missing of_node_put() in wcd934x_codec_parse_data Greg Kroah-Hartman
2022-04-05  7:29 ` [PATCH 5.10 259/599] ARM: configs: multi_v5_defconfig: re-enable CONFIG_V4L_PLATFORM_DRIVERS Greg Kroah-Hartman
2022-04-05  7:29 ` [PATCH 5.10 260/599] drm/meson: osd_afbcd: Add an exit callback to struct meson_afbcd_ops Greg Kroah-Hartman
2022-04-05  7:29 ` [PATCH 5.10 261/599] drm/bridge: Fix free wrong object in sii8620_init_rcp_input_dev Greg Kroah-Hartman
2022-04-05  7:29 ` [PATCH 5.10 262/599] drm/bridge: Add missing pm_runtime_disable() in __dw_mipi_dsi_probe Greg Kroah-Hartman
2022-04-05  7:29 ` [PATCH 5.10 263/599] drm/bridge: nwl-dsi: Fix PM disable depth imbalance in nwl_dsi_probe Greg Kroah-Hartman
2022-04-05  7:29 ` [PATCH 5.10 264/599] drm: bridge: adv7511: Fix ADV7535 HPD enablement Greg Kroah-Hartman
2022-04-05  7:29 ` [PATCH 5.10 265/599] ath10k: fix memory overwrite of the WoWLAN wakeup packet pattern Greg Kroah-Hartman
2022-04-05  7:29 ` [PATCH 5.10 266/599] drm/panfrost: Check for error num after setting mask Greg Kroah-Hartman
2022-04-05  7:29 ` [PATCH 5.10 267/599] libbpf: Fix possible NULL pointer dereference when destroying skeleton Greg Kroah-Hartman
2022-04-05  7:29 ` [PATCH 5.10 268/599] udmabuf: validate ubuf->pagecount Greg Kroah-Hartman
2022-04-05  7:29 ` [PATCH 5.10 269/599] Bluetooth: hci_serdev: call init_rwsem() before p->open() Greg Kroah-Hartman
2022-04-05  7:29 ` [PATCH 5.10 270/599] mtd: onenand: Check for error irq Greg Kroah-Hartman
2022-04-05  7:29 ` [PATCH 5.10 271/599] mtd: rawnand: gpmi: fix controller timings setting Greg Kroah-Hartman
2022-04-05  7:29 ` [PATCH 5.10 272/599] drm/edid: Dont clear formats if using deep color Greg Kroah-Hartman
2022-04-05  7:29 ` [PATCH 5.10 273/599] ionic: fix type complaint in ionic_dev_cmd_clean() Greg Kroah-Hartman
2022-04-05  7:29 ` [PATCH 5.10 274/599] drm/nouveau/acr: Fix undefined behavior in nvkm_acr_hsfw_load_bl() Greg Kroah-Hartman
2022-04-05  7:29 ` [PATCH 5.10 275/599] drm/amd/display: Fix a NULL pointer dereference in amdgpu_dm_connector_add_common_modes() Greg Kroah-Hartman
2022-04-05  7:29 ` [PATCH 5.10 276/599] drm/amd/pm: return -ENOTSUPP if there is no get_dpm_ultimate_freq function Greg Kroah-Hartman
2022-04-05  7:29 ` [PATCH 5.10 277/599] ath9k_htc: fix uninit value bugs Greg Kroah-Hartman
2022-04-05  7:29 ` [PATCH 5.10 278/599] RDMA/core: Set MR type in ib_reg_user_mr Greg Kroah-Hartman
2022-04-05  7:29 ` [PATCH 5.10 279/599] KVM: PPC: Fix vmx/vsx mixup in mmio emulation Greg Kroah-Hartman
2022-04-05  7:29 ` [PATCH 5.10 280/599] i40e: dont reserve excessive XDP_PACKET_HEADROOM on XSK Rx to skb Greg Kroah-Hartman
2022-04-05  7:29 ` [PATCH 5.10 281/599] i40e: respect metadata " Greg Kroah-Hartman
2022-04-05  7:29 ` [PATCH 5.10 282/599] power: reset: gemini-poweroff: Fix IRQ check in gemini_poweroff_probe Greg Kroah-Hartman
2022-04-05  7:29 ` [PATCH 5.10 283/599] ray_cs: Check ioremap return value Greg Kroah-Hartman
2022-04-05  7:29 ` [PATCH 5.10 284/599] powerpc: dts: t1040rdb: fix ports names for Seville Ethernet switch Greg Kroah-Hartman
2022-04-05  7:29 ` [PATCH 5.10 285/599] KVM: PPC: Book3S HV: Check return value of kvmppc_radix_init Greg Kroah-Hartman
2022-04-05  7:29 ` [PATCH 5.10 286/599] powerpc/perf: Dont use perf_hw_context for trace IMC PMU Greg Kroah-Hartman
2022-04-05  7:29 ` [PATCH 5.10 287/599] mt76: mt7915: use proper aid value in mt7915_mcu_wtbl_generic_tlv in sta mode Greg Kroah-Hartman
2022-04-05  7:29 ` [PATCH 5.10 288/599] mt76: mt7915: use proper aid value in mt7915_mcu_sta_basic_tlv Greg Kroah-Hartman
2022-04-05  7:29 ` [PATCH 5.10 289/599] mt76: mt7603: check sta_rates pointer in mt7603_sta_rate_tbl_update Greg Kroah-Hartman
2022-04-05  7:29 ` [PATCH 5.10 290/599] mt76: mt7615: check sta_rates pointer in mt7615_sta_rate_tbl_update Greg Kroah-Hartman
2022-04-05  7:29 ` [PATCH 5.10 291/599] net: dsa: mv88e6xxx: Enable port policy support on 6097 Greg Kroah-Hartman
2022-04-05  7:29 ` [PATCH 5.10 292/599] scripts/dtc: Call pkg-config POSIXly correct Greg Kroah-Hartman
2022-04-05  7:29 ` [PATCH 5.10 293/599] livepatch: Fix build failure on 32 bits processors Greg Kroah-Hartman
2022-04-05  7:29 ` [PATCH 5.10 294/599] PCI: aardvark: Fix reading PCI_EXP_RTSTA_PME bit on emulated bridge Greg Kroah-Hartman
2022-04-05  7:29 ` [PATCH 5.10 295/599] drm/bridge: dw-hdmi: use safe format when first in bridge chain Greg Kroah-Hartman
2022-04-05  7:29 ` [PATCH 5.10 296/599] power: supply: ab8500: Fix memory leak in ab8500_fg_sysfs_init Greg Kroah-Hartman
2022-04-05  7:29 ` [PATCH 5.10 297/599] HID: i2c-hid: fix GET/SET_REPORT for unnumbered reports Greg Kroah-Hartman
2022-04-05  7:29 ` [PATCH 5.10 298/599] iommu/ipmmu-vmsa: Check for error num after setting mask Greg Kroah-Hartman
2022-04-05  7:29 ` [PATCH 5.10 299/599] drm/amd/pm: enable pm sysfs write for one VF mode Greg Kroah-Hartman
2022-04-05  7:29 ` [PATCH 5.10 300/599] drm/amd/display: Add affected crtcs to atomic state for dsc mst unplug Greg Kroah-Hartman
2022-04-05  7:29 ` [PATCH 5.10 301/599] IB/cma: Allow XRC INI QPs to set their local ACK timeout Greg Kroah-Hartman
2022-04-05  7:29 ` [PATCH 5.10 302/599] dax: make sure inodes are flushed before destroy cache Greg Kroah-Hartman
2022-04-05  7:29 ` [PATCH 5.10 303/599] iwlwifi: Fix -EIO error code that is never returned Greg Kroah-Hartman
2022-04-05  7:29 ` [PATCH 5.10 304/599] iwlwifi: mvm: Fix an error code in iwl_mvm_up() Greg Kroah-Hartman
2022-04-05  7:29 ` [PATCH 5.10 305/599] drm/msm/dp: populate connector of struct dp_panel Greg Kroah-Hartman
2022-04-05  7:30 ` [PATCH 5.10 306/599] drm/msm/dpu: add DSPP blocks teardown Greg Kroah-Hartman
2022-04-05  7:30 ` [PATCH 5.10 307/599] drm/msm/dpu: fix dp audio condition Greg Kroah-Hartman
2022-04-05  7:30 ` [PATCH 5.10 308/599] dm crypt: fix get_key_size compiler warning if !CONFIG_KEYS Greg Kroah-Hartman
2022-04-05  7:30 ` [PATCH 5.10 309/599] scsi: pm8001: Fix command initialization in pm80XX_send_read_log() Greg Kroah-Hartman
2022-04-05  7:30 ` [PATCH 5.10 310/599] scsi: pm8001: Fix command initialization in pm8001_chip_ssp_tm_req() Greg Kroah-Hartman
2022-04-05  7:30 ` [PATCH 5.10 311/599] scsi: pm8001: Fix payload initialization in pm80xx_set_thermal_config() Greg Kroah-Hartman
2022-04-05  7:30 ` [PATCH 5.10 312/599] scsi: pm8001: Fix le32 values handling in pm80xx_set_sas_protocol_timer_config() Greg Kroah-Hartman
2022-04-05  7:30 ` [PATCH 5.10 313/599] scsi: pm8001: Fix payload initialization in pm80xx_encrypt_update() Greg Kroah-Hartman
2022-04-05  7:30 ` [PATCH 5.10 314/599] scsi: pm8001: Fix le32 values handling in pm80xx_chip_ssp_io_req() Greg Kroah-Hartman
2022-04-05  7:30 ` [PATCH 5.10 315/599] scsi: pm8001: Fix le32 values handling in pm80xx_chip_sata_req() Greg Kroah-Hartman
2022-04-05  7:30 ` [PATCH 5.10 316/599] scsi: pm8001: Fix NCQ NON DATA command task initialization Greg Kroah-Hartman
2022-04-05  7:30 ` [PATCH 5.10 317/599] scsi: pm8001: Fix NCQ NON DATA command completion handling Greg Kroah-Hartman
2022-04-05  7:30 ` [PATCH 5.10 318/599] scsi: pm8001: Fix abort all task initialization Greg Kroah-Hartman
2022-04-05  7:30 ` [PATCH 5.10 319/599] RDMA/mlx5: Fix the flow of a miss in the allocation of a cache ODP MR Greg Kroah-Hartman
2022-04-05  7:30 ` [PATCH 5.10 320/599] drm/amd/display: Remove vupdate_int_entry definition Greg Kroah-Hartman
2022-04-05  7:30 ` [PATCH 5.10 321/599] TOMOYO: fix __setup handlers return values Greg Kroah-Hartman
2022-04-05  7:30 ` [PATCH 5.10 322/599] ext2: correct max file size computing Greg Kroah-Hartman
2022-04-05  7:30 ` [PATCH 5.10 323/599] drm/tegra: Fix reference leak in tegra_dsi_ganged_probe Greg Kroah-Hartman
2022-04-05  7:30 ` [PATCH 5.10 324/599] power: supply: bq24190_charger: Fix bq24190_vbus_is_enabled() wrong false return Greg Kroah-Hartman
2022-04-05  7:30 ` [PATCH 5.10 325/599] scsi: hisi_sas: Change permission of parameter prot_mask Greg Kroah-Hartman
2022-04-05  7:30 ` [PATCH 5.10 326/599] drm/bridge: cdns-dsi: Make sure to to create proper aliases for dt Greg Kroah-Hartman
2022-04-05  7:30 ` [PATCH 5.10 327/599] bpf, arm64: Call build_prologue() first in first JIT pass Greg Kroah-Hartman
2022-04-05  7:30 ` [PATCH 5.10 328/599] bpf, arm64: Feed byte-offset into bpf line info Greg Kroah-Hartman
2022-04-05  7:30 ` [PATCH 5.10 329/599] gpu: host1x: Fix a memory leak in host1x_remove() Greg Kroah-Hartman
2022-04-05  7:30 ` [PATCH 5.10 330/599] libbpf: Skip forward declaration when counting duplicated type names Greg Kroah-Hartman
2022-04-05  7:30 ` [PATCH 5.10 331/599] powerpc/mm/numa: skip NUMA_NO_NODE onlining in parse_numa_properties() Greg Kroah-Hartman
2022-04-05  7:30 ` [PATCH 5.10 332/599] powerpc/Makefile: Dont pass -mcpu=powerpc64 when building 32-bit Greg Kroah-Hartman
2022-04-05  7:30 ` [PATCH 5.10 333/599] KVM: x86: Fix emulation in writing cr8 Greg Kroah-Hartman
2022-04-05  7:30 ` [PATCH 5.10 334/599] KVM: x86/emulator: Defer not-present segment check in __load_segment_descriptor() Greg Kroah-Hartman
2022-04-05  7:30 ` [PATCH 5.10 335/599] hv_balloon: rate-limit "Unhandled message" warning Greg Kroah-Hartman
2022-04-05  7:30 ` [PATCH 5.10 336/599] i2c: xiic: Make bus names unique Greg Kroah-Hartman
2022-04-05  7:30 ` [PATCH 5.10 337/599] power: supply: wm8350-power: Handle error for wm8350_register_irq Greg Kroah-Hartman
2022-04-05  7:30 ` [PATCH 5.10 338/599] power: supply: wm8350-power: Add missing free in free_charger_irq Greg Kroah-Hartman
2022-04-05  7:30 ` [PATCH 5.10 339/599] IB/hfi1: Allow larger MTU without AIP Greg Kroah-Hartman
2022-04-05  7:30 ` [PATCH 5.10 340/599] PCI: Reduce warnings on possible RW1C corruption Greg Kroah-Hartman
2022-04-05  7:30 ` [PATCH 5.10 341/599] net: axienet: fix RX ring refill allocation failure handling Greg Kroah-Hartman
2022-04-05  7:30 ` [PATCH 5.10 342/599] mips: DEC: honor CONFIG_MIPS_FP_SUPPORT=n Greg Kroah-Hartman
2022-04-05  7:30 ` [PATCH 5.10 343/599] powerpc/sysdev: fix incorrect use to determine if list is empty Greg Kroah-Hartman
2022-04-05  7:30 ` [PATCH 5.10 344/599] mfd: mc13xxx: Add check for mc13xxx_irq_request Greg Kroah-Hartman
2022-04-05  7:30 ` [PATCH 5.10 345/599] libbpf: Unmap rings when umem deleted Greg Kroah-Hartman
2022-04-05  7:30 ` [PATCH 5.10 346/599] selftests/bpf: Make test_lwt_ip_encap more stable and faster Greg Kroah-Hartman
2022-04-05  7:30 ` [PATCH 5.10 347/599] platform/x86: huawei-wmi: check the return value of device_create_file() Greg Kroah-Hartman
2022-04-05  7:30 ` [PATCH 5.10 348/599] powerpc: 8xx: fix a return value error in mpc8xx_pic_init Greg Kroah-Hartman
2022-04-05  7:30 ` [PATCH 5.10 349/599] vxcan: enable local echo for sent CAN frames Greg Kroah-Hartman
2022-04-05  7:30 ` [PATCH 5.10 350/599] ath10k: Fix error handling in ath10k_setup_msa_resources Greg Kroah-Hartman
2022-04-05  7:30 ` [PATCH 5.10 351/599] mips: cdmm: Fix refcount leak in mips_cdmm_phys_base Greg Kroah-Hartman
2022-04-05  7:30 ` [PATCH 5.10 352/599] MIPS: RB532: fix return value of __setup handler Greg Kroah-Hartman
2022-04-05  7:30 ` [PATCH 5.10 353/599] MIPS: pgalloc: fix memory leak caused by pgd_free() Greg Kroah-Hartman
2022-04-05  7:30 ` [PATCH 5.10 354/599] mtd: rawnand: atmel: fix refcount issue in atmel_nand_controller_init Greg Kroah-Hartman
2022-04-05  7:30 ` [PATCH 5.10 355/599] RDMA/mlx5: Fix memory leak in error flow for subscribe event routine Greg Kroah-Hartman
2022-04-05  7:30 ` [PATCH 5.10 356/599] bpf, sockmap: Fix memleak in tcp_bpf_sendmsg while sk msg is full Greg Kroah-Hartman
2022-04-05  7:30 ` [PATCH 5.10 357/599] bpf, sockmap: Fix more uncharged while msg has more_data Greg Kroah-Hartman
2022-04-05  7:30 ` [PATCH 5.10 358/599] bpf, sockmap: Fix double uncharge the mem of sk_msg Greg Kroah-Hartman
2022-04-05  7:30 ` [PATCH 5.10 359/599] samples/bpf, xdpsock: Fix race when running for fix duration of time Greg Kroah-Hartman
2022-04-05  7:30 ` [PATCH 5.10 360/599] USB: storage: ums-realtek: fix error code in rts51x_read_mem() Greg Kroah-Hartman
2022-04-05  7:30 ` [PATCH 5.10 361/599] can: isotp: return -EADDRNOTAVAIL when reading from unbound socket Greg Kroah-Hartman
2022-04-05  7:30 ` [PATCH 5.10 362/599] can: isotp: support MSG_TRUNC flag when reading from socket Greg Kroah-Hartman
2022-04-05  7:30 ` [PATCH 5.10 363/599] bareudp: use ipv6_mod_enabled to check if IPv6 enabled Greg Kroah-Hartman
2022-04-05  7:30 ` [PATCH 5.10 364/599] selftests/bpf: Fix error reporting from sock_fields programs Greg Kroah-Hartman
2022-04-05  7:30 ` [PATCH 5.10 365/599] Bluetooth: call hci_le_conn_failed with hdev lock in hci_le_conn_failed Greg Kroah-Hartman
2022-04-05  7:31 ` [PATCH 5.10 366/599] Bluetooth: btmtksdio: Fix kernel oops in btmtksdio_interrupt Greg Kroah-Hartman
2022-04-05  7:31 ` [PATCH 5.10 367/599] ipv4: Fix route lookups when handling ICMP redirects and PMTU updates Greg Kroah-Hartman
2022-04-05  7:31 ` [PATCH 5.10 368/599] af_netlink: Fix shift out of bounds in group mask calculation Greg Kroah-Hartman
2022-04-05  7:31 ` [PATCH 5.10 369/599] i2c: meson: Fix wrong speed use from probe Greg Kroah-Hartman
2022-04-05  7:31 ` [PATCH 5.10 370/599] i2c: mux: demux-pinctrl: do not deactivate a master that is not active Greg Kroah-Hartman
2022-04-05  7:31 ` [PATCH 5.10 371/599] selftests/bpf/test_lirc_mode2.sh: Exit with proper code Greg Kroah-Hartman
2022-04-05  7:31 ` [PATCH 5.10 372/599] PCI: Avoid broken MSI on SB600 USB devices Greg Kroah-Hartman
2022-04-05  7:31 ` [PATCH 5.10 373/599] net: bcmgenet: Use stronger register read/writes to assure ordering Greg Kroah-Hartman
2022-04-05  7:31 ` [PATCH 5.10 374/599] tcp: ensure PMTU updates are processed during fastopen Greg Kroah-Hartman
2022-04-05  7:31 ` [PATCH 5.10 375/599] openvswitch: always update flow key after nat Greg Kroah-Hartman
2022-04-05  7:31 ` [PATCH 5.10 376/599] tipc: fix the timer expires after interval 100ms Greg Kroah-Hartman
2022-04-05  7:31 ` [PATCH 5.10 377/599] mfd: asic3: Add missing iounmap() on error asic3_mfd_probe Greg Kroah-Hartman
2022-04-05  7:31 ` [PATCH 5.10 378/599] mxser: fix xmit_buf leak in activate when LSR == 0xff Greg Kroah-Hartman
2022-04-05  7:31 ` [PATCH 5.10 379/599] pwm: lpc18xx-sct: Initialize driver data and hardware before pwmchip_add() Greg Kroah-Hartman
2022-04-05  7:31 ` [PATCH 5.10 380/599] fsi: aspeed: convert to devm_platform_ioremap_resource Greg Kroah-Hartman
2022-04-05  7:31 ` [PATCH 5.10 381/599] fsi: Aspeed: Fix a potential double free Greg Kroah-Hartman
2022-04-05  7:31 ` [PATCH 5.10 382/599] misc: alcor_pci: Fix an error handling path Greg Kroah-Hartman
2022-04-05  7:31 ` [PATCH 5.10 383/599] cpufreq: qcom-cpufreq-nvmem: fix reading of PVS Valid fuse Greg Kroah-Hartman
2022-04-05  7:31 ` [PATCH 5.10 384/599] soundwire: intel: fix wrong register name in intel_shim_wake Greg Kroah-Hartman
2022-04-05  7:31 ` [PATCH 5.10 385/599] clk: qcom: ipq8074: fix PCI-E clock oops Greg Kroah-Hartman
2022-04-05  7:31 ` [PATCH 5.10 386/599] iio: mma8452: Fix probe failing when an i2c_device_id is used Greg Kroah-Hartman
2022-04-05  7:31 ` [PATCH 5.10 387/599] staging:iio:adc:ad7280a: Fix handing of device address bit reversing Greg Kroah-Hartman
2022-04-05  7:31 ` [PATCH 5.10 388/599] pinctrl: renesas: r8a77470: Reduce size for narrow VIN1 channel Greg Kroah-Hartman
2022-04-05  7:31 ` [PATCH 5.10 389/599] pinctrl: renesas: checker: Fix miscalculation of number of states Greg Kroah-Hartman
2022-04-05  7:31 ` [PATCH 5.10 390/599] clk: qcom: ipq8074: Use floor ops for SDCC1 clock Greg Kroah-Hartman
2022-04-05  7:31 ` [PATCH 5.10 391/599] phy: dphy: Correct lpx parameter and its derivatives(ta_{get,go,sure}) Greg Kroah-Hartman
2022-04-05  7:31 ` [PATCH 5.10 392/599] serial: 8250_mid: Balance reference count for PCI DMA device Greg Kroah-Hartman
2022-04-05  7:31 ` [PATCH 5.10 393/599] serial: 8250_lpss: " Greg Kroah-Hartman
2022-04-05  7:31 ` [PATCH 5.10 394/599] NFS: Use of mapping_set_error() results in spurious errors Greg Kroah-Hartman
2022-04-05  7:31 ` [PATCH 5.10 395/599] serial: 8250: Fix race condition in RTS-after-send handling Greg Kroah-Hartman
2022-04-05  7:31 ` [PATCH 5.10 396/599] iio: adc: Add check for devm_request_threaded_irq Greg Kroah-Hartman
2022-04-05  7:31 ` [PATCH 5.10 397/599] habanalabs: Add check for pci_enable_device Greg Kroah-Hartman
2022-04-05  7:31 ` [PATCH 5.10 398/599] NFS: Return valid errors from nfs2/3_decode_dirent() Greg Kroah-Hartman
2022-04-05  7:31 ` [PATCH 5.10 399/599] dma-debug: fix return value of __setup handlers Greg Kroah-Hartman
2022-04-05  7:31 ` [PATCH 5.10 400/599] clk: imx7d: Remove audio_mclk_root_clk Greg Kroah-Hartman
2022-04-05  7:31 ` [PATCH 5.10 401/599] clk: at91: sama7g5: fix parents of PDMCs GCLK Greg Kroah-Hartman
2022-04-05  7:31 ` [PATCH 5.10 402/599] clk: qcom: clk-rcg2: Update logic to calculate D value for RCG Greg Kroah-Hartman
2022-04-05  7:31 ` [PATCH 5.10 403/599] clk: qcom: clk-rcg2: Update the frac table for pixel clock Greg Kroah-Hartman
2022-04-05  7:31 ` [PATCH 5.10 404/599] dmaengine: hisi_dma: fix MSI allocate fail when reload hisi_dma Greg Kroah-Hartman
2022-04-05  7:31 ` [PATCH 5.10 405/599] remoteproc: qcom: Fix missing of_node_put in adsp_alloc_memory_region Greg Kroah-Hartman
2022-04-05  7:31 ` [PATCH 5.10 406/599] remoteproc: qcom_wcnss: Add missing of_node_put() in wcnss_alloc_memory_region Greg Kroah-Hartman
2022-04-05  7:31 ` [PATCH 5.10 407/599] remoteproc: qcom_q6v5_mss: Fix some leaks in q6v5_alloc_memory_region Greg Kroah-Hartman
2022-04-05  7:31 ` [PATCH 5.10 408/599] nvdimm/region: Fix default alignment for small regions Greg Kroah-Hartman
2022-04-05  7:31 ` [PATCH 5.10 409/599] clk: actions: Terminate clk_div_table with sentinel element Greg Kroah-Hartman
2022-04-05  7:31 ` [PATCH 5.10 410/599] clk: loongson1: " Greg Kroah-Hartman
2022-04-05  7:31 ` [PATCH 5.10 411/599] clk: clps711x: " Greg Kroah-Hartman
2022-04-05  7:31 ` [PATCH 5.10 412/599] clk: tegra: tegra124-emc: Fix missing put_device() call in emc_ensure_emc_driver Greg Kroah-Hartman
2022-04-05  7:31 ` [PATCH 5.10 413/599] NFS: remove unneeded check in decode_devicenotify_args() Greg Kroah-Hartman
2022-04-05  7:31 ` [PATCH 5.10 414/599] staging: mt7621-dts: fix LEDs and pinctrl on GB-PC1 devicetree Greg Kroah-Hartman
2022-04-05  7:31 ` [PATCH 5.10 415/599] staging: mt7621-dts: fix formatting Greg Kroah-Hartman
2022-04-05  7:31 ` [PATCH 5.10 416/599] staging: mt7621-dts: fix pinctrl properties for ethernet Greg Kroah-Hartman
2022-04-05  7:31 ` [PATCH 5.10 417/599] staging: mt7621-dts: fix GB-PC2 devicetree Greg Kroah-Hartman
2022-04-05  7:31 ` [PATCH 5.10 418/599] pinctrl: mediatek: Fix missing of_node_put() in mtk_pctrl_init Greg Kroah-Hartman
2022-04-05  7:31 ` [PATCH 5.10 419/599] pinctrl: mediatek: paris: Fix PIN_CONFIG_BIAS_* readback Greg Kroah-Hartman
2022-04-05  7:31 ` [PATCH 5.10 420/599] pinctrl: mediatek: paris: Fix "argument" argument type for mtk_pinconf_get() Greg Kroah-Hartman
2022-04-05  7:31 ` [PATCH 5.10 421/599] pinctrl: mediatek: paris: Fix pingroup pin config state readback Greg Kroah-Hartman
2022-04-05  7:31 ` [PATCH 5.10 422/599] pinctrl: mediatek: paris: Skip custom extra pin config dump for virtual GPIOs Greg Kroah-Hartman
2022-04-05  7:31 ` [PATCH 5.10 423/599] pinctrl: nomadik: Add missing of_node_put() in nmk_pinctrl_probe Greg Kroah-Hartman
2022-04-05  7:31 ` [PATCH 5.10 424/599] pinctrl/rockchip: Add missing of_node_put() in rockchip_pinctrl_probe Greg Kroah-Hartman
2022-04-05  7:31 ` [PATCH 5.10 425/599] tty: hvc: fix return value of __setup handler Greg Kroah-Hartman
2022-04-05  7:32 ` [PATCH 5.10 426/599] kgdboc: " Greg Kroah-Hartman
2022-04-05  7:32 ` [PATCH 5.10 427/599] serial: 8250: fix XOFF/XON sending when DMA is used Greg Kroah-Hartman
2022-04-05  7:32 ` [PATCH 5.10 428/599] kgdbts: fix return value of __setup handler Greg Kroah-Hartman
2022-04-05  7:32 ` [PATCH 5.10 429/599] firmware: google: Properly state IOMEM dependency Greg Kroah-Hartman
2022-04-05  7:32 ` [PATCH 5.10 430/599] driver core: dd: fix return value of __setup handler Greg Kroah-Hartman
2022-04-05  7:32 ` [PATCH 5.10 431/599] jfs: fix divide error in dbNextAG Greg Kroah-Hartman
2022-04-05  7:32 ` [PATCH 5.10 432/599] netfilter: nf_conntrack_tcp: preserve liberal flag in tcp options Greg Kroah-Hartman
2022-04-05  7:32 ` [PATCH 5.10 433/599] NFSv4.1: dont retry BIND_CONN_TO_SESSION on session error Greg Kroah-Hartman
2022-04-05  7:32 ` [PATCH 5.10 434/599] kdb: Fix the putarea helper function Greg Kroah-Hartman
2022-04-05  7:32 ` [PATCH 5.10 435/599] clk: qcom: gcc-msm8994: Fix gpll4 width Greg Kroah-Hartman
2022-04-05  7:32 ` [PATCH 5.10 436/599] clk: Initialize orphan req_rate Greg Kroah-Hartman
2022-04-05  7:32 ` [PATCH 5.10 437/599] xen: fix is_xen_pmu() Greg Kroah-Hartman
2022-04-05  7:32 ` [PATCH 5.10 438/599] net: enetc: report software timestamping via SO_TIMESTAMPING Greg Kroah-Hartman
2022-04-05  7:32 ` [PATCH 5.10 439/599] net: hns3: fix bug when PF set the duplicate MAC address for VFs Greg Kroah-Hartman
2022-04-05  7:32 ` [PATCH 5.10 440/599] net: phy: broadcom: Fix brcm_fet_config_init() Greg Kroah-Hartman
2022-04-05  7:32 ` [PATCH 5.10 441/599] selftests: test_vxlan_under_vrf: Fix broken test case Greg Kroah-Hartman
2022-04-05  7:32 ` [PATCH 5.10 442/599] qlcnic: dcb: default to returning -EOPNOTSUPP Greg Kroah-Hartman
2022-04-05  7:32 ` [PATCH 5.10 443/599] net/x25: Fix null-ptr-deref caused by x25_disconnect Greg Kroah-Hartman
2022-04-05  7:32 ` [PATCH 5.10 444/599] NFSv4/pNFS: Fix another issue with a list iterator pointing to the head Greg Kroah-Hartman
2022-04-05  7:32 ` [PATCH 5.10 445/599] net: dsa: bcm_sf2_cfp: fix an incorrect NULL check on list iterator Greg Kroah-Hartman
2022-04-05  7:32 ` [PATCH 5.10 446/599] fs: fd tables have to be multiples of BITS_PER_LONG Greg Kroah-Hartman
2022-04-05  7:32 ` [PATCH 5.10 447/599] lib/test: use after free in register_test_dev_kmod() Greg Kroah-Hartman
2022-04-05  7:32 ` [PATCH 5.10 448/599] fs: fix fd table size alignment properly Greg Kroah-Hartman
2022-04-05  7:32 ` [PATCH 5.10 449/599] LSM: general protection fault in legacy_parse_param Greg Kroah-Hartman
2022-04-05  7:32 ` [PATCH 5.10 450/599] regulator: rpi-panel: Handle I2C errors/timing to the Atmel Greg Kroah-Hartman
2022-04-05  7:32 ` [PATCH 5.10 451/599] gcc-plugins/stackleak: Exactly match strings instead of prefixes Greg Kroah-Hartman
2022-04-05  7:32 ` [PATCH 5.10 452/599] pinctrl: npcm: Fix broken references to chip->parent_device Greg Kroah-Hartman
2022-04-05  7:32 ` [PATCH 5.10 453/599] block, bfq: dont move oom_bfqq Greg Kroah-Hartman
2022-04-05  7:32 ` [PATCH 5.10 454/599] selinux: use correct type for context length Greg Kroah-Hartman
2022-04-05  7:32 ` [PATCH 5.10 455/599] selinux: allow FIOCLEX and FIONCLEX with policy capability Greg Kroah-Hartman
2022-04-05  7:32 ` [PATCH 5.10 456/599] loop: use sysfs_emit() in the sysfs xxx show() Greg Kroah-Hartman
2022-04-05  7:32 ` [PATCH 5.10 457/599] Fix incorrect type in assignment of ipv6 port for audit Greg Kroah-Hartman
2022-04-05  7:32 ` [PATCH 5.10 458/599] irqchip/qcom-pdc: Fix broken locking Greg Kroah-Hartman
2022-04-05  7:32 ` [PATCH 5.10 459/599] irqchip/nvic: Release nvic_base upon failure Greg Kroah-Hartman
2022-04-05  7:32 ` [PATCH 5.10 460/599] fs/binfmt_elf: Fix AT_PHDR for unusual ELF files Greg Kroah-Hartman
2022-04-05  7:32 ` [PATCH 5.10 461/599] bfq: fix use-after-free in bfq_dispatch_request Greg Kroah-Hartman
2022-04-05  7:32 ` [PATCH 5.10 462/599] ACPICA: Avoid walking the ACPI Namespace if it is not there Greg Kroah-Hartman
2022-04-05  7:32 ` [PATCH 5.10 463/599] lib/raid6/test/Makefile: Use $(pound) instead of \# for Make 4.3 Greg Kroah-Hartman
2022-04-05  7:32 ` [PATCH 5.10 464/599] Revert "Revert "block, bfq: honor already-setup queue merges"" Greg Kroah-Hartman
2022-04-05  7:32 ` [PATCH 5.10 465/599] ACPI/APEI: Limit printable size of BERT table data Greg Kroah-Hartman
2022-04-05  7:32 ` [PATCH 5.10 466/599] PM: core: keep irq flags in device_pm_check_callbacks() Greg Kroah-Hartman
2022-04-05  7:32 ` Greg Kroah-Hartman [this message]
2022-04-05  7:32 ` [PATCH 5.10 468/599] nvme-tcp: lockdep: annotate in-kernel sockets Greg Kroah-Hartman
2022-04-05  7:32 ` [PATCH 5.10 469/599] spi: tegra20: Use of_device_get_match_data() Greg Kroah-Hartman
2022-04-05  7:32 ` [PATCH 5.10 470/599] locking/lockdep: Iterate lock_classes directly when reading lockdep files Greg Kroah-Hartman
2022-04-05  7:32 ` [PATCH 5.10 471/599] ext4: correct cluster len and clusters changed accounting in ext4_mb_mark_bb Greg Kroah-Hartman
2022-04-05  7:32 ` [PATCH 5.10 472/599] ext4: fix ext4_mb_mark_bb() with flex_bg with fast_commit Greg Kroah-Hartman
2022-04-05  7:32 ` [PATCH 5.10 473/599] ext4: dont BUG if someone dirty pages without asking ext4 first Greg Kroah-Hartman
2022-04-05 10:22   ` syzbot
2022-04-05  7:32 ` [PATCH 5.10 474/599] f2fs: fix to do sanity check on curseg->alloc_type Greg Kroah-Hartman
2022-04-05  7:32 ` [PATCH 5.10 475/599] NFSD: Fix nfsd_breaker_owns_lease() return values Greg Kroah-Hartman
2022-04-05  7:32 ` [PATCH 5.10 476/599] f2fs: compress: fix to print raw data size in error path of lz4 decompression Greg Kroah-Hartman
2022-04-05  7:32 ` [PATCH 5.10 477/599] ntfs: add sanity check on allocation size Greg Kroah-Hartman
2022-04-05  7:32 ` [PATCH 5.10 478/599] media: staging: media: zoran: move videodev alloc Greg Kroah-Hartman
2022-04-05  7:32 ` [PATCH 5.10 479/599] media: staging: media: zoran: calculate the right buffer number for zoran_reap_stat_com Greg Kroah-Hartman
2022-04-05  7:32 ` [PATCH 5.10 480/599] media: staging: media: zoran: fix various V4L2 compliance errors Greg Kroah-Hartman
2022-04-05  7:32 ` [PATCH 5.10 481/599] media: ir_toy: free before error exiting Greg Kroah-Hartman
2022-04-05  7:32 ` [PATCH 5.10 482/599] ASoC: SOF: Intel: hda: Remove link assignment limitation Greg Kroah-Hartman
2022-04-05  7:32 ` [PATCH 5.10 483/599] video: fbdev: nvidiafb: Use strscpy() to prevent buffer overflow Greg Kroah-Hartman
2022-04-05  7:32 ` [PATCH 5.10 484/599] video: fbdev: w100fb: Reset global state Greg Kroah-Hartman
2022-04-05  7:32 ` [PATCH 5.10 485/599] video: fbdev: cirrusfb: check pixclock to avoid divide by zero Greg Kroah-Hartman
2022-04-05  7:33 ` [PATCH 5.10 486/599] video: fbdev: omapfb: acx565akm: replace snprintf with sysfs_emit Greg Kroah-Hartman
2022-04-05  7:33 ` [PATCH 5.10 487/599] ARM: dts: qcom: fix gic_irq_domain_translate warnings for msm8960 Greg Kroah-Hartman
2022-04-05  7:33 ` [PATCH 5.10 488/599] ARM: dts: bcm2837: Add the missing L1/L2 cache information Greg Kroah-Hartman
2022-04-05  7:33 ` [PATCH 5.10 489/599] ASoC: madera: Add dependencies on MFD Greg Kroah-Hartman
2022-04-05  7:33 ` [PATCH 5.10 490/599] media: atomisp_gmin_platform: Add DMI quirk to not turn AXP ELDO2 regulator off on some boards Greg Kroah-Hartman
2022-04-05  7:33 ` [PATCH 5.10 491/599] media: atomisp: fix dummy_ptr check to avoid duplicate active_bo Greg Kroah-Hartman
2022-04-05  7:33 ` [PATCH 5.10 492/599] ARM: ftrace: avoid redundant loads or clobbering IP Greg Kroah-Hartman
2022-04-05  7:33 ` [PATCH 5.10 493/599] ARM: dts: imx7: Use audio_mclk_post_div instead audio_mclk_root_clk Greg Kroah-Hartman
2022-04-05  7:33 ` [PATCH 5.10 494/599] arm64: defconfig: build imx-sdma as a module Greg Kroah-Hartman
2022-04-05  7:33 ` [PATCH 5.10 495/599] video: fbdev: omapfb: panel-dsi-cm: Use sysfs_emit() instead of snprintf() Greg Kroah-Hartman
2022-04-05  7:33 ` [PATCH 5.10 496/599] video: fbdev: omapfb: panel-tpo-td043mtea1: " Greg Kroah-Hartman
2022-04-05  7:33 ` [PATCH 5.10 497/599] video: fbdev: udlfb: replace snprintf in show functions with sysfs_emit Greg Kroah-Hartman
2022-04-05  7:33 ` [PATCH 5.10 498/599] ARM: dts: bcm2711: Add the missing L1/L2 cache information Greg Kroah-Hartman
2022-04-05  7:33 ` [PATCH 5.10 499/599] ASoC: soc-core: skip zero num_dai component in searching dai name Greg Kroah-Hartman
2022-04-05  7:33 ` [PATCH 5.10 500/599] media: cx88-mpeg: clear interrupt status register before streaming video Greg Kroah-Hartman
2022-04-05  7:33 ` [PATCH 5.10 501/599] uaccess: fix type mismatch warnings from access_ok() Greg Kroah-Hartman
2022-04-05  7:33 ` [PATCH 5.10 502/599] lib/test_lockup: fix kernel pointer check for separate address spaces Greg Kroah-Hartman
2022-04-05  7:33 ` [PATCH 5.10 503/599] ARM: tegra: tamonten: Fix I2C3 pad setting Greg Kroah-Hartman
2022-04-05  7:33 ` [PATCH 5.10 504/599] ARM: mmp: Fix failure to remove sram device Greg Kroah-Hartman
2022-04-05  7:33 ` [PATCH 5.10 505/599] video: fbdev: sm712fb: Fix crash in smtcfb_write() Greg Kroah-Hartman
2022-04-05  7:33 ` [PATCH 5.10 506/599] media: Revert "media: em28xx: add missing em28xx_close_extension" Greg Kroah-Hartman
2022-04-05  7:33 ` [PATCH 5.10 507/599] media: hdpvr: initialize dev->worker at hdpvr_register_videodev Greg Kroah-Hartman
2022-04-05  7:33 ` [PATCH 5.10 508/599] tracing: Have TRACE_DEFINE_ENUM affect trace event types as well Greg Kroah-Hartman
2022-04-05  7:33 ` [PATCH 5.10 509/599] mmc: host: Return an error when ->enable_sdio_irq() ops is missing Greg Kroah-Hartman
2022-04-05  7:33 ` [PATCH 5.10 510/599] media: atomisp: fix bad usage at error handling logic Greg Kroah-Hartman
2022-04-05  7:33 ` [PATCH 5.10 511/599] ALSA: hda/realtek: Add alc256-samsung-headphone fixup Greg Kroah-Hartman
2022-04-05  7:33 ` [PATCH 5.10 512/599] KVM: x86/mmu: Check for present SPTE when clearing dirty bit in TDP MMU Greg Kroah-Hartman
2022-04-05  7:33 ` [PATCH 5.10 513/599] powerpc/kasan: Fix early region not updated correctly Greg Kroah-Hartman
2022-04-05  7:33 ` [PATCH 5.10 514/599] powerpc/lib/sstep: Fix sthcx instruction Greg Kroah-Hartman
2022-04-05  7:33 ` [PATCH 5.10 515/599] powerpc/lib/sstep: Fix build errors with newer binutils Greg Kroah-Hartman
2022-04-05  7:33 ` [PATCH 5.10 516/599] powerpc: " Greg Kroah-Hartman
2022-04-05  7:33 ` [PATCH 5.10 517/599] scsi: qla2xxx: Fix stuck session in gpdb Greg Kroah-Hartman
2022-04-05  7:33 ` [PATCH 5.10 518/599] scsi: qla2xxx: Fix scheduling while atomic Greg Kroah-Hartman
2022-04-05  7:33 ` [PATCH 5.10 519/599] scsi: qla2xxx: Fix wrong FDMI data for 64G adapter Greg Kroah-Hartman
2022-04-05  7:33 ` [PATCH 5.10 520/599] scsi: qla2xxx: Fix warning for missing error code Greg Kroah-Hartman
2022-04-05  7:33 ` [PATCH 5.10 521/599] scsi: qla2xxx: Fix device reconnect in loop topology Greg Kroah-Hartman
2022-04-05  7:33 ` [PATCH 5.10 522/599] scsi: qla2xxx: Add devids and conditionals for 28xx Greg Kroah-Hartman
2022-04-05  7:33 ` [PATCH 5.10 523/599] scsi: qla2xxx: Check for firmware dump already collected Greg Kroah-Hartman
2022-04-05  7:33 ` [PATCH 5.10 524/599] scsi: qla2xxx: Suppress a kernel complaint in qla_create_qpair() Greg Kroah-Hartman
2022-04-05  7:33 ` [PATCH 5.10 525/599] scsi: qla2xxx: Fix disk failure to rediscover Greg Kroah-Hartman
2022-04-05  7:33 ` [PATCH 5.10 526/599] scsi: qla2xxx: Fix incorrect reporting of task management failure Greg Kroah-Hartman
2022-04-05  7:33 ` [PATCH 5.10 527/599] scsi: qla2xxx: Fix hang due to session stuck Greg Kroah-Hartman
2022-04-05  7:33 ` [PATCH 5.10 528/599] scsi: qla2xxx: Fix missed DMA unmap for NVMe ls requests Greg Kroah-Hartman
2022-04-05  7:33 ` [PATCH 5.10 529/599] scsi: qla2xxx: Fix N2N inconsistent PLOGI Greg Kroah-Hartman
2022-04-05  7:33 ` [PATCH 5.10 530/599] scsi: qla2xxx: Reduce false trigger to login Greg Kroah-Hartman
2022-04-05  7:33 ` [PATCH 5.10 531/599] scsi: qla2xxx: Use correct feature type field during RFF_ID processing Greg Kroah-Hartman
2022-04-05  7:33 ` [PATCH 5.10 532/599] platform: chrome: Split trace include file Greg Kroah-Hartman
2022-04-05  7:33 ` [PATCH 5.10 533/599] KVM: x86: Forbid VMM to set SYNIC/STIMER MSRs when SynIC wasnt activated Greg Kroah-Hartman
2022-04-05  7:33 ` [PATCH 5.10 534/599] KVM: Prevent module exit until all VMs are freed Greg Kroah-Hartman
2022-04-05  7:33 ` [PATCH 5.10 535/599] KVM: x86: fix sending PV IPI Greg Kroah-Hartman
2022-04-05  7:33 ` [PATCH 5.10 536/599] KVM: SVM: fix panic on out-of-bounds guest IRQ Greg Kroah-Hartman
2022-04-05  7:33 ` [PATCH 5.10 537/599] ASoC: SOF: Intel: Fix NULL ptr dereference when ENOMEM Greg Kroah-Hartman
2022-04-05  7:33 ` [PATCH 5.10 538/599] ubifs: rename_whiteout: Fix double free for whiteout_ui->data Greg Kroah-Hartman
2022-04-05  7:33 ` [PATCH 5.10 539/599] ubifs: Fix deadlock in concurrent rename whiteout and inode writeback Greg Kroah-Hartman
2022-04-05  7:33 ` [PATCH 5.10 540/599] ubifs: Add missing iput if do_tmpfile() failed in rename whiteout Greg Kroah-Hartman
2022-04-05  7:33 ` [PATCH 5.10 541/599] ubifs: setflags: Make dirtied_ino_d 8 bytes aligned Greg Kroah-Hartman
2022-04-05  7:33 ` [PATCH 5.10 542/599] ubifs: Fix read out-of-bounds in ubifs_wbuf_write_nolock() Greg Kroah-Hartman
2022-04-05  7:33 ` [PATCH 5.10 543/599] ubifs: Fix to add refcount once page is set private Greg Kroah-Hartman
2022-04-05  7:33 ` [PATCH 5.10 544/599] ubifs: rename_whiteout: correct old_dir size computing Greg Kroah-Hartman
2022-04-05  7:33 ` [PATCH 5.10 545/599] wireguard: queueing: use CFI-safe ptr_ring cleanup function Greg Kroah-Hartman
2022-04-05  7:34 ` [PATCH 5.10 546/599] wireguard: socket: free skb in send6 when ipv6 is disabled Greg Kroah-Hartman
2022-04-05  7:34 ` [PATCH 5.10 547/599] wireguard: socket: ignore v6 endpoints " Greg Kroah-Hartman
2022-04-05  7:34 ` [PATCH 5.10 548/599] XArray: Fix xas_create_range() when multi-order entry present Greg Kroah-Hartman
2022-04-05  7:34 ` [PATCH 5.10 549/599] can: mcba_usb: mcba_usb_start_xmit(): fix double dev_kfree_skb in error path Greg Kroah-Hartman
2022-04-05  7:34 ` [PATCH 5.10 550/599] can: mcba_usb: properly check endpoint type Greg Kroah-Hartman
2022-04-05  7:34 ` [PATCH 5.10 551/599] can: mcp251xfd: mcp251xfd_register_get_dev_id(): fix return of error value Greg Kroah-Hartman
2022-04-05  7:34 ` [PATCH 5.10 552/599] XArray: Update the LRU list in xas_split() Greg Kroah-Hartman
2022-04-05  7:34 ` [PATCH 5.10 553/599] rtc: check if __rtc_read_time was successful Greg Kroah-Hartman
2022-04-05  7:34 ` [PATCH 5.10 554/599] gfs2: Make sure FITRIM minlen is rounded up to fs block size Greg Kroah-Hartman
2022-04-05  7:34 ` [PATCH 5.10 555/599] net: hns3: fix software vlan talbe of vlan 0 inconsistent with hardware Greg Kroah-Hartman
2022-04-05  7:34 ` [PATCH 5.10 556/599] rxrpc: Fix call timer start racing with call destruction Greg Kroah-Hartman
2022-04-05  7:34 ` [PATCH 5.10 557/599] mailbox: imx: fix wakeup failure from freeze mode Greg Kroah-Hartman
2022-04-05  7:34 ` [PATCH 5.10 558/599] crypto: arm/aes-neonbs-cbc - Select generic cbc and aes Greg Kroah-Hartman
2022-04-05  7:34 ` [PATCH 5.10 559/599] watch_queue: Free the page array when watch_queue is dismantled Greg Kroah-Hartman
2022-04-05  7:34 ` [PATCH 5.10 560/599] pinctrl: pinconf-generic: Print arguments for bias-pull-* Greg Kroah-Hartman
2022-04-05  7:34 ` [PATCH 5.10 561/599] watchdog: rti-wdt: Add missing pm_runtime_disable() in probe function Greg Kroah-Hartman
2022-04-05  7:34 ` [PATCH 5.10 562/599] pinctrl: nuvoton: npcm7xx: Rename DS() macro to DSTR() Greg Kroah-Hartman
2022-04-05  7:34 ` [PATCH 5.10 563/599] pinctrl: nuvoton: npcm7xx: Use %zu printk format for ARRAY_SIZE() Greg Kroah-Hartman
2022-04-05  7:34 ` [PATCH 5.10 564/599] ASoC: mediatek: mt6358: add missing EXPORT_SYMBOLs Greg Kroah-Hartman
2022-04-05  7:34 ` [PATCH 5.10 565/599] ubi: Fix race condition between ctrl_cdev_ioctl and ubi_cdev_ioctl Greg Kroah-Hartman
2022-04-05  7:34 ` [PATCH 5.10 566/599] ARM: iop32x: offset IRQ numbers by 1 Greg Kroah-Hartman
2022-04-05  7:34 ` [PATCH 5.10 567/599] io_uring: fix memory leak of uid in files registration Greg Kroah-Hartman
2022-04-05  7:34 ` [PATCH 5.10 568/599] riscv module: remove (NOLOAD) Greg Kroah-Hartman
2022-04-05  7:34 ` [PATCH 5.10 569/599] ACPI: CPPC: Avoid out of bounds access when parsing _CPC data Greg Kroah-Hartman
2022-04-05  7:34 ` [PATCH 5.10 570/599] platform/chrome: cros_ec_typec: Check for EC device Greg Kroah-Hartman
2022-04-05  7:34 ` [PATCH 5.10 571/599] can: isotp: restore accidentally removed MSG_PEEK feature Greg Kroah-Hartman
2022-04-05  7:34 ` [PATCH 5.10 572/599] proc: bootconfig: Add null pointer check Greg Kroah-Hartman
2022-04-05  7:34 ` [PATCH 5.10 573/599] staging: mt7621-dts: fix pinctrl-0 items to be size-1 items on ethernet Greg Kroah-Hartman
2022-04-05  7:34 ` [PATCH 5.10 574/599] ASoC: soc-compress: Change the check for codec_dai Greg Kroah-Hartman
2022-04-05  7:34 ` [PATCH 5.10 575/599] batman-adv: Check ptr for NULL before reducing its refcnt Greg Kroah-Hartman
2022-04-05  7:34 ` [PATCH 5.10 576/599] mm/mmap: return 1 from stack_guard_gap __setup() handler Greg Kroah-Hartman
2022-04-05  7:34 ` [PATCH 5.10 577/599] ARM: 9187/1: JIVE: fix return value of __setup handler Greg Kroah-Hartman
2022-04-05  7:34 ` [PATCH 5.10 578/599] mm/memcontrol: return 1 from cgroup.memory __setup() handler Greg Kroah-Hartman
2022-04-05  7:34 ` [PATCH 5.10 579/599] mm/usercopy: return 1 from hardened_usercopy " Greg Kroah-Hartman
2022-04-05  7:34 ` [PATCH 5.10 580/599] bpf: Adjust BPF stack helper functions to accommodate skip > 0 Greg Kroah-Hartman
2022-04-05  7:34 ` [PATCH 5.10 581/599] bpf: Fix comment for helper bpf_current_task_under_cgroup() Greg Kroah-Hartman
2022-04-05  7:34 ` [PATCH 5.10 582/599] dt-bindings: mtd: nand-controller: Fix the reg property description Greg Kroah-Hartman
2022-04-05  7:34 ` [PATCH 5.10 583/599] dt-bindings: mtd: nand-controller: Fix a comment in the examples Greg Kroah-Hartman
2022-04-05  7:34 ` [PATCH 5.10 584/599] dt-bindings: spi: mxic: The interrupt property is not mandatory Greg Kroah-Hartman
2022-04-05  7:34 ` [PATCH 5.10 585/599] ubi: fastmap: Return error code if memory allocation fails in add_aeb() Greg Kroah-Hartman
2022-04-05  7:34 ` [PATCH 5.10 586/599] ASoC: topology: Allow TLV control to be either read or write Greg Kroah-Hartman
2022-04-05  7:34 ` [PATCH 5.10 587/599] ARM: dts: spear1340: Update serial node properties Greg Kroah-Hartman
2022-04-05  7:34 ` [PATCH 5.10 588/599] ARM: dts: spear13xx: Update SPI dma properties Greg Kroah-Hartman
2022-04-05  7:34 ` [PATCH 5.10 589/599] um: Fix uml_mconsole stop/go Greg Kroah-Hartman
2022-04-05  7:34 ` [PATCH 5.10 590/599] docs: sysctl/kernel: add missing bit to panic_print Greg Kroah-Hartman
2022-04-05  7:34 ` [PATCH 5.10 591/599] openvswitch: Fixed nd target mask field in the flow dump Greg Kroah-Hartman
2022-04-05  7:34 ` [PATCH 5.10 592/599] KVM: x86/mmu: do compare-and-exchange of gPTE via the user address Greg Kroah-Hartman
2022-04-05  7:34 ` [PATCH 5.10 593/599] can: m_can: m_can_tx_handler(): fix use after free of skb Greg Kroah-Hartman
2022-04-05  7:34 ` [PATCH 5.10 594/599] can: usb_8dev: usb_8dev_start_xmit(): fix double dev_kfree_skb() in error path Greg Kroah-Hartman
2022-04-05  7:34 ` [PATCH 5.10 595/599] coredump: Snapshot the vmas in do_coredump Greg Kroah-Hartman
2022-04-05  7:34 ` [PATCH 5.10 596/599] coredump: Remove the WARN_ON in dump_vma_snapshot Greg Kroah-Hartman
2022-04-05  7:34 ` [PATCH 5.10 597/599] coredump/elf: Pass coredump_params into fill_note_info Greg Kroah-Hartman
2022-04-05  7:34 ` [PATCH 5.10 598/599] coredump: Use the vma snapshot in fill_files_note Greg Kroah-Hartman
2022-04-05  7:34 ` [PATCH 5.10 599/599] arm64: Do not defer reserve_crashkernel() for platforms with no DMA memory zones Greg Kroah-Hartman
2022-04-05 13:08 ` [PATCH 5.10 000/599] 5.10.110-rc1 review Guenter Roeck
2022-04-06 12:07   ` Greg Kroah-Hartman
2022-04-05 14:51 ` Florian Fainelli
2022-04-05 15:50 ` Pavel Machek
2022-04-05 17:35 ` Slade Watkins
2022-04-05 21:57 ` Sudip Mukherjee
2022-04-06 12:13   ` Greg Kroah-Hartman
2022-04-05 23:10 ` Shuah Khan
2022-04-06  1:07 ` Guenter Roeck
2022-04-06  2:30   ` Guenter Roeck
2022-04-06  2:52     ` Steven Rostedt
2022-04-06  3:08       ` Steven Rostedt
2022-04-06  3:24         ` Steven Rostedt
2022-04-06  4:00           ` Guenter Roeck
2022-04-06  8:11           ` Greg Kroah-Hartman
2022-04-06  8:23             ` Greg Kroah-Hartman
2022-04-06  8:26               ` Greg Kroah-Hartman
2022-04-06 14:10                 ` Steven Rostedt
2022-04-06  3:49       ` Guenter Roeck
2022-04-06  8:25 ` Jon Hunter
2022-04-06  9:27 ` Fox Chen
2022-04-06 10:06 ` Sudip Mukherjee
2022-04-06 10:09 ` Naresh Kamboju
2022-04-06 12:25 ` Bagas Sanjaya
2022-04-07  6:29 ` Bagas Sanjaya

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=20220405070312.724163665@linuxfoundation.org \
    --to=gregkh@linuxfoundation.org \
    --cc=dave.anglin@bell.net \
    --cc=deller@gmx.de \
    --cc=linux-kernel@vger.kernel.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).