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, Michael Kelley <mikelley@microsoft.com>,
	Vitaly Kuznetsov <vkuznets@redhat.com>,
	Wei Liu <wei.liu@kernel.org>, Sasha Levin <sashal@kernel.org>
Subject: [PATCH 5.12 331/677] Drivers: hv: vmbus: Increase wait time for VMbus unload
Date: Wed, 12 May 2021 16:46:17 +0200	[thread overview]
Message-ID: <20210512144848.263810504@linuxfoundation.org> (raw)
In-Reply-To: <20210512144837.204217980@linuxfoundation.org>

From: Michael Kelley <mikelley@microsoft.com>

[ Upstream commit 77db0ec8b7764cb9b09b78066ebfd47b2c0c1909 ]

When running in Azure, disks may be connected to a Linux VM with
read/write caching enabled. If a VM panics and issues a VMbus
UNLOAD request to Hyper-V, the response is delayed until all dirty
data in the disk cache is flushed.  In extreme cases, this flushing
can take 10's of seconds, depending on the disk speed and the amount
of dirty data. If kdump is configured for the VM, the current 10 second
timeout in vmbus_wait_for_unload() may be exceeded, and the UNLOAD
complete message may arrive well after the kdump kernel is already
running, causing problems.  Note that no problem occurs if kdump is
not enabled because Hyper-V waits for the cache flush before doing
a reboot through the BIOS/UEFI code.

Fix this problem by increasing the timeout in vmbus_wait_for_unload()
to 100 seconds. Also output periodic messages so that if anyone is
watching the serial console, they won't think the VM is completely
hung.

Fixes: 911e1987efc8 ("Drivers: hv: vmbus: Add timeout to vmbus_wait_for_unload")
Signed-off-by: Michael Kelley <mikelley@microsoft.com>
Reviewed-by: Vitaly Kuznetsov <vkuznets@redhat.com>
Link: https://lore.kernel.org/r/1618894089-126662-1-git-send-email-mikelley@microsoft.com
Signed-off-by: Wei Liu <wei.liu@kernel.org>
Signed-off-by: Sasha Levin <sashal@kernel.org>
---
 drivers/hv/channel_mgmt.c | 30 +++++++++++++++++++++++++-----
 1 file changed, 25 insertions(+), 5 deletions(-)

diff --git a/drivers/hv/channel_mgmt.c b/drivers/hv/channel_mgmt.c
index f0ed730e2e4e..ecebf1235fd5 100644
--- a/drivers/hv/channel_mgmt.c
+++ b/drivers/hv/channel_mgmt.c
@@ -756,6 +756,12 @@ static void init_vp_index(struct vmbus_channel *channel)
 	free_cpumask_var(available_mask);
 }
 
+#define UNLOAD_DELAY_UNIT_MS	10		/* 10 milliseconds */
+#define UNLOAD_WAIT_MS		(100*1000)	/* 100 seconds */
+#define UNLOAD_WAIT_LOOPS	(UNLOAD_WAIT_MS/UNLOAD_DELAY_UNIT_MS)
+#define UNLOAD_MSG_MS		(5*1000)	/* Every 5 seconds */
+#define UNLOAD_MSG_LOOPS	(UNLOAD_MSG_MS/UNLOAD_DELAY_UNIT_MS)
+
 static void vmbus_wait_for_unload(void)
 {
 	int cpu;
@@ -773,12 +779,17 @@ static void vmbus_wait_for_unload(void)
 	 * vmbus_connection.unload_event. If not, the last thing we can do is
 	 * read message pages for all CPUs directly.
 	 *
-	 * Wait no more than 10 seconds so that the panic path can't get
-	 * hung forever in case the response message isn't seen.
+	 * Wait up to 100 seconds since an Azure host must writeback any dirty
+	 * data in its disk cache before the VMbus UNLOAD request will
+	 * complete. This flushing has been empirically observed to take up
+	 * to 50 seconds in cases with a lot of dirty data, so allow additional
+	 * leeway and for inaccuracies in mdelay(). But eventually time out so
+	 * that the panic path can't get hung forever in case the response
+	 * message isn't seen.
 	 */
-	for (i = 0; i < 1000; i++) {
+	for (i = 1; i <= UNLOAD_WAIT_LOOPS; i++) {
 		if (completion_done(&vmbus_connection.unload_event))
-			break;
+			goto completed;
 
 		for_each_online_cpu(cpu) {
 			struct hv_per_cpu_context *hv_cpu
@@ -801,9 +812,18 @@ static void vmbus_wait_for_unload(void)
 			vmbus_signal_eom(msg, message_type);
 		}
 
-		mdelay(10);
+		/*
+		 * Give a notice periodically so someone watching the
+		 * serial output won't think it is completely hung.
+		 */
+		if (!(i % UNLOAD_MSG_LOOPS))
+			pr_notice("Waiting for VMBus UNLOAD to complete\n");
+
+		mdelay(UNLOAD_DELAY_UNIT_MS);
 	}
+	pr_err("Continuing even though VMBus UNLOAD did not complete\n");
 
+completed:
 	/*
 	 * We're crashing and already got the UNLOAD_RESPONSE, cleanup all
 	 * maybe-pending messages on all CPUs to be able to receive new
-- 
2.30.2




  parent reply	other threads:[~2021-05-12 16:45 UTC|newest]

Thread overview: 695+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-05-12 14:40 [PATCH 5.12 000/677] 5.12.4-rc1 review Greg Kroah-Hartman
2021-05-12 14:40 ` [PATCH 5.12 001/677] Bluetooth: verify AMP hci_chan before amp_destroy Greg Kroah-Hartman
2021-05-12 14:40 ` [PATCH 5.12 002/677] bluetooth: eliminate the potential race condition when removing the HCI controller Greg Kroah-Hartman
2021-05-12 14:40 ` [PATCH 5.12 003/677] net/nfc: fix use-after-free llcp_sock_bind/connect Greg Kroah-Hartman
2021-05-12 14:40 ` [PATCH 5.12 004/677] io_uring: truncate lengths larger than MAX_RW_COUNT on provide buffers Greg Kroah-Hartman
2021-05-12 14:40 ` [PATCH 5.12 005/677] coresight: etm-perf: Fix define build issue when built as module Greg Kroah-Hartman
2021-05-12 14:40 ` [PATCH 5.12 006/677] software node: Allow node addition to already existing device Greg Kroah-Hartman
2021-05-12 14:40 ` [PATCH 5.12 007/677] Revert "USB: cdc-acm: fix rounding error in TIOCSSERIAL" Greg Kroah-Hartman
2021-05-12 14:40 ` [PATCH 5.12 008/677] usb: roles: Call try_module_get() from usb_role_switch_find_by_fwnode() Greg Kroah-Hartman
2021-05-12 14:40 ` [PATCH 5.12 009/677] tty: moxa: fix TIOCSSERIAL jiffies conversions Greg Kroah-Hartman
2021-05-12 14:40 ` [PATCH 5.12 010/677] tty: amiserial: fix TIOCSSERIAL permission check Greg Kroah-Hartman
2021-05-12 14:40 ` [PATCH 5.12 011/677] USB: serial: usb_wwan: fix TIOCSSERIAL jiffies conversions Greg Kroah-Hartman
2021-05-12 14:40 ` [PATCH 5.12 012/677] staging: greybus: uart: " Greg Kroah-Hartman
2021-05-12 14:40 ` [PATCH 5.12 013/677] USB: serial: ti_usb_3410_5052: fix TIOCSSERIAL permission check Greg Kroah-Hartman
2021-05-12 14:41 ` [PATCH 5.12 014/677] staging: fwserial: fix TIOCSSERIAL jiffies conversions Greg Kroah-Hartman
2021-05-12 14:41 ` [PATCH 5.12 015/677] tty: moxa: fix TIOCSSERIAL permission check Greg Kroah-Hartman
2021-05-12 14:41 ` [PATCH 5.12 016/677] tty: mxser: fix TIOCSSERIAL jiffies conversions Greg Kroah-Hartman
2021-05-12 14:41 ` [PATCH 5.12 017/677] staging: fwserial: fix TIOCSSERIAL permission check Greg Kroah-Hartman
2021-05-12 14:41 ` [PATCH 5.12 018/677] tty: mxser: " Greg Kroah-Hartman
2021-05-12 14:41 ` [PATCH 5.12 019/677] drm: bridge: fix LONTIUM use of mipi_dsi_() functions Greg Kroah-Hartman
2021-05-12 14:41 ` [PATCH 5.12 020/677] usb: typec: tcpm: Address incorrect values of tcpm psy for fixed supply Greg Kroah-Hartman
2021-05-12 14:41 ` [PATCH 5.12 021/677] usb: typec: tcpm: Address incorrect values of tcpm psy for pps supply Greg Kroah-Hartman
2021-05-12 14:41 ` [PATCH 5.12 022/677] usb: typec: tcpm: update power supply once partner accepts Greg Kroah-Hartman
2021-05-12 14:41 ` [PATCH 5.12 023/677] USB: serial: xr: fix CSIZE handling Greg Kroah-Hartman
2021-05-12 14:41 ` [PATCH 5.12 024/677] usb: xhci-mtk: remove or operator for setting schedule parameters Greg Kroah-Hartman
2021-05-12 14:41 ` [PATCH 5.12 025/677] usb: xhci-mtk: improve bandwidth scheduling with TT Greg Kroah-Hartman
2021-05-12 14:41 ` [PATCH 5.12 026/677] ASoC: samsung: tm2_wm5110: check of of_parse return value Greg Kroah-Hartman
2021-05-12 14:41 ` [PATCH 5.12 027/677] ASoC: Intel: kbl_da7219_max98927: Fix kabylake_ssp_fixup function Greg Kroah-Hartman
2021-05-12 14:41 ` [PATCH 5.12 028/677] ASoC: tlv320aic32x4: Register clocks before registering component Greg Kroah-Hartman
2021-05-12 14:41 ` [PATCH 5.12 029/677] ASoC: tlv320aic32x4: Increase maximum register in regmap Greg Kroah-Hartman
2021-05-12 14:41 ` [PATCH 5.12 030/677] MIPS: pci-mt7620: fix PLL lock check Greg Kroah-Hartman
2021-05-12 14:41 ` [PATCH 5.12 031/677] MIPS: pci-rt2880: fix slot 0 configuration Greg Kroah-Hartman
2021-05-12 14:41 ` [PATCH 5.12 032/677] FDDI: defxx: Bail out gracefully with unassigned PCI resource for CSR Greg Kroah-Hartman
2021-05-12 14:41 ` [PATCH 5.12 033/677] PCI: Allow VPD access for QLogic ISP2722 Greg Kroah-Hartman
2021-05-12 14:41 ` [PATCH 5.12 034/677] KVM: x86: Defer the MMU unload to the normal path on an global INVPCID Greg Kroah-Hartman
2021-05-12 14:41 ` [PATCH 5.12 035/677] PCI: xgene: Fix cfg resource mapping Greg Kroah-Hartman
2021-05-12 14:41 ` [PATCH 5.12 036/677] PCI: keystone: Let AM65 use the pci_ops defined in pcie-designware-host.c Greg Kroah-Hartman
2021-05-12 14:41 ` [PATCH 5.12 037/677] PM / devfreq: Unlock mutex and free devfreq struct in error path Greg Kroah-Hartman
2021-05-12 14:41 ` [PATCH 5.12 038/677] soc/tegra: regulators: Fix locking up when voltage-spread is out of range Greg Kroah-Hartman
2021-05-12 14:41 ` [PATCH 5.12 039/677] iio: inv_mpu6050: Fully validate gyro and accel scale writes Greg Kroah-Hartman
2021-05-12 14:41 ` [PATCH 5.12 040/677] iio: magnetometer: yas530: Include right header Greg Kroah-Hartman
2021-05-12 14:41 ` [PATCH 5.12 041/677] iio: sx9310: Fix write_.._debounce() Greg Kroah-Hartman
2021-05-12 14:41 ` [PATCH 5.12 042/677] iio:accel:adis16201: Fix wrong axis assignment that prevents loading Greg Kroah-Hartman
2021-05-12 14:41 ` [PATCH 5.12 043/677] iio:adc:ad7476: Fix remove handling Greg Kroah-Hartman
2021-05-12 14:41 ` [PATCH 5.12 044/677] iio: magnetometer: yas530: Fix return value on error path Greg Kroah-Hartman
2021-05-12 14:41 ` [PATCH 5.12 045/677] iio: sx9310: Fix access to variable DT array Greg Kroah-Hartman
2021-05-12 14:41 ` [PATCH 5.12 046/677] iio: hid-sensor-rotation: Fix quaternion data not correct Greg Kroah-Hartman
2021-05-12 14:41 ` [PATCH 5.12 047/677] sc16is7xx: Defer probe if device read fails Greg Kroah-Hartman
2021-05-12 14:41 ` [PATCH 5.12 048/677] phy: cadence: Sierra: Fix PHY power_on sequence Greg Kroah-Hartman
2021-05-12 14:41 ` [PATCH 5.12 049/677] misc: lis3lv02d: Fix false-positive WARN on various HP models Greg Kroah-Hartman
2021-05-12 14:41 ` [PATCH 5.12 050/677] phy: ti: j721e-wiz: Invoke wiz_init() before of_platform_device_create() Greg Kroah-Hartman
2021-05-12 14:41 ` [PATCH 5.12 051/677] misc: vmw_vmci: explicitly initialize vmci_notify_bm_set_msg struct Greg Kroah-Hartman
2021-05-12 14:41 ` [PATCH 5.12 052/677] misc: vmw_vmci: explicitly initialize vmci_datagram payload Greg Kroah-Hartman
2021-05-12 14:41 ` [PATCH 5.12 053/677] selinux: add proper NULL termination to the secclass_map permissions Greg Kroah-Hartman
2021-05-12 14:41 ` [PATCH 5.12 054/677] x86, sched: Treat Intel SNC topology as default, COD as exception Greg Kroah-Hartman
2021-05-12 14:41 ` [PATCH 5.12 055/677] async_xor: increase src_offs when dropping destination page Greg Kroah-Hartman
2021-05-12 14:41 ` [PATCH 5.12 056/677] md/bitmap: wait for external bitmap writes to complete during tear down Greg Kroah-Hartman
2021-05-12 14:41 ` [PATCH 5.12 057/677] md-cluster: fix use-after-free issue when removing rdev Greg Kroah-Hartman
2021-05-12 14:41 ` [PATCH 5.12 058/677] md: split mddev_find Greg Kroah-Hartman
2021-05-12 14:41 ` [PATCH 5.12 059/677] md: factor out a mddev_find_locked helper from mddev_find Greg Kroah-Hartman
2021-05-12 14:41 ` [PATCH 5.12 060/677] md: md_open returns -EBUSY when entering racing area Greg Kroah-Hartman
2021-05-12 14:41 ` [PATCH 5.12 061/677] md: Fix missing unused status line of /proc/mdstat Greg Kroah-Hartman
2021-05-12 14:41 ` [PATCH 5.12 062/677] MIPS: Reinstate platform `__div64_32 handler Greg Kroah-Hartman
2021-05-12 14:41 ` [PATCH 5.12 063/677] MIPS: generic: Update node names to avoid unit addresses Greg Kroah-Hartman
2021-05-12 14:41 ` [PATCH 5.12 064/677] mt76: mt7615: use ieee80211_free_txskb() in mt7615_tx_token_put() Greg Kroah-Hartman
2021-05-12 14:41 ` [PATCH 5.12 065/677] ipw2x00: potential buffer overflow in libipw_wx_set_encodeext() Greg Kroah-Hartman
2021-05-12 14:41 ` [PATCH 5.12 066/677] net: xilinx: drivers need/depend on HAS_IOMEM Greg Kroah-Hartman
2021-05-12 14:41 ` [PATCH 5.12 067/677] cfg80211: scan: drop entry from hidden_list on overflow Greg Kroah-Hartman
2021-05-12 14:41 ` [PATCH 5.12 068/677] rtw88: Fix array overrun in rtw_get_tx_power_params() Greg Kroah-Hartman
2021-05-12 14:41 ` [PATCH 5.12 069/677] mt76: fix potential DMA mapping leak Greg Kroah-Hartman
2021-05-12 14:41 ` [PATCH 5.12 070/677] FDDI: defxx: Make MMIO the configuration default except for EISA Greg Kroah-Hartman
2021-05-12 14:41 ` [PATCH 5.12 071/677] drm/qxl: use ttm bo priorities Greg Kroah-Hartman
2021-05-12 14:41 ` [PATCH 5.12 072/677] drm/ingenic: Fix non-OSD mode Greg Kroah-Hartman
2021-05-12 14:41 ` [PATCH 5.12 073/677] drm/panfrost: Clear MMU irqs before handling the fault Greg Kroah-Hartman
2021-05-12 14:42 ` [PATCH 5.12 074/677] drm/panfrost: Dont try to map pages that are already mapped Greg Kroah-Hartman
2021-05-12 14:42 ` [PATCH 5.12 075/677] drm/radeon: fix copy of uninitialized variable back to userspace Greg Kroah-Hartman
2021-05-12 14:42 ` [PATCH 5.12 076/677] drm/dp_mst: Revise broadcast msg lct & lcr Greg Kroah-Hartman
2021-05-12 14:42 ` [PATCH 5.12 077/677] drm/dp_mst: Set CLEAR_PAYLOAD_ID_TABLE as broadcast Greg Kroah-Hartman
2021-05-12 14:42 ` [PATCH 5.12 078/677] drm: bridge: fix ANX7625 use of mipi_dsi_() functions Greg Kroah-Hartman
2021-05-12 14:42 ` [PATCH 5.12 079/677] drm: bridge/panel: Cleanup connector on bridge detach Greg Kroah-Hartman
2021-05-12 14:42 ` [PATCH 5.12 080/677] drm/amd/display: Reject non-zero src_y and src_x for video planes Greg Kroah-Hartman
2021-05-12 14:42 ` [PATCH 5.12 081/677] drm/amdgpu: fix concurrent VM flushes on Vega/Navi v2 Greg Kroah-Hartman
2021-05-12 14:42 ` [PATCH 5.12 082/677] drm/amdgpu: add new MC firmware for Polaris12 32bit ASIC Greg Kroah-Hartman
2021-05-12 14:42 ` [PATCH 5.12 083/677] drm/amdgpu: fix r initial values Greg Kroah-Hartman
2021-05-12 14:42 ` [PATCH 5.12 084/677] drm/amdgpu: Init GFX10_ADDR_CONFIG for VCN v3 in DPG mode Greg Kroah-Hartman
2021-05-12 14:42 ` [PATCH 5.12 085/677] ALSA: hda/realtek: Re-order ALC882 Acer quirk table entries Greg Kroah-Hartman
2021-05-12 14:42 ` [PATCH 5.12 086/677] ALSA: hda/realtek: Re-order ALC882 Sony " Greg Kroah-Hartman
2021-05-12 14:42 ` [PATCH 5.12 087/677] ALSA: hda/realtek: Re-order ALC882 Clevo " Greg Kroah-Hartman
2021-05-12 14:42 ` [PATCH 5.12 088/677] ALSA: hda/realtek: Re-order ALC269 HP " Greg Kroah-Hartman
2021-05-12 14:42 ` [PATCH 5.12 089/677] ALSA: hda/realtek: Re-order ALC269 Acer " Greg Kroah-Hartman
2021-05-12 14:42 ` [PATCH 5.12 090/677] ALSA: hda/realtek: Re-order ALC269 Dell " Greg Kroah-Hartman
2021-05-12 14:42 ` [PATCH 5.12 091/677] ALSA: hda/realtek: Re-order ALC269 ASUS " Greg Kroah-Hartman
2021-05-12 14:42 ` [PATCH 5.12 092/677] ALSA: hda/realtek: Re-order ALC269 Sony " Greg Kroah-Hartman
2021-05-12 14:42 ` [PATCH 5.12 093/677] ALSA: hda/realtek: Re-order ALC269 Lenovo " Greg Kroah-Hartman
2021-05-12 14:42 ` [PATCH 5.12 094/677] ALSA: hda/realtek: Re-order remaining ALC269 " Greg Kroah-Hartman
2021-05-12 14:42 ` [PATCH 5.12 095/677] ALSA: hda/realtek: Re-order ALC662 " Greg Kroah-Hartman
2021-05-12 14:42 ` [PATCH 5.12 096/677] ALSA: hda/realtek: Remove redundant entry for ALC861 Haier/Uniwill devices Greg Kroah-Hartman
2021-05-12 14:42 ` [PATCH 5.12 097/677] ALSA: hda/realtek: ALC285 Thinkpad jack pin quirk is unreachable Greg Kroah-Hartman
2021-05-12 14:42 ` [PATCH 5.12 098/677] ALSA: hda/realtek: Fix speaker amp on HP Envy AiO 32 Greg Kroah-Hartman
2021-05-12 14:42 ` [PATCH 5.12 099/677] KVM: s390: VSIE: correctly handle MVPG when in VSIE Greg Kroah-Hartman
2021-05-12 14:42 ` [PATCH 5.12 100/677] KVM: s390: split kvm_s390_logical_to_effective Greg Kroah-Hartman
2021-05-12 14:42 ` [PATCH 5.12 101/677] KVM: s390: fix guarded storage control register handling Greg Kroah-Hartman
2021-05-12 14:42 ` [PATCH 5.12 102/677] s390: fix detection of vector enhancements facility 1 vs. vector packed decimal facility Greg Kroah-Hartman
2021-05-12 14:42 ` [PATCH 5.12 103/677] KVM: s390: VSIE: fix MVPG handling for prefixing and MSO Greg Kroah-Hartman
2021-05-12 14:42 ` [PATCH 5.12 104/677] KVM: s390: split kvm_s390_real_to_abs Greg Kroah-Hartman
2021-05-12 14:42 ` [PATCH 5.12 105/677] KVM: s390: extend kvm_s390_shadow_fault to return entry pointer Greg Kroah-Hartman
2021-05-12 14:42 ` [PATCH 5.12 106/677] KVM: x86/mmu: Alloc page for PDPTEs when shadowing 32-bit NPT with 64-bit Greg Kroah-Hartman
2021-05-12 14:42 ` [PATCH 5.12 107/677] KVM: x86/xen: Drop RAX[63:32] when processing hypercall Greg Kroah-Hartman
2021-05-12 14:42 ` [PATCH 5.12 108/677] KVM: X86: Fix failure to boost kernel lock holder candidate in SEV-ES guests Greg Kroah-Hartman
2021-05-12 14:42 ` [PATCH 5.12 109/677] KVM: x86: Properly handle APF vs disabled LAPIC situation Greg Kroah-Hartman
2021-05-12 14:42 ` [PATCH 5.12 110/677] KVM: x86: Check CR3 GPA for validity regardless of vCPU mode Greg Kroah-Hartman
2021-05-12 14:42 ` [PATCH 5.12 111/677] KVM: x86: Remove emulators broken checks on CR0/CR3/CR4 loads Greg Kroah-Hartman
2021-05-12 14:42 ` [PATCH 5.12 112/677] KVM: nSVM: Set the shadow root level to the TDP level for nested NPT Greg Kroah-Hartman
2021-05-12 14:42 ` [PATCH 5.12 113/677] KVM: SVM: Dont strip the C-bit from CR2 on #PF interception Greg Kroah-Hartman
2021-05-12 14:42 ` [PATCH 5.12 114/677] KVM: SVM: Use online_vcpus, not created_vcpus, to iterate over vCPUs Greg Kroah-Hartman
2021-05-12 14:42 ` [PATCH 5.12 115/677] KVM: SVM: Do not set sev->es_active until KVM_SEV_ES_INIT completes Greg Kroah-Hartman
2021-05-12 14:42 ` [PATCH 5.12 116/677] KVM: SVM: Do not allow SEV/SEV-ES initialization after vCPUs are created Greg Kroah-Hartman
2021-05-12 14:42 ` [PATCH 5.12 117/677] KVM: SVM: Inject #GP on guest MSR_TSC_AUX accesses if RDTSCP unsupported Greg Kroah-Hartman
2021-05-12 14:42 ` [PATCH 5.12 118/677] KVM: nVMX: Defer the MMU reload to the normal path on an EPTP switch Greg Kroah-Hartman
2021-05-12 14:42 ` [PATCH 5.12 119/677] KVM: VMX: Truncate GPR value for DR and CR reads in !64-bit mode Greg Kroah-Hartman
2021-05-12 14:42 ` [PATCH 5.12 120/677] KVM: nVMX: Truncate bits 63:32 of VMCS field on nested check in !64-bit Greg Kroah-Hartman
2021-05-12 14:42 ` [PATCH 5.12 121/677] KVM: nVMX: Truncate base/index GPR value on address calc " Greg Kroah-Hartman
2021-05-12 14:42 ` [PATCH 5.12 122/677] KVM: arm/arm64: Fix KVM_VGIC_V3_ADDR_TYPE_REDIST read Greg Kroah-Hartman
2021-05-12 14:42 ` [PATCH 5.12 123/677] KVM: Destroy I/O bus devices on unregister failure _after_ syncing SRCU Greg Kroah-Hartman
2021-05-12 14:42 ` [PATCH 5.12 124/677] KVM: Stop looking for coalesced MMIO zones if the bus is destroyed Greg Kroah-Hartman
2021-05-12 14:42 ` [PATCH 5.12 125/677] KVM: arm64: Support PREL/PLT relocs in EL2 code Greg Kroah-Hartman
2021-05-12 14:42 ` [PATCH 5.12 126/677] KVM: arm64: Fully zero the vcpu state on reset Greg Kroah-Hartman
2021-05-12 14:42 ` [PATCH 5.12 127/677] KVM: arm64: Fix KVM_VGIC_V3_ADDR_TYPE_REDIST_REGION read Greg Kroah-Hartman
2021-05-12 14:42 ` [PATCH 5.12 128/677] KVM: selftests: Sync data verify of dirty logging with guest sync Greg Kroah-Hartman
2021-05-12 14:42 ` [PATCH 5.12 129/677] KVM: selftests: Always run vCPU thread with blocked SIG_IPI Greg Kroah-Hartman
2021-05-12 14:42 ` [PATCH 5.12 130/677] Revert "drivers/net/wan/hdlc_fr: Fix a double free in pvc_xmit" Greg Kroah-Hartman
2021-05-12 14:42 ` [PATCH 5.12 131/677] Revert "i3c master: fix missing destroy_workqueue() on error in i3c_master_register" Greg Kroah-Hartman
2021-05-12 14:42 ` [PATCH 5.12 132/677] mfd: stmpe: Revert "Constify static struct resource" Greg Kroah-Hartman
2021-05-12 14:42 ` [PATCH 5.12 133/677] ovl: fix missing revert_creds() on error path Greg Kroah-Hartman
2021-05-12 14:43 ` [PATCH 5.12 134/677] Revert "drm/qxl: do not run release if qxl failed to init" Greg Kroah-Hartman
2021-05-12 14:43 ` [PATCH 5.12 135/677] usb: gadget: pch_udc: Revert d3cb25a12138 completely Greg Kroah-Hartman
2021-05-12 14:43 ` [PATCH 5.12 136/677] Revert "tools/power turbostat: adjust for temperature offset" Greg Kroah-Hartman
2021-05-12 14:43 ` [PATCH 5.12 137/677] firmware: xilinx: Fix dereferencing freed memory Greg Kroah-Hartman
2021-05-12 14:43 ` [PATCH 5.12 138/677] firmware: xilinx: Remove zynqmp_pm_get_eemi_ops() in IS_REACHABLE(CONFIG_ZYNQMP_FIRMWARE) Greg Kroah-Hartman
2021-05-12 14:43 ` [PATCH 5.12 139/677] x86/vdso: Use proper modifier for lens format specifier in extract() Greg Kroah-Hartman
2021-05-12 14:43 ` [PATCH 5.12 140/677] fpga: fpga-mgr: xilinx-spi: fix error messages on -EPROBE_DEFER Greg Kroah-Hartman
2021-05-12 14:43 ` [PATCH 5.12 141/677] crypto: keembay-ocs-hcu - Fix error return code in kmb_ocs_hcu_probe() Greg Kroah-Hartman
2021-05-12 14:43 ` [PATCH 5.12 142/677] crypto: keembay-ocs-aes - Fix error return code in kmb_ocs_aes_probe() Greg Kroah-Hartman
2021-05-12 14:43 ` [PATCH 5.12 143/677] crypto: sun8i-ss - fix result memory leak on error path Greg Kroah-Hartman
2021-05-12 14:43 ` [PATCH 5.12 144/677] memory: gpmc: fix out of bounds read and dereference on gpmc_cs[] Greg Kroah-Hartman
2021-05-12 14:43 ` [PATCH 5.12 145/677] ARM: dts: exynos: correct fuel gauge interrupt trigger level on GT-I9100 Greg Kroah-Hartman
2021-05-12 14:43 ` [PATCH 5.12 146/677] ARM: dts: exynos: correct fuel gauge interrupt trigger level on P4 Note family Greg Kroah-Hartman
2021-05-12 14:43 ` [PATCH 5.12 147/677] ARM: dts: exynos: correct fuel gauge interrupt trigger level on Midas family Greg Kroah-Hartman
2021-05-12 14:43 ` [PATCH 5.12 148/677] ARM: dts: exynos: correct MUIC " Greg Kroah-Hartman
2021-05-12 14:43 ` [PATCH 5.12 149/677] ARM: dts: exynos: correct PMIC " Greg Kroah-Hartman
2021-05-12 14:43 ` [PATCH 5.12 150/677] ARM: dts: exynos: correct PMIC interrupt trigger level on Odroid X/U3 family Greg Kroah-Hartman
2021-05-12 14:43 ` [PATCH 5.12 151/677] ARM: dts: exynos: correct PMIC interrupt trigger level on P4 Note family Greg Kroah-Hartman
2021-05-12 14:43 ` [PATCH 5.12 152/677] ARM: dts: exynos: correct PMIC interrupt trigger level on SMDK5250 Greg Kroah-Hartman
2021-05-12 14:43 ` [PATCH 5.12 153/677] ARM: dts: exynos: correct PMIC interrupt trigger level on Snow Greg Kroah-Hartman
2021-05-12 14:43 ` [PATCH 5.12 154/677] ARM: dts: s5pv210: correct fuel gauge interrupt trigger level on Fascinate family Greg Kroah-Hartman
2021-05-12 14:43 ` [PATCH 5.12 155/677] ARM: dts: renesas: Add mmc aliases into R-Car Gen2 board dts files Greg Kroah-Hartman
2021-05-12 14:43 ` [PATCH 5.12 156/677] arm64: dts: renesas: Add mmc aliases into " Greg Kroah-Hartman
2021-05-12 14:43 ` [PATCH 5.12 157/677] bus: ti-sysc: Fix initializing module_pa for modules without sysc register Greg Kroah-Hartman
2021-05-12 14:43 ` [PATCH 5.12 158/677] x86/platform/uv: Set section block size for hubless architectures Greg Kroah-Hartman
2021-05-12 14:43 ` [PATCH 5.12 159/677] serial: stm32: fix probe and remove order for dma Greg Kroah-Hartman
2021-05-12 14:43 ` [PATCH 5.12 160/677] serial: stm32: fix startup by enabling usart for reception Greg Kroah-Hartman
2021-05-12 14:43 ` [PATCH 5.12 161/677] serial: stm32: fix incorrect characters on console Greg Kroah-Hartman
2021-05-12 14:43 ` [PATCH 5.12 162/677] serial: stm32: fix TX and RX FIFO thresholds Greg Kroah-Hartman
2021-05-12 14:43 ` [PATCH 5.12 163/677] serial: stm32: fix a deadlock condition with wakeup event Greg Kroah-Hartman
2021-05-12 14:43 ` [PATCH 5.12 164/677] serial: stm32: fix wake-up flag handling Greg Kroah-Hartman
2021-05-12 14:43 ` [PATCH 5.12 165/677] serial: stm32: fix a deadlock in set_termios Greg Kroah-Hartman
2021-05-12 14:43 ` [PATCH 5.12 166/677] serial: liteuart: fix return value check in liteuart_probe() Greg Kroah-Hartman
2021-05-12 14:43 ` [PATCH 5.12 167/677] serial: stm32: fix tx dma completion, release channel Greg Kroah-Hartman
2021-05-12 14:43 ` [PATCH 5.12 168/677] serial: stm32: call stm32_transmit_chars locked Greg Kroah-Hartman
2021-05-12 14:43 ` [PATCH 5.12 169/677] serial: stm32: fix FIFO flush in startup and set_termios Greg Kroah-Hartman
2021-05-12 14:43 ` [PATCH 5.12 170/677] serial: stm32: add FIFO flush when port is closed Greg Kroah-Hartman
2021-05-12 14:43 ` [PATCH 5.12 171/677] serial: stm32: fix tx_empty condition Greg Kroah-Hartman
2021-05-12 14:43 ` [PATCH 5.12 172/677] usb: typec: tcpm: Wait for vbus discharge to VSAFE0V before toggling Greg Kroah-Hartman
2021-05-12 14:43 ` [PATCH 5.12 173/677] usb: typec: tcpci: Check ROLE_CONTROL while interpreting CC_STATUS Greg Kroah-Hartman
2021-05-12 14:43 ` [PATCH 5.12 174/677] usb: typec: tps6598x: Fix return value check in tps6598x_probe() Greg Kroah-Hartman
2021-05-12 14:43 ` [PATCH 5.12 175/677] usb: typec: stusb160x: fix return value check in stusb160x_probe() Greg Kroah-Hartman
2021-05-12 14:43 ` [PATCH 5.12 176/677] mfd: intel_pmt: Fix nuisance messages and handling of disabled capabilities Greg Kroah-Hartman
2021-05-12 14:43 ` [PATCH 5.12 177/677] regmap: set debugfs_name to NULL after it is freed Greg Kroah-Hartman
2021-05-12 14:43 ` [PATCH 5.12 178/677] spi: rockchip: avoid objtool warning Greg Kroah-Hartman
2021-05-12 14:43 ` [PATCH 5.12 179/677] arm64: dts: broadcom: bcm4908: fix switch parent node name Greg Kroah-Hartman
2021-05-12 14:43 ` [PATCH 5.12 180/677] mtd: rawnand: fsmc: Fix error code in fsmc_nand_probe() Greg Kroah-Hartman
2021-05-12 14:43 ` [PATCH 5.12 181/677] mtd: rawnand: brcmnand: fix OOB R/W with Hamming ECC Greg Kroah-Hartman
2021-05-12 14:43 ` [PATCH 5.12 182/677] mtd: Handle possible -EPROBE_DEFER from parse_mtd_partitions() Greg Kroah-Hartman
2021-05-12 14:43 ` [PATCH 5.12 183/677] mtd: rawnand: qcom: Return actual error code instead of -ENODEV Greg Kroah-Hartman
2021-05-12 14:43 ` [PATCH 5.12 184/677] mtd: dont lock when recursively deleting partitions Greg Kroah-Hartman
2021-05-12 14:43 ` [PATCH 5.12 185/677] mtd: parsers: qcom: Fix error condition Greg Kroah-Hartman
2021-05-12 14:43 ` [PATCH 5.12 186/677] mtd: parsers: qcom: incompatible with spi-nor 4k sectors Greg Kroah-Hartman
2021-05-12 14:43 ` [PATCH 5.12 187/677] mtd: maps: fix error return code of physmap_flash_remove() Greg Kroah-Hartman
2021-05-12 14:43 ` [PATCH 5.12 188/677] ARM: dts: stm32: fix usart 2 & 3 pinconf to wake up with flow control Greg Kroah-Hartman
2021-05-12 14:43 ` [PATCH 5.12 189/677] arm64: dts: ti: k3-j721e-main: Update the speed modes supported and their itap delay values for MMCSD subsystems Greg Kroah-Hartman
2021-05-12 14:43 ` [PATCH 5.12 190/677] iio: adis16480: fix pps mode sampling frequency math Greg Kroah-Hartman
2021-05-12 14:43 ` [PATCH 5.12 191/677] arm64: dts: qcom: sc7180: trogdor: Fix trip point config of charger thermal zone Greg Kroah-Hartman
2021-05-12 14:43 ` [PATCH 5.12 192/677] arm64: dts: qcom: sm8250: Fix level triggered PMU interrupt polarity Greg Kroah-Hartman
2021-05-12 14:43 ` [PATCH 5.12 193/677] arm64: dts: qcom: sm8350: " Greg Kroah-Hartman
2021-05-12 14:44 ` [PATCH 5.12 194/677] arm64: dts: qcom: sm8250: Fix timer interrupt to specify EL2 physical timer Greg Kroah-Hartman
2021-05-12 14:44 ` [PATCH 5.12 195/677] arm64: dts: qcom: sc7180: Avoid glitching SPI CS at bootup on trogdor Greg Kroah-Hartman
2021-05-12 14:44 ` [PATCH 5.12 196/677] arm64: dts: qcom: sdm845: fix number of pins in gpio-ranges Greg Kroah-Hartman
2021-05-12 14:44 ` [PATCH 5.12 197/677] arm64: dts: qcom: sm8150: " Greg Kroah-Hartman
2021-05-12 14:44 ` [PATCH 5.12 198/677] arm64: dts: qcom: sm8250: " Greg Kroah-Hartman
2021-05-12 14:44 ` [PATCH 5.12 199/677] arm64: dts: qcom: sm8350: " Greg Kroah-Hartman
2021-05-12 14:44 ` [PATCH 5.12 200/677] arm64: dts: qcom: db845c: fix correct powerdown pin for WSA881x Greg Kroah-Hartman
2021-05-12 14:44 ` [PATCH 5.12 201/677] crypto: sun8i-ss - Fix memory leak of object d when dma_iv fails to map Greg Kroah-Hartman
2021-05-12 14:44 ` [PATCH 5.12 202/677] spi: stm32: drop devres version of spi_register_master Greg Kroah-Hartman
2021-05-12 14:44 ` [PATCH 5.12 203/677] arm64: dts: broadcom: bcm4908: set Asus GT-AC5300 port 7 PHY mode Greg Kroah-Hartman
2021-05-12 14:44 ` [PATCH 5.12 204/677] regulator: bd9576: Fix return from bd957x_probe() Greg Kroah-Hartman
2021-05-12 14:44 ` [PATCH 5.12 205/677] arm64: dts: renesas: r8a77980: Fix vin4-7 endpoint binding Greg Kroah-Hartman
2021-05-12 14:44 ` [PATCH 5.12 206/677] selftests/x86: Add a missing .note.GNU-stack section to thunks_32.S Greg Kroah-Hartman
2021-05-12 14:44 ` [PATCH 5.12 207/677] crypto: arm/blake2s - fix for big endian Greg Kroah-Hartman
2021-05-12 14:44 ` [PATCH 5.12 208/677] spi: stm32: Fix use-after-free on unbind Greg Kroah-Hartman
2021-05-12 14:44 ` [PATCH 5.12 209/677] Drivers: hv: vmbus: Drop error message when No request id available Greg Kroah-Hartman
2021-05-12 14:44 ` [PATCH 5.12 210/677] staging: qlge: fix an error code in probe() Greg Kroah-Hartman
2021-05-12 14:44 ` [PATCH 5.12 211/677] x86/microcode: Check for offline CPUs before requesting new microcode Greg Kroah-Hartman
2021-05-12 14:44 ` [PATCH 5.12 212/677] usb: host: ehci-tegra: Select USB_GADGET Kconfig option Greg Kroah-Hartman
2021-05-12 14:44 ` [PATCH 5.12 213/677] devtmpfs: fix placement of complete() call Greg Kroah-Hartman
2021-05-12 14:44 ` [PATCH 5.12 214/677] usb: gadget: pch_udc: Replace cpu_to_le32() by lower_32_bits() Greg Kroah-Hartman
2021-05-12 14:44 ` [PATCH 5.12 215/677] usb: gadget: pch_udc: Check if driver is present before calling ->setup() Greg Kroah-Hartman
2021-05-12 14:44 ` [PATCH 5.12 216/677] usb: gadget: pch_udc: Check for DMA mapping error Greg Kroah-Hartman
2021-05-12 14:44 ` [PATCH 5.12 217/677] usb: gadget: pch_udc: Initialize device pointer before use Greg Kroah-Hartman
2021-05-12 14:44 ` [PATCH 5.12 218/677] usb: gadget: pch_udc: Provide a GPIO line used on Intel Minnowboard (v1) Greg Kroah-Hartman
2021-05-12 14:44 ` [PATCH 5.12 219/677] crypto: ccp - fix command queuing to TEE ring buffer Greg Kroah-Hartman
2021-05-12 14:44 ` [PATCH 5.12 220/677] crypto: qat - dont release uninitialized resources Greg Kroah-Hartman
2021-05-12 14:44 ` [PATCH 5.12 221/677] crypto: qat - ADF_STATUS_PF_RUNNING should be set after adf_dev_init Greg Kroah-Hartman
2021-05-12 14:44 ` [PATCH 5.12 222/677] fotg210-udc: Fix DMA on EP0 for length > max packet size Greg Kroah-Hartman
2021-05-12 14:44 ` [PATCH 5.12 223/677] fotg210-udc: Fix EP0 IN requests bigger than two packets Greg Kroah-Hartman
2021-05-12 14:44 ` [PATCH 5.12 224/677] fotg210-udc: Remove a dubious condition leading to fotg210_done Greg Kroah-Hartman
2021-05-12 14:44 ` [PATCH 5.12 225/677] fotg210-udc: Mask GRP2 interrupts we dont handle Greg Kroah-Hartman
2021-05-12 14:44 ` [PATCH 5.12 226/677] fotg210-udc: Dont DMA more than the buffer can take Greg Kroah-Hartman
2021-05-12 14:44 ` [PATCH 5.12 227/677] fotg210-udc: Complete OUT requests on short packets Greg Kroah-Hartman
2021-05-12 14:44 ` [PATCH 5.12 228/677] usb: gadget: s3c: Fix incorrect resources releasing Greg Kroah-Hartman
2021-05-12 14:44 ` [PATCH 5.12 229/677] usb: gadget: s3c: Fix the error handling path in s3c2410_udc_probe() Greg Kroah-Hartman
2021-05-12 14:44 ` [PATCH 5.12 230/677] dt-bindings: serial: stm32: Use type: object instead of false for additionalProperties Greg Kroah-Hartman
2021-05-12 14:44 ` [PATCH 5.12 231/677] mtd: require write permissions for locking and badblock ioctls Greg Kroah-Hartman
2021-05-12 14:44 ` [PATCH 5.12 232/677] arm64: dts: renesas: r8a779a0: Fix PMU interrupt Greg Kroah-Hartman
2021-05-12 14:44 ` [PATCH 5.12 233/677] arm64: dts: mt8183: Add gce client reg for display subcomponents Greg Kroah-Hartman
2021-05-12 14:44 ` [PATCH 5.12 234/677] arm64: dts: mt8173: fix wrong power-domain phandle of pmic Greg Kroah-Hartman
2021-05-12 14:44 ` [PATCH 5.12 235/677] bus: qcom: Put child node before return Greg Kroah-Hartman
2021-05-12 14:44 ` [PATCH 5.12 236/677] arm64: dts: qcom: sm8250: fix display nodes Greg Kroah-Hartman
2021-05-12 14:44 ` [PATCH 5.12 237/677] soundwire: bus: Fix device found flag correctly Greg Kroah-Hartman
2021-05-12 14:44 ` [PATCH 5.12 238/677] soc: mediatek: pm-domains: Fix missing error code in scpsys_add_subdomain() Greg Kroah-Hartman
2021-05-12 14:44 ` [PATCH 5.12 239/677] phy: ti: j721e-wiz: Delete "clk_div_sel" clk provider during cleanup Greg Kroah-Hartman
2021-05-12 14:44 ` [PATCH 5.12 240/677] phy: ralink: phy-mt7621-pci: fix XTAL bitmask Greg Kroah-Hartman
2021-05-12 14:44 ` [PATCH 5.12 241/677] phy: marvell: ARMADA375_USBCLUSTER_PHY should not default to y, unconditionally Greg Kroah-Hartman
2021-05-12 14:44 ` [PATCH 5.12 242/677] phy: ralink: phy-mt7621-pci: fix return value check in mt7621_pci_phy_probe() Greg Kroah-Hartman
2021-05-12 14:44 ` [PATCH 5.12 243/677] phy: ingenic: Fix a typo in ingenic_usb_phy_probe() Greg Kroah-Hartman
2021-05-12 14:44 ` [PATCH 5.12 244/677] arm64: dts: mediatek: fix reset GPIO level on pumpkin Greg Kroah-Hartman
2021-05-12 14:44 ` [PATCH 5.12 245/677] NFSv4.2: fix copy stateid copying for the async copy Greg Kroah-Hartman
2021-05-12 14:44 ` [PATCH 5.12 246/677] crypto: poly1305 - fix poly1305_core_setkey() declaration Greg Kroah-Hartman
2021-05-12 14:44 ` [PATCH 5.12 247/677] crypto: qat - fix error path in adf_isr_resource_alloc() Greg Kroah-Hartman
2021-05-12 14:44 ` [PATCH 5.12 248/677] usb: gadget: aspeed: fix dma map failure Greg Kroah-Hartman
2021-05-12 14:44 ` [PATCH 5.12 249/677] USB: gadget: udc: fix wrong pointer passed to IS_ERR() and PTR_ERR() Greg Kroah-Hartman
2021-05-12 14:44 ` [PATCH 5.12 250/677] drivers: nvmem: Fix voltage settings for QTI qfprom-efuse Greg Kroah-Hartman
2021-05-12 14:44 ` [PATCH 5.12 251/677] nvmem: rmem: fix undefined reference to memremap Greg Kroah-Hartman
2021-05-12 14:44 ` [PATCH 5.12 252/677] driver core: platform: Declare early_platform_cleanup() prototype Greg Kroah-Hartman
2021-05-12 14:44 ` [PATCH 5.12 253/677] ARM: dts: qcom: msm8974-lge-nexus5: correct fuel gauge interrupt trigger level Greg Kroah-Hartman
2021-05-12 14:45 ` [PATCH 5.12 254/677] ARM: dts: qcom: msm8974-samsung-klte: " Greg Kroah-Hartman
2021-05-12 14:45 ` [PATCH 5.12 255/677] memory: pl353: fix mask of ECC page_size config register Greg Kroah-Hartman
2021-05-12 14:45 ` [PATCH 5.12 256/677] soundwire: stream: fix memory leak in stream config error path Greg Kroah-Hartman
2021-05-12 14:45 ` [PATCH 5.12 257/677] m68k: mvme147,mvme16x: Dont wipe PCC timer config bits Greg Kroah-Hartman
2021-05-12 14:45 ` [PATCH 5.12 258/677] firmware: qcom_scm: Make __qcom_scm_is_call_available() return bool Greg Kroah-Hartman
2021-05-12 14:45 ` [PATCH 5.12 259/677] firmware: qcom_scm: Reduce locking section for __get_convention() Greg Kroah-Hartman
2021-05-12 14:45 ` [PATCH 5.12 260/677] firmware: qcom_scm: Workaround lack of "is available" call on SC7180 Greg Kroah-Hartman
2021-05-12 14:45 ` [PATCH 5.12 261/677] iio: adc: Kconfig: make AD9467 depend on ADI_AXI_ADC symbol Greg Kroah-Hartman
2021-05-12 14:45 ` [PATCH 5.12 262/677] mtd: rawnand: gpmi: Fix a double free in gpmi_nand_init Greg Kroah-Hartman
2021-05-12 14:45 ` [PATCH 5.12 263/677] irqchip/gic-v3: Fix OF_BAD_ADDR error handling Greg Kroah-Hartman
2021-05-12 14:45 ` [PATCH 5.12 264/677] staging: comedi: tests: ni_routes_test: Fix compilation error Greg Kroah-Hartman
2021-05-12 14:45 ` [PATCH 5.12 265/677] staging: rtl8192u: Fix potential infinite loop Greg Kroah-Hartman
2021-05-12 14:45 ` [PATCH 5.12 266/677] staging: fwserial: fix TIOCSSERIAL implementation Greg Kroah-Hartman
2021-05-12 14:45 ` [PATCH 5.12 267/677] staging: fwserial: fix TIOCGSERIAL implementation Greg Kroah-Hartman
2021-05-12 14:45 ` [PATCH 5.12 268/677] staging: greybus: uart: fix unprivileged TIOCCSERIAL Greg Kroah-Hartman
2021-05-12 14:45 ` [PATCH 5.12 269/677] platform/x86: dell-wmi-sysman: Make init_bios_attributes() ACPI object parsing more robust Greg Kroah-Hartman
2021-05-12 14:45 ` [PATCH 5.12 270/677] soc: qcom: pdr: Fix error return code in pdr_register_listener Greg Kroah-Hartman
2021-05-12 14:45 ` [PATCH 5.12 271/677] PM / devfreq: Use more accurate returned new_freq as resume_freq Greg Kroah-Hartman
2021-05-12 14:45 ` [PATCH 5.12 272/677] clocksource/drivers/timer-ti-dm: Fix posted mode status check order Greg Kroah-Hartman
2021-05-12 14:45 ` [PATCH 5.12 273/677] clocksource/drivers/timer-ti-dm: Add missing set_state_oneshot_stopped Greg Kroah-Hartman
2021-05-12 14:45 ` [PATCH 5.12 274/677] clocksource/drivers/ingenic_ost: Fix return value check in ingenic_ost_probe() Greg Kroah-Hartman
2021-05-12 14:45 ` [PATCH 5.12 275/677] spi: Fix use-after-free with devm_spi_alloc_* Greg Kroah-Hartman
2021-05-12 14:45 ` [PATCH 5.12 276/677] spi: fsl: add missing iounmap() on error in of_fsl_spi_probe() Greg Kroah-Hartman
2021-05-12 14:45 ` [PATCH 5.12 277/677] soc: qcom: mdt_loader: Validate that p_filesz < p_memsz Greg Kroah-Hartman
2021-05-12 14:45 ` [PATCH 5.12 278/677] soc: qcom: mdt_loader: Detect truncated read of segments Greg Kroah-Hartman
2021-05-12 14:45 ` [PATCH 5.12 279/677] PM: runtime: Replace inline function pm_runtime_callbacks_present() Greg Kroah-Hartman
2021-05-12 14:45 ` [PATCH 5.12 280/677] cpuidle: Fix ARM_QCOM_SPM_CPUIDLE configuration Greg Kroah-Hartman
2021-05-12 14:45 ` [PATCH 5.12 281/677] ACPI: CPPC: Replace cppc_attr with kobj_attribute Greg Kroah-Hartman
2021-05-12 14:45 ` [PATCH 5.12 282/677] crypto: allwinner - add missing CRYPTO_ prefix Greg Kroah-Hartman
2021-05-12 14:45 ` [PATCH 5.12 283/677] crypto: sun8i-ss - Fix memory leak of pad Greg Kroah-Hartman
2021-05-12 14:45 ` [PATCH 5.12 284/677] crypto: sa2ul - Fix memory leak of rxd Greg Kroah-Hartman
2021-05-12 14:45 ` [PATCH 5.12 285/677] crypto: qat - Fix a double free in adf_create_ring Greg Kroah-Hartman
2021-05-12 14:45 ` [PATCH 5.12 286/677] cpufreq: armada-37xx: Fix setting TBG parent for load levels Greg Kroah-Hartman
2021-05-12 14:45 ` [PATCH 5.12 287/677] clk: mvebu: armada-37xx-periph: remove .set_parent method for CPU PM clock Greg Kroah-Hartman
2021-05-12 14:45 ` [PATCH 5.12 288/677] cpufreq: armada-37xx: Fix the AVS value for load L1 Greg Kroah-Hartman
2021-05-12 14:45 ` [PATCH 5.12 289/677] clk: mvebu: armada-37xx-periph: Fix switching CPU freq from 250 Mhz to 1 GHz Greg Kroah-Hartman
2021-05-12 14:45 ` [PATCH 5.12 290/677] clk: mvebu: armada-37xx-periph: Fix workaround for switching from L1 to L0 Greg Kroah-Hartman
2021-05-12 14:45 ` [PATCH 5.12 291/677] cpufreq: armada-37xx: Fix driver cleanup when registration failed Greg Kroah-Hartman
2021-05-12 14:45 ` [PATCH 5.12 292/677] cpufreq: armada-37xx: Fix determining base CPU frequency Greg Kroah-Hartman
2021-05-12 14:45 ` [PATCH 5.12 293/677] spi: spi-zynqmp-gqspi: use wait_for_completion_timeout to make zynqmp_qspi_exec_op not interruptible Greg Kroah-Hartman
2021-05-12 14:45 ` [PATCH 5.12 294/677] spi: spi-zynqmp-gqspi: add mutex locking for exec_op Greg Kroah-Hartman
2021-05-12 14:45 ` [PATCH 5.12 295/677] spi: spi-zynqmp-gqspi: transmit dummy circles by using the controllers internal functionality Greg Kroah-Hartman
2021-05-12 14:45 ` [PATCH 5.12 296/677] spi: spi-zynqmp-gqspi: fix incorrect operating mode in zynqmp_qspi_read_op Greg Kroah-Hartman
2021-05-12 14:45 ` [PATCH 5.12 297/677] spi: fsl-lpspi: Fix PM reference leak in lpspi_prepare_xfer_hardware() Greg Kroah-Hartman
2021-05-12 14:45 ` [PATCH 5.12 298/677] usb: gadget: r8a66597: Add missing null check on return from platform_get_resource Greg Kroah-Hartman
2021-05-12 14:45 ` [PATCH 5.12 299/677] USB: cdc-acm: fix unprivileged TIOCCSERIAL Greg Kroah-Hartman
2021-05-12 14:45 ` [PATCH 5.12 300/677] USB: cdc-acm: fix TIOCGSERIAL implementation Greg Kroah-Hartman
2021-05-12 14:45 ` [PATCH 5.12 301/677] tty: actually undefine superseded ASYNC flags Greg Kroah-Hartman
2021-05-12 14:45 ` [PATCH 5.12 302/677] tty: fix return value for unsupported ioctls Greg Kroah-Hartman
2021-05-12 14:45 ` [PATCH 5.12 303/677] tty: fix return value for unsupported termiox ioctls Greg Kroah-Hartman
2021-05-12 14:45 ` [PATCH 5.12 304/677] serial: core: return early on unsupported ioctls Greg Kroah-Hartman
2021-05-12 14:45 ` [PATCH 5.12 305/677] firmware: qcom-scm: Fix QCOM_SCM configuration Greg Kroah-Hartman
2021-05-12 14:45 ` [PATCH 5.12 306/677] node: fix device cleanups in error handling code Greg Kroah-Hartman
2021-05-12 14:45 ` [PATCH 5.12 307/677] crypto: chelsio - Read rxchannel-id from firmware Greg Kroah-Hartman
2021-05-12 14:45 ` [PATCH 5.12 308/677] usbip: vudc: fix missing unlock on error in usbip_sockfd_store() Greg Kroah-Hartman
2021-05-12 14:45 ` [PATCH 5.12 309/677] m68k: Add missing mmap_read_lock() to sys_cacheflush() Greg Kroah-Hartman
2021-05-12 14:45 ` [PATCH 5.12 310/677] usb: cdnsp: Fixes issue with Configure Endpoint command Greg Kroah-Hartman
2021-05-12 14:45 ` [PATCH 5.12 311/677] spi: spi-zynqmp-gqspi: Fix missing unlock on error in zynqmp_qspi_exec_op() Greg Kroah-Hartman
2021-05-12 14:45 ` [PATCH 5.12 312/677] memory: renesas-rpc-if: fix possible NULL pointer dereference of resource Greg Kroah-Hartman
2021-05-12 14:45 ` [PATCH 5.12 313/677] memory: samsung: exynos5422-dmc: handle clk_set_parent() failure Greg Kroah-Hartman
2021-05-12 14:46 ` [PATCH 5.12 314/677] security: keys: trusted: fix TPM2 authorizations Greg Kroah-Hartman
2021-05-12 14:46 ` [PATCH 5.12 315/677] char: tpm: fix error return code in tpm_cr50_i2c_tis_recv() Greg Kroah-Hartman
2021-05-12 14:46 ` [PATCH 5.12 316/677] platform/x86: pmc_atom: Match all Beckhoff Automation baytrail boards with critclk_systems DMI table Greg Kroah-Hartman
2021-05-12 14:46 ` [PATCH 5.12 317/677] usb: typec: tcpm: Honour pSnkStdby requirement during negotiation Greg Kroah-Hartman
2021-05-12 14:46 ` [PATCH 5.12 318/677] spi: spi-zynqmp-gqspi: Fix runtime PM imbalance in zynqmp_qspi_probe Greg Kroah-Hartman
2021-05-12 14:46 ` [PATCH 5.12 319/677] ARM: dts: aspeed: Rainier: Fix humidity sensor bus address Greg Kroah-Hartman
2021-05-12 14:46 ` [PATCH 5.12 320/677] Drivers: hv: vmbus: Use after free in __vmbus_open() Greg Kroah-Hartman
2021-05-12 14:46 ` [PATCH 5.12 321/677] crypto: arm64/aes-ce - deal with oversight in new CTR carry code Greg Kroah-Hartman
2021-05-12 14:46 ` [PATCH 5.12 322/677] spi: spi-zynqmp-gqspi: fix clk_enable/disable imbalance issue Greg Kroah-Hartman
2021-05-12 14:46 ` [PATCH 5.12 323/677] spi: spi-zynqmp-gqspi: fix hang issue when suspend/resume Greg Kroah-Hartman
2021-05-12 14:46 ` [PATCH 5.12 324/677] spi: spi-zynqmp-gqspi: fix use-after-free in zynqmp_qspi_exec_op Greg Kroah-Hartman
2021-05-12 14:46 ` [PATCH 5.12 325/677] spi: spi-zynqmp-gqspi: return -ENOMEM if dma_map_single fails Greg Kroah-Hartman
2021-05-12 14:46 ` [PATCH 5.12 326/677] btrfs: zoned: move log tree node allocation out of log_root_tree->log_mutex Greg Kroah-Hartman
2021-05-12 14:46 ` [PATCH 5.12 327/677] btrfs: zoned: bail out in btrfs_alloc_chunk for bad input Greg Kroah-Hartman
2021-05-12 14:46 ` [PATCH 5.12 328/677] x86/platform/uv: Fix !KEXEC build failure Greg Kroah-Hartman
2021-05-12 14:46 ` [PATCH 5.12 329/677] hwmon: (pmbus/pxe1610) dont bail out when not all pages are active Greg Kroah-Hartman
2021-05-12 14:46 ` [PATCH 5.12 330/677] platform/surface: aggregator: fix a bit test Greg Kroah-Hartman
2021-05-12 14:46 ` Greg Kroah-Hartman [this message]
2021-05-12 14:46 ` [PATCH 5.12 332/677] PM: hibernate: x86: Use crc32 instead of md5 for hibernation e820 integrity check Greg Kroah-Hartman
2021-05-12 14:46 ` [PATCH 5.12 333/677] usb: dwc2: Fix host mode hibernation exit with remote wakeup flow Greg Kroah-Hartman
2021-05-12 14:46 ` [PATCH 5.12 334/677] usb: dwc2: Fix hibernation between host and device modes Greg Kroah-Hartman
2021-05-12 14:46 ` [PATCH 5.12 335/677] ttyprintk: Add TTY hangup callback Greg Kroah-Hartman
2021-05-12 14:46 ` [PATCH 5.12 336/677] serial: omap: dont disable rs485 if rts gpio is missing Greg Kroah-Hartman
2021-05-12 14:46 ` [PATCH 5.12 337/677] serial: omap: fix rs485 half-duplex filtering Greg Kroah-Hartman
2021-05-12 14:46 ` [PATCH 5.12 338/677] spi: tools: make a symbolic link to the header file spi.h Greg Kroah-Hartman
2021-05-12 14:46 ` [PATCH 5.12 339/677] xen-blkback: fix compatibility bug with single page rings Greg Kroah-Hartman
2021-05-12 14:46 ` [PATCH 5.12 340/677] soc: aspeed: fix a ternary sign expansion bug Greg Kroah-Hartman
2021-05-12 14:46 ` [PATCH 5.12 341/677] drm/tilcdc: send vblank event when disabling crtc Greg Kroah-Hartman
2021-05-12 14:46 ` [PATCH 5.12 342/677] drm/stm: Fix bus_flags handling Greg Kroah-Hartman
2021-05-12 14:46 ` [PATCH 5.12 343/677] drm/amd/display: Fix off by one in hdmi_14_process_transaction() Greg Kroah-Hartman
2021-05-12 14:46 ` [PATCH 5.12 344/677] drm/mcde/panel: Inverse misunderstood flag Greg Kroah-Hartman
2021-05-12 14:46 ` [PATCH 5.12 345/677] scsi: lpfc: Fix null pointer dereference in lpfc_prep_els_iocb() Greg Kroah-Hartman
2021-05-12 14:46 ` [PATCH 5.12 346/677] sched/fair: Fix shift-out-of-bounds in load_balance() Greg Kroah-Hartman
2021-05-12 14:46 ` [PATCH 5.12 347/677] printk: limit second loop of syslog_print_all Greg Kroah-Hartman
2021-05-12 14:46 ` [PATCH 5.12 348/677] afs: Fix updating of i_mode due to 3rd party change Greg Kroah-Hartman
2021-05-12 14:46 ` [PATCH 5.12 349/677] rcu: Remove spurious instrumentation_end() in rcu_nmi_enter() Greg Kroah-Hartman
2021-05-12 14:46 ` [PATCH 5.12 350/677] media: mtk: fix mtk-smi dependency Greg Kroah-Hartman
2021-05-12 14:46 ` [PATCH 5.12 351/677] media: vivid: fix assignment of dev->fbuf_out_flags Greg Kroah-Hartman
2021-05-12 14:46 ` [PATCH 5.12 352/677] media: saa7134: use sg_dma_len when building pgtable Greg Kroah-Hartman
2021-05-12 14:46 ` [PATCH 5.12 353/677] media: saa7146: " Greg Kroah-Hartman
2021-05-12 14:46 ` [PATCH 5.12 354/677] media: omap4iss: return error code when omap4iss_get() failed Greg Kroah-Hartman
2021-05-12 14:46 ` [PATCH 5.12 355/677] media: rkisp1: rsz: crash fix when setting src format Greg Kroah-Hartman
2021-05-12 14:46 ` [PATCH 5.12 356/677] media: aspeed: fix clock handling logic Greg Kroah-Hartman
2021-05-12 14:46 ` [PATCH 5.12 357/677] drm/panel-simple: Undo enable if HPD never asserts Greg Kroah-Hartman
2021-05-12 14:46 ` [PATCH 5.12 358/677] power: supply: bq27xxx: fix sign of current_now for newer ICs Greg Kroah-Hartman
2021-05-12 14:46 ` [PATCH 5.12 359/677] drm/probe-helper: Check epoch counter in output_poll_execute() Greg Kroah-Hartman
2021-05-12 14:46 ` [PATCH 5.12 360/677] media: venus: core: Fix some resource leaks in the error path of venus_probe() Greg Kroah-Hartman
2021-05-12 14:46 ` [PATCH 5.12 361/677] media: platform: sunxi: sun6i-csi: fix error return code of sun6i_video_start_streaming() Greg Kroah-Hartman
2021-05-12 14:46 ` [PATCH 5.12 362/677] media: m88ds3103: fix return value check in m88ds3103_probe() Greg Kroah-Hartman
2021-05-12 14:46 ` [PATCH 5.12 363/677] media: docs: Fix data organization of MEDIA_BUS_FMT_RGB101010_1X30 Greg Kroah-Hartman
2021-05-12 14:46 ` [PATCH 5.12 364/677] media: [next] staging: media: atomisp: fix memory leak of object flash Greg Kroah-Hartman
2021-05-12 14:46 ` [PATCH 5.12 365/677] media: atomisp: Fixed error handling path Greg Kroah-Hartman
2021-05-12 14:46 ` [PATCH 5.12 366/677] media: m88rs6000t: avoid potential out-of-bounds reads on arrays Greg Kroah-Hartman
2021-05-12 14:46 ` [PATCH 5.12 367/677] media: atomisp: Fix use after free in atomisp_alloc_css_stat_bufs() Greg Kroah-Hartman
2021-05-12 14:46 ` [PATCH 5.12 368/677] x86/kprobes: Retrieve correct opcode for group instruction Greg Kroah-Hartman
2021-05-12 14:46 ` [PATCH 5.12 369/677] drm/amdkfd: fix build error with AMD_IOMMU_V2=m Greg Kroah-Hartman
2021-05-12 14:46 ` [PATCH 5.12 370/677] drm/amdkfd: Fix recursive lock warnings Greg Kroah-Hartman
2021-05-12 14:46 ` [PATCH 5.12 371/677] drm/amd/display: Free local data after use Greg Kroah-Hartman
2021-05-12 14:46 ` [PATCH 5.12 372/677] of: overlay: fix for_each_child.cocci warnings Greg Kroah-Hartman
2021-05-12 14:46 ` [PATCH 5.12 373/677] scsi: qla2xxx: Check kzalloc() return value Greg Kroah-Hartman
2021-05-12 14:47 ` [PATCH 5.12 374/677] x86/kprobes: Fix to check non boostable prefixes correctly Greg Kroah-Hartman
2021-05-12 14:47 ` [PATCH 5.12 375/677] drm/omap: dsi: Add missing IRQF_ONESHOT Greg Kroah-Hartman
2021-05-12 14:47 ` [PATCH 5.12 376/677] selftests: fix prepending $(OUTPUT) to $(TEST_PROGS) Greg Kroah-Hartman
2021-05-12 14:47 ` [PATCH 5.12 377/677] pata_arasan_cf: fix IRQ check Greg Kroah-Hartman
2021-05-12 14:47 ` [PATCH 5.12 378/677] pata_ipx4xx_cf: " Greg Kroah-Hartman
2021-05-12 14:47 ` [PATCH 5.12 379/677] sata_mv: add IRQ checks Greg Kroah-Hartman
2021-05-12 14:47 ` [PATCH 5.12 380/677] ata: libahci_platform: fix IRQ check Greg Kroah-Hartman
2021-05-12 14:47 ` [PATCH 5.12 381/677] seccomp: Fix CONFIG tests for Seccomp_filters Greg Kroah-Hartman
2021-05-12 14:47 ` [PATCH 5.12 382/677] drm/mediatek: Switch the hdmi bridge ops to the atomic versions Greg Kroah-Hartman
2021-05-12 14:47 ` [PATCH 5.12 383/677] drm/mediatek: Dont support hdmi connector creation Greg Kroah-Hartman
2021-05-12 14:47 ` [PATCH 5.12 384/677] nvme-tcp: block BH in sk state_change sk callback Greg Kroah-Hartman
2021-05-12 14:47 ` [PATCH 5.12 385/677] nvmet-tcp: fix incorrect locking in " Greg Kroah-Hartman
2021-05-12 14:47 ` [PATCH 5.12 386/677] clk: imx: Fix reparenting of UARTs not associated with stdout Greg Kroah-Hartman
2021-05-12 14:47 ` [PATCH 5.12 387/677] power: supply: bq25980: Move props from battery node Greg Kroah-Hartman
2021-05-12 14:47 ` [PATCH 5.12 388/677] nvme: retrigger ANA log update if group descriptor isnt found Greg Kroah-Hartman
2021-05-12 14:47 ` [PATCH 5.12 389/677] media: ccs: Fix sub-device function Greg Kroah-Hartman
2021-05-12 14:47 ` [PATCH 5.12 390/677] media: ipu3-cio2: Fix pixel-rate derived link frequency Greg Kroah-Hartman
2021-05-12 14:47 ` [PATCH 5.12 391/677] media: i2c: imx219: Move out locking/unlocking of vflip and hflip controls from imx219_set_stream Greg Kroah-Hartman
2021-05-12 14:47 ` [PATCH 5.12 392/677] media: i2c: imx219: Balance runtime PM use-count Greg Kroah-Hartman
2021-05-12 14:47 ` [PATCH 5.12 393/677] media: v4l2-ctrls.c: fix race condition in hdl->requests list Greg Kroah-Hartman
2021-05-12 14:47 ` [PATCH 5.12 394/677] media: rkvdec: Do not require all controls to be present in every request Greg Kroah-Hartman
2021-05-12 14:47 ` [PATCH 5.12 395/677] vfio/fsl-mc: Re-order vfio_fsl_mc_probe() Greg Kroah-Hartman
2021-05-12 14:47 ` [PATCH 5.12 396/677] vfio/pci: Move VGA and VF initialization to functions Greg Kroah-Hartman
2021-05-12 14:47 ` [PATCH 5.12 397/677] vfio/pci: Re-order vfio_pci_probe() Greg Kroah-Hartman
2021-05-12 14:47 ` [PATCH 5.12 398/677] drm/msm: Fix debugfs deadlock Greg Kroah-Hartman
2021-05-12 14:47 ` [PATCH 5.12 399/677] drm/msm/dpu: enable DPU_SSPP_QOS_8LVL for SM8250 Greg Kroah-Hartman
2021-05-12 14:47 ` [PATCH 5.12 400/677] vfio/mdev: Do not allow a mdev_type to have a NULL parent pointer Greg Kroah-Hartman
2021-05-12 14:47 ` [PATCH 5.12 401/677] clk: zynqmp: move zynqmp_pll_set_mode out of round_rate callback Greg Kroah-Hartman
2021-05-12 14:47 ` [PATCH 5.12 402/677] clk: zynqmp: pll: add set_pll_mode to check condition in zynqmp_pll_enable Greg Kroah-Hartman
2021-05-12 14:47 ` [PATCH 5.12 403/677] drm: xlnx: zynqmp: fix a memset in zynqmp_dp_train() Greg Kroah-Hartman
2021-05-12 14:47 ` [PATCH 5.12 404/677] media: i2c: rdamc21: Fix warning on u8 cast Greg Kroah-Hartman
2021-05-12 14:47 ` [PATCH 5.12 405/677] clk: qcom: a7-pll: Add missing MODULE_DEVICE_TABLE Greg Kroah-Hartman
2021-05-12 14:47 ` [PATCH 5.12 406/677] clk: qcom: a53-pll: " Greg Kroah-Hartman
2021-05-12 14:47 ` [PATCH 5.12 407/677] clk: qcom: apss-ipq-pll: " Greg Kroah-Hartman
2021-05-12 14:47 ` [PATCH 5.12 408/677] drm/amd/display: use GFP_ATOMIC in dcn20_resource_construct Greg Kroah-Hartman
2021-05-12 14:47 ` [PATCH 5.12 409/677] drm/amd/display: check fb of primary plane Greg Kroah-Hartman
2021-05-12 14:47 ` [PATCH 5.12 410/677] drm/radeon: Fix a missing check bug in radeon_dp_mst_detect() Greg Kroah-Hartman
2021-05-12 14:47 ` [PATCH 5.12 411/677] bcache: Use 64-bit arithmetic instead of 32-bit Greg Kroah-Hartman
2021-05-12 14:47 ` [PATCH 5.12 412/677] clk: uniphier: Fix potential infinite loop Greg Kroah-Hartman
2021-05-12 14:47 ` [PATCH 5.12 413/677] scsi: pm80xx: Increase timeout for pm80xx mpi_uninit_check() Greg Kroah-Hartman
2021-05-12 14:47 ` [PATCH 5.12 414/677] scsi: pm80xx: Fix potential infinite loop Greg Kroah-Hartman
2021-05-12 14:47 ` [PATCH 5.12 415/677] scsi: ufs: ufshcd-pltfrm: Fix deferred probing Greg Kroah-Hartman
2021-05-12 14:47 ` [PATCH 5.12 416/677] scsi: hisi_sas: Fix IRQ checks Greg Kroah-Hartman
2021-05-12 14:47 ` [PATCH 5.12 417/677] scsi: jazz_esp: Add IRQ check Greg Kroah-Hartman
2021-05-12 14:47 ` [PATCH 5.12 418/677] scsi: sun3x_esp: " Greg Kroah-Hartman
2021-05-12 14:47 ` [PATCH 5.12 419/677] scsi: sni_53c710: " Greg Kroah-Hartman
2021-05-12 14:47 ` [PATCH 5.12 420/677] scsi: ibmvfc: Fix invalid state machine BUG_ON() Greg Kroah-Hartman
2021-05-12 14:47 ` [PATCH 5.12 421/677] mailbox: sprd: Introduce refcnt when clients requests/free channels Greg Kroah-Hartman
2021-05-12 14:47 ` [PATCH 5.12 422/677] mfd: stm32-timers: Avoid clearing auto reload register Greg Kroah-Hartman
2021-05-12 14:47 ` [PATCH 5.12 423/677] nvmet-tcp: fix a segmentation fault during io parsing error Greg Kroah-Hartman
2021-05-12 14:47 ` [PATCH 5.12 424/677] nvme-pci: dont simple map sgl when sgls are disabled Greg Kroah-Hartman
2021-05-12 14:47 ` [PATCH 5.12 425/677] media: meson-ge2d: fix rotation parameters Greg Kroah-Hartman
2021-05-12 14:47 ` [PATCH 5.12 426/677] media: cedrus: Fix H265 status definitions Greg Kroah-Hartman
2021-05-12 14:47 ` [PATCH 5.12 427/677] HSI: core: fix resource leaks in hsi_add_client_from_dt() Greg Kroah-Hartman
2021-05-12 14:47 ` [PATCH 5.12 428/677] x86/events/amd/iommu: Fix sysfs type mismatch Greg Kroah-Hartman
2021-05-12 14:47 ` [PATCH 5.12 429/677] perf/amd/uncore: " Greg Kroah-Hartman
2021-05-12 14:47 ` [PATCH 5.12 430/677] io_uring: fix overflows checks in provide buffers Greg Kroah-Hartman
2021-05-12 14:47 ` [PATCH 5.12 431/677] block/rnbd-clt-sysfs: Remove copy buffer overlap in rnbd_clt_get_path_name Greg Kroah-Hartman
2021-05-12 14:47 ` [PATCH 5.12 432/677] sched/debug: Fix cgroup_path[] serialization Greg Kroah-Hartman
2021-05-12 14:47 ` [PATCH 5.12 433/677] kthread: Fix PF_KTHREAD vs to_kthread() race Greg Kroah-Hartman
2021-05-12 14:48 ` [PATCH 5.12 434/677] ataflop: potential out of bounds in do_format() Greg Kroah-Hartman
2021-05-12 14:48 ` [PATCH 5.12 435/677] ataflop: fix off by one in ataflop_probe() Greg Kroah-Hartman
2021-05-12 14:48 ` [PATCH 5.12 436/677] drivers/block/null_blk/main: Fix a double free in null_init Greg Kroah-Hartman
2021-05-12 14:48 ` [PATCH 5.12 437/677] xsk: Respect devices headroom and tailroom on generic xmit path Greg Kroah-Hartman
2021-05-12 14:48 ` [PATCH 5.12 438/677] HID: plantronics: Workaround for double volume key presses Greg Kroah-Hartman
2021-05-12 14:48 ` [PATCH 5.12 439/677] perf symbols: Fix dso__fprintf_symbols_by_name() to return the number of printed chars Greg Kroah-Hartman
2021-05-12 14:48 ` [PATCH 5.12 440/677] ASoC: Intel: boards: sof-wm8804: add check for PLL setting Greg Kroah-Hartman
2021-05-12 14:48 ` [PATCH 5.12 441/677] ASoC: Intel: Skylake: Compile when any configuration is selected Greg Kroah-Hartman
2021-05-12 14:48 ` [PATCH 5.12 442/677] RDMA/mlx5: Zero out ODP related items in the mlx5_ib_mr Greg Kroah-Hartman
2021-05-12 14:48 ` [PATCH 5.12 443/677] RDMA/mlx5: Fix query RoCE port Greg Kroah-Hartman
2021-05-12 14:48 ` [PATCH 5.12 444/677] RDMA/mlx5: Fix mlx5 rates to IB rates map Greg Kroah-Hartman
2021-05-12 14:48 ` [PATCH 5.12 445/677] net/mlx5: DR, Add missing vhca_id consume from STEv1 Greg Kroah-Hartman
2021-05-12 14:48 ` [PATCH 5.12 446/677] wilc1000: write value to WILC_INTR2_ENABLE register Greg Kroah-Hartman
2021-05-12 14:48 ` [PATCH 5.12 447/677] KVM: x86/mmu: Retry page faults that hit an invalid memslot Greg Kroah-Hartman
2021-05-12 14:48 ` [PATCH 5.12 448/677] Bluetooth: avoid deadlock between hci_dev->lock and socket lock Greg Kroah-Hartman
2021-05-12 14:48 ` [PATCH 5.12 449/677] net: lapbether: Prevent racing when checking whether the netif is running Greg Kroah-Hartman
2021-05-12 14:48 ` [PATCH 5.12 450/677] libbpf: Add explicit padding to bpf_xdp_set_link_opts Greg Kroah-Hartman
2021-05-12 14:48 ` [PATCH 5.12 451/677] bpftool: Fix maybe-uninitialized warnings Greg Kroah-Hartman
2021-05-12 14:48 ` [PATCH 5.12 452/677] iommu: Check dev->iommu in iommu_dev_xxx functions Greg Kroah-Hartman
2021-05-12 14:48 ` [PATCH 5.12 453/677] iommu/dma: Resurrect the "forcedac" option Greg Kroah-Hartman
2021-05-12 14:48 ` [PATCH 5.12 454/677] iommu/vt-d: Reject unsupported page request modes Greg Kroah-Hartman
2021-05-12 14:48 ` [PATCH 5.12 455/677] ASoC: tegra30: i2s: Restore hardware state on runtime PM resume Greg Kroah-Hartman
2021-05-12 14:48 ` [PATCH 5.12 456/677] net: dsa: bcm_sf2: add function finding RGMII register Greg Kroah-Hartman
2021-05-12 14:48 ` [PATCH 5.12 457/677] net: dsa: bcm_sf2: fix BCM4908 RGMII reg(s) Greg Kroah-Hartman
2021-05-12 14:48 ` [PATCH 5.12 458/677] selftests/bpf: Re-generate vmlinux.h and BPF skeletons if bpftool changed Greg Kroah-Hartman
2021-05-12 14:48 ` [PATCH 5.12 459/677] libbpf: Add explicit padding to btf_dump_emit_type_decl_opts Greg Kroah-Hartman
2021-05-12 14:48 ` [PATCH 5.12 460/677] powerpc/mm: Move the linear_mapping_mutex to the ifdef where it is used Greg Kroah-Hartman
2021-05-12 14:48 ` [PATCH 5.12 461/677] powerpc/fadump: Mark fadump_calculate_reserve_size as __init Greg Kroah-Hartman
2021-05-12 14:48 ` [PATCH 5.12 462/677] powerpc/prom: Mark identical_pvr_fixup " Greg Kroah-Hartman
2021-05-12 14:48 ` [PATCH 5.12 463/677] MIPS: fix local_irq_{disable,enable} in asmmacro.h Greg Kroah-Hartman
2021-05-12 14:48 ` [PATCH 5.12 464/677] ima: Fix the error code for restoring the PCR value Greg Kroah-Hartman
2021-05-12 14:48 ` [PATCH 5.12 465/677] inet: use bigger hash table for IP ID generation Greg Kroah-Hartman
2021-05-12 14:48 ` [PATCH 5.12 466/677] pinctrl: pinctrl-single: remove unused parameter Greg Kroah-Hartman
2021-05-12 14:48 ` [PATCH 5.12 467/677] pinctrl: pinctrl-single: fix pcs_pin_dbg_show() when bits_per_mux is not zero Greg Kroah-Hartman
2021-05-12 14:48 ` [PATCH 5.12 468/677] MIPS: loongson64: fix bug when PAGE_SIZE > 16KB Greg Kroah-Hartman
2021-05-12 14:48 ` [PATCH 5.12 469/677] ASoC: wm8960: Remove bitclk relax condition in wm8960_configure_sysclk Greg Kroah-Hartman
2021-05-12 14:48 ` [PATCH 5.12 470/677] iommu/arm-smmu-v3: add bit field SFM into GERROR_ERR_MASK Greg Kroah-Hartman
2021-05-12 14:48 ` [PATCH 5.12 471/677] RDMA/mlx5: Fix drop packet rule in egress table Greg Kroah-Hartman
2021-05-12 14:48 ` [PATCH 5.12 472/677] IB/isert: Fix a use after free in isert_connect_request Greg Kroah-Hartman
2021-05-12 14:48 ` [PATCH 5.12 473/677] powerpc/64s: Fix hash fault to use TRAP accessor Greg Kroah-Hartman
2021-05-12 14:48 ` [PATCH 5.12 474/677] powerpc: Fix HAVE_HARDLOCKUP_DETECTOR_ARCH build configuration Greg Kroah-Hartman
2021-05-12 14:48 ` [PATCH 5.12 475/677] MIPS/bpf: Enable bpf_probe_read{, str}() on MIPS again Greg Kroah-Hartman
2021-05-12 14:48 ` [PATCH 5.12 476/677] gpio: guard gpiochip_irqchip_add_domain() with GPIOLIB_IRQCHIP Greg Kroah-Hartman
2021-05-12 14:48 ` [PATCH 5.12 477/677] fs: dlm: fix missing unlock on error in accept_from_sock() Greg Kroah-Hartman
2021-05-12 14:48 ` [PATCH 5.12 478/677] ASoC: q6afe-clocks: fix reprobing of the driver Greg Kroah-Hartman
2021-05-12 14:48 ` [PATCH 5.12 479/677] ALSA: core: remove redundant spin_lock pair in snd_card_disconnect Greg Kroah-Hartman
2021-05-12 14:48 ` [PATCH 5.12 480/677] net: phy: lan87xx: fix access to wrong register of LAN87xx Greg Kroah-Hartman
2021-05-12 14:48 ` [PATCH 5.12 481/677] udp: skip L4 aggregation for UDP tunnel packets Greg Kroah-Hartman
2021-05-12 14:48 ` [PATCH 5.12 482/677] udp: never accept GSO_FRAGLIST packets Greg Kroah-Hartman
2021-05-12 14:48 ` [PATCH 5.12 483/677] powerpc/pseries: Only register vio drivers if vio bus exists Greg Kroah-Hartman
2021-05-12 14:48 ` [PATCH 5.12 484/677] net/tipc: fix missing destroy_workqueue() on error in tipc_crypto_start() Greg Kroah-Hartman
2021-05-12 14:48 ` [PATCH 5.12 485/677] bug: Remove redundant condition check in report_bug Greg Kroah-Hartman
2021-05-12 14:48 ` [PATCH 5.12 486/677] RDMA/core: Fix corrupted SL on passive side Greg Kroah-Hartman
2021-05-12 14:48 ` [PATCH 5.12 487/677] nfc: pn533: prevent potential memory corruption Greg Kroah-Hartman
2021-05-12 14:48 ` [PATCH 5.12 488/677] net: hns3: Limiting the scope of vector_ring_chain variable Greg Kroah-Hartman
2021-05-12 14:48 ` [PATCH 5.12 489/677] mips: bmips: fix syscon-reboot nodes Greg Kroah-Hartman
2021-05-12 14:48 ` [PATCH 5.12 490/677] KVM: arm64: Fix error return code in init_hyp_mode() Greg Kroah-Hartman
2021-05-12 14:48 ` [PATCH 5.12 491/677] iommu/vt-d: Dont set then clear private data in prq_event_thread() Greg Kroah-Hartman
2021-05-12 14:48 ` [PATCH 5.12 492/677] iommu: Fix a boundary issue to avoid performance drop Greg Kroah-Hartman
2021-05-12 14:48 ` [PATCH 5.12 493/677] iommu/vt-d: Report right snoop capability when using FL for IOVA Greg Kroah-Hartman
2021-05-12 14:49 ` [PATCH 5.12 494/677] iommu/vt-d: Report the right page fault address Greg Kroah-Hartman
2021-05-12 14:49 ` [PATCH 5.12 495/677] iommu/vt-d: Remove WO permissions on second-level paging entries Greg Kroah-Hartman
2021-05-12 14:49 ` [PATCH 5.12 496/677] iommu/vt-d: Invalidate PASID cache when root/context entry changed Greg Kroah-Hartman
2021-05-12 14:49 ` [PATCH 5.12 497/677] ALSA: usb-audio: Add error checks for usb_driver_claim_interface() calls Greg Kroah-Hartman
2021-05-12 14:49 ` [PATCH 5.12 498/677] HID: lenovo: Use brightness_set_blocking callback for setting LEDs brightness Greg Kroah-Hartman
2021-05-12 14:49 ` [PATCH 5.12 499/677] HID: lenovo: Fix lenovo_led_set_tp10ubkbd() error handling Greg Kroah-Hartman
2021-05-12 14:49 ` [PATCH 5.12 500/677] HID: lenovo: Check hid_get_drvdata() returns non NULL in lenovo_event() Greg Kroah-Hartman
2021-05-12 14:49 ` [PATCH 5.12 501/677] HID: lenovo: Map mic-mute button to KEY_F20 instead of KEY_MICMUTE Greg Kroah-Hartman
2021-05-12 14:49 ` [PATCH 5.12 502/677] KVM: arm64: Initialize VCPU mdcr_el2 before loading it Greg Kroah-Hartman
2021-05-12 14:49 ` [PATCH 5.12 503/677] ASoC: simple-card: fix possible uninitialized single_cpu local variable Greg Kroah-Hartman
2021-05-12 14:49 ` [PATCH 5.12 504/677] liquidio: Fix unintented sign extension of a left shift of a u16 Greg Kroah-Hartman
2021-05-12 14:49 ` [PATCH 5.12 505/677] IB/hfi1: Use kzalloc() for mmu_rb_handler allocation Greg Kroah-Hartman
2021-05-12 14:49 ` [PATCH 5.12 506/677] powerpc/64s: Fix pte update for kernel memory on radix Greg Kroah-Hartman
2021-05-12 14:49 ` [PATCH 5.12 507/677] powerpc/pseries: Add key to flags in pSeries_lpar_hpte_updateboltedpp() Greg Kroah-Hartman
2021-05-12 14:49 ` [PATCH 5.12 508/677] powerpc/64s: Use htab_convert_pte_flags() in hash__mark_rodata_ro() Greg Kroah-Hartman
2021-05-12 14:49 ` [PATCH 5.12 509/677] powerpc/perf: Fix PMU constraint check for EBB events Greg Kroah-Hartman
2021-05-12 14:49 ` [PATCH 5.12 510/677] powerpc: iommu: fix build when neither PCI or IBMVIO is set Greg Kroah-Hartman
2021-05-12 14:49 ` [PATCH 5.12 511/677] mac80211: bail out if cipher schemes are invalid Greg Kroah-Hartman
2021-05-12 14:49 ` [PATCH 5.12 512/677] perf vendor events amd: Fix broken L2 Cache Hits from L2 HWPF metric Greg Kroah-Hartman
2021-05-12 14:49 ` [PATCH 5.12 513/677] RDMA/hns: Fix missing assignment of max_inline_data Greg Kroah-Hartman
2021-05-12 14:49 ` [PATCH 5.12 514/677] xfs: fix return of uninitialized value in variable error Greg Kroah-Hartman
2021-05-12 14:49 ` [PATCH 5.12 515/677] rtw88: Fix an error code in rtw_debugfs_set_rsvd_page() Greg Kroah-Hartman
2021-05-12 14:49 ` [PATCH 5.12 516/677] mt7601u: fix always true expression Greg Kroah-Hartman
2021-05-12 14:49 ` [PATCH 5.12 517/677] mt76: mt7615: fix tx skb dma unmap Greg Kroah-Hartman
2021-05-12 14:49 ` [PATCH 5.12 518/677] mt76: mt7915: " Greg Kroah-Hartman
2021-05-12 14:49 ` [PATCH 5.12 519/677] mt76: mt7921: fix suspend/resume sequence Greg Kroah-Hartman
2021-05-12 14:49 ` [PATCH 5.12 520/677] mt76: mt7921: fix memory leak in mt7921_coredump_work Greg Kroah-Hartman
2021-05-12 14:49 ` [PATCH 5.12 521/677] mt76: connac: fix up the setting for ht40 mode in mt76_connac_mcu_uni_add_bss Greg Kroah-Hartman
2021-05-12 14:49 ` [PATCH 5.12 522/677] mt76: mt7921: fixup rx bitrate statistics Greg Kroah-Hartman
2021-05-12 14:49 ` [PATCH 5.12 523/677] mt76: mt7615: fix memory leak in mt7615_coredump_work Greg Kroah-Hartman
2021-05-12 14:49 ` [PATCH 5.12 524/677] mt76: mt7921: fix aggr length histogram Greg Kroah-Hartman
2021-05-12 14:49 ` [PATCH 5.12 525/677] mt76: mt7915: fix aggr len debugfs node Greg Kroah-Hartman
2021-05-12 14:49 ` [PATCH 5.12 526/677] mt76: mt7921: fix stats register definitions Greg Kroah-Hartman
2021-05-12 14:49 ` [PATCH 5.12 527/677] mt76: mt7615: fix TSF configuration Greg Kroah-Hartman
2021-05-12 14:49 ` [PATCH 5.12 528/677] mt76: mt7615: fix mib stats counter reporting to mac80211 Greg Kroah-Hartman
2021-05-12 14:49 ` [PATCH 5.12 529/677] mt76: mt7915: " Greg Kroah-Hartman
2021-05-12 14:49 ` [PATCH 5.12 530/677] mt76: connac: fix kernel warning adding monitor interface Greg Kroah-Hartman
2021-05-12 14:49 ` [PATCH 5.12 531/677] mt76: check return value of mt76_txq_send_burst in mt76_txq_schedule_list Greg Kroah-Hartman
2021-05-12 14:49 ` [PATCH 5.12 532/677] mt76: mt7921: fix the base of PCIe interrupt Greg Kroah-Hartman
2021-05-12 14:49 ` [PATCH 5.12 533/677] mt76: mt7921: fix the base of the dynamic remap Greg Kroah-Hartman
2021-05-12 14:49 ` [PATCH 5.12 534/677] mt76: mt7915: fix rxrate reporting Greg Kroah-Hartman
2021-05-12 14:49 ` [PATCH 5.12 535/677] mt76: mt7915: fix txrate reporting Greg Kroah-Hartman
2021-05-12 14:49 ` [PATCH 5.12 536/677] mt76: mt7663: fix when beacon filter is being applied Greg Kroah-Hartman
2021-05-12 14:49 ` [PATCH 5.12 537/677] mt76: mt7663s: make all of packets 4-bytes aligned in sdio tx aggregation Greg Kroah-Hartman
2021-05-12 14:49 ` [PATCH 5.12 538/677] mt76: mt7663s: fix the possible device hang in high traffic Greg Kroah-Hartman
2021-05-12 14:49 ` [PATCH 5.12 539/677] mt76: mt7615: cleanup mcu tx queue in mt7615_dma_reset() Greg Kroah-Hartman
2021-05-12 14:49 ` [PATCH 5.12 540/677] mt76: mt7915: cleanup mcu tx queue in mt7915_dma_reset() Greg Kroah-Hartman
2021-05-12 14:49 ` [PATCH 5.12 541/677] mt76: mt7921: always wake the device in mt7921_remove_interface Greg Kroah-Hartman
2021-05-12 14:49 ` [PATCH 5.12 542/677] mt76: mt7921: fix inappropriate WoW setup with the missing ARP informaiton Greg Kroah-Hartman
2021-05-12 14:49 ` [PATCH 5.12 543/677] mt76: mt7921: fix the dwell time control Greg Kroah-Hartman
2021-05-12 14:49 ` [PATCH 5.12 544/677] KVM: PPC: Book3S HV P9: Restore host CTRL SPR after guest exit Greg Kroah-Hartman
2021-05-12 14:49 ` [PATCH 5.12 545/677] ovl: show "userxattr" in the mount data Greg Kroah-Hartman
2021-05-12 14:49 ` [PATCH 5.12 546/677] ovl: invalidate readdir cache on changes to dir with origin Greg Kroah-Hartman
2021-05-12 14:49 ` [PATCH 5.12 547/677] RDMA/qedr: Fix error return code in qedr_iw_connect() Greg Kroah-Hartman
2021-05-12 14:49 ` [PATCH 5.12 548/677] IB/hfi1: Fix error return code in parse_platform_config() Greg Kroah-Hartman
2021-05-12 14:49 ` [PATCH 5.12 549/677] RDMA/bnxt_re: Fix error return code in bnxt_qplib_cq_process_terminal() Greg Kroah-Hartman
2021-05-12 14:49 ` [PATCH 5.12 550/677] cxgb4: Fix unintentional sign extension issues Greg Kroah-Hartman
2021-05-12 14:49 ` [PATCH 5.12 551/677] net: thunderx: Fix unintentional sign extension issue Greg Kroah-Hartman
2021-05-12 14:49 ` [PATCH 5.12 552/677] mt76: mt7921: fix kernel crash when the firmware fails to download Greg Kroah-Hartman
2021-05-12 14:49 ` [PATCH 5.12 553/677] RDMA/srpt: Fix error return code in srpt_cm_req_recv() Greg Kroah-Hartman
2021-05-12 14:50 ` [PATCH 5.12 554/677] RDMA/rtrs-clt: destroy sysfs after removing session from active list Greg Kroah-Hartman
2021-05-12 14:50 ` [PATCH 5.12 555/677] pinctrl: at91-pio4: Fix slew rate disablement Greg Kroah-Hartman
2021-05-12 14:50 ` [PATCH 5.12 556/677] i2c: cadence: fix reference leak when pm_runtime_get_sync fails Greg Kroah-Hartman
2021-05-12 14:50 ` [PATCH 5.12 557/677] i2c: img-scb: " Greg Kroah-Hartman
2021-05-12 14:50 ` [PATCH 5.12 558/677] i2c: imx-lpi2c: " Greg Kroah-Hartman
2021-05-12 14:50 ` [PATCH 5.12 559/677] i2c: imx: " Greg Kroah-Hartman
2021-05-12 14:50 ` [PATCH 5.12 560/677] i2c: omap: " Greg Kroah-Hartman
2021-05-12 14:50 ` [PATCH 5.12 561/677] i2c: sprd: " Greg Kroah-Hartman
2021-05-12 14:50 ` [PATCH 5.12 562/677] i2c: stm32f7: " Greg Kroah-Hartman
2021-05-12 14:50 ` [PATCH 5.12 563/677] i2c: xiic: " Greg Kroah-Hartman
2021-05-12 14:50 ` [PATCH 5.12 564/677] i2c: cadence: add IRQ check Greg Kroah-Hartman
2021-05-12 14:50 ` [PATCH 5.12 565/677] i2c: emev2: " Greg Kroah-Hartman
2021-05-12 14:50 ` [PATCH 5.12 566/677] i2c: jz4780: " Greg Kroah-Hartman
2021-05-12 14:50 ` [PATCH 5.12 567/677] i2c: mlxbf: " Greg Kroah-Hartman
2021-05-12 14:50 ` [PATCH 5.12 568/677] i2c: rcar: " Greg Kroah-Hartman
2021-05-12 14:50 ` [PATCH 5.12 569/677] i2c: sh7760: " Greg Kroah-Hartman
2021-05-12 14:50 ` [PATCH 5.12 570/677] fuse: fix matching of FUSE_DEV_IOC_CLONE command Greg Kroah-Hartman
2021-05-12 14:50 ` [PATCH 5.12 571/677] iwlwifi: rs-fw: dont support stbc for HE 160 Greg Kroah-Hartman
2021-05-12 14:50 ` [PATCH 5.12 572/677] iwlwifi: dbg: disable ini debug in 9000 family and below Greg Kroah-Hartman
2021-05-12 14:50 ` [PATCH 5.12 573/677] powerpc/xive: Drop check on irq_data in xive_core_debug_show() Greg Kroah-Hartman
2021-05-12 14:50 ` [PATCH 5.12 574/677] powerpc/xive: Fix xmon command "dxi" Greg Kroah-Hartman
2021-05-12 14:50 ` [PATCH 5.12 575/677] powerpc/syscall: switch user_exit_irqoff and trace_hardirqs_off order Greg Kroah-Hartman
2021-05-12 14:50 ` [PATCH 5.12 576/677] ASoC: ak5558: correct reset polarity Greg Kroah-Hartman
2021-05-12 14:50 ` [PATCH 5.12 577/677] net/mlx5: Fix bit-wise and with zero Greg Kroah-Hartman
2021-05-12 14:50 ` [PATCH 5.12 578/677] net/packet: remove data races in fanout operations Greg Kroah-Hartman
2021-05-12 14:50 ` [PATCH 5.12 579/677] drm/i915/gvt: Fix error code in intel_gvt_init_device() Greg Kroah-Hartman
2021-05-12 14:50 ` [PATCH 5.12 580/677] iommu/vt-d: Fix an error handling path in intel_prepare_irq_remapping() Greg Kroah-Hartman
2021-05-12 14:50 ` [PATCH 5.12 581/677] iommu/amd: Put newline after closing bracket in warning Greg Kroah-Hartman
2021-05-12 14:50 ` [PATCH 5.12 582/677] perf beauty: Fix fsconfig generator Greg Kroah-Hartman
2021-05-12 14:50 ` [PATCH 5.12 583/677] drm/amdgpu: fix an error code in init_pmu_entry_by_type_and_add() Greg Kroah-Hartman
2021-05-12 14:50 ` [PATCH 5.12 584/677] drm/amd/pm: fix error code in smu_set_power_limit() Greg Kroah-Hartman
2021-05-12 14:50 ` [PATCH 5.12 585/677] MIPS: pci-legacy: stop using of_pci_range_to_resource Greg Kroah-Hartman
2021-05-12 14:50 ` [PATCH 5.12 586/677] powerpc/pseries: extract host bridge from pci_bus prior to bus removal Greg Kroah-Hartman
2021-05-12 14:50 ` [PATCH 5.12 587/677] iommu/mediatek: Always enable the clk on resume Greg Kroah-Hartman
2021-05-12 14:50 ` [PATCH 5.12 588/677] mptcp: fix format specifiers for unsigned int Greg Kroah-Hartman
2021-05-12 14:50 ` [PATCH 5.12 589/677] powerpc/smp: Reintroduce cpu_core_mask Greg Kroah-Hartman
2021-05-12 14:50 ` [PATCH 5.12 590/677] KVM: x86: dump_vmcs should not assume GUEST_IA32_EFER is valid Greg Kroah-Hartman
2021-05-12 14:50 ` [PATCH 5.12 591/677] rtlwifi: 8821ae: upgrade PHY and RF parameters Greg Kroah-Hartman
2021-05-12 14:50 ` [PATCH 5.12 592/677] wlcore: fix overlapping snprintf arguments in debugfs Greg Kroah-Hartman
2021-05-12 14:50 ` [PATCH 5.12 593/677] i2c: sh7760: fix IRQ error path Greg Kroah-Hartman
2021-05-12 14:50 ` [PATCH 5.12 594/677] i2c: mediatek: Fix wrong dma sync flag Greg Kroah-Hartman
2021-05-12 14:50 ` [PATCH 5.12 595/677] mwl8k: Fix a double Free in mwl8k_probe_hw Greg Kroah-Hartman
2021-05-12 14:50 ` [PATCH 5.12 596/677] netfilter: nft_payload: fix C-VLAN offload support Greg Kroah-Hartman
2021-05-12 14:50 ` [PATCH 5.12 597/677] netfilter: nftables_offload: VLAN id needs host byteorder in flow dissector Greg Kroah-Hartman
2021-05-12 14:50 ` [PATCH 5.12 598/677] netfilter: nftables_offload: special ethertype handling for VLAN Greg Kroah-Hartman
2021-05-12 14:50 ` [PATCH 5.12 599/677] vsock/vmci: log once the failed queue pair allocation Greg Kroah-Hartman
2021-05-12 14:50 ` [PATCH 5.12 600/677] libbpf: Initialize the bpf_seq_printf parameters array field by field Greg Kroah-Hartman
2021-05-12 14:50 ` [PATCH 5.12 601/677] net: ethernet: ixp4xx: Set the DMA masks explicitly Greg Kroah-Hartman
2021-05-12 14:50 ` [PATCH 5.12 602/677] gro: fix napi_gro_frags() Fast GRO breakage due to IP alignment check Greg Kroah-Hartman
2021-05-12 14:50 ` [PATCH 5.12 603/677] RDMA/cxgb4: add missing qpid increment Greg Kroah-Hartman
2021-05-12 14:50 ` [PATCH 5.12 604/677] RDMA/i40iw: Fix error unwinding when i40iw_hmc_sd_one fails Greg Kroah-Hartman
2021-05-12 14:50 ` [PATCH 5.12 605/677] ALSA: usb: midi: dont return -ENOMEM when usb_urb_ep_type_check fails Greg Kroah-Hartman
2021-05-12 14:50 ` [PATCH 5.12 606/677] sfc: ef10: fix TX queue lookup in TX event handling Greg Kroah-Hartman
2021-05-12 14:50 ` [PATCH 5.12 607/677] vsock/virtio: free queued packets when closing socket Greg Kroah-Hartman
2021-05-12 14:50 ` [PATCH 5.12 608/677] net: marvell: prestera: fix port event handling on init Greg Kroah-Hartman
2021-05-12 14:50 ` [PATCH 5.12 609/677] net: davinci_emac: Fix incorrect masking of tx and rx error channel Greg Kroah-Hartman
2021-05-12 14:50 ` [PATCH 5.12 610/677] rtw88: refine napi deinit flow Greg Kroah-Hartman
2021-05-12 14:50 ` [PATCH 5.12 611/677] mt76: mt7615: fix memleak when mt7615_unregister_device() Greg Kroah-Hartman
2021-05-12 14:50 ` [PATCH 5.12 612/677] mt76: mt7915: fix memleak when mt7915_unregister_device() Greg Kroah-Hartman
2021-05-12 14:50 ` [PATCH 5.12 613/677] mt76: mt7921: run mt7921_mcu_fw_log_2_host holding mt76 mutex Greg Kroah-Hartman
2021-05-12 14:51 ` [PATCH 5.12 614/677] powerpc/pseries/iommu: Fix window size for direct mapping with pmem Greg Kroah-Hartman
2021-05-12 14:51 ` [PATCH 5.12 615/677] crypto: ccp: Detect and reject "invalid" addresses destined for PSP Greg Kroah-Hartman
2021-05-12 14:51 ` [PATCH 5.12 616/677] net: dsa: mv88e6xxx: Fix off-by-one in VTU devlink region size Greg Kroah-Hartman
2021-05-12 14:51 ` [PATCH 5.12 617/677] nfp: devlink: initialize the devlink port attribute "lanes" Greg Kroah-Hartman
2021-05-12 14:51 ` [PATCH 5.12 618/677] net: stmmac: fix TSO and TBS feature enabling during driver open Greg Kroah-Hartman
2021-05-12 14:51 ` [PATCH 5.12 619/677] net: renesas: ravb: Fix a stuck issue when a lot of frames are received Greg Kroah-Hartman
2021-05-12 14:51 ` [PATCH 5.12 620/677] net: phy: intel-xway: enable integrated led functions Greg Kroah-Hartman
2021-05-12 14:51 ` [PATCH 5.12 621/677] mt76: mt7615: Fix a dereference of pointer sta before it is null checked Greg Kroah-Hartman
2021-05-12 14:51 ` [PATCH 5.12 622/677] mt76: mt7921: fix possible invalid register access Greg Kroah-Hartman
2021-05-12 14:51 ` [PATCH 5.12 623/677] RDMA/rxe: Fix a bug in rxe_fill_ip_info() Greg Kroah-Hartman
2021-05-12 14:51 ` [PATCH 5.12 624/677] RDMA/core: Add CM to restrack after successful attachment to a device Greg Kroah-Hartman
2021-05-12 14:51 ` [PATCH 5.12 625/677] powerpc/64: Fix the definition of the fixmap area Greg Kroah-Hartman
2021-05-12 14:51 ` [PATCH 5.12 626/677] ath9k: Fix error check in ath9k_hw_read_revisions() for PCI devices Greg Kroah-Hartman
2021-05-12 14:51 ` [PATCH 5.12 627/677] ath10k: Fix a use after free in ath10k_htc_send_bundle Greg Kroah-Hartman
2021-05-12 14:51 ` [PATCH 5.12 628/677] ath10k: Fix ath10k_wmi_tlv_op_pull_peer_stats_info() unlock without lock Greg Kroah-Hartman
2021-05-12 14:51 ` [PATCH 5.12 629/677] wlcore: Fix buffer overrun by snprintf due to incorrect buffer size Greg Kroah-Hartman
2021-05-12 14:51 ` [PATCH 5.12 630/677] powerpc/perf: Fix the threshold event selection for memory events in power10 Greg Kroah-Hartman
2021-05-12 14:51 ` [PATCH 5.12 631/677] powerpc/52xx: Fix an invalid ASM expression (addi used instead of add) Greg Kroah-Hartman
2021-05-12 14:51 ` [PATCH 5.12 632/677] net: phy: marvell: fix m88e1011_set_downshift Greg Kroah-Hartman
2021-05-12 14:51 ` [PATCH 5.12 633/677] net: phy: marvell: fix m88e1111_set_downshift Greg Kroah-Hartman
2021-05-12 14:51 ` [PATCH 5.12 634/677] net: enetc: fix link error again Greg Kroah-Hartman
2021-05-12 14:51 ` [PATCH 5.12 635/677] net, xdp: Update pkt_type if generic XDP changes unicast MAC Greg Kroah-Hartman
2021-05-12 14:51 ` [PATCH 5.12 636/677] bnxt_en: fix ternary sign extension bug in bnxt_show_temp() Greg Kroah-Hartman
2021-05-12 14:51 ` [PATCH 5.12 637/677] ARM: dts: uniphier: Change phy-mode to RGMII-ID to enable delay pins for RTL8211E Greg Kroah-Hartman
2021-05-12 14:51 ` [PATCH 5.12 638/677] arm64: " Greg Kroah-Hartman
2021-05-12 14:51 ` [PATCH 5.12 639/677] net: geneve: modify IP header check in geneve6_xmit_skb and geneve_xmit_skb Greg Kroah-Hartman
2021-05-12 14:51 ` [PATCH 5.12 640/677] selftests: net: mirror_gre_vlan_bridge_1q: Make an FDB entry static Greg Kroah-Hartman
2021-05-12 14:51 ` [PATCH 5.12 641/677] selftests: mlxsw: Remove a redundant if statement in port_scale test Greg Kroah-Hartman
2021-05-12 14:51 ` [PATCH 5.12 642/677] selftests: mlxsw: Remove a redundant if statement in tc_flower_scale test Greg Kroah-Hartman
2021-05-12 14:51 ` [PATCH 5.12 643/677] mptcp: Retransmit DATA_FIN Greg Kroah-Hartman
2021-05-12 14:51 ` [PATCH 5.12 644/677] bnxt_en: Fix RX consumer index logic in the error path Greg Kroah-Hartman
2021-05-12 14:51 ` [PATCH 5.12 645/677] KVM: VMX: Intercept FS/GS_BASE MSR accesses for 32-bit KVM Greg Kroah-Hartman
2021-05-12 14:51 ` [PATCH 5.12 646/677] KVM: SVM: Zero out the VMCB array used to track SEV ASID association Greg Kroah-Hartman
2021-05-12 14:51 ` [PATCH 5.12 647/677] KVM: SVM: Free sev_asid_bitmap during init if SEV setup fails Greg Kroah-Hartman
2021-05-12 14:51 ` [PATCH 5.12 648/677] KVM: SVM: Disable SEV/SEV-ES if NPT is disabled Greg Kroah-Hartman
2021-05-12 14:51 ` [PATCH 5.12 649/677] net/sched: act_ct: fix wild memory access when clearing fragments Greg Kroah-Hartman
2021-05-12 14:51 ` [PATCH 5.12 650/677] net:emac/emac-mac: Fix a use after free in emac_mac_tx_buf_send Greg Kroah-Hartman
2021-05-12 14:51 ` [PATCH 5.12 651/677] selftests/bpf: Fix BPF_CORE_READ_BITFIELD() macro Greg Kroah-Hartman
2021-05-12 14:51 ` [PATCH 5.12 652/677] selftests/bpf: Fix field existence CO-RE reloc tests Greg Kroah-Hartman
2021-05-12 14:51 ` [PATCH 5.12 653/677] selftests/bpf: Fix core_reloc test runner Greg Kroah-Hartman
2021-05-12 14:51 ` [PATCH 5.12 654/677] bpf: Fix propagation of 32 bit unsigned bounds from 64 bit bounds Greg Kroah-Hartman
2021-05-12 14:51 ` [PATCH 5.12 655/677] RDMA/siw: Fix a use after free in siw_alloc_mr Greg Kroah-Hartman
2021-05-12 14:51 ` [PATCH 5.12 656/677] RDMA/bnxt_re: Fix a double free in bnxt_qplib_alloc_res Greg Kroah-Hartman
2021-05-12 14:51 ` [PATCH 5.12 657/677] net: bridge: mcast: fix broken length + header check for MRDv6 Adv Greg Kroah-Hartman
2021-05-12 14:51 ` [PATCH 5.12 658/677] net: dsa: mv88e6xxx: Fix 6095/6097/6185 ports in non-SERDES CMODE Greg Kroah-Hartman
2021-05-12 14:51 ` [PATCH 5.12 659/677] net:nfc:digital: Fix a double free in digital_tg_recv_dep_req Greg Kroah-Hartman
2021-05-12 14:51 ` [PATCH 5.12 660/677] perf tools: Change fields type in perf_record_time_conv Greg Kroah-Hartman
2021-05-12 14:51 ` [PATCH 5.12 661/677] perf jit: Let convert_timestamp() to be backwards-compatible Greg Kroah-Hartman
2021-05-12 14:51 ` [PATCH 5.12 662/677] perf session: Add swap operation for event TIME_CONV Greg Kroah-Hartman
2021-05-12 14:51 ` [PATCH 5.12 663/677] ia64: ensure proper NUMA distance and possible map initialization Greg Kroah-Hartman
2021-05-12 14:51 ` [PATCH 5.12 664/677] ia64: fix EFI_DEBUG build Greg Kroah-Hartman
2021-05-12 14:51 ` [PATCH 5.12 665/677] kfifo: fix ternary sign extension bugs Greg Kroah-Hartman
2021-05-12 14:51 ` [PATCH 5.12 666/677] mm, slub: enable slub_debug static key when creating cache with explicit debug flags Greg Kroah-Hartman
2021-05-12 14:51 ` [PATCH 5.12 667/677] mm: memcontrol: slab: fix obtain a reference to a freeing memcg Greg Kroah-Hartman
2021-05-12 14:51 ` [PATCH 5.12 668/677] mm/sparse: add the missing sparse_buffer_fini() in error branch Greg Kroah-Hartman
2021-05-12 14:51 ` [PATCH 5.12 669/677] mm/memory-failure: unnecessary amount of unmapping Greg Kroah-Hartman
2021-05-12 14:51 ` [PATCH 5.12 670/677] afs: Fix speculative status fetches Greg Kroah-Hartman
2021-05-12 14:51 ` [PATCH 5.12 671/677] bpf: Fix alu32 const subreg bound tracking on bitwise operations Greg Kroah-Hartman
2021-05-12 14:51 ` [PATCH 5.12 672/677] bpf, ringbuf: Deny reserve of buffers larger than ringbuf Greg Kroah-Hartman
2021-05-12 14:51 ` [PATCH 5.12 673/677] bpf: Prevent writable memory-mapping of read-only ringbuf pages Greg Kroah-Hartman
2021-05-12 14:52 ` [PATCH 5.12 674/677] net: Only allow init netns to set default tcp cong to a restricted algo Greg Kroah-Hartman
2021-05-12 14:52 ` [PATCH 5.12 675/677] smp: Fix smp_call_function_single_async prototype Greg Kroah-Hartman
2021-05-12 14:52 ` [PATCH 5.12 676/677] Revert "net/sctp: fix race condition in sctp_destroy_sock" Greg Kroah-Hartman
2021-05-12 14:52 ` [PATCH 5.12 677/677] sctp: delay auto_asconf init until binding the first addr Greg Kroah-Hartman
2021-05-12 17:23 ` [PATCH 5.12 000/677] 5.12.4-rc1 review Naresh Kamboju
2021-05-12 17:56   ` Greg Kroah-Hartman
2021-05-12 18:48     ` Naresh Kamboju
2021-05-12 18:51       ` Greg Kroah-Hartman
2021-05-12 19:04         ` Nathan Chancellor
2021-05-12 19:07           ` Greg Kroah-Hartman
2021-05-12 20:22             ` Maciej W. Rozycki
2021-05-13  8:30           ` Naresh Kamboju
2021-05-12 19:04       ` Linus Torvalds
2021-05-12 20:38         ` Maciej W. Rozycki
2021-05-12 19:38 ` Florian Fainelli
2021-05-12 19:45 ` Jon Hunter
2021-05-12 22:11 ` Shuah Khan
2021-05-13 10:08 ` Fox Chen
2021-05-13 10:30 ` Naresh Kamboju
2021-05-13 18:12 ` Justin Forbes
2021-05-13 20:33 ` Guenter Roeck

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=20210512144848.263810504@linuxfoundation.org \
    --to=gregkh@linuxfoundation.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=mikelley@microsoft.com \
    --cc=sashal@kernel.org \
    --cc=stable@vger.kernel.org \
    --cc=vkuznets@redhat.com \
    --cc=wei.liu@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).