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,
	Srinath Mannam <srinath.mannam@broadcom.com>,
	Robin Murphy <robin.murphy@arm.com>,
	Sven Peter <sven@svenpeter.dev>, Joerg Roedel <jroedel@suse.de>,
	Sasha Levin <sashal@kernel.org>
Subject: [PATCH 5.12 595/700] iommu/dma: Fix IOVA reserve dma ranges
Date: Mon, 12 Jul 2021 08:11:18 +0200	[thread overview]
Message-ID: <20210712061039.257426729@linuxfoundation.org> (raw)
In-Reply-To: <20210712060924.797321836@linuxfoundation.org>

From: Srinath Mannam <srinath.mannam@broadcom.com>

[ Upstream commit 571f316074a203e979ea90211d9acf423dfe5f46 ]

Fix IOVA reserve failure in the case when address of first memory region
listed in dma-ranges is equal to 0x0.

Fixes: aadad097cd46f ("iommu/dma: Reserve IOVA for PCIe inaccessible DMA address")
Signed-off-by: Srinath Mannam <srinath.mannam@broadcom.com>
Reviewed-by: Robin Murphy <robin.murphy@arm.com>
Tested-by: Sven Peter <sven@svenpeter.dev>
Link: https://lore.kernel.org/r/20200914072319.6091-1-srinath.mannam@broadcom.com
Signed-off-by: Joerg Roedel <jroedel@suse.de>
Signed-off-by: Sasha Levin <sashal@kernel.org>
---
 drivers/iommu/dma-iommu.c | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/drivers/iommu/dma-iommu.c b/drivers/iommu/dma-iommu.c
index fdd095e1fa52..5f75ab0dfc73 100644
--- a/drivers/iommu/dma-iommu.c
+++ b/drivers/iommu/dma-iommu.c
@@ -252,9 +252,11 @@ resv_iova:
 			lo = iova_pfn(iovad, start);
 			hi = iova_pfn(iovad, end);
 			reserve_iova(iovad, lo, hi);
-		} else {
+		} else if (end < start) {
 			/* dma_ranges list should be sorted */
-			dev_err(&dev->dev, "Failed to reserve IOVA\n");
+			dev_err(&dev->dev,
+				"Failed to reserve IOVA [%#010llx-%#010llx]\n",
+				start, end);
 			return -EINVAL;
 		}
 
-- 
2.30.2




  parent reply	other threads:[~2021-07-12  8:04 UTC|newest]

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

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=20210712061039.257426729@linuxfoundation.org \
    --to=gregkh@linuxfoundation.org \
    --cc=jroedel@suse.de \
    --cc=linux-kernel@vger.kernel.org \
    --cc=robin.murphy@arm.com \
    --cc=sashal@kernel.org \
    --cc=srinath.mannam@broadcom.com \
    --cc=stable@vger.kernel.org \
    --cc=sven@svenpeter.dev \
    /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).