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, Peter Robinson <pbrobinson@gmail.com>,
	Javier Martinez Canillas <javierm@redhat.com>,
	Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>,
	Bjorn Helgaas <bhelgaas@google.com>,
	Shawn Lin <shawn.lin@rock-chips.com>,
	Sasha Levin <sashal@kernel.org>
Subject: [PATCH 5.10 142/243] PCI: rockchip: Register IRQ handlers after device and data are ready
Date: Mon, 19 Jul 2021 16:52:51 +0200	[thread overview]
Message-ID: <20210719144945.500147280@linuxfoundation.org> (raw)
In-Reply-To: <20210719144940.904087935@linuxfoundation.org>

From: Javier Martinez Canillas <javierm@redhat.com>

[ Upstream commit 3cf5f7ab230e2b886e493c7a8449ed50e29d2b98 ]

An IRQ handler may be called at any time after it is registered, so
anything it relies on must be ready before registration.

rockchip_pcie_subsys_irq_handler() and rockchip_pcie_client_irq_handler()
read registers in the PCIe controller, but we registered them before
turning on clocks to the controller.  If either is called before the clocks
are turned on, the register reads fail and the machine hangs.

Similarly, rockchip_pcie_legacy_int_handler() uses rockchip->irq_domain,
but we installed it before initializing irq_domain.

Register IRQ handlers after their data structures are initialized and
clocks are enabled.

Found by enabling CONFIG_DEBUG_SHIRQ, which calls the IRQ handler when it
is being unregistered.  An error during the probe path might cause this
unregistration and IRQ handler execution before the device or data
structure init has finished.

[bhelgaas: commit log]
Link: https://lore.kernel.org/r/20210608080409.1729276-1-javierm@redhat.com
Reported-by: Peter Robinson <pbrobinson@gmail.com>
Tested-by: Peter Robinson <pbrobinson@gmail.com>
Signed-off-by: Javier Martinez Canillas <javierm@redhat.com>
Signed-off-by: Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
Signed-off-by: Bjorn Helgaas <bhelgaas@google.com>
Acked-by: Shawn Lin <shawn.lin@rock-chips.com>
Signed-off-by: Sasha Levin <sashal@kernel.org>
---
 drivers/pci/controller/pcie-rockchip-host.c | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)

diff --git a/drivers/pci/controller/pcie-rockchip-host.c b/drivers/pci/controller/pcie-rockchip-host.c
index 9705059523a6..0d6df73bb918 100644
--- a/drivers/pci/controller/pcie-rockchip-host.c
+++ b/drivers/pci/controller/pcie-rockchip-host.c
@@ -593,10 +593,6 @@ static int rockchip_pcie_parse_host_dt(struct rockchip_pcie *rockchip)
 	if (err)
 		return err;
 
-	err = rockchip_pcie_setup_irq(rockchip);
-	if (err)
-		return err;
-
 	rockchip->vpcie12v = devm_regulator_get_optional(dev, "vpcie12v");
 	if (IS_ERR(rockchip->vpcie12v)) {
 		if (PTR_ERR(rockchip->vpcie12v) != -ENODEV)
@@ -974,8 +970,6 @@ static int rockchip_pcie_probe(struct platform_device *pdev)
 	if (err)
 		goto err_vpcie;
 
-	rockchip_pcie_enable_interrupts(rockchip);
-
 	err = rockchip_pcie_init_irq_domain(rockchip);
 	if (err < 0)
 		goto err_deinit_port;
@@ -993,6 +987,12 @@ static int rockchip_pcie_probe(struct platform_device *pdev)
 	bridge->sysdata = rockchip;
 	bridge->ops = &rockchip_pcie_ops;
 
+	err = rockchip_pcie_setup_irq(rockchip);
+	if (err)
+		goto err_remove_irq_domain;
+
+	rockchip_pcie_enable_interrupts(rockchip);
+
 	err = pci_host_probe(bridge);
 	if (err < 0)
 		goto err_remove_irq_domain;
-- 
2.30.2




  parent reply	other threads:[~2021-07-19 16:07 UTC|newest]

Thread overview: 254+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-07-19 14:50 [PATCH 5.10 000/243] 5.10.52-rc1 review Greg Kroah-Hartman
2021-07-19 14:50 ` [PATCH 5.10 001/243] certs: add x509_revocation_list to gitignore Greg Kroah-Hartman
2021-07-19 14:50 ` [PATCH 5.10 002/243] cifs: handle reconnect of tcon when there is no cached dfs referral Greg Kroah-Hartman
2021-07-19 14:50 ` [PATCH 5.10 003/243] KVM: mmio: Fix use-after-free Read in kvm_vm_ioctl_unregister_coalesced_mmio Greg Kroah-Hartman
2021-07-19 14:50 ` [PATCH 5.10 004/243] KVM: x86: Use guest MAXPHYADDR from CPUID.0x8000_0008 iff TDP is enabled Greg Kroah-Hartman
2021-07-19 14:50 ` [PATCH 5.10 005/243] KVM: x86/mmu: Do not apply HPA (memory encryption) mask to GPAs Greg Kroah-Hartman
2021-07-19 14:50 ` [PATCH 5.10 006/243] KVM: nSVM: Check the value written to MSR_VM_HSAVE_PA Greg Kroah-Hartman
2021-07-19 14:50 ` [PATCH 5.10 007/243] KVM: X86: Disable hardware breakpoints unconditionally before kvm_x86->run() Greg Kroah-Hartman
2021-07-19 14:50 ` [PATCH 5.10 008/243] scsi: core: Fix bad pointer dereference when ehandler kthread is invalid Greg Kroah-Hartman
2021-07-19 14:50 ` [PATCH 5.10 009/243] scsi: zfcp: Report port fc_security as unknown early during remote cable pull Greg Kroah-Hartman
2021-07-19 14:50 ` [PATCH 5.10 010/243] tracing: Do not reference char * as a string in histograms Greg Kroah-Hartman
2021-07-19 14:50 ` [PATCH 5.10 011/243] drm/i915/gtt: drop the page table optimisation Greg Kroah-Hartman
2021-07-19 14:50 ` [PATCH 5.10 012/243] drm/i915/gt: Fix -EDEADLK handling regression Greg Kroah-Hartman
2021-07-19 14:50 ` [PATCH 5.10 013/243] cgroup: verify that source is a string Greg Kroah-Hartman
2021-07-19 14:50 ` [PATCH 5.10 014/243] fbmem: Do not delete the mode that is still in use Greg Kroah-Hartman
2021-07-19 14:50 ` [PATCH 5.10 015/243] drm/dp_mst: Do not set proposed vcpi directly Greg Kroah-Hartman
2021-07-19 14:50 ` [PATCH 5.10 016/243] drm/dp_mst: Avoid to mess up payload table by ports in stale topology Greg Kroah-Hartman
2021-07-19 14:50 ` [PATCH 5.10 017/243] drm/dp_mst: Add missing drm parameters to recently added call to drm_dbg_kms() Greg Kroah-Hartman
2021-07-19 14:50 ` [PATCH 5.10 018/243] drm/ingenic: Fix non-OSD mode Greg Kroah-Hartman
2021-07-19 14:50 ` [PATCH 5.10 019/243] drm/ingenic: Switch IPU plane to type OVERLAY Greg Kroah-Hartman
2021-07-19 14:50 ` [PATCH 5.10 020/243] Revert "drm/ast: Remove reference to struct drm_device.pdev" Greg Kroah-Hartman
2021-07-19 14:50 ` [PATCH 5.10 021/243] net: bridge: multicast: fix PIM hello router port marking race Greg Kroah-Hartman
2021-07-19 14:50 ` [PATCH 5.10 022/243] net: bridge: multicast: fix MRD advertisement " Greg Kroah-Hartman
2021-07-19 14:50 ` [PATCH 5.10 023/243] leds: tlc591xx: fix return value check in tlc591xx_probe() Greg Kroah-Hartman
2021-07-19 14:50 ` [PATCH 5.10 024/243] ASoC: Intel: sof_sdw: add mutual exclusion between PCH DMIC and RT715 Greg Kroah-Hartman
2021-07-19 14:50 ` [PATCH 5.10 025/243] dmaengine: fsl-qdma: check dma_set_mask return value Greg Kroah-Hartman
2021-07-19 14:50 ` [PATCH 5.10 026/243] scsi: arcmsr: Fix the wrong CDB payload report to IOP Greg Kroah-Hartman
2021-07-19 14:50 ` [PATCH 5.10 027/243] srcu: Fix broken node geometry after early ssp init Greg Kroah-Hartman
2021-07-19 14:50 ` [PATCH 5.10 028/243] rcu: Reject RCU_LOCKDEP_WARN() false positives Greg Kroah-Hartman
2021-07-19 14:50 ` [PATCH 5.10 029/243] tty: serial: fsl_lpuart: fix the potential risk of division or modulo by zero Greg Kroah-Hartman
2021-07-19 14:50 ` [PATCH 5.10 030/243] serial: fsl_lpuart: disable DMA for console and fix sysrq Greg Kroah-Hartman
2021-07-19 14:51 ` [PATCH 5.10 031/243] misc/libmasm/module: Fix two use after free in ibmasm_init_one Greg Kroah-Hartman
2021-07-19 14:51 ` [PATCH 5.10 032/243] misc: alcor_pci: fix null-ptr-deref when there is no PCI bridge Greg Kroah-Hartman
2021-07-19 14:51 ` [PATCH 5.10 033/243] ASoC: intel/boards: add missing MODULE_DEVICE_TABLE Greg Kroah-Hartman
2021-07-19 14:51 ` [PATCH 5.10 034/243] partitions: msdos: fix one-byte get_unaligned() Greg Kroah-Hartman
2021-07-19 14:51 ` [PATCH 5.10 035/243] iio: gyro: fxa21002c: Balance runtime pm + use pm_runtime_resume_and_get() Greg Kroah-Hartman
2021-07-19 14:51 ` [PATCH 5.10 036/243] iio: magn: bmc150: " Greg Kroah-Hartman
2021-07-19 14:51 ` [PATCH 5.10 037/243] ALSA: usx2y: Avoid camelCase Greg Kroah-Hartman
2021-07-19 14:51 ` [PATCH 5.10 038/243] ALSA: usx2y: Dont call free_pages_exact() with NULL address Greg Kroah-Hartman
2021-07-19 14:51 ` [PATCH 5.10 039/243] Revert "ALSA: bebob/oxfw: fix Kconfig entry for Mackie d.2 Pro" Greg Kroah-Hartman
2021-07-19 14:51 ` [PATCH 5.10 040/243] usb: common: usb-conn-gpio: fix NULL pointer dereference of charger Greg Kroah-Hartman
2021-07-19 14:51 ` [PATCH 5.10 041/243] w1: ds2438: fixing bug that would always get page0 Greg Kroah-Hartman
2021-07-19 14:51 ` [PATCH 5.10 042/243] ASoC: Intel: sof_sdw: add quirk support for Brya and BT-offload Greg Kroah-Hartman
2021-07-19 14:51 ` [PATCH 5.10 043/243] scsi: arcmsr: Fix doorbell status being updated late on ARC-1886 Greg Kroah-Hartman
2021-07-19 14:51 ` [PATCH 5.10 044/243] scsi: hisi_sas: Propagate errors in interrupt_init_v1_hw() Greg Kroah-Hartman
2021-07-19 14:51 ` [PATCH 5.10 045/243] scsi: lpfc: Fix "Unexpected timeout" error in direct attach topology Greg Kroah-Hartman
2021-07-19 14:51 ` [PATCH 5.10 046/243] scsi: lpfc: Fix crash when lpfc_sli4_hba_setup() fails to initialize the SGLs Greg Kroah-Hartman
2021-07-19 14:51 ` [PATCH 5.10 047/243] scsi: core: Cap scsi_host cmd_per_lun at can_queue Greg Kroah-Hartman
2021-07-19 14:51 ` [PATCH 5.10 048/243] ALSA: ac97: fix PM reference leak in ac97_bus_remove() Greg Kroah-Hartman
2021-07-19 14:51 ` [PATCH 5.10 049/243] tty: serial: 8250: serial_cs: Fix a memory leak in error handling path Greg Kroah-Hartman
2021-07-19 14:51 ` [PATCH 5.10 050/243] scsi: mpt3sas: Fix deadlock while cancelling the running firmware event Greg Kroah-Hartman
2021-07-19 14:51 ` [PATCH 5.10 051/243] scsi: core: Fixup calling convention for scsi_mode_sense() Greg Kroah-Hartman
2021-07-19 14:51 ` [PATCH 5.10 052/243] scsi: scsi_dh_alua: Check for negative result value Greg Kroah-Hartman
2021-07-19 14:51 ` [PATCH 5.10 053/243] fs/jfs: Fix missing error code in lmLogInit() Greg Kroah-Hartman
2021-07-19 14:51 ` [PATCH 5.10 054/243] scsi: megaraid_sas: Fix resource leak in case of probe failure Greg Kroah-Hartman
2021-07-19 14:51 ` [PATCH 5.10 055/243] scsi: megaraid_sas: Early detection of VD deletion through RaidMap update Greg Kroah-Hartman
2021-07-19 14:51 ` [PATCH 5.10 056/243] scsi: megaraid_sas: Handle missing interrupts while re-enabling IRQs Greg Kroah-Hartman
2021-07-19 14:51 ` [PATCH 5.10 057/243] scsi: iscsi: Add iscsi_cls_conn refcount helpers Greg Kroah-Hartman
2021-07-19 14:51 ` [PATCH 5.10 058/243] scsi: iscsi: Fix conn use after free during resets Greg Kroah-Hartman
2021-07-19 14:51 ` [PATCH 5.10 059/243] scsi: iscsi: Fix shost->max_id use Greg Kroah-Hartman
2021-07-19 14:51 ` [PATCH 5.10 060/243] scsi: qedi: Fix null ref during abort handling Greg Kroah-Hartman
2021-07-19 14:51 ` [PATCH 5.10 061/243] scsi: qedi: Fix race during abort timeouts Greg Kroah-Hartman
2021-07-19 14:51 ` [PATCH 5.10 062/243] scsi: qedi: Fix TMF session block/unblock use Greg Kroah-Hartman
2021-07-19 14:51 ` [PATCH 5.10 063/243] scsi: qedi: Fix cleanup " Greg Kroah-Hartman
2021-07-19 14:51 ` [PATCH 5.10 064/243] mfd: da9052/stmpe: Add and modify MODULE_DEVICE_TABLE Greg Kroah-Hartman
2021-07-19 14:51 ` [PATCH 5.10 065/243] mfd: cpcap: Fix cpcap dmamask not set warnings Greg Kroah-Hartman
2021-07-19 14:51 ` [PATCH 5.10 066/243] ASoC: img: Fix PM reference leak in img_i2s_in_probe() Greg Kroah-Hartman
2021-07-19 14:51 ` [PATCH 5.10 067/243] fsi: Add missing MODULE_DEVICE_TABLE Greg Kroah-Hartman
2021-07-19 14:51 ` [PATCH 5.10 068/243] serial: tty: uartlite: fix console setup Greg Kroah-Hartman
2021-07-19 14:51 ` [PATCH 5.10 069/243] s390/sclp_vt220: fix console name to match device Greg Kroah-Hartman
2021-07-19 14:51 ` [PATCH 5.10 070/243] s390: disable SSP when needed Greg Kroah-Hartman
2021-07-19 14:51 ` [PATCH 5.10 071/243] selftests: timers: rtcpie: skip test if default RTC device does not exist Greg Kroah-Hartman
2021-07-19 14:51 ` [PATCH 5.10 072/243] ALSA: sb: Fix potential double-free of CSP mixer elements Greg Kroah-Hartman
2021-07-19 14:51 ` [PATCH 5.10 073/243] powerpc/ps3: Add dma_mask to ps3_dma_region Greg Kroah-Hartman
2021-07-19 14:51 ` [PATCH 5.10 074/243] iommu/arm-smmu: Fix arm_smmu_device refcount leak when arm_smmu_rpm_get fails Greg Kroah-Hartman
2021-07-20 22:04   ` Pavel Machek
2021-07-19 14:51 ` [PATCH 5.10 075/243] iommu/arm-smmu: Fix arm_smmu_device refcount leak in address translation Greg Kroah-Hartman
2021-07-19 14:51 ` [PATCH 5.10 076/243] ASoC: soc-pcm: fix the return value in dpcm_apply_symmetry() Greg Kroah-Hartman
2021-07-19 14:51 ` [PATCH 5.10 077/243] gpio: zynq: Check return value of pm_runtime_get_sync Greg Kroah-Hartman
2021-07-19 14:51 ` [PATCH 5.10 078/243] gpio: zynq: Check return value of irq_get_irq_data Greg Kroah-Hartman
2021-07-19 14:51 ` [PATCH 5.10 079/243] scsi: storvsc: Correctly handle multiple flags in srb_status Greg Kroah-Hartman
2021-07-19 14:51 ` [PATCH 5.10 080/243] ALSA: ppc: fix error return code in snd_pmac_probe() Greg Kroah-Hartman
2021-07-19 14:51 ` [PATCH 5.10 081/243] selftests/powerpc: Fix "no_handler" EBB selftest Greg Kroah-Hartman
2021-07-19 14:51 ` [PATCH 5.10 082/243] gpio: pca953x: Add support for the On Semi pca9655 Greg Kroah-Hartman
2021-07-19 14:51 ` [PATCH 5.10 083/243] powerpc/mm/book3s64: Fix possible build error Greg Kroah-Hartman
2021-07-19 14:51 ` [PATCH 5.10 084/243] ASoC: soc-core: Fix the error return code in snd_soc_of_parse_audio_routing() Greg Kroah-Hartman
2021-07-19 14:51 ` [PATCH 5.10 085/243] habanalabs/gaudi: set the correct cpu_id on MME2_QM failure Greg Kroah-Hartman
2021-07-19 14:51 ` [PATCH 5.10 086/243] habanalabs: remove node from list before freeing the node Greg Kroah-Hartman
2021-07-19 14:51 ` [PATCH 5.10 087/243] s390/processor: always inline stap() and __load_psw_mask() Greg Kroah-Hartman
2021-07-19 14:51 ` [PATCH 5.10 088/243] s390/ipl_parm: fix program check new psw handling Greg Kroah-Hartman
2021-07-19 14:51 ` [PATCH 5.10 089/243] s390/mem_detect: fix diag260() " Greg Kroah-Hartman
2021-07-19 14:51 ` [PATCH 5.10 090/243] s390/mem_detect: fix tprot() " Greg Kroah-Hartman
2021-07-19 14:52 ` [PATCH 5.10 091/243] Input: hideep - fix the uninitialized use in hideep_nvm_unlock() Greg Kroah-Hartman
2021-07-19 14:52 ` [PATCH 5.10 092/243] ALSA: bebob: add support for ToneWeal FW66 Greg Kroah-Hartman
2021-07-19 14:52 ` [PATCH 5.10 093/243] ALSA: usb-audio: scarlett2: Fix 18i8 Gen 2 PCM Input count Greg Kroah-Hartman
2021-07-19 14:52 ` [PATCH 5.10 094/243] ALSA: usb-audio: scarlett2: Fix data_mutex lock Greg Kroah-Hartman
2021-07-19 14:52 ` [PATCH 5.10 095/243] ALSA: usb-audio: scarlett2: Fix scarlett2_*_ctl_put() return values Greg Kroah-Hartman
2021-07-19 14:52 ` [PATCH 5.10 096/243] usb: gadget: f_hid: fix endianness issue with descriptors Greg Kroah-Hartman
2021-07-19 14:52 ` [PATCH 5.10 097/243] usb: gadget: hid: fix error return code in hid_bind() Greg Kroah-Hartman
2021-07-19 14:52 ` [PATCH 5.10 098/243] powerpc/boot: Fixup device-tree on little endian Greg Kroah-Hartman
2021-07-19 14:52 ` [PATCH 5.10 099/243] ASoC: Intel: kbl_da7219_max98357a: shrink platform_id below 20 characters Greg Kroah-Hartman
2021-07-19 14:52 ` [PATCH 5.10 100/243] backlight: lm3630a: Fix return code of .update_status() callback Greg Kroah-Hartman
2021-07-19 14:52 ` [PATCH 5.10 101/243] ALSA: hda: Add IRQ check for platform_get_irq() Greg Kroah-Hartman
2021-07-19 14:52 ` [PATCH 5.10 102/243] ALSA: usb-audio: scarlett2: Fix 6i6 Gen 2 line out descriptions Greg Kroah-Hartman
2021-07-19 14:52 ` [PATCH 5.10 103/243] ALSA: firewire-motu: fix detection for S/PDIF source on optical interface in v2 protocol Greg Kroah-Hartman
2021-07-19 14:52 ` [PATCH 5.10 104/243] leds: turris-omnia: add missing MODULE_DEVICE_TABLE Greg Kroah-Hartman
2021-07-19 14:52 ` [PATCH 5.10 105/243] staging: rtl8723bs: fix macro value for 2.4Ghz only device Greg Kroah-Hartman
2021-07-19 14:52 ` [PATCH 5.10 106/243] intel_th: Wait until port is in reset before programming it Greg Kroah-Hartman
2021-07-19 14:52 ` [PATCH 5.10 107/243] i2c: core: Disable client irq on reboot/shutdown Greg Kroah-Hartman
2021-07-19 14:52 ` [PATCH 5.10 108/243] phy: intel: Fix for warnings due to EMMC clock 175Mhz change in FIP Greg Kroah-Hartman
2021-07-19 14:52 ` [PATCH 5.10 109/243] lib/decompress_unlz4.c: correctly handle zero-padding around initrds Greg Kroah-Hartman
2021-07-19 14:52 ` [PATCH 5.10 110/243] kcov: add __no_sanitize_coverage to fix noinstr for all architectures Greg Kroah-Hartman
2021-07-19 14:52 ` [PATCH 5.10 111/243] power: supply: sc27xx: Add missing MODULE_DEVICE_TABLE Greg Kroah-Hartman
2021-07-19 14:52 ` [PATCH 5.10 112/243] power: supply: sc2731_charger: " Greg Kroah-Hartman
2021-07-19 14:52 ` [PATCH 5.10 113/243] pwm: spear: Dont modify HW state in .remove callback Greg Kroah-Hartman
2021-07-19 14:52 ` [PATCH 5.10 114/243] PCI: ftpci100: Rename macro name collision Greg Kroah-Hartman
2021-07-19 14:52 ` [PATCH 5.10 115/243] power: supply: ab8500: Avoid NULL pointers Greg Kroah-Hartman
2021-07-19 14:52 ` [PATCH 5.10 116/243] PCI: hv: Fix a race condition when removing the device Greg Kroah-Hartman
2021-07-19 14:52 ` [PATCH 5.10 117/243] power: supply: max17042: Do not enforce (incorrect) interrupt trigger type Greg Kroah-Hartman
2021-07-19 14:52 ` [PATCH 5.10 118/243] power: reset: gpio-poweroff: add missing MODULE_DEVICE_TABLE Greg Kroah-Hartman
2021-07-19 14:52 ` [PATCH 5.10 119/243] ARM: 9087/1: kprobes: test-thumb: fix for LLVM_IAS=1 Greg Kroah-Hartman
2021-07-19 14:52 ` [PATCH 5.10 120/243] PCI/P2PDMA: Avoid pci_get_slot(), which may sleep Greg Kroah-Hartman
2021-07-19 14:52 ` [PATCH 5.10 121/243] NFSv4: Fix delegation return in cases where we have to retry Greg Kroah-Hartman
2021-07-19 14:52 ` [PATCH 5.10 122/243] PCI: pciehp: Ignore Link Down/Up caused by DPC Greg Kroah-Hartman
2021-07-19 14:52 ` [PATCH 5.10 123/243] watchdog: Fix possible use-after-free in wdt_startup() Greg Kroah-Hartman
2021-07-19 14:52 ` [PATCH 5.10 124/243] watchdog: sc520_wdt: Fix possible use-after-free in wdt_turnoff() Greg Kroah-Hartman
2021-07-19 14:52 ` [PATCH 5.10 125/243] watchdog: Fix possible use-after-free by calling del_timer_sync() Greg Kroah-Hartman
2021-07-19 14:52 ` [PATCH 5.10 126/243] watchdog: imx_sc_wdt: fix pretimeout Greg Kroah-Hartman
2021-07-19 14:52 ` [PATCH 5.10 127/243] watchdog: iTCO_wdt: Account for rebooting on second timeout Greg Kroah-Hartman
2021-07-19 14:52 ` [PATCH 5.10 128/243] x86/fpu: Return proper error codes from user access functions Greg Kroah-Hartman
2021-07-19 14:52 ` [PATCH 5.10 129/243] remoteproc: core: Fix cdev remove and rproc del Greg Kroah-Hartman
2021-07-19 14:52 ` [PATCH 5.10 130/243] PCI: tegra: Add missing MODULE_DEVICE_TABLE Greg Kroah-Hartman
2021-07-19 14:52 ` [PATCH 5.10 131/243] orangefs: fix orangefs df output Greg Kroah-Hartman
2021-07-19 14:52 ` [PATCH 5.10 132/243] ceph: remove bogus checks and WARN_ONs from ceph_set_page_dirty Greg Kroah-Hartman
2021-07-19 14:52 ` [PATCH 5.10 133/243] drm/gma500: Add the missed drm_gem_object_put() in psb_user_framebuffer_create() Greg Kroah-Hartman
2021-07-19 14:52 ` [PATCH 5.10 134/243] NFS: nfs_find_open_context() may only select open files Greg Kroah-Hartman
2021-07-19 14:52 ` [PATCH 5.10 135/243] power: supply: charger-manager: add missing MODULE_DEVICE_TABLE Greg Kroah-Hartman
2021-07-19 14:52 ` [PATCH 5.10 136/243] power: supply: ab8500: " Greg Kroah-Hartman
2021-07-19 14:52 ` [PATCH 5.10 137/243] drm/amdkfd: fix sysfs kobj leak Greg Kroah-Hartman
2021-07-19 14:52 ` [PATCH 5.10 138/243] pwm: img: Fix PM reference leak in img_pwm_enable() Greg Kroah-Hartman
2021-07-19 14:52 ` [PATCH 5.10 139/243] pwm: tegra: Dont modify HW state in .remove callback Greg Kroah-Hartman
2021-07-19 14:52 ` [PATCH 5.10 140/243] ACPI: AMBA: Fix resource name in /proc/iomem Greg Kroah-Hartman
2021-07-19 14:52 ` [PATCH 5.10 141/243] ACPI: video: Add quirk for the Dell Vostro 3350 Greg Kroah-Hartman
2021-07-19 14:52 ` Greg Kroah-Hartman [this message]
2021-07-19 14:52 ` [PATCH 5.10 143/243] virtio-blk: Fix memory leak among suspend/resume procedure Greg Kroah-Hartman
2021-07-19 14:52 ` [PATCH 5.10 144/243] virtio_net: Fix error handling in virtnet_restore() Greg Kroah-Hartman
2021-07-19 14:52 ` [PATCH 5.10 145/243] virtio_console: Assure used length from device is limited Greg Kroah-Hartman
2021-07-19 14:52 ` [PATCH 5.10 146/243] f2fs: atgc: fix to set default age threshold Greg Kroah-Hartman
2021-07-19 14:52 ` [PATCH 5.10 147/243] NFSD: Fix TP_printk() format specifier in nfsd_clid_class Greg Kroah-Hartman
2021-07-20 21:48   ` Pavel Machek
2021-07-21 14:04     ` Steven Rostedt
2021-07-21 15:19       ` Sasha Levin
2021-07-19 14:52 ` [PATCH 5.10 148/243] x86/signal: Detect and prevent an alternate signal stack overflow Greg Kroah-Hartman
2021-07-19 14:52 ` [PATCH 5.10 149/243] f2fs: add MODULE_SOFTDEP to ensure crc32 is included in the initramfs Greg Kroah-Hartman
2021-07-19 14:52 ` [PATCH 5.10 150/243] f2fs: compress: fix to disallow temp extension Greg Kroah-Hartman
2021-07-19 14:53 ` [PATCH 5.10 151/243] remoteproc: k3-r5: Fix an error message Greg Kroah-Hartman
2021-07-19 14:53 ` [PATCH 5.10 152/243] PCI/sysfs: Fix dsm_label_utf16s_to_utf8s() buffer overrun Greg Kroah-Hartman
2021-07-19 14:53 ` [PATCH 5.10 153/243] power: supply: rt5033_battery: Fix device tree enumeration Greg Kroah-Hartman
2021-07-19 14:53 ` [PATCH 5.10 154/243] NFSv4: Initialise connection to the server in nfs4_alloc_client() Greg Kroah-Hartman
2021-07-19 14:53 ` [PATCH 5.10 155/243] NFSv4: Fix an Oops in pnfs_mark_request_commit() when doing O_DIRECT Greg Kroah-Hartman
2021-07-19 14:53 ` [PATCH 5.10 156/243] misc: alcor_pci: fix inverted branch condition Greg Kroah-Hartman
2021-07-19 14:53 ` [PATCH 5.10 157/243] um: fix error return code in slip_open() Greg Kroah-Hartman
2021-07-19 14:53 ` [PATCH 5.10 158/243] um: fix error return code in winch_tramp() Greg Kroah-Hartman
2021-07-19 14:53 ` [PATCH 5.10 159/243] ubifs: Fix off-by-one error Greg Kroah-Hartman
2021-07-19 14:53 ` [PATCH 5.10 160/243] ubifs: journal: Fix error return code in ubifs_jnl_write_inode() Greg Kroah-Hartman
2021-07-19 14:53 ` [PATCH 5.10 161/243] watchdog: aspeed: fix hardware timeout calculation Greg Kroah-Hartman
2021-07-19 14:53 ` [PATCH 5.10 162/243] watchdog: jz4740: Fix return value check in jz4740_wdt_probe() Greg Kroah-Hartman
2021-07-19 14:53 ` [PATCH 5.10 163/243] SUNRPC: prevent port reuse on transports which dont request it Greg Kroah-Hartman
2021-07-19 14:53 ` [PATCH 5.10 164/243] nfs: fix acl memory leak of posix_acl_create() Greg Kroah-Hartman
2021-07-19 14:53 ` [PATCH 5.10 165/243] ubifs: Set/Clear I_LINKABLE under i_lock for whiteout inode Greg Kroah-Hartman
2021-07-19 14:53 ` [PATCH 5.10 166/243] PCI: iproc: Fix multi-MSI base vector number allocation Greg Kroah-Hartman
2021-07-19 14:53 ` [PATCH 5.10 167/243] PCI: iproc: Support multi-MSI only on uniprocessor kernel Greg Kroah-Hartman
2021-07-19 14:53 ` [PATCH 5.10 168/243] f2fs: fix to avoid adding tab before doc section Greg Kroah-Hartman
2021-07-19 14:53 ` [PATCH 5.10 169/243] x86/fpu: Fix copy_xstate_to_kernel() gap handling Greg Kroah-Hartman
2021-07-19 14:53 ` [PATCH 5.10 170/243] x86/fpu: Limit xstate copy size in xstateregs_set() Greg Kroah-Hartman
2021-07-19 14:53 ` [PATCH 5.10 171/243] PCI: intel-gw: Fix INTx enable Greg Kroah-Hartman
2021-07-19 14:53 ` [PATCH 5.10 172/243] pwm: imx1: Dont disable clocks at device remove time Greg Kroah-Hartman
2021-07-19 14:53 ` [PATCH 5.10 173/243] PCI: tegra194: Fix tegra_pcie_ep_raise_msi_irq() ill-defined shift Greg Kroah-Hartman
2021-07-19 14:53 ` [PATCH 5.10 174/243] vdpa/mlx5: Fix umem sizes assignments on VQ create Greg Kroah-Hartman
2021-07-19 14:53 ` [PATCH 5.10 175/243] vdpa/mlx5: Fix possible failure in umem size calculation Greg Kroah-Hartman
2021-07-19 14:53 ` [PATCH 5.10 176/243] virtio_net: move tx vq operation under tx queue lock Greg Kroah-Hartman
2021-07-19 14:53 ` [PATCH 5.10 177/243] nvme-tcp: cant set sk_user_data without write_lock Greg Kroah-Hartman
2021-07-19 14:53 ` [PATCH 5.10 178/243] nfsd: Reduce contention for the nfsd_file nf_rwsem Greg Kroah-Hartman
2021-07-19 14:53 ` [PATCH 5.10 179/243] ALSA: isa: Fix error return code in snd_cmi8330_probe() Greg Kroah-Hartman
2021-07-19 14:53 ` [PATCH 5.10 180/243] vdpa/mlx5: Clear vq ready indication upon device reset Greg Kroah-Hartman
2021-07-19 14:53 ` [PATCH 5.10 181/243] NFSv4/pnfs: Fix the layout barrier update Greg Kroah-Hartman
2021-07-19 14:53 ` [PATCH 5.10 182/243] NFSv4/pnfs: Fix layoutget behaviour after invalidation Greg Kroah-Hartman
2021-07-19 14:53 ` [PATCH 5.10 183/243] NFSv4/pNFS: Dont call _nfs4_pnfs_v3_ds_connect multiple times Greg Kroah-Hartman
2021-07-19 14:53 ` [PATCH 5.10 184/243] hexagon: handle {,SOFT}IRQENTRY_TEXT in linker script Greg Kroah-Hartman
2021-07-19 14:53 ` [PATCH 5.10 185/243] hexagon: use common DISCARDS macro Greg Kroah-Hartman
2021-07-19 14:53 ` [PATCH 5.10 186/243] ARM: dts: gemini-rut1xx: remove duplicate ethernet node Greg Kroah-Hartman
2021-07-19 14:53 ` [PATCH 5.10 187/243] reset: RESET_BRCMSTB_RESCAL should depend on ARCH_BRCMSTB Greg Kroah-Hartman
2021-07-19 14:53 ` [PATCH 5.10 188/243] reset: RESET_INTEL_GW should depend on X86 Greg Kroah-Hartman
2021-07-19 14:53 ` [PATCH 5.10 189/243] reset: a10sr: add missing of_match_table reference Greg Kroah-Hartman
2021-07-19 14:53 ` [PATCH 5.10 190/243] ARM: exynos: add missing of_node_put for loop iteration Greg Kroah-Hartman
2021-07-19 14:53 ` [PATCH 5.10 191/243] ARM: dts: exynos: fix PWM LED max brightness on Odroid XU/XU3 Greg Kroah-Hartman
2021-07-19 14:53 ` [PATCH 5.10 192/243] ARM: dts: exynos: fix PWM LED max brightness on Odroid HC1 Greg Kroah-Hartman
2021-07-19 14:53 ` [PATCH 5.10 193/243] ARM: dts: exynos: fix PWM LED max brightness on Odroid XU4 Greg Kroah-Hartman
2021-07-19 14:53 ` [PATCH 5.10 194/243] memory: stm32-fmc2-ebi: add missing of_node_put for loop iteration Greg Kroah-Hartman
2021-07-19 14:53 ` [PATCH 5.10 195/243] memory: atmel-ebi: " Greg Kroah-Hartman
2021-07-19 14:53 ` [PATCH 5.10 196/243] reset: brcmstb: Add missing MODULE_DEVICE_TABLE Greg Kroah-Hartman
2021-07-19 14:53 ` [PATCH 5.10 197/243] memory: pl353: Fix error return code in pl353_smc_probe() Greg Kroah-Hartman
2021-07-19 14:53 ` [PATCH 5.10 198/243] ARM: dts: sun8i: h3: orangepi-plus: Fix ethernet phy-mode Greg Kroah-Hartman
2021-07-19 14:53 ` [PATCH 5.10 199/243] rtc: fix snprintf() checking in is_rtc_hctosys() Greg Kroah-Hartman
2021-07-19 14:53 ` [PATCH 5.10 200/243] arm64: dts: renesas: v3msk: Fix memory size Greg Kroah-Hartman
2021-07-19 14:53 ` [PATCH 5.10 201/243] ARM: dts: r8a7779, marzen: Fix DU clock names Greg Kroah-Hartman
2021-07-19 14:53 ` [PATCH 5.10 202/243] arm64: dts: ti: j7200-main: Enable USB2 PHY RX sensitivity workaround Greg Kroah-Hartman
2021-07-19 14:53 ` [PATCH 5.10 203/243] arm64: dts: renesas: Add missing opp-suspend properties Greg Kroah-Hartman
2021-07-19 14:53 ` [PATCH 5.10 204/243] arm64: dts: renesas: r8a7796[01]: Fix OPP table entry voltages Greg Kroah-Hartman
2021-07-19 14:53 ` [PATCH 5.10 205/243] ARM: dts: stm32: Connect PHY IRQ line on DH STM32MP1 SoM Greg Kroah-Hartman
2021-07-19 14:53 ` [PATCH 5.10 206/243] ARM: dts: stm32: Rework LAN8710Ai PHY reset on DHCOM SoM Greg Kroah-Hartman
2021-07-19 14:53 ` [PATCH 5.10 207/243] arm64: dts: qcom: msm8994-angler: Fix gpio-reserved-ranges 85-88 Greg Kroah-Hartman
2021-07-19 14:53 ` [PATCH 5.10 208/243] arm64: dts: qcom: trogdor: Add no-hpd to DSI bridge node Greg Kroah-Hartman
2021-07-19 14:53 ` [PATCH 5.10 209/243] firmware: tegra: Fix error return code in tegra210_bpmp_init() Greg Kroah-Hartman
2021-07-19 14:53 ` [PATCH 5.10 210/243] firmware: arm_scmi: Reset Rx buffer to max size during async commands Greg Kroah-Hartman
2021-07-19 14:54 ` [PATCH 5.10 211/243] dt-bindings: i2c: at91: fix example for scl-gpios Greg Kroah-Hartman
2021-07-19 14:54 ` [PATCH 5.10 212/243] ARM: dts: BCM5301X: Fixup SPI binding Greg Kroah-Hartman
2021-07-19 14:54 ` [PATCH 5.10 213/243] reset: bail if try_module_get() fails Greg Kroah-Hartman
2021-07-19 14:54 ` [PATCH 5.10 214/243] arm64: dts: renesas: r8a779a0: Drop power-domains property from GIC node Greg Kroah-Hartman
2021-07-19 14:54 ` [PATCH 5.10 215/243] arm64: dts: ti: k3-j721e-main: Fix external refclk input to SERDES Greg Kroah-Hartman
2021-07-19 14:54 ` [PATCH 5.10 216/243] arm64: dts: ti: k3-j721e-common-proc-board: Use external clock for SERDES Greg Kroah-Hartman
2021-07-19 16:31   ` Naresh Kamboju
2021-07-19 17:29     ` Naresh Kamboju
2021-07-19 17:57       ` Sasha Levin
2021-07-19 18:14         ` Nishanth Menon
2021-07-19 14:54 ` [PATCH 5.10 217/243] arm64: dts: ti: k3-j721e-common-proc-board: Re-name "link" name as "phy" Greg Kroah-Hartman
2021-07-19 14:54 ` [PATCH 5.10 218/243] memory: fsl_ifc: fix leak of IO mapping on probe failure Greg Kroah-Hartman
2021-07-19 14:54 ` [PATCH 5.10 219/243] memory: fsl_ifc: fix leak of private memory " Greg Kroah-Hartman
2021-07-19 14:54 ` [PATCH 5.10 220/243] arm64: dts: allwinner: a64-sopine-baseboard: change RGMII mode to TXID Greg Kroah-Hartman
2021-07-19 14:54 ` [PATCH 5.10 221/243] ARM: dts: dra7: Fix duplicate USB4 target module node Greg Kroah-Hartman
2021-07-19 14:54 ` [PATCH 5.10 222/243] ARM: dts: am335x: align ti,pindir-d0-out-d1-in property with dt-shema Greg Kroah-Hartman
2021-07-19 14:54 ` [PATCH 5.10 223/243] ARM: dts: am437x: " Greg Kroah-Hartman
2021-07-19 14:54 ` [PATCH 5.10 224/243] thermal/drivers/sprd: Add missing MODULE_DEVICE_TABLE Greg Kroah-Hartman
2021-07-19 14:54 ` [PATCH 5.10 225/243] ARM: dts: imx6q-dhcom: Fix ethernet reset time properties Greg Kroah-Hartman
2021-07-19 14:54 ` [PATCH 5.10 226/243] ARM: dts: imx6q-dhcom: Fix ethernet plugin detection problems Greg Kroah-Hartman
2021-07-19 14:54 ` [PATCH 5.10 227/243] ARM: dts: imx6q-dhcom: Add gpios pinctrl for i2c bus recovery Greg Kroah-Hartman
2021-07-19 14:54 ` [PATCH 5.10 228/243] thermal/drivers/rcar_gen3_thermal: Fix coefficient calculations Greg Kroah-Hartman
2021-07-19 14:54 ` [PATCH 5.10 229/243] firmware: turris-mox-rwtm: fix reply status decoding function Greg Kroah-Hartman
2021-07-19 14:54 ` [PATCH 5.10 230/243] firmware: turris-mox-rwtm: report failures better Greg Kroah-Hartman
2021-07-19 14:54 ` [PATCH 5.10 231/243] firmware: turris-mox-rwtm: fail probing when firmware does not support hwrng Greg Kroah-Hartman
2021-07-19 14:54 ` [PATCH 5.10 232/243] firmware: turris-mox-rwtm: show message about HWRNG registration Greg Kroah-Hartman
2021-07-19 14:54 ` [PATCH 5.10 233/243] arm64: dts: rockchip: Re-add regulator-boot-on, regulator-always-on for vdd_gpu on rk3399-roc-pc Greg Kroah-Hartman
2021-07-19 14:54 ` [PATCH 5.10 234/243] arm64: dts: rockchip: Re-add regulator-always-on for vcc_sdio for rk3399-roc-pc Greg Kroah-Hartman
2021-07-19 14:54 ` [PATCH 5.10 235/243] scsi: be2iscsi: Fix an error handling path in beiscsi_dev_probe() Greg Kroah-Hartman
2021-07-19 14:54 ` [PATCH 5.10 236/243] sched/uclamp: Ignore max aggregation if rq is idle Greg Kroah-Hartman
2021-07-19 14:54 ` [PATCH 5.10 237/243] jump_label: Fix jump_label_text_reserved() vs __init Greg Kroah-Hartman
2021-07-19 14:54 ` [PATCH 5.10 238/243] static_call: Fix static_call_text_reserved() " Greg Kroah-Hartman
2021-07-19 14:54 ` [PATCH 5.10 239/243] mips: always link byteswap helpers into decompressor Greg Kroah-Hartman
2021-07-19 14:54 ` [PATCH 5.10 240/243] mips: disable branch profiling in boot/decompress.o Greg Kroah-Hartman
2021-07-19 14:54 ` [PATCH 5.10 241/243] perf report: Fix --task and --stat with pipe input Greg Kroah-Hartman
2021-07-19 14:54 ` [PATCH 5.10 242/243] MIPS: vdso: Invalid GIC access through VDSO Greg Kroah-Hartman
2021-07-19 14:54 ` [PATCH 5.10 243/243] scsi: scsi_dh_alua: Fix signedness bug in alua_rtpg() Greg Kroah-Hartman
2021-07-19 16:28 ` [PATCH 5.10 000/243] 5.10.52-rc1 review Naresh Kamboju
2021-07-19 18:52 ` Florian Fainelli

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=20210719144945.500147280@linuxfoundation.org \
    --to=gregkh@linuxfoundation.org \
    --cc=bhelgaas@google.com \
    --cc=javierm@redhat.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=lorenzo.pieralisi@arm.com \
    --cc=pbrobinson@gmail.com \
    --cc=sashal@kernel.org \
    --cc=shawn.lin@rock-chips.com \
    --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).