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, Evan Green <evgreen@chromium.org>,
	Sibi Sankar <sibis@codeaurora.org>,
	Bjorn Andersson <bjorn.andersson@linaro.org>,
	Sasha Levin <sashal@kernel.org>
Subject: [PATCH 5.7 037/477] remoteproc: qcom_q6v5_mss: map/unmap mpss segments before/after use
Date: Tue, 23 Jun 2020 21:50:34 +0200	[thread overview]
Message-ID: <20200623195409.353845489@linuxfoundation.org> (raw)
In-Reply-To: <20200623195407.572062007@linuxfoundation.org>

From: Sibi Sankar <sibis@codeaurora.org>

[ Upstream commit be050a3429f46ecf13eb2b80f299479f8bb823fb ]

The application processor accessing the mpss region when the Q6 modem is
running will lead to an XPU violation. Fix this by un-mapping the mpss
segments post copy during mpss authentication and coredumps.

Tested-by: Evan Green <evgreen@chromium.org>
Signed-off-by: Sibi Sankar <sibis@codeaurora.org>
Link: https://lore.kernel.org/r/20200415071619.6052-1-sibis@codeaurora.org
Signed-off-by: Bjorn Andersson <bjorn.andersson@linaro.org>
Signed-off-by: Sasha Levin <sashal@kernel.org>
---
 drivers/remoteproc/qcom_q6v5_mss.c | 31 +++++++++++++++++++-----------
 1 file changed, 20 insertions(+), 11 deletions(-)

diff --git a/drivers/remoteproc/qcom_q6v5_mss.c b/drivers/remoteproc/qcom_q6v5_mss.c
index 5475d4f808a8e..22416e86a1742 100644
--- a/drivers/remoteproc/qcom_q6v5_mss.c
+++ b/drivers/remoteproc/qcom_q6v5_mss.c
@@ -1156,7 +1156,13 @@ static int q6v5_mpss_load(struct q6v5 *qproc)
 			goto release_firmware;
 		}
 
-		ptr = qproc->mpss_region + offset;
+		ptr = ioremap_wc(qproc->mpss_phys + offset, phdr->p_memsz);
+		if (!ptr) {
+			dev_err(qproc->dev,
+				"unable to map memory region: %pa+%zx-%x\n",
+				&qproc->mpss_phys, offset, phdr->p_memsz);
+			goto release_firmware;
+		}
 
 		if (phdr->p_filesz && phdr->p_offset < fw->size) {
 			/* Firmware is large enough to be non-split */
@@ -1165,6 +1171,7 @@ static int q6v5_mpss_load(struct q6v5 *qproc)
 					"failed to load segment %d from truncated file %s\n",
 					i, fw_name);
 				ret = -EINVAL;
+				iounmap(ptr);
 				goto release_firmware;
 			}
 
@@ -1175,6 +1182,7 @@ static int q6v5_mpss_load(struct q6v5 *qproc)
 			ret = request_firmware(&seg_fw, fw_name, qproc->dev);
 			if (ret) {
 				dev_err(qproc->dev, "failed to load %s\n", fw_name);
+				iounmap(ptr);
 				goto release_firmware;
 			}
 
@@ -1187,6 +1195,7 @@ static int q6v5_mpss_load(struct q6v5 *qproc)
 			memset(ptr + phdr->p_filesz, 0,
 			       phdr->p_memsz - phdr->p_filesz);
 		}
+		iounmap(ptr);
 		size += phdr->p_memsz;
 
 		code_length = readl(qproc->rmb_base + RMB_PMI_CODE_LENGTH_REG);
@@ -1236,7 +1245,8 @@ static void qcom_q6v5_dump_segment(struct rproc *rproc,
 	int ret = 0;
 	struct q6v5 *qproc = rproc->priv;
 	unsigned long mask = BIT((unsigned long)segment->priv);
-	void *ptr = rproc_da_to_va(rproc, segment->da, segment->size);
+	int offset = segment->da - qproc->mpss_reloc;
+	void *ptr = NULL;
 
 	/* Unlock mba before copying segments */
 	if (!qproc->dump_mba_loaded) {
@@ -1250,10 +1260,15 @@ static void qcom_q6v5_dump_segment(struct rproc *rproc,
 		}
 	}
 
-	if (!ptr || ret)
-		memset(dest, 0xff, segment->size);
-	else
+	if (!ret)
+		ptr = ioremap_wc(qproc->mpss_phys + offset, segment->size);
+
+	if (ptr) {
 		memcpy(dest, ptr, segment->size);
+		iounmap(ptr);
+	} else {
+		memset(dest, 0xff, segment->size);
+	}
 
 	qproc->dump_segment_mask |= mask;
 
@@ -1595,12 +1610,6 @@ static int q6v5_alloc_memory_region(struct q6v5 *qproc)
 
 	qproc->mpss_phys = qproc->mpss_reloc = r.start;
 	qproc->mpss_size = resource_size(&r);
-	qproc->mpss_region = devm_ioremap_wc(qproc->dev, qproc->mpss_phys, qproc->mpss_size);
-	if (!qproc->mpss_region) {
-		dev_err(qproc->dev, "unable to map memory region: %pa+%zx\n",
-			&r.start, qproc->mpss_size);
-		return -EBUSY;
-	}
 
 	return 0;
 }
-- 
2.25.1




  parent reply	other threads:[~2020-06-23 20:03 UTC|newest]

Thread overview: 485+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-06-23 19:49 [PATCH 5.7 000/477] 5.7.6-rc1 review Greg Kroah-Hartman
2020-06-23 19:49 ` [PATCH 5.7 001/477] staging: wfx: fix potential deadlock in wfx_tx_flush() Greg Kroah-Hartman
2020-06-23 19:49 ` [PATCH 5.7 002/477] power: supply: bq24257_charger: Replace depends on REGMAP_I2C with select Greg Kroah-Hartman
2020-06-23 19:50 ` [PATCH 5.7 003/477] clk: sunxi: Fix incorrect usage of round_down() Greg Kroah-Hartman
2020-06-23 19:50 ` [PATCH 5.7 004/477] ASoC: tegra: tegra_wm8903: Support nvidia, headset property Greg Kroah-Hartman
2020-06-23 19:50 ` [PATCH 5.7 005/477] rtc: rc5t619: Fix an ERR_PTR vs NULL check Greg Kroah-Hartman
2020-06-23 19:50 ` [PATCH 5.7 006/477] i2c: piix4: Detect secondary SMBus controller on AMD AM4 chipsets Greg Kroah-Hartman
2020-06-23 19:50 ` [PATCH 5.7 007/477] ASoC: SOF: imx8: Fix randbuild error Greg Kroah-Hartman
2020-06-23 19:50 ` [PATCH 5.7 008/477] iio: pressure: bmp280: Tolerate IRQ before registering Greg Kroah-Hartman
2020-06-23 19:50 ` [PATCH 5.7 009/477] remoteproc: Fix IDR initialisation in rproc_alloc() Greg Kroah-Hartman
2020-06-23 19:50 ` [PATCH 5.7 010/477] clk: qcom: msm8916: Fix the address location of pll->config_reg Greg Kroah-Hartman
2020-06-23 19:50 ` [PATCH 5.7 011/477] staging: wfx: check ssidlen and prevent an array overflow Greg Kroah-Hartman
2020-06-23 19:50 ` [PATCH 5.7 012/477] ASoC: fsl_esai: Disable exception interrupt before scheduling tasklet Greg Kroah-Hartman
2020-06-23 19:50 ` [PATCH 5.7 013/477] backlight: lp855x: Ensure regulators are disabled on probe failure Greg Kroah-Hartman
2020-06-23 19:50 ` [PATCH 5.7 014/477] ARM: dts: renesas: Fix IOMMU device node names Greg Kroah-Hartman
2020-06-23 19:50 ` [PATCH 5.7 015/477] ASoC: davinci-mcasp: Fix dma_chan refcnt leak when getting dma type Greg Kroah-Hartman
2020-06-23 19:50 ` [PATCH 5.7 016/477] ARM: integrator: Add some Kconfig selections Greg Kroah-Hartman
2020-06-23 19:50 ` [PATCH 5.7 017/477] ARM: dts: stm32: Add missing ethernet PHY reset on AV96 Greg Kroah-Hartman
2020-06-23 19:50 ` [PATCH 5.7 018/477] arm64: dts: renesas: Fix IOMMU device node names Greg Kroah-Hartman
2020-06-23 19:50 ` [PATCH 5.7 019/477] ASoC: codecs: wm97xx: fix ac97 dependency Greg Kroah-Hartman
2020-06-23 19:50 ` [PATCH 5.7 020/477] arm64: dts: meson-gxbb-kii-pro: fix board compatible Greg Kroah-Hartman
2020-06-23 19:50 ` [PATCH 5.7 021/477] scsi: core: free sgtables in case command setup fails Greg Kroah-Hartman
2020-06-23 19:50 ` [PATCH 5.7 022/477] scsi: qedi: Check for buffer overflow in qedi_set_path() Greg Kroah-Hartman
2020-06-23 19:50 ` [PATCH 5.7 023/477] arm64: dts: meson: fixup SCP sram nodes Greg Kroah-Hartman
2020-06-23 19:50 ` [PATCH 5.7 024/477] ALSA: hda/realtek - Introduce polarity for micmute LED GPIO Greg Kroah-Hartman
2020-06-23 19:50 ` [PATCH 5.7 025/477] ALSA: isa/wavefront: prevent out of bounds write in ioctl Greg Kroah-Hartman
2020-06-23 19:50 ` [PATCH 5.7 026/477] PCI: Allow pci_resize_resource() for devices on root bus Greg Kroah-Hartman
2020-06-23 19:50 ` [PATCH 5.7 027/477] PCI: endpoint: functions/pci-epf-test: Fix DMA channel release Greg Kroah-Hartman
2020-06-23 19:50 ` [PATCH 5.7 028/477] scsi: qla2xxx: Fix issue with adapters stopping state Greg Kroah-Hartman
2020-06-23 19:50 ` [PATCH 5.7 029/477] Input: edt-ft5x06 - fix get_default register write access Greg Kroah-Hartman
2020-06-23 19:50 ` [PATCH 5.7 030/477] PCI: brcmstb: Fix window register offset from 4 to 8 Greg Kroah-Hartman
2020-06-23 19:50 ` [PATCH 5.7 031/477] powerpc/kasan: Fix stack overflow by increasing THREAD_SHIFT Greg Kroah-Hartman
2020-06-23 19:50 ` [PATCH 5.7 032/477] rtc: mc13xxx: fix a double-unlock issue Greg Kroah-Hartman
2020-06-23 19:50 ` [PATCH 5.7 033/477] iio: bmp280: fix compensation of humidity Greg Kroah-Hartman
2020-06-23 19:50 ` [PATCH 5.7 034/477] f2fs: compress: let lz4 compressor handle output buffer budget properly Greg Kroah-Hartman
2020-06-23 19:50 ` [PATCH 5.7 035/477] f2fs: report delalloc reserve as non-free in statfs for project quota Greg Kroah-Hartman
2020-06-23 19:50 ` [PATCH 5.7 036/477] i2c: pxa: clear all master action bits in i2c_pxa_stop_message() Greg Kroah-Hartman
2020-06-23 19:50 ` Greg Kroah-Hartman [this message]
2020-06-23 19:50 ` [PATCH 5.7 038/477] clk: samsung: Mark top ISP and CAM clocks on Exynos542x as critical Greg Kroah-Hartman
2020-06-23 19:50 ` [PATCH 5.7 039/477] staging: wfx: fix output of rx_stats on big endian hosts Greg Kroah-Hartman
2020-06-23 19:50 ` [PATCH 5.7 040/477] usblp: poison URBs upon disconnect Greg Kroah-Hartman
2020-06-23 19:50 ` [PATCH 5.7 041/477] usb: roles: Switch on role-switch uevent reporting Greg Kroah-Hartman
2020-06-23 19:50 ` [PATCH 5.7 042/477] serial: 8250: Fix max baud limit in generic 8250 port Greg Kroah-Hartman
2020-06-23 19:50 ` [PATCH 5.7 043/477] nvmem: ensure sysfs writes handle write-protect pin Greg Kroah-Hartman
2020-06-23 19:50 ` [PATCH 5.7 044/477] misc: fastrpc: Fix an incomplete memory release in fastrpc_rpmsg_probe() Greg Kroah-Hartman
2020-06-23 19:50 ` [PATCH 5.7 045/477] misc: fastrpc: fix potential fastrpc_invoke_ctx leak Greg Kroah-Hartman
2020-06-23 19:50 ` [PATCH 5.7 046/477] dm mpath: switch paths in dm_blk_ioctl() code path Greg Kroah-Hartman
2020-06-23 19:50 ` [PATCH 5.7 047/477] arm64: dts: armada-3720-turris-mox: forbid SDR104 on SDIO for FCC purposes Greg Kroah-Hartman
2020-06-23 19:50 ` [PATCH 5.7 048/477] arm64: dts: armada-3720-turris-mox: fix SFP binding Greg Kroah-Hartman
2020-06-23 19:50 ` [PATCH 5.7 049/477] arm64: dts: juno: Fix GIC child nodes Greg Kroah-Hartman
2020-06-23 19:50 ` [PATCH 5.7 050/477] RDMA/uverbs: Fix create WQ to use the given user handle Greg Kroah-Hartman
2020-06-23 19:50 ` [PATCH 5.7 051/477] RDMA/srpt: Fix disabling device management Greg Kroah-Hartman
2020-06-23 19:50 ` [PATCH 5.7 052/477] pinctrl: ocelot: Fix GPIO interrupt decoding on Jaguar2 Greg Kroah-Hartman
2020-06-23 19:50 ` [PATCH 5.7 053/477] clk: renesas: cpg-mssr: Fix STBCR suspend/resume handling Greg Kroah-Hartman
2020-06-23 19:50 ` [PATCH 5.7 054/477] ASoC: SOF: Do nothing when DSP PM callbacks are not set Greg Kroah-Hartman
2020-06-23 19:50 ` [PATCH 5.7 055/477] arm64: dts: fvp: Fix GIC child nodes Greg Kroah-Hartman
2020-06-23 19:50 ` [PATCH 5.7 056/477] PCI: aardvark: Dont blindly enable ASPM L0s and dont write to read-only register Greg Kroah-Hartman
2020-06-23 19:50 ` [PATCH 5.7 057/477] ps3disk: use the default segment boundary Greg Kroah-Hartman
2020-06-23 19:50 ` [PATCH 5.7 058/477] arm64: dts: fvp/juno: Fix node address fields Greg Kroah-Hartman
2020-06-23 19:50 ` [PATCH 5.7 059/477] vfio/pci: fix memory leaks in alloc_perm_bits() Greg Kroah-Hartman
2020-06-23 19:50 ` [PATCH 5.7 060/477] arm64: dts: qcom: sc7180: Correct the pdc interrupt ranges Greg Kroah-Hartman
2020-06-23 19:50 ` [PATCH 5.7 061/477] coresight: tmc: Fix TMC mode read in tmc_read_prepare_etb() Greg Kroah-Hartman
2020-06-23 19:50 ` [PATCH 5.7 062/477] RDMA/mlx5: Add init2init as a modify command Greg Kroah-Hartman
2020-06-23 19:51 ` [PATCH 5.7 063/477] scsi: hisi_sas: Do not reset phy timer to wait for stray phy up Greg Kroah-Hartman
2020-06-23 19:51 ` [PATCH 5.7 064/477] powerpc/book3s64/radix/tlb: Determine hugepage flush correctly Greg Kroah-Hartman
2020-06-23 19:51 ` [PATCH 5.7 065/477] PCI: pci-bridge-emul: Fix PCIe bit conflicts Greg Kroah-Hartman
2020-06-23 19:51 ` [PATCH 5.7 066/477] m68k/PCI: Fix a memory leak in an error handling path Greg Kroah-Hartman
2020-06-23 19:51 ` [PATCH 5.7 067/477] habanalabs: dont allow hard reset with open processes Greg Kroah-Hartman
2020-06-23 19:51 ` [PATCH 5.7 068/477] usb: cdns3: Fix runtime PM imbalance on error Greg Kroah-Hartman
2020-06-23 19:51 ` [PATCH 5.7 069/477] gpio: dwapb: Call acpi_gpiochip_free_interrupts() on GPIO chip de-registration Greg Kroah-Hartman
2020-06-23 19:51 ` [PATCH 5.7 070/477] usb: gadget: core: sync interrupt before unbind the udc Greg Kroah-Hartman
2020-06-23 19:51 ` [PATCH 5.7 071/477] powerpc/ptdump: Add _PAGE_COHERENT flag Greg Kroah-Hartman
2020-06-23 19:51 ` [PATCH 5.7 072/477] mfd: wm8994: Fix driver operation if loaded as modules Greg Kroah-Hartman
2020-06-23 19:51 ` [PATCH 5.7 073/477] scsi: cxgb3i: Fix some leaks in init_act_open() Greg Kroah-Hartman
2020-06-23 19:51 ` [PATCH 5.7 074/477] clk: zynqmp: fix memory leak in zynqmp_register_clocks Greg Kroah-Hartman
2020-06-23 19:51 ` [PATCH 5.7 075/477] scsi: lpfc: Fix lpfc_nodelist leak when processing unsolicited event Greg Kroah-Hartman
2020-06-23 19:51 ` [PATCH 5.7 076/477] scsi: vhost: Notify TCM about the maximum sg entries supported per command Greg Kroah-Hartman
2020-06-23 19:51 ` [PATCH 5.7 077/477] clk: clk-flexgen: fix clock-critical handling Greg Kroah-Hartman
2020-06-23 19:51 ` [PATCH 5.7 078/477] IB/mlx5: Fix DEVX support for MLX5_CMD_OP_INIT2INIT_QP command Greg Kroah-Hartman
2020-06-23 19:51 ` [PATCH 5.7 079/477] powerpc/perf/hv-24x7: Fix inconsistent output values incase multiple hv-24x7 events run Greg Kroah-Hartman
2020-06-23 19:51 ` [PATCH 5.7 080/477] nfsd: Fix svc_xprt refcnt leak when setup callback client failed Greg Kroah-Hartman
2020-06-23 19:51 ` [PATCH 5.7 081/477] PCI: vmd: Filter resource type bits from shadow register Greg Kroah-Hartman
2020-06-23 19:51 ` [PATCH 5.7 082/477] RDMA/core: Fix several reference count leaks Greg Kroah-Hartman
2020-06-23 19:51 ` [PATCH 5.7 083/477] cifs: set up next DFS target before generic_ip_connect() Greg Kroah-Hartman
2020-06-23 19:51 ` [PATCH 5.7 084/477] ASoC: qcom: q6asm-dai: kCFI fix Greg Kroah-Hartman
2020-06-23 19:51 ` [PATCH 5.7 085/477] powerpc/crashkernel: Take "mem=" option into account Greg Kroah-Hartman
2020-06-23 19:51 ` [PATCH 5.7 086/477] pwm: img: Call pm_runtime_put() in pm_runtime_get_sync() failed case Greg Kroah-Hartman
2020-06-23 19:51 ` [PATCH 5.7 087/477] sparc32: mm: Dont try to free page-table pages if ctor() fails Greg Kroah-Hartman
2020-06-23 19:51 ` [PATCH 5.7 088/477] clk: sprd: fix compile-testing Greg Kroah-Hartman
2020-06-23 19:51 ` [PATCH 5.7 089/477] drm/nouveau: gr/gk20a: Use firmware version 0 Greg Kroah-Hartman
2020-06-23 19:51 ` [PATCH 5.7 090/477] crypto: omap-sham - huge buffer access fixes Greg Kroah-Hartman
2020-06-23 19:51 ` [PATCH 5.7 091/477] yam: fix possible memory leak in yam_init_driver Greg Kroah-Hartman
2020-06-23 19:51 ` [PATCH 5.7 092/477] net: mdiobus: Disable preemption upon u64_stats update Greg Kroah-Hartman
2020-06-23 19:51 ` [PATCH 5.7 093/477] ASoC: meson: fix memory leak of links if allocation of ldata fails Greg Kroah-Hartman
2020-06-23 19:51 ` [PATCH 5.7 094/477] NTB: ntb_pingpong: Choose doorbells based on port number Greg Kroah-Hartman
2020-06-23 19:51 ` [PATCH 5.7 095/477] NTB: Fix the default port and peer numbers for legacy drivers Greg Kroah-Hartman
2020-06-23 19:51 ` [PATCH 5.7 096/477] mksysmap: Fix the mismatch of .L symbols in System.map Greg Kroah-Hartman
2020-06-23 19:51 ` [PATCH 5.7 097/477] apparmor: fix introspection of of task mode for unconfined tasks Greg Kroah-Hartman
2020-06-23 19:51 ` [PATCH 5.7 098/477] net: dsa: lantiq_gswip: fix and improve the unsupported interface error Greg Kroah-Hartman
2020-06-23 19:51 ` [PATCH 5.7 099/477] apparmor: check/put label on apparmor_sk_clone_security() Greg Kroah-Hartman
2020-06-23 19:51 ` [PATCH 5.7 100/477] f2fs: handle readonly filesystem in f2fs_ioc_shutdown() Greg Kroah-Hartman
2020-06-23 19:51 ` [PATCH 5.7 101/477] xfs: Add the missed xfs_perag_put() for xfs_ifree_cluster() Greg Kroah-Hartman
2020-06-23 19:51 ` [PATCH 5.7 102/477] ASoC: meson: add missing free_irq() in error path Greg Kroah-Hartman
2020-06-23 19:51 ` [PATCH 5.7 103/477] bpf, sockhash: Fix memory leak when unlinking sockets in sock_hash_free Greg Kroah-Hartman
2020-06-23 19:51 ` [PATCH 5.7 104/477] scsi: sr: Fix sr_probe() missing mutex_destroy Greg Kroah-Hartman
2020-06-23 19:51 ` [PATCH 5.7 105/477] scsi: sr: Fix sr_probe() missing deallocate of device minor Greg Kroah-Hartman
2020-06-23 19:51 ` [PATCH 5.7 106/477] scsi: ibmvscsi: Dont send host info in adapter info MAD after LPM Greg Kroah-Hartman
2020-06-23 19:51 ` [PATCH 5.7 107/477] media: s5p-mfc: Properly handle dma_parms for the allocated devices Greg Kroah-Hartman
2020-06-23 19:51 ` [PATCH 5.7 108/477] media: v4l2-ctrls: Unset correct HEVC loop filter flag Greg Kroah-Hartman
2020-06-23 19:51 ` [PATCH 5.7 109/477] ibmvnic: Flush existing work items before device removal Greg Kroah-Hartman
2020-06-23 19:51 ` [PATCH 5.7 110/477] bpf: tcp: Recv() should return 0 when the peer socket is closed Greg Kroah-Hartman
2020-06-23 19:51 ` [PATCH 5.7 111/477] apparmor: fix nnp subset test for unconfined Greg Kroah-Hartman
2020-06-23 19:51 ` [PATCH 5.7 112/477] x86/purgatory: Disable various profiling and sanitizing options Greg Kroah-Hartman
2020-06-23 19:51 ` [PATCH 5.7 113/477] ARM: dts: bcm283x: Use firmware PM driver for V3D Greg Kroah-Hartman
2020-06-23 19:51 ` [PATCH 5.7 114/477] arm64: dts: realtek: rtd129x: Fix GIC CPU masks for RTD1293 Greg Kroah-Hartman
2020-06-23 19:51 ` [PATCH 5.7 115/477] staging: greybus: fix a missing-check bug in gb_lights_light_config() Greg Kroah-Hartman
2020-06-23 19:51 ` [PATCH 5.7 116/477] staging: rtl8712: fix multiline derefernce warnings Greg Kroah-Hartman
2020-06-23 19:51 ` [PATCH 5.7 117/477] staging: mt7621-pci: fix PCIe interrupt mapping Greg Kroah-Hartman
2020-06-23 19:51 ` [PATCH 5.7 118/477] arm64: dts: mt8173: fix unit name warnings Greg Kroah-Hartman
2020-06-23 19:51 ` [PATCH 5.7 119/477] scsi: qedi: Do not flush offload work if ARP not resolved Greg Kroah-Hartman
2020-06-23 19:51 ` [PATCH 5.7 120/477] arm64: dts: qcom: msm8916: remove unit name for thermal trip points Greg Kroah-Hartman
2020-06-23 19:51 ` [PATCH 5.7 121/477] ARM: dts: sun8i-h2-plus-bananapi-m2-zero: Fix led polarity Greg Kroah-Hartman
2020-06-23 19:51 ` [PATCH 5.7 122/477] RDMA/mlx5: Fix udata response upon SRQ creation Greg Kroah-Hartman
2020-06-23 19:52 ` [PATCH 5.7 123/477] ALSA: usb-audio: RME Babyface Pro mixer patch Greg Kroah-Hartman
2020-06-23 19:52 ` [PATCH 5.7 124/477] gpio: dwapb: Append MODULE_ALIAS for platform driver Greg Kroah-Hartman
2020-06-23 19:52 ` [PATCH 5.7 125/477] scsi: qedf: Fix crash when MFW calls for protocol stats while function is still probing Greg Kroah-Hartman
2020-06-23 19:52 ` [PATCH 5.7 126/477] iio: buffer-dmaengine: use %zu specifier for sprintf(align) Greg Kroah-Hartman
2020-06-23 19:52 ` [PATCH 5.7 127/477] pinctrl: rza1: Fix wrong array assignment of rza1l_swio_entries Greg Kroah-Hartman
2020-06-23 19:52 ` [PATCH 5.7 128/477] virtiofs: schedule blocking async replies in separate worker Greg Kroah-Hartman
2020-06-23 19:52 ` [PATCH 5.7 129/477] fuse: BUG_ON correction in fuse_dev_splice_write() Greg Kroah-Hartman
2020-06-23 19:52 ` [PATCH 5.7 130/477] arm64: dts: qcom: fix pm8150 gpio interrupts Greg Kroah-Hartman
2020-06-23 19:52 ` [PATCH 5.7 131/477] firmware: qcom_scm: fix bogous abuse of dma-direct internals Greg Kroah-Hartman
2020-06-23 19:52 ` [PATCH 5.7 132/477] arm64: dts: qcom: sm8250: Fix PDC compatible and reg Greg Kroah-Hartman
2020-06-23 19:52 ` [PATCH 5.7 133/477] staging: gasket: Fix mapping refcnt leak when put attribute fails Greg Kroah-Hartman
2020-06-23 19:52 ` [PATCH 5.7 134/477] staging: gasket: Fix mapping refcnt leak when register/store fails Greg Kroah-Hartman
2020-06-23 19:52 ` [PATCH 5.7 135/477] ALSA: usb-audio: Improve frames size computation Greg Kroah-Hartman
2020-06-23 19:52 ` [PATCH 5.7 136/477] ALSA: usb-audio: Fix racy list management in output queue Greg Kroah-Hartman
2020-06-23 19:52 ` [PATCH 5.7 137/477] Input: mms114 - add extra compatible for mms345l Greg Kroah-Hartman
2020-06-23 19:52 ` [PATCH 5.7 138/477] s390/qdio: consistently restore the IRQ handler Greg Kroah-Hartman
2020-06-23 19:52 ` [PATCH 5.7 139/477] s390/qdio: tear down thinint indicator after early error Greg Kroah-Hartman
2020-06-23 19:52 ` [PATCH 5.7 140/477] s390/qdio: put " Greg Kroah-Hartman
2020-06-23 19:52 ` [PATCH 5.7 141/477] staging: wfx: fix overflow in frame counters Greg Kroah-Hartman
2020-06-23 19:52 ` [PATCH 5.7 142/477] staging: wfx: fix double init of tx_policy_upload_work Greg Kroah-Hartman
2020-06-23 19:52 ` [PATCH 5.7 143/477] tty: hvc: Fix data abort due to race in hvc_open Greg Kroah-Hartman
2020-06-23 19:52 ` [PATCH 5.7 144/477] slimbus: ngd: get drvdata from correct device Greg Kroah-Hartman
2020-06-23 19:52 ` [PATCH 5.7 145/477] gpio: mlxbf2: fix return value check in mlxbf2_gpio_get_lock_res() Greg Kroah-Hartman
2020-06-23 19:52 ` [PATCH 5.7 146/477] of: property: Fix create device links for all child-supplier dependencies Greg Kroah-Hartman
2020-06-23 19:52 ` [PATCH 5.7 147/477] of: property: Do not link to disabled devices Greg Kroah-Hartman
2020-06-23 19:52 ` [PATCH 5.7 148/477] clk: meson: meson8b: Fix the first parent of vid_pll_in_sel Greg Kroah-Hartman
2020-06-23 19:52 ` [PATCH 5.7 149/477] clk: meson: meson8b: Fix the polarity of the RESET_N lines Greg Kroah-Hartman
2020-06-23 19:52 ` [PATCH 5.7 150/477] clk: meson: meson8b: Fix the vclk_div{1, 2, 4, 6, 12}_en gate bits Greg Kroah-Hartman
2020-06-23 19:52 ` [PATCH 5.7 151/477] gpio: pca953x: fix handling of automatic address incrementing Greg Kroah-Hartman
2020-06-23 19:52 ` [PATCH 5.7 152/477] ASoC: component: suppress uninitialized-variable warning Greg Kroah-Hartman
2020-06-23 19:52 ` [PATCH 5.7 153/477] thermal/drivers/ti-soc-thermal: Avoid dereferencing ERR_PTR Greg Kroah-Hartman
2020-06-23 19:52 ` [PATCH 5.7 154/477] ASoC: rt5682: fix I2C/Soundwire dependencies Greg Kroah-Hartman
2020-06-23 19:52 ` [PATCH 5.7 155/477] arm64: dts: meson-g12b-ugoos-am6: fix board compatible Greg Kroah-Hartman
2020-06-23 19:52 ` [PATCH 5.7 156/477] arm64: dts: meson: fix leds subnodes name Greg Kroah-Hartman
2020-06-23 19:52 ` [PATCH 5.7 157/477] ASoC: SOF: Update correct LED status at the first time usage of update_mute_led() Greg Kroah-Hartman
2020-06-23 19:52 ` [PATCH 5.7 158/477] clk: meson: meson8b: Dont rely on u-boot to init all GP_PLL registers Greg Kroah-Hartman
2020-06-23 19:52 ` [PATCH 5.7 159/477] ASoC: max98373: reorder max98373_reset() in resume Greg Kroah-Hartman
2020-06-23 19:52 ` [PATCH 5.7 160/477] soundwire: slave: dont init debugfs on device registration error Greg Kroah-Hartman
2020-06-23 19:52 ` [PATCH 5.7 161/477] ARM: dts: aspeed: ast2600: Set arch timer always-on Greg Kroah-Hartman
2020-06-23 19:52 ` [PATCH 5.7 162/477] ARM: dts: aspeed: Change KCS nodes to v2 binding Greg Kroah-Hartman
2020-06-23 19:52 ` [PATCH 5.7 163/477] HID: intel-ish-hid: avoid bogus uninitialized-variable warning Greg Kroah-Hartman
2020-06-23 19:52 ` [PATCH 5.7 164/477] usb: dwc3: gadget: Properly handle ClearFeature(halt) Greg Kroah-Hartman
2020-06-23 19:52 ` [PATCH 5.7 165/477] usb: dwc3: meson-g12a: check return of dwc3_meson_g12a_usb_init Greg Kroah-Hartman
2020-06-23 19:52 ` [PATCH 5.7 166/477] usb: dwc3: gadget: Properly handle failed kick_transfer Greg Kroah-Hartman
2020-06-23 19:52 ` [PATCH 5.7 167/477] staging: wilc1000: Increase the size of wid_list array Greg Kroah-Hartman
2020-06-23 19:52 ` [PATCH 5.7 168/477] staging: sm750fb: add missing case while setting FB_VISUAL Greg Kroah-Hartman
2020-06-23 19:52 ` [PATCH 5.7 169/477] staging: wfx: avoid compiler warning on empty array Greg Kroah-Hartman
2020-06-23 19:52 ` [PATCH 5.7 170/477] PCI: v3-semi: Fix a memory leak in v3_pci_probe() error handling paths Greg Kroah-Hartman
2020-06-23 19:52 ` [PATCH 5.7 171/477] i2c: pxa: fix i2c_pxa_scream_blue_murder() debug output Greg Kroah-Hartman
2020-06-23 19:52 ` [PATCH 5.7 172/477] drivers: base: Fix NULL pointer exception in __platform_driver_probe() if a driver developer is foolish Greg Kroah-Hartman
2020-06-23 19:52 ` [PATCH 5.7 173/477] PCI: rcar: Fix incorrect programming of OB windows Greg Kroah-Hartman
2020-06-23 19:52 ` [PATCH 5.7 174/477] PCI/ASPM: Allow ASPM on links to PCIe-to-PCI/PCI-X Bridges Greg Kroah-Hartman
2020-06-23 19:52 ` [PATCH 5.7 175/477] scsi: qla2xxx: Fix warning after FC target reset Greg Kroah-Hartman
2020-06-23 19:52 ` [PATCH 5.7 176/477] ALSA: firewire-lib: fix invalid assignment to union data for directional parameter Greg Kroah-Hartman
2020-06-23 19:52 ` [PATCH 5.7 177/477] power: supply: lp8788: Fix an error handling path in lp8788_charger_probe() Greg Kroah-Hartman
2020-06-23 19:52 ` [PATCH 5.7 178/477] power: supply: smb347-charger: IRQSTAT_D is volatile Greg Kroah-Hartman
2020-06-23 19:52 ` [PATCH 5.7 179/477] PCI: brcmstb: Assert fundamental reset on initialization Greg Kroah-Hartman
2020-06-23 19:52 ` [PATCH 5.7 180/477] ASoC: SOF: core: fix error return code in sof_probe_continue() Greg Kroah-Hartman
2020-06-23 19:52 ` [PATCH 5.7 181/477] remoteproc/mediatek: fix invalid use of sizeof in scp_ipi_init() Greg Kroah-Hartman
2020-06-23 19:52 ` [PATCH 5.7 182/477] arm64: dts: msm8996: Fix CSI IRQ types Greg Kroah-Hartman
2020-06-23 19:53 ` [PATCH 5.7 183/477] scsi: target: loopback: Fix READ with data and sensebytes Greg Kroah-Hartman
2020-06-23 19:53 ` [PATCH 5.7 184/477] scsi: mpt3sas: Fix double free warnings Greg Kroah-Hartman
2020-06-23 19:53 ` [PATCH 5.7 185/477] f2fs: Fix wrong stub helper update_sit_info Greg Kroah-Hartman
2020-06-23 19:53 ` [PATCH 5.7 186/477] f2fs: fix potential use-after-free issue Greg Kroah-Hartman
2020-06-23 19:53 ` [PATCH 5.7 187/477] f2fs: compress: fix zstd data corruption Greg Kroah-Hartman
2020-06-23 19:53 ` [PATCH 5.7 188/477] um: do not evaluate compilers library path when cleaning Greg Kroah-Hartman
2020-06-23 19:53 ` [PATCH 5.7 189/477] unicore32: " Greg Kroah-Hartman
2020-06-23 19:53 ` [PATCH 5.7 190/477] SoC: rsnd: add interrupt support for SSI BUSIF buffer Greg Kroah-Hartman
2020-06-23 19:53 ` [PATCH 5.7 191/477] ASoC: ux500: mop500: Fix some refcounted resources issues Greg Kroah-Hartman
2020-06-23 19:53 ` [PATCH 5.7 192/477] ASoC: ti: omap-mcbsp: Fix an error handling path in asoc_mcbsp_probe() Greg Kroah-Hartman
2020-06-23 19:53 ` [PATCH 5.7 193/477] pinctrl: rockchip: fix memleak in rockchip_dt_node_to_map Greg Kroah-Hartman
2020-06-23 19:53 ` [PATCH 5.7 194/477] remoteproc: qcom_q6v5_mss: Drop accesses to MPSS PERPH register space Greg Kroah-Hartman
2020-06-23 19:53 ` [PATCH 5.7 195/477] dlm: remove BUG() before panic() Greg Kroah-Hartman
2020-06-23 19:53 ` [PATCH 5.7 196/477] phy: ti: j721e-wiz: Fix some error return code in wiz_probe() Greg Kroah-Hartman
2020-06-23 19:53 ` [PATCH 5.7 197/477] USB: ohci-sm501: fix error return code in ohci_hcd_sm501_drv_probe() Greg Kroah-Hartman
2020-06-23 19:53 ` [PATCH 5.7 198/477] arm64: dts: qcom: db820c: Fix invalid pm8994 supplies Greg Kroah-Hartman
2020-06-23 19:53 ` [PATCH 5.7 199/477] arm64: dts: qcom: c630: Add WiFi node Greg Kroah-Hartman
2020-06-23 19:53 ` [PATCH 5.7 200/477] clk: ti: composite: fix memory leak Greg Kroah-Hartman
2020-06-23 19:53 ` [PATCH 5.7 201/477] PCI: Fix pci_register_host_bridge() device_register() error handling Greg Kroah-Hartman
2020-06-23 19:53 ` [PATCH 5.7 202/477] powerpc/64: Dont initialise init_task->thread.regs Greg Kroah-Hartman
2020-06-23 19:53 ` [PATCH 5.7 203/477] tty: n_gsm: Fix SOF skipping Greg Kroah-Hartman
2020-06-23 19:53 ` [PATCH 5.7 204/477] tty: n_gsm: Fix waking up upper tty layer when room available Greg Kroah-Hartman
2020-06-23 19:53 ` [PATCH 5.7 205/477] staging: wfx: fix value of scan timeout Greg Kroah-Hartman
2020-06-23 19:53 ` [PATCH 5.7 206/477] ALSA: usb-audio: fixing upper volume limit for RME Babyface Pro routing crosspoints Greg Kroah-Hartman
2020-06-23 19:53 ` [PATCH 5.7 207/477] ALSA: usb-audio: Add duplex sound support for USB devices using implicit feedback Greg Kroah-Hartman
2020-06-23 19:53 ` [PATCH 5.7 208/477] HID: Add quirks for Trust Panora Graphic Tablet Greg Kroah-Hartman
2020-06-23 19:53 ` [PATCH 5.7 209/477] PCI/PM: Assume ports without DLL Link Active train links in 100 ms Greg Kroah-Hartman
2020-06-23 19:53 ` [PATCH 5.7 210/477] habanalabs: increase timeout during reset Greg Kroah-Hartman
2020-06-23 19:53 ` [PATCH 5.7 211/477] arm64: dts: marvell: armada-37xx: Set pcie_reset_pin to gpio function Greg Kroah-Hartman
2020-06-23 19:53 ` [PATCH 5.7 212/477] pinctrl: ocelot: Always register GPIO driver Greg Kroah-Hartman
2020-06-23 19:53 ` [PATCH 5.7 213/477] ipmi: use vzalloc instead of kmalloc for user creation Greg Kroah-Hartman
2020-06-23 19:53 ` [PATCH 5.7 214/477] ASoC: codecs: rt*-sdw: fix memory leak in set_sdw_stream() Greg Kroah-Hartman
2020-06-23 19:53 ` [PATCH 5.7 215/477] powerpc/64s/exception: Fix machine check no-loss idle wakeup Greg Kroah-Hartman
2020-06-23 19:53 ` [PATCH 5.7 216/477] powerpc/64s/exceptions: Machine check reconcile irq state Greg Kroah-Hartman
2020-06-23 19:53 ` [PATCH 5.7 217/477] powerpc/pseries/ras: Fix FWNMI_VALID off by one Greg Kroah-Hartman
2020-06-23 19:53 ` [PATCH 5.7 218/477] PCI: aardvark: Train link immediately after enabling training Greg Kroah-Hartman
2020-06-23 19:53 ` [PATCH 5.7 219/477] PCI: aardvark: Improve link training Greg Kroah-Hartman
2020-06-23 19:53 ` [PATCH 5.7 220/477] PCI: aardvark: Issue PERST via GPIO Greg Kroah-Hartman
2020-06-23 19:53 ` [PATCH 5.7 221/477] drivers: phy: sr-usb: do not use internal fsm for USB2 phy init Greg Kroah-Hartman
2020-06-23 19:53 ` [PATCH 5.7 222/477] phy: cadence: sierra: Fix for USB3 U1/U2 state Greg Kroah-Hartman
2020-06-23 19:53 ` [PATCH 5.7 223/477] powerpc/ps3: Fix kexec shutdown hang Greg Kroah-Hartman
2020-06-23 19:53 ` [PATCH 5.7 224/477] iommu/arm-smmu-v3: Dont reserve implementation defined register space Greg Kroah-Hartman
2020-06-23 19:53 ` [PATCH 5.7 225/477] vfio-pci: Mask cap zero Greg Kroah-Hartman
2020-06-23 19:53 ` [PATCH 5.7 226/477] usb/ohci-platform: Fix a warning when hibernating Greg Kroah-Hartman
2020-06-23 19:53 ` [PATCH 5.7 227/477] drm/msm: Fix undefined "rd_full" link error Greg Kroah-Hartman
2020-06-23 19:53 ` [PATCH 5.7 228/477] drm/msm/mdp5: Fix mdp5_init error path for failed mdp5_kms allocation Greg Kroah-Hartman
2020-06-23 19:53 ` [PATCH 5.7 229/477] ASoC: Intel: bytcr_rt5640: Add quirk for Toshiba Encore WT8-A tablet Greg Kroah-Hartman
2020-06-23 19:53 ` [PATCH 5.7 230/477] USB: host: ehci-mxc: Add error handling in ehci_mxc_drv_probe() Greg Kroah-Hartman
2020-06-23 19:53 ` [PATCH 5.7 231/477] tty: n_gsm: Fix bogus i++ in gsm_data_kick Greg Kroah-Hartman
2020-06-23 19:53 ` [PATCH 5.7 232/477] coresight: Fix support for sparsely populated ports Greg Kroah-Hartman
2020-06-23 19:53 ` [PATCH 5.7 233/477] coresight: etm4x: Fix use-after-free of per-cpu etm drvdata Greg Kroah-Hartman
2020-06-23 19:53 ` [PATCH 5.7 234/477] fpga: dfl: afu: Corrected error handling levels Greg Kroah-Hartman
2020-06-23 19:53 ` [PATCH 5.7 235/477] clk: samsung: exynos5433: Add IGNORE_UNUSED flag to sclk_i2s1 Greg Kroah-Hartman
2020-06-23 19:53 ` [PATCH 5.7 236/477] RDMA/hns: Bugfix for querying qkey Greg Kroah-Hartman
2020-06-23 19:53 ` [PATCH 5.7 237/477] RDMA/hns: Fix cmdq parameter of querying pf timer resource Greg Kroah-Hartman
2020-06-23 19:53 ` [PATCH 5.7 238/477] scsi: target: tcmu: Userspace must not complete queued commands Greg Kroah-Hartman
2020-06-23 19:53 ` [PATCH 5.7 239/477] scsi: core: Fix incorrect usage of shost_for_each_device Greg Kroah-Hartman
2020-06-23 19:53 ` [PATCH 5.7 240/477] firmware: imx: scu: Fix possible memory leak in imx_scu_probe() Greg Kroah-Hartman
2020-06-23 19:53 ` [PATCH 5.7 241/477] fuse: fix copy_file_range cache issues Greg Kroah-Hartman
2020-06-23 19:53 ` [PATCH 5.7 242/477] fuse: copy_file_range should truncate cache Greg Kroah-Hartman
2020-06-23 19:54 ` [PATCH 5.7 243/477] arm64: tegra: Fix ethernet phy-mode for Jetson Xavier Greg Kroah-Hartman
2020-06-23 19:54 ` [PATCH 5.7 244/477] arm64: tegra: Fix flag for 64-bit resources in ranges property Greg Kroah-Hartman
2020-06-23 19:54 ` [PATCH 5.7 245/477] powerpc/powernv: add NULL check after kzalloc Greg Kroah-Hartman
2020-06-23 19:54 ` [PATCH 5.7 246/477] powerpc/64s/pgtable: fix an undefined behaviour Greg Kroah-Hartman
2020-06-23 19:54 ` [PATCH 5.7 247/477] powerpc/kasan: Fix error detection on memory allocation Greg Kroah-Hartman
2020-06-23 19:54 ` [PATCH 5.7 248/477] dm zoned: return NULL if dmz_get_zone_for_reclaim() fails to find a zone Greg Kroah-Hartman
2020-06-23 19:54 ` [PATCH 5.7 249/477] RDMA/efa: Fix setting of wrong bit in get/set_feature commands Greg Kroah-Hartman
2020-06-23 19:54 ` [PATCH 5.7 250/477] xen/cpuhotplug: Fix initial CPU offlining for PV(H) guests Greg Kroah-Hartman
2020-06-23 19:54 ` [PATCH 5.7 251/477] PCI/PTM: Inherit Switch Downstream Port PTM settings from Upstream Port Greg Kroah-Hartman
2020-06-23 19:54 ` [PATCH 5.7 252/477] bus: mhi: core: Read transfer length from an event properly Greg Kroah-Hartman
2020-06-23 19:54 ` [PATCH 5.7 253/477] PCI: dwc: pci-dra7xx: Use devm_platform_ioremap_resource_byname() Greg Kroah-Hartman
2020-06-23 19:54 ` [PATCH 5.7 254/477] PCI: dwc: Fix inner MSI IRQ domain registration Greg Kroah-Hartman
2020-06-23 19:54 ` [PATCH 5.7 255/477] PCI: amlogic: meson: Dont use FAST_LINK_MODE to set up link Greg Kroah-Hartman
2020-06-23 19:54 ` [PATCH 5.7 256/477] iio: light: gp2ap002: Take runtime PM reference on light read Greg Kroah-Hartman
2020-06-23 19:54 ` [PATCH 5.7 257/477] IB/cma: Fix ports memory leak in cma_configfs Greg Kroah-Hartman
2020-06-23 19:54 ` [PATCH 5.7 258/477] selftests/timens: handle a case when alarm clocks are not supported Greg Kroah-Hartman
2020-06-23 19:54 ` [PATCH 5.7 259/477] watchdog: da9062: No need to ping manually before setting timeout Greg Kroah-Hartman
2020-06-23 19:54 ` [PATCH 5.7 260/477] usb: dwc2: gadget: move gadget resume after the core is in L0 state Greg Kroah-Hartman
2020-06-23 19:54 ` [PATCH 5.7 261/477] USB: gadget: udc: s3c2410_udc: Remove pointless NULL check in s3c2410_udc_nuke Greg Kroah-Hartman
2020-06-23 19:54 ` [PATCH 5.7 262/477] usb: gadget: lpc32xx_udc: dont dereference ep pointer before null check Greg Kroah-Hartman
2020-06-23 19:54 ` [PATCH 5.7 263/477] usb: gadget: fix potential double-free in m66592_probe Greg Kroah-Hartman
2020-06-23 19:54 ` [PATCH 5.7 264/477] usb: gadget: Fix issue with config_ep_by_speed function Greg Kroah-Hartman
2020-06-26 13:45   ` Pavel Machek
2020-06-23 19:54 ` [PATCH 5.7 265/477] pinctrl: Fix return value about devm_platform_ioremap_resource() Greg Kroah-Hartman
2020-06-23 19:54 ` [PATCH 5.7 266/477] scripts: headers_install: Exit with error on config leak Greg Kroah-Hartman
2020-06-23 19:54 ` [PATCH 5.7 267/477] RDMA/iw_cxgb4: cleanup device debugfs entries on ULD remove Greg Kroah-Hartman
2020-06-23 19:54 ` [PATCH 5.7 268/477] x86/apic: Make TSC deadline timer detection message visible Greg Kroah-Hartman
2020-06-23 19:54 ` [PATCH 5.7 269/477] mfd: stmfx: Reset chip on resume as supply was disabled Greg Kroah-Hartman
2020-06-23 19:54 ` [PATCH 5.7 270/477] mfd: stmfx: Fix stmfx_irq_init error path Greg Kroah-Hartman
2020-06-23 19:54 ` [PATCH 5.7 271/477] mfd: stmfx: Disable IRQ in suspend to avoid spurious interrupt Greg Kroah-Hartman
2020-06-23 19:54 ` [PATCH 5.7 272/477] mfd: wcd934x: Drop kfree for memory allocated with devm_kzalloc Greg Kroah-Hartman
2020-06-23 19:54 ` [PATCH 5.7 273/477] powerpc/32s: Dont warn when mapping RO data ROX Greg Kroah-Hartman
2020-06-23 19:54 ` [PATCH 5.7 274/477] powerpc/8xx: Drop CONFIG_8xx_COPYBACK option Greg Kroah-Hartman
2020-06-23 19:54 ` [PATCH 5.7 275/477] ASoC: fix incomplete error-handling in img_i2s_in_probe Greg Kroah-Hartman
2020-06-23 19:54 ` [PATCH 5.7 276/477] scsi: target: tcmu: Fix a use after free in tcmu_check_expired_queue_cmd() Greg Kroah-Hartman
2020-06-23 19:54 ` [PATCH 5.7 277/477] clk: bcm2835: Fix return type of bcm2835_register_gate Greg Kroah-Hartman
2020-06-23 19:54 ` [PATCH 5.7 278/477] scsi: ufs-qcom: Fix scheduling while atomic issue Greg Kroah-Hartman
2020-06-23 19:54 ` [PATCH 5.7 279/477] clk: zynqmp: Fix divider2 calculation Greg Kroah-Hartman
2020-06-23 19:54 ` [PATCH 5.7 280/477] scsi: iscsi: Fix deadlock on recovery path during GFP_IO reclaim Greg Kroah-Hartman
2020-06-23 19:54 ` [PATCH 5.7 281/477] scsi: ufs: ti-j721e-ufs: Fix unwinding of pm_runtime changes Greg Kroah-Hartman
2020-06-23 19:54 ` [PATCH 5.7 282/477] KVM: PPC: Book3S HV: Ignore kmemleak false positives Greg Kroah-Hartman
2020-06-23 19:54 ` [PATCH 5.7 283/477] KVM: PPC: Book3S: Fix some RCU-list locks Greg Kroah-Hartman
2020-06-23 19:54 ` [PATCH 5.7 284/477] KVM: PPC: Book3S HV: Relax check on H_SVM_INIT_ABORT Greg Kroah-Hartman
2020-06-23 19:54 ` [PATCH 5.7 285/477] clk: sprd: return correct type of value for _sprd_pll_recalc_rate Greg Kroah-Hartman
2020-06-23 19:54 ` [PATCH 5.7 286/477] clk: ast2600: Fix AHB clock divider for A1 Greg Kroah-Hartman
2020-06-23 19:54 ` [PATCH 5.7 287/477] misc: xilinx-sdfec: improve get_user_pages_fast() error handling Greg Kroah-Hartman
2020-06-23 19:54 ` [PATCH 5.7 288/477] /dev/mem: Revoke mappings when a driver claims the region Greg Kroah-Hartman
2020-06-23 19:54 ` [PATCH 5.7 289/477] ASoC: dapm: Move dai_link widgets to runtime to fix use after free Greg Kroah-Hartman
2020-06-23 19:54 ` [PATCH 5.7 290/477] net: sunrpc: Fix off-by-one issues in rpc_ntop6 Greg Kroah-Hartman
2020-06-23 19:54 ` [PATCH 5.7 291/477] NFSv4.1 fix rpc_call_done assignment for BIND_CONN_TO_SESSION Greg Kroah-Hartman
2020-06-23 19:54 ` [PATCH 5.7 292/477] of: Fix a refcounting bug in __of_attach_node_sysfs() Greg Kroah-Hartman
2020-06-23 19:54 ` [PATCH 5.7 293/477] ARM: davinci: fix build failure without I2C Greg Kroah-Hartman
2020-06-23 19:54 ` [PATCH 5.7 294/477] input: i8042 - Remove special PowerPC handling Greg Kroah-Hartman
2020-06-23 19:54 ` [PATCH 5.7 295/477] powerpc/4xx: Dont unmap NULL mbase Greg Kroah-Hartman
2020-06-23 19:54 ` [PATCH 5.7 296/477] powerpc/64s/kuap: Add missing isync to KUAP restore paths Greg Kroah-Hartman
2020-06-23 19:54 ` [PATCH 5.7 297/477] extcon: adc-jack: Fix an error handling path in adc_jack_probe() Greg Kroah-Hartman
2020-06-23 19:54 ` [PATCH 5.7 298/477] usb: dwc3: meson-g12a: fix error path when fetching the reset line fails Greg Kroah-Hartman
2020-06-23 19:54 ` [PATCH 5.7 299/477] ASoC: fsl_asrc_dma: Fix dma_chan leak when config DMA channel failed Greg Kroah-Hartman
2020-06-23 19:54 ` [PATCH 5.7 300/477] ASoC: SOF: Intel: hda: fix generic hda codec support Greg Kroah-Hartman
2020-06-23 19:54 ` [PATCH 5.7 301/477] vfio/mdev: Fix reference count leak in add_mdev_supported_type Greg Kroah-Hartman
2020-06-23 19:54 ` [PATCH 5.7 302/477] rtc: rv3028: Add missed check for devm_regmap_init_i2c() Greg Kroah-Hartman
2020-06-23 19:55 ` [PATCH 5.7 303/477] mailbox: imx: Fix return in imx_mu_scu_xlate() Greg Kroah-Hartman
2020-06-23 19:55 ` [PATCH 5.7 304/477] mailbox: zynqmp-ipi: Fix NULL vs IS_ERR() check in zynqmp_ipi_mbox_probe() Greg Kroah-Hartman
2020-06-23 19:55 ` [PATCH 5.7 305/477] rxrpc: Adjust /proc/net/rxrpc/calls to display call->debug_id not user_ID Greg Kroah-Hartman
2020-06-23 19:55 ` [PATCH 5.7 306/477] openrisc: Fix issue with argument clobbering for clone/fork Greg Kroah-Hartman
2020-06-23 19:55 ` [PATCH 5.7 307/477] drm/nouveau/disp/gm200-: fix NV_PDISP_SOR_HDMI2_CTRL(n) selection Greg Kroah-Hartman
2020-06-23 19:55 ` [PATCH 5.7 308/477] ceph: dont return -ESTALE if theres still an open file Greg Kroah-Hartman
2020-06-23 19:55 ` [PATCH 5.7 309/477] nfsd4: make drc_slab global, not per-net Greg Kroah-Hartman
2020-06-23 19:55 ` [PATCH 5.7 310/477] pwm: imx27: Fix rounding behavior Greg Kroah-Hartman
2020-06-23 19:55 ` [PATCH 5.7 311/477] gfs2: Allow lock_nolock mount to specify jid=X Greg Kroah-Hartman
2020-06-23 19:55 ` [PATCH 5.7 312/477] scsi: iscsi: Fix reference count leak in iscsi_boot_create_kobj Greg Kroah-Hartman
2020-06-23 19:55 ` [PATCH 5.7 313/477] scsi: ufs: Dont update urgent bkops level when toggling auto bkops Greg Kroah-Hartman
2020-06-23 19:55 ` [PATCH 5.7 314/477] modpost: fix -i (--ignore-errors) MAKEFLAGS detection Greg Kroah-Hartman
2020-06-23 19:55 ` [PATCH 5.7 315/477] pinctrl: imxl: Fix an error handling path in imx1_pinctrl_core_probe() Greg Kroah-Hartman
2020-06-23 19:55 ` [PATCH 5.7 316/477] pinctrl: sirf: add missing put_device() call in sirfsoc_gpio_probe() Greg Kroah-Hartman
2020-06-23 19:55 ` [PATCH 5.7 317/477] pinctrl: freescale: imx: Fix an error handling path in imx_pinctrl_probe() Greg Kroah-Hartman
2020-06-23 19:55 ` [PATCH 5.7 318/477] pinctrl: freescale: imx: Use devm_of_iomap() to avoid a resource leak in case of error " Greg Kroah-Hartman
2020-06-24  5:05   ` Marion & Christophe JAILLET
2020-06-24  5:54     ` Greg Kroah-Hartman
2020-06-23 19:55 ` [PATCH 5.7 319/477] nfsd: safer handling of corrupted c_type Greg Kroah-Hartman
2020-06-23 19:55 ` [PATCH 5.7 320/477] RDMA/cm: Spurious WARNING triggered in cm_destroy_id() Greg Kroah-Hartman
2020-06-23 19:55 ` [PATCH 5.7 321/477] drm/amd/display: Revalidate bandwidth before commiting DC updates Greg Kroah-Hartman
2020-06-23 19:55 ` [PATCH 5.7 322/477] ext4: handle ext4_mark_inode_dirty errors Greg Kroah-Hartman
2020-06-23 19:55 ` [PATCH 5.7 323/477] ext4: dont block for O_DIRECT if IOCB_NOWAIT is set Greg Kroah-Hartman
2020-06-23 19:55 ` [PATCH 5.7 324/477] crypto: omap-sham - add proper load balancing support for multicore Greg Kroah-Hartman
2020-06-23 19:55 ` [PATCH 5.7 325/477] pwm: Add missing "CONFIG_" prefix Greg Kroah-Hartman
2020-06-23 19:55 ` [PATCH 5.7 326/477] bpf: Fix an error code in check_btf_func() Greg Kroah-Hartman
2020-06-23 19:55 ` [PATCH 5.7 327/477] geneve: change from tx_error to tx_dropped on missing metadata Greg Kroah-Hartman
2020-06-23 19:55 ` [PATCH 5.7 328/477] lib/zlib: remove outdated and incorrect pre-increment optimization Greg Kroah-Hartman
2020-06-23 19:55 ` [PATCH 5.7 329/477] include/linux/bitops.h: avoid clang shift-count-overflow warnings Greg Kroah-Hartman
2020-06-23 19:55 ` [PATCH 5.7 330/477] selftests/vm/pkeys: fix alloc_random_pkey() to make it really random Greg Kroah-Hartman
2020-06-23 19:55 ` [PATCH 5.7 331/477] blktrace: use errno instead of bi_status Greg Kroah-Hartman
2020-06-23 19:55 ` [PATCH 5.7 332/477] blktrace: fix endianness in get_pdu_int() Greg Kroah-Hartman
2020-06-23 19:55 ` [PATCH 5.7 333/477] blktrace: fix endianness for blk_log_remap() Greg Kroah-Hartman
2020-06-23 19:55 ` [PATCH 5.7 334/477] KVM: selftests: Fix build with "make ARCH=x86_64" Greg Kroah-Hartman
2020-06-23 19:55 ` [PATCH 5.7 335/477] gfs2: fix use-after-free on transaction ail lists Greg Kroah-Hartman
2020-06-23 19:55 ` [PATCH 5.7 336/477] net: dp83867: Fix OF_MDIO config check Greg Kroah-Hartman
2020-06-23 19:55 ` [PATCH 5.7 337/477] net: marvell: " Greg Kroah-Hartman
2020-06-23 19:55 ` [PATCH 5.7 338/477] net: mscc: " Greg Kroah-Hartman
2020-06-23 19:55 ` [PATCH 5.7 339/477] ntb_perf: pass correct struct device to dma_alloc_coherent Greg Kroah-Hartman
2020-06-23 19:55 ` [PATCH 5.7 340/477] ntb_tool: " Greg Kroah-Hartman
2020-06-23 19:55 ` [PATCH 5.7 341/477] NTB: ntb_tool: reading the link file should not end in a NULL byte Greg Kroah-Hartman
2020-06-23 19:55 ` [PATCH 5.7 342/477] NTB: Revert the change to use the NTB device dev for DMA allocations Greg Kroah-Hartman
2020-06-23 19:55 ` [PATCH 5.7 343/477] NTB: perf: Dont require one more memory window than number of peers Greg Kroah-Hartman
2020-06-23 19:55 ` [PATCH 5.7 344/477] NTB: perf: Fix support for hardware that doesnt have port numbers Greg Kroah-Hartman
2020-06-23 19:55 ` [PATCH 5.7 345/477] NTB: perf: Fix race condition when run with ntb_test Greg Kroah-Hartman
2020-06-23 19:55 ` [PATCH 5.7 346/477] NTB: ntb_test: Fix bug when counting remote files Greg Kroah-Hartman
2020-06-23 19:55 ` [PATCH 5.7 347/477] i2c: icy: Fix build with CONFIG_AMIGA_PCMCIA=n Greg Kroah-Hartman
2020-06-23 19:55 ` [PATCH 5.7 348/477] mailbox: imx: Add context save/restore for suspend/resume Greg Kroah-Hartman
2020-06-23 19:55 ` [PATCH 5.7 349/477] arm64: ftrace: Change CONFIG_FTRACE_WITH_REGS to CONFIG_DYNAMIC_FTRACE_WITH_REGS Greg Kroah-Hartman
2020-06-23 19:55 ` [PATCH 5.7 350/477] drivers/perf: hisi: Fix wrong value for all counters enable Greg Kroah-Hartman
2020-06-23 19:55 ` [PATCH 5.7 351/477] selftests/net: in timestamping, strncpy needs to preserve null byte Greg Kroah-Hartman
2020-06-23 19:55 ` [PATCH 5.7 352/477] f2fs: dont return vmalloc() memory from f2fs_kmalloc() Greg Kroah-Hartman
2020-06-23 19:55 ` [PATCH 5.7 353/477] afs: Fix memory leak in afs_put_sysnames() Greg Kroah-Hartman
2020-06-23 19:55 ` [PATCH 5.7 354/477] ASoC: soc-pcm: dpcm: fix playback/capture checks Greg Kroah-Hartman
2020-06-23 19:55 ` [PATCH 5.7 355/477] ASoC: core: only convert non DPCM link to DPCM link Greg Kroah-Hartman
2020-06-23 19:55 ` [PATCH 5.7 356/477] ASoC: SOF: nocodec: conditionally set dpcm_capture/dpcm_playback flags Greg Kroah-Hartman
2020-06-23 19:55 ` [PATCH 5.7 357/477] ASoC: Intel: bytcr_rt5640: Add quirk for Toshiba Encore WT10-A tablet Greg Kroah-Hartman
2020-06-23 19:55 ` [PATCH 5.7 358/477] ASoC: rt5645: Add platform-data for Asus T101HA Greg Kroah-Hartman
2020-06-23 19:55 ` [PATCH 5.7 359/477] bpf/sockmap: Fix kernel panic at __tcp_bpf_recvmsg Greg Kroah-Hartman
2020-06-23 19:55 ` [PATCH 5.7 360/477] bpf, sockhash: Synchronize delete from bucket list on map free Greg Kroah-Hartman
2020-06-23 19:55 ` [PATCH 5.7 361/477] tracing/probe: Fix bpf_task_fd_query() for kprobes and uprobes Greg Kroah-Hartman
2020-06-23 19:55 ` [PATCH 5.7 362/477] drm/sun4i: hdmi ddc clk: Fix size of m divider Greg Kroah-Hartman
2020-06-23 19:56 ` [PATCH 5.7 363/477] libbpf: Handle GCC noreturn-turned-volatile quirk Greg Kroah-Hartman
2020-06-23 19:56 ` [PATCH 5.7 364/477] scsi: acornscsi: Fix an error handling path in acornscsi_probe() Greg Kroah-Hartman
2020-06-23 19:56 ` [PATCH 5.7 365/477] drm/ast: fix missing break in switch statement for format->cpp[0] case 4 Greg Kroah-Hartman
2020-06-23 19:56 ` [PATCH 5.7 366/477] x86/idt: Keep spurious entries unset in system_vectors Greg Kroah-Hartman
2020-06-23 19:56 ` [PATCH 5.7 367/477] x86/mce/dev-mcelog: Fix -Wstringop-truncation warning about strncpy() Greg Kroah-Hartman
2020-06-23 19:56 ` [PATCH 5.7 368/477] net/filter: Permit reading NET in load_bytes_relative when MAC not set Greg Kroah-Hartman
2020-06-23 19:56 ` [PATCH 5.7 369/477] tools, bpftool: Fix memory leak in codegen error cases Greg Kroah-Hartman
2020-06-23 19:56 ` [PATCH 5.7 370/477] nvme-fc: dont call nvme_cleanup_cmd() for AENs Greg Kroah-Hartman
2020-06-23 19:56 ` [PATCH 5.7 371/477] nvme-pci: use simple suspend when a HMB is enabled Greg Kroah-Hartman
2020-06-23 19:56 ` [PATCH 5.7 372/477] nfs: set invalid blocks after NFSv4 writes Greg Kroah-Hartman
2020-06-23 19:56 ` [PATCH 5.7 373/477] NFS: Fix direct WRITE throughput regression Greg Kroah-Hartman
2020-06-23 19:56 ` [PATCH 5.7 374/477] xdp: Fix xsk_generic_xmit errno Greg Kroah-Hartman
2020-06-23 19:56 ` [PATCH 5.7 375/477] iavf: fix speed reporting over virtchnl Greg Kroah-Hartman
2020-06-23 19:56 ` [PATCH 5.7 376/477] net: ipa: program upper nibbles of sequencer type Greg Kroah-Hartman
2020-06-23 19:56 ` [PATCH 5.7 377/477] bpf: sockmap: Dont attach programs to UDP sockets Greg Kroah-Hartman
2020-06-23 19:56 ` [PATCH 5.7 378/477] bpf: Fix memlock accounting for sock_hash Greg Kroah-Hartman
2020-06-23 19:56 ` [PATCH 5.7 379/477] libbpf: Support pre-initializing .bss global variables Greg Kroah-Hartman
2020-06-23 19:56 ` [PATCH 5.7 380/477] bpf: Undo internal BPF_PROBE_MEM in BPF insns dump Greg Kroah-Hartman
2020-06-23 19:56 ` [PATCH 5.7 381/477] usb/xhci-plat: Set PM runtime as active on resume Greg Kroah-Hartman
2020-06-23 19:56 ` [PATCH 5.7 382/477] usb/ehci-platform: " Greg Kroah-Hartman
2020-06-23 19:56 ` [PATCH 5.7 383/477] perf report: Fix NULL pointer dereference in hists__fprintf_nr_sample_events() Greg Kroah-Hartman
2020-06-23 19:56 ` [PATCH 5.7 384/477] perf stat: Fix NULL pointer dereference Greg Kroah-Hartman
2020-06-23 19:56 ` [PATCH 5.7 385/477] perf probe: Fix user attribute access in kprobes Greg Kroah-Hartman
2020-06-23 19:56 ` [PATCH 5.7 386/477] perf parse-events: Fix an incompatible pointer Greg Kroah-Hartman
2020-06-23 19:56 ` [PATCH 5.7 387/477] ext4: stop overwrite the errcode in ext4_setup_super Greg Kroah-Hartman
2020-06-23 19:56 ` [PATCH 5.7 388/477] bcache: fix potential deadlock problem in btree_gc_coalesce Greg Kroah-Hartman
2020-06-23 19:56 ` [PATCH 5.7 389/477] crypto: hisilicon - Cap block size at 2^31 Greg Kroah-Hartman
2020-06-23 19:56 ` [PATCH 5.7 390/477] crypto: marvell/octeontx - Fix a potential NULL dereference Greg Kroah-Hartman
2020-06-23 19:56 ` [PATCH 5.7 391/477] powerpc: Fix kernel crash in show_instructions() w/DEBUG_VIRTUAL Greg Kroah-Hartman
2020-06-23 19:56 ` [PATCH 5.7 392/477] afs: Fix non-setting of mtime when writing into mmap Greg Kroah-Hartman
2020-06-23 19:56 ` [PATCH 5.7 393/477] afs: afs_write_end() should change i_size under the right lock Greg Kroah-Hartman
2020-06-23 19:56 ` [PATCH 5.7 394/477] afs: Fix EOF corruption Greg Kroah-Hartman
2020-06-23 19:56 ` [PATCH 5.7 395/477] afs: Always include dir in bulk status fetch from afs_do_lookup() Greg Kroah-Hartman
2020-06-23 19:56 ` [PATCH 5.7 396/477] afs: Set error flag rather than return error from file status decode Greg Kroah-Hartman
2020-06-23 19:56 ` [PATCH 5.7 397/477] afs: Remove the error argument from afs_protocol_error() Greg Kroah-Hartman
2020-06-23 19:56 ` [PATCH 5.7 398/477] afs: Fix the mapping of the UAEOVERFLOW abort code Greg Kroah-Hartman
2020-06-23 19:56 ` [PATCH 5.7 399/477] bnxt_en: Simplify bnxt_resume() Greg Kroah-Hartman
2020-06-23 19:56 ` [PATCH 5.7 400/477] bnxt_en: Re-enable SRIOV during resume Greg Kroah-Hartman
2020-06-23 19:56 ` [PATCH 5.7 401/477] bnxt_en: Fix AER reset logic on 57500 chips Greg Kroah-Hartman
2020-06-23 19:56 ` [PATCH 5.7 402/477] bnxt_en: Return from timer if interface is not in open state Greg Kroah-Hartman
2020-06-23 19:56 ` [PATCH 5.7 403/477] net: dsa: sja1105: fix PTP timestamping with large tc-taprio cycles Greg Kroah-Hartman
2020-06-23 19:56 ` [PATCH 5.7 404/477] scsi: ufs-bsg: Fix runtime PM imbalance on error Greg Kroah-Hartman
2020-06-23 19:56 ` [PATCH 5.7 405/477] s390/numa: let NODES_SHIFT depend on NEED_MULTIPLE_NODES Greg Kroah-Hartman
2020-06-23 19:56 ` [PATCH 5.7 406/477] block: Fix use-after-free in blkdev_get() Greg Kroah-Hartman
2020-06-23 19:56 ` [PATCH 5.7 407/477] mvpp2: remove module bugfix Greg Kroah-Hartman
2020-06-23 19:56 ` [PATCH 5.7 408/477] bareudp: Fixed configuration to avoid having garbage values Greg Kroah-Hartman
2020-06-23 19:56 ` [PATCH 5.7 409/477] mlxsw: spectrum: Adjust headroom buffers for 8x ports Greg Kroah-Hartman
2020-06-23 19:56 ` [PATCH 5.7 410/477] arm64: mm: reserve hugetlb CMA after numa_init Greg Kroah-Hartman
2020-06-23 19:56 ` [PATCH 5.7 411/477] arm64: hw_breakpoint: Dont invoke overflow handler on uaccess watchpoints Greg Kroah-Hartman
2020-06-23 19:56 ` [PATCH 5.7 412/477] libata: Use per port sync for detach Greg Kroah-Hartman
2020-06-23 19:56 ` [PATCH 5.7 413/477] drm: encoder_slave: fix refcouting error for modules Greg Kroah-Hartman
2020-06-23 19:56 ` [PATCH 5.7 414/477] pinctrl: qcom: ipq6018 Add missing pins in qpic pin group Greg Kroah-Hartman
2020-06-23 19:56 ` [PATCH 5.7 415/477] ext4: fix partial cluster initialization when splitting extent Greg Kroah-Hartman
2020-06-23 19:56 ` [PATCH 5.7 416/477] ext4: avoid utf8_strncasecmp() with unstable name Greg Kroah-Hartman
2020-06-23 19:56 ` [PATCH 5.7 417/477] ext4, jbd2: ensure panic by fix a race between jbd2 abort and ext4 error handlers Greg Kroah-Hartman
2020-06-23 19:56 ` [PATCH 5.7 418/477] arm64: dts: realtek: rtd129x: Use reserved-memory for RPC regions Greg Kroah-Hartman
2020-06-23 19:56 ` [PATCH 5.7 419/477] arm64: dts: realtek: rtd129x: Carve out boot ROM from memory Greg Kroah-Hartman
2020-06-23 19:56 ` [PATCH 5.7 420/477] sh: Convert iounmap() macros to inline functions Greg Kroah-Hartman
2020-06-23 19:56 ` [PATCH 5.7 421/477] drm/nouveau/kms: Fix regression by audio component transition Greg Kroah-Hartman
2020-06-23 19:56 ` [PATCH 5.7 422/477] drm/dp_mst: Reformat drm_dp_check_act_status() a bit Greg Kroah-Hartman
2020-06-23 19:57 ` [PATCH 5.7 423/477] drm/qxl: Use correct notify port address when creating cursor ring Greg Kroah-Hartman
2020-06-23 19:57 ` [PATCH 5.7 424/477] drm/amdgpu/display: use blanked rather than plane state for sync groups Greg Kroah-Hartman
2020-06-23 19:57 ` [PATCH 5.7 425/477] drm/amdgpu: Replace invalid device ID with a valid device ID Greg Kroah-Hartman
2020-06-23 19:57 ` [PATCH 5.7 426/477] selinux: fix double free Greg Kroah-Hartman
2020-06-23 19:57 ` [PATCH 5.7 427/477] selinux: fix a double free in cond_read_node()/cond_read_list() Greg Kroah-Hartman
2020-06-23 19:57 ` [PATCH 5.7 428/477] selinux: fix undefined return of cond_evaluate_expr Greg Kroah-Hartman
2020-06-23 19:57 ` [PATCH 5.7 429/477] drm/ast: Dont check new mode if CRTC is being disabled Greg Kroah-Hartman
2020-06-23 19:57 ` [PATCH 5.7 430/477] io_uring: fix io_kiocb.flags modification race in IOPOLL mode Greg Kroah-Hartman
2020-06-23 19:57 ` [PATCH 5.7 431/477] io_uring: dont fail links for EAGAIN error " Greg Kroah-Hartman
2020-06-23 19:57 ` [PATCH 5.7 432/477] io_uring: add memory barrier to synchronize io_kiocbs result and iopoll_completed Greg Kroah-Hartman
2020-06-23 19:57 ` [PATCH 5.7 433/477] io_uring: acquire mm for task_work for SQPOLL Greg Kroah-Hartman
2020-06-23 19:57 ` [PATCH 5.7 434/477] io_uring: reap poll completions while waiting for refs to drop on exit Greg Kroah-Hartman
2020-06-23 19:57 ` [PATCH 5.7 435/477] io_uring: fix possible race condition against REQ_F_NEED_CLEANUP Greg Kroah-Hartman
2020-06-23 19:57 ` [PATCH 5.7 436/477] ext4: avoid race conditions when remounting with options that change dax Greg Kroah-Hartman
2020-06-23 19:57 ` [PATCH 5.7 437/477] drm/dp_mst: Increase ACT retry timeout to 3s Greg Kroah-Hartman
2020-06-23 19:57 ` [PATCH 5.7 438/477] net/mlx5: DR, Fix freeing in dr_create_rc_qp() Greg Kroah-Hartman
2020-06-23 19:57 ` [PATCH 5.7 439/477] f2fs: split f2fs_d_compare() from f2fs_match_name() Greg Kroah-Hartman
2020-06-23 19:57 ` [PATCH 5.7 440/477] f2fs: avoid utf8_strncasecmp() with unstable name Greg Kroah-Hartman
2020-06-23 19:57 ` [PATCH 5.7 441/477] s390: fix syscall_get_error for compat processes Greg Kroah-Hartman
2020-06-23 19:57 ` [PATCH 5.7 442/477] drm/i915: Fix AUX power domain toggling across TypeC mode resets Greg Kroah-Hartman
2020-06-23 19:57 ` [PATCH 5.7 443/477] drm/msm: Check for powered down HW in the devfreq callbacks Greg Kroah-Hartman
2020-06-23 19:57 ` [PATCH 5.7 444/477] drm/i915/gem: Avoid iterating an empty list Greg Kroah-Hartman
2020-06-23 19:57 ` [PATCH 5.7 445/477] drm/i915: Whitelist context-local timestamp in the gen9 cmdparser Greg Kroah-Hartman
2020-06-23 19:57 ` [PATCH 5.7 446/477] drm/connector: notify userspace on hotplug after register complete Greg Kroah-Hartman
2020-06-23 19:57 ` [PATCH 5.7 447/477] drm/amdkfd: Use correct major in devcgroup check Greg Kroah-Hartman
2020-06-23 19:57 ` [PATCH 5.7 448/477] drm/amd/display: Use kvfree() to free coeff in build_regamma() Greg Kroah-Hartman
2020-06-23 19:57 ` [PATCH 5.7 449/477] drm/i915/icl+: Fix hotplug interrupt disabling after storm detection Greg Kroah-Hartman
2020-06-23 19:57 ` [PATCH 5.7 450/477] drm/i915/tc: fix the reset of ln0 Greg Kroah-Hartman
2020-06-23 19:57 ` [PATCH 5.7 451/477] drm/i915/gt: Incrementally check for rewinding Greg Kroah-Hartman
2020-06-23 19:57 ` [PATCH 5.7 452/477] drm/i915/gt: Move hsw GT workarounds from init_clock_gating to workarounds Greg Kroah-Hartman
2020-06-23 19:57 ` [PATCH 5.7 453/477] drm/i915/gt: Move ivb " Greg Kroah-Hartman
2020-06-23 19:57 ` [PATCH 5.7 454/477] drm/i915/gt: Move snb " Greg Kroah-Hartman
2020-06-23 19:57 ` [PATCH 5.7 455/477] drm/i915/gt: Move ilk " Greg Kroah-Hartman
2020-06-23 19:57 ` [PATCH 5.7 456/477] drm/i915/gt: Move vlv " Greg Kroah-Hartman
2020-06-23 19:57 ` [PATCH 5.7 457/477] drm/i915/gt: Move gen4 " Greg Kroah-Hartman
2020-06-23 19:57 ` [PATCH 5.7 458/477] Revert "drm/amd/display: disable dcn20 abm feature for bring up" Greg Kroah-Hartman
2020-06-23 19:57 ` [PATCH 5.7 459/477] drm/i915/tgl: Make Wa_14010229206 permanent Greg Kroah-Hartman
2020-06-23 19:57 ` [PATCH 5.7 460/477] crypto: algif_skcipher - Cap recv SG list at ctx->used Greg Kroah-Hartman
2020-06-23 19:57 ` [PATCH 5.7 461/477] crypto: algboss - dont wait during notifier callback Greg Kroah-Hartman
2020-06-23 19:57 ` [PATCH 5.7 462/477] tracing: Make ftrace packed events have align of 1 Greg Kroah-Hartman
2020-06-23 19:57 ` [PATCH 5.7 463/477] tracing/probe: Fix memleak in fetch_op_data operations Greg Kroah-Hartman
2020-06-23 19:57 ` [PATCH 5.7 464/477] proc/bootconfig: Fix to use correct quotes for value Greg Kroah-Hartman
2020-06-23 19:57 ` [PATCH 5.7 465/477] tools/bootconfig: " Greg Kroah-Hartman
2020-06-23 19:57 ` [PATCH 5.7 466/477] tools/bootconfig: Fix to return 0 if succeeded to show the bootconfig Greg Kroah-Hartman
2020-06-23 19:57 ` [PATCH 5.7 467/477] sample-trace-array: Remove trace_array sample-instance Greg Kroah-Hartman
2020-06-23 19:57 ` [PATCH 5.7 468/477] sample-trace-array: Fix sleeping function called from invalid context Greg Kroah-Hartman
2020-06-23 19:57 ` [PATCH 5.7 469/477] netfilter: nft_set_rbtree: Dont account for expired elements on insertion Greg Kroah-Hartman
2020-06-23 19:57 ` [PATCH 5.7 470/477] netfilter: nft_set_pipapo: Disable preemption before getting per-CPU pointer Greg Kroah-Hartman
2020-06-23 19:57 ` [PATCH 5.7 471/477] kprobes: Fix to protect kick_kprobe_optimizer() by kprobe_mutex Greg Kroah-Hartman
2020-06-23 19:57 ` [PATCH 5.7 472/477] kretprobe: Prevent triggering kretprobe from within kprobe_flush_task Greg Kroah-Hartman
2020-06-23 19:57 ` [PATCH 5.7 473/477] powerpc/64s: Fix KVM interrupt using wrong save area Greg Kroah-Hartman
2020-06-23 19:57 ` [PATCH 5.7 474/477] e1000e: Do not wake up the system via WOL if device wakeup is disabled Greg Kroah-Hartman
2020-06-23 19:57 ` [PATCH 5.7 475/477] net: octeon: mgmt: Repair filling of RX ring Greg Kroah-Hartman
2020-06-23 19:57 ` [PATCH 5.7 476/477] net: core: device_rename: Use rwsem instead of a seqcount Greg Kroah-Hartman
2020-06-23 19:57 ` [PATCH 5.7 477/477] iommu/vt-d: Remove real DMA lookup in find_domain Greg Kroah-Hartman
2020-06-24  5:07 ` [PATCH 5.7 000/477] 5.7.6-rc1 review Guenter Roeck
2020-06-24  5:55   ` Greg Kroah-Hartman
2020-06-24 21:57 ` Shuah Khan
2020-06-25 13:30   ` Greg Kroah-Hartman

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=20200623195409.353845489@linuxfoundation.org \
    --to=gregkh@linuxfoundation.org \
    --cc=bjorn.andersson@linaro.org \
    --cc=evgreen@chromium.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=sashal@kernel.org \
    --cc=sibis@codeaurora.org \
    --cc=stable@vger.kernel.org \
    /path/to/YOUR_REPLY

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

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