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, David Hildenbrand <david@redhat.com>,
	"Michael S. Tsirkin" <mst@redhat.com>,
	Sasha Levin <sashal@kernel.org>
Subject: [PATCH 5.13 263/351] virtio-mem: dont read big block size in Sub Block Mode
Date: Mon, 19 Jul 2021 16:53:29 +0200	[thread overview]
Message-ID: <20210719144953.644611723@linuxfoundation.org> (raw)
In-Reply-To: <20210719144944.537151528@linuxfoundation.org>

From: David Hildenbrand <david@redhat.com>

[ Upstream commit 500817bf5e110ad9b7138bc582971bb7ee77d6f7 ]

We are reading a Big Block Mode value while in Sub Block Mode
when initializing. Fortunately, vm->bbm.bb_size maps to some counter
in the vm->sbm.mb_count array, which is 0 at that point in time.

No harm done; still, this was unintended and is not future-proof.

Fixes: 4ba50cd3355d ("virtio-mem: Big Block Mode (BBM) memory hotplug")
Signed-off-by: David Hildenbrand <david@redhat.com>
Link: https://lore.kernel.org/r/20210602185720.31821-2-david@redhat.com
Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
Signed-off-by: Sasha Levin <sashal@kernel.org>
---
 drivers/virtio/virtio_mem.c | 15 ++++++++-------
 1 file changed, 8 insertions(+), 7 deletions(-)

diff --git a/drivers/virtio/virtio_mem.c b/drivers/virtio/virtio_mem.c
index 10ec60d81e84..3bf08b5bb359 100644
--- a/drivers/virtio/virtio_mem.c
+++ b/drivers/virtio/virtio_mem.c
@@ -2420,6 +2420,10 @@ static int virtio_mem_init(struct virtio_mem *vm)
 		dev_warn(&vm->vdev->dev,
 			 "Some device memory is not addressable/pluggable. This can make some memory unusable.\n");
 
+	/* Prepare the offline threshold - make sure we can add two blocks. */
+	vm->offline_threshold = max_t(uint64_t, 2 * memory_block_size_bytes(),
+				      VIRTIO_MEM_DEFAULT_OFFLINE_THRESHOLD);
+
 	/*
 	 * We want subblocks to span at least MAX_ORDER_NR_PAGES and
 	 * pageblock_nr_pages pages. This:
@@ -2466,14 +2470,11 @@ static int virtio_mem_init(struct virtio_mem *vm)
 		       vm->bbm.bb_size - 1;
 		vm->bbm.first_bb_id = virtio_mem_phys_to_bb_id(vm, addr);
 		vm->bbm.next_bb_id = vm->bbm.first_bb_id;
-	}
 
-	/* Prepare the offline threshold - make sure we can add two blocks. */
-	vm->offline_threshold = max_t(uint64_t, 2 * memory_block_size_bytes(),
-				      VIRTIO_MEM_DEFAULT_OFFLINE_THRESHOLD);
-	/* In BBM, we also want at least two big blocks. */
-	vm->offline_threshold = max_t(uint64_t, 2 * vm->bbm.bb_size,
-				      vm->offline_threshold);
+		/* Make sure we can add two big blocks. */
+		vm->offline_threshold = max_t(uint64_t, 2 * vm->bbm.bb_size,
+					      vm->offline_threshold);
+	}
 
 	dev_info(&vm->vdev->dev, "start address: 0x%llx", vm->addr);
 	dev_info(&vm->vdev->dev, "region size: 0x%llx", vm->region_size);
-- 
2.30.2




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

Thread overview: 353+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-07-19 14:49 [PATCH 5.13 000/351] 5.13.4-rc1 review Greg Kroah-Hartman
2021-07-19 14:49 ` [PATCH 5.13 001/351] cifs: use the expiry output of dns_query to schedule next resolution Greg Kroah-Hartman
2021-07-19 14:49 ` [PATCH 5.13 002/351] cifs: handle reconnect of tcon when there is no cached dfs referral Greg Kroah-Hartman
2021-07-19 14:49 ` [PATCH 5.13 003/351] cifs: Do not use the original cruid when following DFS links for multiuser mounts Greg Kroah-Hartman
2021-07-19 14:49 ` [PATCH 5.13 004/351] KVM: mmio: Fix use-after-free Read in kvm_vm_ioctl_unregister_coalesced_mmio Greg Kroah-Hartman
2021-07-19 14:49 ` [PATCH 5.13 005/351] KVM: selftests: do not require 64GB in set_memory_region_test Greg Kroah-Hartman
2021-07-19 14:49 ` [PATCH 5.13 006/351] KVM: x86: Use guest MAXPHYADDR from CPUID.0x8000_0008 iff TDP is enabled Greg Kroah-Hartman
2021-07-19 14:49 ` [PATCH 5.13 007/351] KVM: x86: Use kernels x86_phys_bits to handle reduced MAXPHYADDR Greg Kroah-Hartman
2021-07-19 14:49 ` [PATCH 5.13 008/351] KVM: x86/mmu: Do not apply HPA (memory encryption) mask to GPAs Greg Kroah-Hartman
2021-07-19 14:49 ` [PATCH 5.13 009/351] KVM: SVM: Revert clearing of C-bit on GPA in #NPF handler Greg Kroah-Hartman
2021-07-19 14:49 ` [PATCH 5.13 010/351] KVM: nSVM: Check the value written to MSR_VM_HSAVE_PA Greg Kroah-Hartman
2021-07-19 14:49 ` [PATCH 5.13 011/351] KVM: X86: Disable hardware breakpoints unconditionally before kvm_x86->run() Greg Kroah-Hartman
2021-07-19 14:49 ` [PATCH 5.13 012/351] KVM: SVM: #SMI interception must not skip the instruction Greg Kroah-Hartman
2021-07-19 14:49 ` [PATCH 5.13 013/351] KVM: SVM: remove INIT intercept handler Greg Kroah-Hartman
2021-07-19 14:49 ` [PATCH 5.13 014/351] scsi: core: Fix bad pointer dereference when ehandler kthread is invalid Greg Kroah-Hartman
2021-07-19 14:49 ` [PATCH 5.13 015/351] scsi: zfcp: Report port fc_security as unknown early during remote cable pull Greg Kroah-Hartman
2021-07-19 14:49 ` [PATCH 5.13 016/351] iommu/vt-d: Global devTLB flush when present context entry changed Greg Kroah-Hartman
2021-07-19 14:49 ` [PATCH 5.13 017/351] iommu/vt-d: Fix clearing real DMA devices scalable-mode context entries Greg Kroah-Hartman
2021-07-19 14:49 ` [PATCH 5.13 018/351] tracing: Do not reference char * as a string in histograms Greg Kroah-Hartman
2021-07-19 14:49 ` [PATCH 5.13 019/351] drm/amdgpu: add another Renoir DID Greg Kroah-Hartman
2021-07-19 14:49 ` [PATCH 5.13 020/351] drm/i915/gtt: drop the page table optimisation Greg Kroah-Hartman
2021-07-19 14:49 ` [PATCH 5.13 021/351] drm/i915/gt: Fix -EDEADLK handling regression Greg Kroah-Hartman
2021-07-19 14:49 ` [PATCH 5.13 022/351] cgroup: verify that source is a string Greg Kroah-Hartman
2021-07-19 14:49 ` [PATCH 5.13 023/351] fbmem: Do not delete the mode that is still in use Greg Kroah-Hartman
2021-07-19 14:49 ` [PATCH 5.13 024/351] EDAC/igen6: fix core dependency AGAIN Greg Kroah-Hartman
2021-07-19 14:49 ` [PATCH 5.13 025/351] mm/hugetlb: fix refs calculation from unaligned @vaddr Greg Kroah-Hartman
2021-07-19 14:49 ` [PATCH 5.13 026/351] arm64: Avoid premature usercopy failure Greg Kroah-Hartman
2021-07-19 14:49 ` [PATCH 5.13 027/351] io_uring: use right task for exiting checks Greg Kroah-Hartman
2021-07-19 14:49 ` [PATCH 5.13 028/351] btrfs: properly split extent_map for REQ_OP_ZONE_APPEND Greg Kroah-Hartman
2021-07-19 14:49 ` [PATCH 5.13 029/351] btrfs: zoned: fix types for u64 division in btrfs_reclaim_bgs_work Greg Kroah-Hartman
2021-07-19 14:49 ` [PATCH 5.13 030/351] btrfs: fix deadlock with concurrent chunk allocations involving system chunks Greg Kroah-Hartman
2021-07-19 14:49 ` [PATCH 5.13 031/351] btrfs: rework chunk allocation to avoid exhaustion of the system chunk array Greg Kroah-Hartman
2021-07-19 14:49 ` [PATCH 5.13 032/351] btrfs: dont block if we cant acquire the reclaim lock Greg Kroah-Hartman
2021-07-19 14:49 ` [PATCH 5.13 033/351] btrfs: zoned: fix wrong mutex unlock on failure to allocate log root tree Greg Kroah-Hartman
2021-07-19 14:49 ` [PATCH 5.13 034/351] drm/dp_mst: Do not set proposed vcpi directly Greg Kroah-Hartman
2021-07-19 14:49 ` [PATCH 5.13 035/351] drm/dp_mst: Avoid to mess up payload table by ports in stale topology Greg Kroah-Hartman
2021-07-19 14:49 ` [PATCH 5.13 036/351] drm/dp_mst: Add missing drm parameters to recently added call to drm_dbg_kms() Greg Kroah-Hartman
2021-07-19 14:49 ` [PATCH 5.13 037/351] net: bridge: multicast: fix PIM hello router port marking race Greg Kroah-Hartman
2021-07-19 14:49 ` [PATCH 5.13 038/351] net: bridge: multicast: fix MRD advertisement " Greg Kroah-Hartman
2021-07-19 14:49 ` [PATCH 5.13 039/351] leds: tlc591xx: fix return value check in tlc591xx_probe() Greg Kroah-Hartman
2021-07-19 14:49 ` [PATCH 5.13 040/351] ASoC: Intel: sof_sdw: add mutual exclusion between PCH DMIC and RT715 Greg Kroah-Hartman
2021-07-19 14:49 ` [PATCH 5.13 041/351] dmaengine: fsl-qdma: check dma_set_mask return value Greg Kroah-Hartman
2021-07-19 14:49 ` [PATCH 5.13 042/351] scsi: arcmsr: Fix the wrong CDB payload report to IOP Greg Kroah-Hartman
2021-07-19 14:49 ` [PATCH 5.13 043/351] srcu: Fix broken node geometry after early ssp init Greg Kroah-Hartman
2021-07-19 14:49 ` [PATCH 5.13 044/351] rcu: Reject RCU_LOCKDEP_WARN() false positives Greg Kroah-Hartman
2021-07-19 14:49 ` [PATCH 5.13 045/351] soundwire: bus: only use CLOCK_STOP_MODE0 and fix confusions Greg Kroah-Hartman
2021-07-19 14:49 ` [PATCH 5.13 046/351] soundwire: bus: handle -ENODATA errors in clock stop/start sequences Greg Kroah-Hartman
2021-07-19 14:49 ` [PATCH 5.13 047/351] usb: dwc3: pci: Fix DEFINE for Intel Elkhart Lake Greg Kroah-Hartman
2021-07-19 14:49 ` [PATCH 5.13 048/351] tty: serial: fsl_lpuart: fix the potential risk of division or modulo by zero Greg Kroah-Hartman
2021-07-19 14:49 ` [PATCH 5.13 049/351] serial: fsl_lpuart: disable DMA for console and fix sysrq Greg Kroah-Hartman
2021-07-19 14:49 ` [PATCH 5.13 050/351] serial: 8250: of: Check for CONFIG_SERIAL_8250_BCM7271 Greg Kroah-Hartman
2021-07-19 14:49 ` [PATCH 5.13 051/351] misc/libmasm/module: Fix two use after free in ibmasm_init_one Greg Kroah-Hartman
2021-07-19 14:49 ` [PATCH 5.13 052/351] misc: alcor_pci: fix null-ptr-deref when there is no PCI bridge Greg Kroah-Hartman
2021-07-19 14:49 ` [PATCH 5.13 053/351] ASoC: intel/boards: add missing MODULE_DEVICE_TABLE Greg Kroah-Hartman
2021-07-19 14:50 ` [PATCH 5.13 054/351] partitions: msdos: fix one-byte get_unaligned() Greg Kroah-Hartman
2021-07-19 14:50 ` [PATCH 5.13 055/351] iio: imu: st_lsm6dsx: correct ODR in header Greg Kroah-Hartman
2021-07-19 14:50 ` [PATCH 5.13 056/351] iio: gyro: fxa21002c: Balance runtime pm + use pm_runtime_resume_and_get() Greg Kroah-Hartman
2021-07-19 14:50 ` [PATCH 5.13 057/351] iio: magn: bmc150: " Greg Kroah-Hartman
2021-07-19 14:50 ` [PATCH 5.13 058/351] ALSA: usx2y: Avoid camelCase Greg Kroah-Hartman
2021-07-19 14:50 ` [PATCH 5.13 059/351] ALSA: usx2y: Dont call free_pages_exact() with NULL address Greg Kroah-Hartman
2021-07-19 14:50 ` [PATCH 5.13 060/351] Revert "ALSA: bebob/oxfw: fix Kconfig entry for Mackie d.2 Pro" Greg Kroah-Hartman
2021-07-19 14:50 ` [PATCH 5.13 061/351] usb: common: usb-conn-gpio: fix NULL pointer dereference of charger Greg Kroah-Hartman
2021-07-19 14:50 ` [PATCH 5.13 062/351] ASoC: SOF: topology: fix assignment to use le32_to_cpu Greg Kroah-Hartman
2021-07-19 14:50 ` [PATCH 5.13 063/351] w1: ds2438: fixing bug that would always get page0 Greg Kroah-Hartman
2021-07-19 14:50 ` [PATCH 5.13 064/351] ASoC: Intel: sof_sdw: add quirk support for Brya and BT-offload Greg Kroah-Hartman
2021-07-19 14:50 ` [PATCH 5.13 065/351] scsi: arcmsr: Fix doorbell status being updated late on ARC-1886 Greg Kroah-Hartman
2021-07-19 14:50 ` [PATCH 5.13 066/351] scsi: hisi_sas: Propagate errors in interrupt_init_v1_hw() Greg Kroah-Hartman
2021-07-19 14:50 ` [PATCH 5.13 067/351] scsi: lpfc: Fix "Unexpected timeout" error in direct attach topology Greg Kroah-Hartman
2021-07-19 14:50 ` [PATCH 5.13 068/351] scsi: lpfc: Fix crash when lpfc_sli4_hba_setup() fails to initialize the SGLs Greg Kroah-Hartman
2021-07-19 14:50 ` [PATCH 5.13 069/351] scsi: core: Cap scsi_host cmd_per_lun at can_queue Greg Kroah-Hartman
2021-07-19 14:50 ` [PATCH 5.13 070/351] ALSA: ac97: fix PM reference leak in ac97_bus_remove() Greg Kroah-Hartman
2021-07-19 14:50 ` [PATCH 5.13 071/351] ASoC: cs42l42: Fix 1536000 Bit Clock instability Greg Kroah-Hartman
2021-07-19 14:50 ` [PATCH 5.13 072/351] tty: serial: 8250: serial_cs: Fix a memory leak in error handling path Greg Kroah-Hartman
2021-07-19 14:50 ` [PATCH 5.13 073/351] scsi: mpt3sas: Fix deadlock while cancelling the running firmware event Greg Kroah-Hartman
2021-07-19 14:50 ` [PATCH 5.13 074/351] scsi: core: Fixup calling convention for scsi_mode_sense() Greg Kroah-Hartman
2021-07-19 14:50 ` [PATCH 5.13 075/351] scsi: scsi_dh_alua: Check for negative result value Greg Kroah-Hartman
2021-07-19 14:50 ` [PATCH 5.13 076/351] fs/jfs: Fix missing error code in lmLogInit() Greg Kroah-Hartman
2021-07-19 14:50 ` [PATCH 5.13 077/351] scsi: megaraid_sas: Fix resource leak in case of probe failure Greg Kroah-Hartman
2021-07-19 14:50 ` [PATCH 5.13 078/351] scsi: megaraid_sas: Early detection of VD deletion through RaidMap update Greg Kroah-Hartman
2021-07-19 14:50 ` [PATCH 5.13 079/351] scsi: megaraid_sas: Handle missing interrupts while re-enabling IRQs Greg Kroah-Hartman
2021-07-19 14:50 ` [PATCH 5.13 080/351] scsi: iscsi: Add iscsi_cls_conn refcount helpers Greg Kroah-Hartman
2021-07-19 14:50 ` [PATCH 5.13 081/351] scsi: iscsi: Fix conn use after free during resets Greg Kroah-Hartman
2021-07-19 14:50 ` [PATCH 5.13 082/351] scsi: iscsi: Fix shost->max_id use Greg Kroah-Hartman
2021-07-19 14:50 ` [PATCH 5.13 083/351] scsi: qedi: Fix null ref during abort handling Greg Kroah-Hartman
2021-07-19 14:50 ` [PATCH 5.13 084/351] scsi: qedi: Fix race during abort timeouts Greg Kroah-Hartman
2021-07-19 14:50 ` [PATCH 5.13 085/351] scsi: qedi: Fix TMF session block/unblock use Greg Kroah-Hartman
2021-07-19 14:50 ` [PATCH 5.13 086/351] scsi: qedi: Fix cleanup " Greg Kroah-Hartman
2021-07-19 14:50 ` [PATCH 5.13 087/351] mfd: da9052/stmpe: Add and modify MODULE_DEVICE_TABLE Greg Kroah-Hartman
2021-07-19 14:50 ` [PATCH 5.13 088/351] mfd: cpcap: Fix cpcap dmamask not set warnings Greg Kroah-Hartman
2021-07-19 14:50 ` [PATCH 5.13 089/351] ASoC: img: Fix PM reference leak in img_i2s_in_probe() Greg Kroah-Hartman
2021-07-19 14:50 ` [PATCH 5.13 090/351] iov_iter_advance(): use consistent semantics for move past the end Greg Kroah-Hartman
2021-07-19 14:50 ` [PATCH 5.13 091/351] fsi: Add missing MODULE_DEVICE_TABLE Greg Kroah-Hartman
2021-07-19 14:50 ` [PATCH 5.13 092/351] serial: tty: uartlite: fix console setup Greg Kroah-Hartman
2021-07-19 14:50 ` [PATCH 5.13 093/351] s390/sclp_vt220: fix console name to match device Greg Kroah-Hartman
2021-07-19 14:50 ` [PATCH 5.13 094/351] s390: disable SSP when needed Greg Kroah-Hartman
2021-07-19 14:50 ` [PATCH 5.13 095/351] selftests: timers: rtcpie: skip test if default RTC device does not exist Greg Kroah-Hartman
2021-07-19 14:50 ` [PATCH 5.13 096/351] iommu/arm-smmu-qcom: Skip the TTBR1 quirk for db820c Greg Kroah-Hartman
2021-07-19 14:50 ` [PATCH 5.13 097/351] ALSA: sb: Fix potential double-free of CSP mixer elements Greg Kroah-Hartman
2021-07-19 14:50 ` [PATCH 5.13 098/351] powerpc/ps3: Add dma_mask to ps3_dma_region Greg Kroah-Hartman
2021-07-19 14:50 ` [PATCH 5.13 099/351] iommu/arm-smmu: Fix arm_smmu_device refcount leak when arm_smmu_rpm_get fails Greg Kroah-Hartman
2021-07-19 14:50 ` [PATCH 5.13 100/351] iommu/arm-smmu: Fix arm_smmu_device refcount leak in address translation Greg Kroah-Hartman
2021-07-19 14:50 ` [PATCH 5.13 101/351] ALSA: n64: check return value after calling platform_get_resource() Greg Kroah-Hartman
2021-07-19 14:50 ` [PATCH 5.13 102/351] ALSA: control_led - fix initialization in the mode show callback Greg Kroah-Hartman
2021-07-19 14:50 ` [PATCH 5.13 103/351] ASoC: soc-pcm: fix the return value in dpcm_apply_symmetry() Greg Kroah-Hartman
2021-07-19 14:50 ` [PATCH 5.13 104/351] gpio: zynq: Check return value of pm_runtime_get_sync Greg Kroah-Hartman
2021-07-19 14:50 ` [PATCH 5.13 105/351] gpio: zynq: Check return value of irq_get_irq_data Greg Kroah-Hartman
2021-07-19 14:50 ` [PATCH 5.13 106/351] thunderbolt: Fix DROM handling for USB4 DROM Greg Kroah-Hartman
2021-07-19 14:50 ` [PATCH 5.13 107/351] powerpc/inst: Fix sparse detection on get_user_instr() Greg Kroah-Hartman
2021-07-19 14:50 ` [PATCH 5.13 108/351] scsi: storvsc: Correctly handle multiple flags in srb_status Greg Kroah-Hartman
2021-07-19 14:50 ` [PATCH 5.13 109/351] ALSA: ppc: fix error return code in snd_pmac_probe() Greg Kroah-Hartman
2021-07-19 14:50 ` [PATCH 5.13 110/351] selftests/powerpc: Fix "no_handler" EBB selftest Greg Kroah-Hartman
2021-07-19 14:50 ` [PATCH 5.13 111/351] gpio: pca953x: Add support for the On Semi pca9655 Greg Kroah-Hartman
2021-07-19 14:50 ` [PATCH 5.13 112/351] powerpc/mm/book3s64: Fix possible build error Greg Kroah-Hartman
2021-07-19 14:50 ` [PATCH 5.13 113/351] 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.13 114/351] xhci: handle failed buffer copy to URB sg list and fix a W=1 copiler warning Greg Kroah-Hartman
2021-07-19 14:51 ` [PATCH 5.13 115/351] habanalabs: check if asic secured with asic type Greg Kroah-Hartman
2021-07-19 14:51 ` [PATCH 5.13 116/351] habanalabs/gaudi: set the correct cpu_id on MME2_QM failure Greg Kroah-Hartman
2021-07-19 14:51 ` [PATCH 5.13 117/351] habanalabs: fix mask to obtain page offset Greg Kroah-Hartman
2021-07-19 14:51 ` [PATCH 5.13 118/351] habanalabs: set rc as valid in case of intentional func exit Greg Kroah-Hartman
2021-07-19 14:51 ` [PATCH 5.13 119/351] habanalabs: remove node from list before freeing the node Greg Kroah-Hartman
2021-07-19 14:51 ` [PATCH 5.13 120/351] habanalabs/gaudi: set the correct rc in case of err Greg Kroah-Hartman
2021-07-19 14:51 ` [PATCH 5.13 121/351] s390/processor: always inline stap() and __load_psw_mask() Greg Kroah-Hartman
2021-07-19 14:51 ` [PATCH 5.13 122/351] s390/ipl_parm: fix program check new psw handling Greg Kroah-Hartman
2021-07-19 14:51 ` [PATCH 5.13 123/351] s390/mem_detect: fix diag260() " Greg Kroah-Hartman
2021-07-19 14:51 ` [PATCH 5.13 124/351] s390/mem_detect: fix tprot() " Greg Kroah-Hartman
2021-07-19 14:51 ` [PATCH 5.13 125/351] Input: hideep - fix the uninitialized use in hideep_nvm_unlock() Greg Kroah-Hartman
2021-07-19 14:51 ` [PATCH 5.13 126/351] ALSA: bebob: add support for ToneWeal FW66 Greg Kroah-Hartman
2021-07-19 14:51 ` [PATCH 5.13 127/351] m68knommu: fix missing LCD splash screen data initializer Greg Kroah-Hartman
2021-07-19 14:51 ` [PATCH 5.13 128/351] ALSA: usb-audio: scarlett2: Fix 18i8 Gen 2 PCM Input count Greg Kroah-Hartman
2021-07-19 14:51 ` [PATCH 5.13 129/351] ALSA: usb-audio: scarlett2: Fix data_mutex lock Greg Kroah-Hartman
2021-07-19 14:51 ` [PATCH 5.13 130/351] ALSA: usb-audio: scarlett2: Fix scarlett2_*_ctl_put() return values Greg Kroah-Hartman
2021-07-19 14:51 ` [PATCH 5.13 131/351] usb: gadget: f_hid: fix endianness issue with descriptors Greg Kroah-Hartman
2021-07-19 14:51 ` [PATCH 5.13 132/351] usb: gadget: hid: fix error return code in hid_bind() Greg Kroah-Hartman
2021-07-19 14:51 ` [PATCH 5.13 133/351] powerpc/boot: Fixup device-tree on little endian Greg Kroah-Hartman
2021-07-19 14:51 ` [PATCH 5.13 134/351] ASoC: fsl_xcvr: check return value after calling platform_get_resource_byname() Greg Kroah-Hartman
2021-07-19 14:51 ` [PATCH 5.13 135/351] ASoC: Intel: kbl_da7219_max98357a: shrink platform_id below 20 characters Greg Kroah-Hartman
2021-07-19 14:51 ` [PATCH 5.13 136/351] backlight: lm3630a: Fix return code of .update_status() callback Greg Kroah-Hartman
2021-07-19 14:51 ` [PATCH 5.13 137/351] ALSA: hda: Add IRQ check for platform_get_irq() Greg Kroah-Hartman
2021-07-19 14:51 ` [PATCH 5.13 138/351] ALSA: usb-audio: scarlett2: Fix 6i6 Gen 2 line out descriptions Greg Kroah-Hartman
2021-07-19 14:51 ` [PATCH 5.13 139/351] ALSA: firewire-motu: fix detection for S/PDIF source on optical interface in v2 protocol Greg Kroah-Hartman
2021-07-19 14:51 ` [PATCH 5.13 140/351] leds: turris-omnia: add missing MODULE_DEVICE_TABLE Greg Kroah-Hartman
2021-07-19 14:51 ` [PATCH 5.13 141/351] staging: rtl8723bs: fix macro value for 2.4Ghz only device Greg Kroah-Hartman
2021-07-19 14:51 ` [PATCH 5.13 142/351] staging: rtl8723bs: fix check allowing 5Ghz settings Greg Kroah-Hartman
2021-07-19 14:51 ` [PATCH 5.13 143/351] intel_th: Wait until port is in reset before programming it Greg Kroah-Hartman
2021-07-19 14:51 ` [PATCH 5.13 144/351] i2c: core: Disable client irq on reboot/shutdown Greg Kroah-Hartman
2021-07-19 14:51 ` [PATCH 5.13 145/351] phy: intel: Fix for warnings due to EMMC clock 175Mhz change in FIP Greg Kroah-Hartman
2021-07-19 14:51 ` [PATCH 5.13 146/351] lib/decompress_unlz4.c: correctly handle zero-padding around initrds Greg Kroah-Hartman
2021-07-19 14:51 ` [PATCH 5.13 147/351] kcov: add __no_sanitize_coverage to fix noinstr for all architectures Greg Kroah-Hartman
2021-07-19 14:51 ` [PATCH 5.13 148/351] power: supply: sc27xx: Add missing MODULE_DEVICE_TABLE Greg Kroah-Hartman
2021-07-19 14:51 ` [PATCH 5.13 149/351] power: supply: sc2731_charger: " Greg Kroah-Hartman
2021-07-19 14:51 ` [PATCH 5.13 150/351] pwm: spear: Dont modify HW state in .remove callback Greg Kroah-Hartman
2021-07-19 14:51 ` [PATCH 5.13 151/351] PCI: ftpci100: Rename macro name collision Greg Kroah-Hartman
2021-07-19 14:51 ` [PATCH 5.13 152/351] power: supply: ab8500: Move to componentized binding Greg Kroah-Hartman
2021-07-19 14:51 ` [PATCH 5.13 153/351] power: supply: ab8500: Avoid NULL pointers Greg Kroah-Hartman
2021-07-19 14:51 ` [PATCH 5.13 154/351] power: supply: ab8500: Enable USB and AC Greg Kroah-Hartman
2021-07-19 14:51 ` [PATCH 5.13 155/351] PCI: hv: Fix a race condition when removing the device Greg Kroah-Hartman
2021-07-19 14:51 ` [PATCH 5.13 156/351] pwm: pca9685: Restrict period change for enabled PWMs Greg Kroah-Hartman
2021-07-19 14:51 ` [PATCH 5.13 157/351] power: supply: max17042: Do not enforce (incorrect) interrupt trigger type Greg Kroah-Hartman
2021-07-19 14:51 ` [PATCH 5.13 158/351] power: supply: max17040: " Greg Kroah-Hartman
2021-07-19 14:51 ` [PATCH 5.13 159/351] power: reset: gpio-poweroff: add missing MODULE_DEVICE_TABLE Greg Kroah-Hartman
2021-07-19 14:51 ` [PATCH 5.13 160/351] ARM: 9087/1: kprobes: test-thumb: fix for LLVM_IAS=1 Greg Kroah-Hartman
2021-07-19 14:51 ` [PATCH 5.13 161/351] PCI/P2PDMA: Avoid pci_get_slot(), which may sleep Greg Kroah-Hartman
2021-07-19 14:51 ` [PATCH 5.13 162/351] NFSv4: Fix delegation return in cases where we have to retry Greg Kroah-Hartman
2021-07-19 14:51 ` [PATCH 5.13 163/351] PCI: pciehp: Ignore Link Down/Up caused by DPC Greg Kroah-Hartman
2021-07-19 14:51 ` [PATCH 5.13 164/351] PCI: Dynamically map ECAM regions Greg Kroah-Hartman
2021-07-19 14:51 ` [PATCH 5.13 165/351] watchdog: Fix possible use-after-free in wdt_startup() Greg Kroah-Hartman
2021-07-19 14:51 ` [PATCH 5.13 166/351] watchdog: sc520_wdt: Fix possible use-after-free in wdt_turnoff() Greg Kroah-Hartman
2021-07-19 14:51 ` [PATCH 5.13 167/351] watchdog: Fix possible use-after-free by calling del_timer_sync() Greg Kroah-Hartman
2021-07-19 14:51 ` [PATCH 5.13 168/351] watchdog: imx_sc_wdt: fix pretimeout Greg Kroah-Hartman
2021-07-19 14:51 ` [PATCH 5.13 169/351] watchdog: iTCO_wdt: Account for rebooting on second timeout Greg Kroah-Hartman
2021-07-19 14:51 ` [PATCH 5.13 170/351] virtiofs: propagate sync() to file server Greg Kroah-Hartman
2021-07-19 14:51 ` [PATCH 5.13 171/351] fuse: fix illegal access to inode with reused nodeid Greg Kroah-Hartman
2021-07-19 14:51 ` [PATCH 5.13 172/351] PCI: mediatek-gen3: Add missing MODULE_DEVICE_TABLE Greg Kroah-Hartman
2021-07-19 14:51 ` [PATCH 5.13 173/351] x86/fpu: Return proper error codes from user access functions Greg Kroah-Hartman
2021-07-19 14:52 ` [PATCH 5.13 174/351] remoteproc: core: Fix cdev remove and rproc del Greg Kroah-Hartman
2021-07-19 14:52 ` [PATCH 5.13 175/351] remoteproc: stm32: fix mbox_send_message call Greg Kroah-Hartman
2021-07-19 14:52 ` [PATCH 5.13 176/351] PCI: tegra: Add missing MODULE_DEVICE_TABLE Greg Kroah-Hartman
2021-07-19 14:52 ` [PATCH 5.13 177/351] NFS: Fix up inode attribute revalidation timeouts Greg Kroah-Hartman
2021-07-19 14:52 ` [PATCH 5.13 178/351] NFSv4: Fix handling of non-atomic change attrbute updates Greg Kroah-Hartman
2021-07-19 14:52 ` [PATCH 5.13 179/351] orangefs: fix orangefs df output Greg Kroah-Hartman
2021-07-19 14:52 ` [PATCH 5.13 180/351] ceph: remove bogus checks and WARN_ONs from ceph_set_page_dirty Greg Kroah-Hartman
2021-07-19 14:52 ` [PATCH 5.13 181/351] drm/gma500: Add the missed drm_gem_object_put() in psb_user_framebuffer_create() Greg Kroah-Hartman
2021-07-19 14:52 ` [PATCH 5.13 182/351] NFS: nfs_find_open_context() may only select open files Greg Kroah-Hartman
2021-07-19 14:52 ` [PATCH 5.13 183/351] power: reset: regulator-poweroff: add missing MODULE_DEVICE_TABLE Greg Kroah-Hartman
2021-07-19 14:52 ` [PATCH 5.13 184/351] power: supply: charger-manager: " Greg Kroah-Hartman
2021-07-19 14:52 ` [PATCH 5.13 185/351] power: supply: ab8500: " Greg Kroah-Hartman
2021-07-19 14:52 ` [PATCH 5.13 186/351] power: supply: axp288_fuel_gauge: Make "T3 MRD" no_battery_list DMI entry more generic Greg Kroah-Hartman
2021-07-19 14:52 ` [PATCH 5.13 187/351] drm/amdgpu: fix Navi1x tcp power gating hang when issuing lightweight invalidaiton Greg Kroah-Hartman
2021-07-19 14:52 ` [PATCH 5.13 188/351] drm/amdkfd: fix sysfs kobj leak Greg Kroah-Hartman
2021-07-19 14:52 ` [PATCH 5.13 189/351] pwm: img: Fix PM reference leak in img_pwm_enable() Greg Kroah-Hartman
2021-07-19 14:52 ` [PATCH 5.13 190/351] pwm: tegra: Dont modify HW state in .remove callback Greg Kroah-Hartman
2021-07-19 14:52 ` [PATCH 5.13 191/351] ACPI: AMBA: Fix resource name in /proc/iomem Greg Kroah-Hartman
2021-07-19 14:52 ` [PATCH 5.13 192/351] ACPI: video: Add quirk for the Dell Vostro 3350 Greg Kroah-Hartman
2021-07-19 14:52 ` [PATCH 5.13 193/351] PCI: rockchip: Register IRQ handlers after device and data are ready Greg Kroah-Hartman
2021-07-19 14:52 ` [PATCH 5.13 194/351] ext4: fix WARN_ON_ONCE(!buffer_uptodate) after an error writing the superblock Greg Kroah-Hartman
2021-07-19 14:52 ` [PATCH 5.13 195/351] virtio-blk: Fix memory leak among suspend/resume procedure Greg Kroah-Hartman
2021-07-19 14:52 ` [PATCH 5.13 196/351] virtio_net: Fix error handling in virtnet_restore() Greg Kroah-Hartman
2021-07-19 14:52 ` [PATCH 5.13 197/351] virtio_console: Assure used length from device is limited Greg Kroah-Hartman
2021-07-19 14:52 ` [PATCH 5.13 198/351] block: fix the problem of io_ticks becoming smaller Greg Kroah-Hartman
2021-07-19 14:52 ` [PATCH 5.13 199/351] power: supply: surface_battery: Fix battery event handling Greg Kroah-Hartman
2021-07-19 14:52 ` [PATCH 5.13 200/351] f2fs: atgc: fix to set default age threshold Greg Kroah-Hartman
2021-07-19 14:52 ` [PATCH 5.13 201/351] NFSD: Fix TP_printk() format specifier in nfsd_clid_class Greg Kroah-Hartman
2021-07-19 14:52 ` [PATCH 5.13 202/351] x86/signal: Detect and prevent an alternate signal stack overflow Greg Kroah-Hartman
2021-07-19 14:52 ` [PATCH 5.13 203/351] cpufreq: scmi: Fix an error message Greg Kroah-Hartman
2021-07-19 14:52 ` [PATCH 5.13 204/351] pwm: visconti: Fix and simplify period calculation Greg Kroah-Hartman
2021-07-19 14:52 ` [PATCH 5.13 205/351] module: correctly exit module_kallsyms_on_each_symbol when fn() != 0 Greg Kroah-Hartman
2021-07-19 14:52 ` [PATCH 5.13 206/351] f2fs: add MODULE_SOFTDEP to ensure crc32 is included in the initramfs Greg Kroah-Hartman
2021-07-19 14:52 ` [PATCH 5.13 207/351] f2fs: compress: fix to disallow temp extension Greg Kroah-Hartman
2021-07-19 14:52 ` [PATCH 5.13 208/351] remoteproc: stm32: fix phys_addr_t format string Greg Kroah-Hartman
2021-07-19 14:52 ` [PATCH 5.13 209/351] remoteproc: k3-r5: Fix an error message Greg Kroah-Hartman
2021-07-19 14:52 ` [PATCH 5.13 210/351] power: supply: surface-charger: Fix type of integer variable Greg Kroah-Hartman
2021-07-19 14:52 ` [PATCH 5.13 211/351] PCI/sysfs: Fix dsm_label_utf16s_to_utf8s() buffer overrun Greg Kroah-Hartman
2021-07-19 14:52 ` [PATCH 5.13 212/351] power: supply: rt5033_battery: Fix device tree enumeration Greg Kroah-Hartman
2021-07-19 14:52 ` [PATCH 5.13 213/351] NFSv4: Initialise connection to the server in nfs4_alloc_client() Greg Kroah-Hartman
2021-07-19 14:52 ` [PATCH 5.13 214/351] NFSv4: Fix an Oops in pnfs_mark_request_commit() when doing O_DIRECT Greg Kroah-Hartman
2021-07-19 14:52 ` [PATCH 5.13 215/351] sunrpc: Avoid a KASAN slab-out-of-bounds bug in xdr_set_page_base() Greg Kroah-Hartman
2021-07-19 14:52 ` [PATCH 5.13 216/351] um: Fix stack pointer alignment Greg Kroah-Hartman
2021-07-19 14:52 ` [PATCH 5.13 217/351] um: fix error return code in slip_open() Greg Kroah-Hartman
2021-07-19 14:52 ` [PATCH 5.13 218/351] um: fix error return code in winch_tramp() Greg Kroah-Hartman
2021-07-19 14:52 ` [PATCH 5.13 219/351] ubifs: journal: Fix error return code in ubifs_jnl_write_inode() Greg Kroah-Hartman
2021-07-19 14:52 ` [PATCH 5.13 220/351] watchdog: keembay: Update WDT pre-timeout during the initialization Greg Kroah-Hartman
2021-07-19 14:52 ` [PATCH 5.13 221/351] watchdog: keembay: Upadate WDT pretimeout for every update in timeout Greg Kroah-Hartman
2021-07-19 14:52 ` [PATCH 5.13 222/351] watchdog: keembay: Update pretimeout to zero in the TH ISR Greg Kroah-Hartman
2021-07-19 14:52 ` [PATCH 5.13 223/351] watchdog: keembay: Clear either the TO or TH interrupt bit Greg Kroah-Hartman
2021-07-19 14:52 ` [PATCH 5.13 224/351] watchdog: keembay: Remove timeout update in the WDT start function Greg Kroah-Hartman
2021-07-19 14:52 ` [PATCH 5.13 225/351] watchdog: keembay: Removed timeout update in the TO ISR Greg Kroah-Hartman
2021-07-19 14:52 ` [PATCH 5.13 226/351] watchdog: aspeed: fix hardware timeout calculation Greg Kroah-Hartman
2021-07-19 14:52 ` [PATCH 5.13 227/351] watchdog: jz4740: Fix return value check in jz4740_wdt_probe() Greg Kroah-Hartman
2021-07-19 14:52 ` [PATCH 5.13 228/351] SUNRPC: prevent port reuse on transports which dont request it Greg Kroah-Hartman
2021-07-19 14:52 ` [PATCH 5.13 229/351] nfs: fix acl memory leak of posix_acl_create() Greg Kroah-Hartman
2021-07-19 14:52 ` [PATCH 5.13 230/351] ubifs: Set/Clear I_LINKABLE under i_lock for whiteout inode Greg Kroah-Hartman
2021-07-19 14:52 ` [PATCH 5.13 231/351] PCI: iproc: Fix multi-MSI base vector number allocation Greg Kroah-Hartman
2021-07-19 14:52 ` [PATCH 5.13 232/351] PCI: iproc: Support multi-MSI only on uniprocessor kernel Greg Kroah-Hartman
2021-07-19 14:52 ` [PATCH 5.13 233/351] f2fs: fix to avoid adding tab before doc section Greg Kroah-Hartman
2021-07-19 14:53 ` [PATCH 5.13 234/351] x86/fpu: Fix copy_xstate_to_kernel() gap handling Greg Kroah-Hartman
2021-07-19 14:53 ` [PATCH 5.13 235/351] x86/fpu: Limit xstate copy size in xstateregs_set() Greg Kroah-Hartman
2021-07-19 14:53 ` [PATCH 5.13 236/351] PCI: intel-gw: Fix INTx enable Greg Kroah-Hartman
2021-07-19 14:53 ` [PATCH 5.13 237/351] pwm: imx1: Dont disable clocks at device remove time Greg Kroah-Hartman
2021-07-19 14:53 ` [PATCH 5.13 238/351] nfs: update has_sec_mnt_opts after cloning lsm options from parent Greg Kroah-Hartman
2021-07-19 14:53 ` [PATCH 5.13 239/351] f2fs: remove false alarm on iget failure during GC Greg Kroah-Hartman
2021-07-19 14:53 ` [PATCH 5.13 240/351] PCI: tegra194: Fix tegra_pcie_ep_raise_msi_irq() ill-defined shift Greg Kroah-Hartman
2021-07-19 14:53 ` [PATCH 5.13 241/351] arch_topology: Avoid use-after-free for scale_freq_data Greg Kroah-Hartman
2021-07-19 14:53 ` [PATCH 5.13 242/351] block: grab a device refcount in disk_uevent Greg Kroah-Hartman
2021-07-19 14:53 ` [PATCH 5.13 243/351] io_uring: get rid of files in exit cancel Greg Kroah-Hartman
2021-07-19 14:53 ` [PATCH 5.13 244/351] io_uring: shuffle rarely used ctx fields Greg Kroah-Hartman
2021-07-19 14:53 ` [PATCH 5.13 245/351] io_uring: dont bounce submit_state cachelines Greg Kroah-Hartman
2021-07-19 14:53 ` [PATCH 5.13 246/351] io_uring: move creds from io-wq work to io_kiocb Greg Kroah-Hartman
2021-07-19 14:53 ` [PATCH 5.13 247/351] io_uring: inline __tctx_task_work() Greg Kroah-Hartman
2021-07-19 14:53 ` [PATCH 5.13 248/351] io_uring: remove not needed PF_EXITING check Greg Kroah-Hartman
2021-07-19 14:53 ` [PATCH 5.13 249/351] vp_vdpa: correct the return value when fail to map notification Greg Kroah-Hartman
2021-07-19 14:53 ` [PATCH 5.13 250/351] vdpa/mlx5: Fix umem sizes assignments on VQ create Greg Kroah-Hartman
2021-07-19 14:53 ` [PATCH 5.13 251/351] vdpa/mlx5: Fix possible failure in umem size calculation Greg Kroah-Hartman
2021-07-19 14:53 ` [PATCH 5.13 252/351] vdp/mlx5: Fix setting the correct dma_device Greg Kroah-Hartman
2021-07-19 14:53 ` [PATCH 5.13 253/351] virtio_net: move tx vq operation under tx queue lock Greg Kroah-Hartman
2021-07-19 14:53 ` [PATCH 5.13 254/351] nvme-tcp: cant set sk_user_data without write_lock Greg Kroah-Hartman
2021-07-19 14:53 ` [PATCH 5.13 255/351] powerpc/bpf: Fix detecting BPF atomic instructions Greg Kroah-Hartman
2021-07-19 14:53 ` [PATCH 5.13 256/351] NFSD: Add nfsd_clid_confirmed tracepoint Greg Kroah-Hartman
2021-07-19 14:53 ` [PATCH 5.13 257/351] nfsd: move fsnotify on client creation outside spinlock Greg Kroah-Hartman
2021-07-19 14:53 ` [PATCH 5.13 258/351] nfsd: Reduce contention for the nfsd_file nf_rwsem Greg Kroah-Hartman
2021-07-19 14:53 ` [PATCH 5.13 259/351] NFSD: Prevent a possible oops in the nfs_dirent() tracepoint Greg Kroah-Hartman
2021-07-19 14:53 ` [PATCH 5.13 260/351] nfsd: fix NULL dereference in nfs3svc_encode_getaclres Greg Kroah-Hartman
2021-07-19 14:53 ` [PATCH 5.13 261/351] ALSA: isa: Fix error return code in snd_cmi8330_probe() Greg Kroah-Hartman
2021-07-19 14:53 ` [PATCH 5.13 262/351] vdpa/mlx5: Clear vq ready indication upon device reset Greg Kroah-Hartman
2021-07-19 14:53 ` Greg Kroah-Hartman [this message]
2021-07-19 14:53 ` [PATCH 5.13 264/351] NFS: Fix fscache read from NFS after cache error Greg Kroah-Hartman
2021-07-19 14:53 ` [PATCH 5.13 265/351] NFSv4/pnfs: Fix the layout barrier update Greg Kroah-Hartman
2021-07-19 14:53 ` [PATCH 5.13 266/351] NFSv4/pnfs: Fix layoutget behaviour after invalidation Greg Kroah-Hartman
2021-07-19 14:53 ` [PATCH 5.13 267/351] NFSv4/pNFS: Dont call _nfs4_pnfs_v3_ds_connect multiple times Greg Kroah-Hartman
2021-07-19 14:53 ` [PATCH 5.13 268/351] hexagon: handle {,SOFT}IRQENTRY_TEXT in linker script Greg Kroah-Hartman
2021-07-19 14:53 ` [PATCH 5.13 269/351] hexagon: use common DISCARDS macro Greg Kroah-Hartman
2021-07-19 14:53 ` [PATCH 5.13 270/351] ARM: dts: gemini-rut1xx: remove duplicate ethernet node Greg Kroah-Hartman
2021-07-19 14:53 ` [PATCH 5.13 271/351] arm64: dts: rockchip: rename LED label for NanoPi R4S Greg Kroah-Hartman
2021-07-19 14:53 ` [PATCH 5.13 272/351] arm64: dts: rockchip: Drop fephy pinctrl from gmac2phy on rk3328 rock-pi-e Greg Kroah-Hartman
2021-07-19 14:53 ` [PATCH 5.13 273/351] reset: RESET_BRCMSTB_RESCAL should depend on ARCH_BRCMSTB Greg Kroah-Hartman
2021-07-19 14:53 ` [PATCH 5.13 274/351] reset: RESET_INTEL_GW should depend on X86 Greg Kroah-Hartman
2021-07-19 14:53 ` [PATCH 5.13 275/351] reset: a10sr: add missing of_match_table reference Greg Kroah-Hartman
2021-07-19 14:53 ` [PATCH 5.13 276/351] ARM: exynos: add missing of_node_put for loop iteration Greg Kroah-Hartman
2021-07-19 14:53 ` [PATCH 5.13 277/351] ARM: dts: exynos: fix PWM LED max brightness on Odroid XU/XU3 Greg Kroah-Hartman
2021-07-19 14:53 ` [PATCH 5.13 278/351] ARM: dts: exynos: fix PWM LED max brightness on Odroid HC1 Greg Kroah-Hartman
2021-07-19 14:53 ` [PATCH 5.13 279/351] ARM: dts: exynos: fix PWM LED max brightness on Odroid XU4 Greg Kroah-Hartman
2021-07-19 14:53 ` [PATCH 5.13 280/351] memory: stm32-fmc2-ebi: add missing of_node_put for loop iteration Greg Kroah-Hartman
2021-07-19 14:53 ` [PATCH 5.13 281/351] memory: atmel-ebi: " Greg Kroah-Hartman
2021-07-19 14:53 ` [PATCH 5.13 282/351] reset: brcmstb: Add missing MODULE_DEVICE_TABLE Greg Kroah-Hartman
2021-07-19 14:53 ` [PATCH 5.13 283/351] arm64: defconfig: Do not override the MTK_PMIC_WRAP symbol Greg Kroah-Hartman
2021-07-19 14:53 ` [PATCH 5.13 284/351] memory: pl353: Fix error return code in pl353_smc_probe() Greg Kroah-Hartman
2021-07-19 14:53 ` [PATCH 5.13 285/351] ARM: dts: sun8i: h3: orangepi-plus: Fix ethernet phy-mode Greg Kroah-Hartman
2021-07-19 14:53 ` [PATCH 5.13 286/351] rtc: bd70528: fix BD71815 watchdog dependency Greg Kroah-Hartman
2021-07-19 14:53 ` [PATCH 5.13 287/351] rtc: fix snprintf() checking in is_rtc_hctosys() Greg Kroah-Hartman
2021-07-19 14:53 ` [PATCH 5.13 288/351] arm64: dts: renesas: v3msk: Fix memory size Greg Kroah-Hartman
2021-07-19 14:53 ` [PATCH 5.13 289/351] ARM: dts: r8a7779, marzen: Fix DU clock names Greg Kroah-Hartman
2021-07-19 14:53 ` [PATCH 5.13 290/351] arm64: dts: qcom: sdm845-oneplus-common: guard rmtfs-mem Greg Kroah-Hartman
2021-07-19 14:53 ` [PATCH 5.13 291/351] arm64: dts: ti: k3-am64-mcu: Fix the compatible string in GPIO DT node Greg Kroah-Hartman
2021-07-19 14:53 ` [PATCH 5.13 292/351] arm64: dts: ti: k3-j7200: Remove "#address-cells" property from GPIO DT nodes Greg Kroah-Hartman
2021-07-19 14:53 ` [PATCH 5.13 293/351] arm64: dts: ti: j7200-main: Enable USB2 PHY RX sensitivity workaround Greg Kroah-Hartman
2021-07-19 14:54 ` [PATCH 5.13 294/351] ARM: dts: qcom: sdx55-t55: Represent secure-regions as 64-bit elements Greg Kroah-Hartman
2021-07-19 14:54 ` [PATCH 5.13 295/351] ARM: dts: qcom: sdx55-telit: " Greg Kroah-Hartman
2021-07-19 14:54 ` [PATCH 5.13 296/351] arm64: dts: renesas: Add missing opp-suspend properties Greg Kroah-Hartman
2021-07-19 14:54 ` [PATCH 5.13 297/351] arm64: dts: renesas: r8a7796[01]: Fix OPP table entry voltages Greg Kroah-Hartman
2021-07-19 14:54 ` [PATCH 5.13 298/351] ARM: dts: stm32: Rework LAN8710Ai PHY reset on DHCOM SoM Greg Kroah-Hartman
2021-07-19 14:54 ` [PATCH 5.13 299/351] arm64: dts: qcom: msm8994-angler: Fix gpio-reserved-ranges 85-88 Greg Kroah-Hartman
2021-07-19 14:54 ` [PATCH 5.13 300/351] arm64: dts: qcom: trogdor: Add no-hpd to DSI bridge node Greg Kroah-Hartman
2021-07-19 14:54 ` [PATCH 5.13 301/351] arm64: dts: qcom: c630: " Greg Kroah-Hartman
2021-07-19 14:54 ` [PATCH 5.13 302/351] arm64: dts: qcom: sc7180: Fix sc7180-qmp-usb3-dp-phy reg sizes Greg Kroah-Hartman
2021-07-19 14:54 ` [PATCH 5.13 303/351] firmware: tegra: Fix error return code in tegra210_bpmp_init() Greg Kroah-Hartman
2021-07-19 14:54 ` [PATCH 5.13 304/351] soc: mtk-pm-domains: do not register smi node as syscon Greg Kroah-Hartman
2021-07-19 14:54 ` [PATCH 5.13 305/351] soc: mtk-pm-domains: Fix the clock prepared issue Greg Kroah-Hartman
2021-07-19 14:54 ` [PATCH 5.13 306/351] firmware: arm_scmi: Reset Rx buffer to max size during async commands Greg Kroah-Hartman
2021-07-19 14:54 ` [PATCH 5.13 307/351] dt-bindings: i2c: at91: fix example for scl-gpios Greg Kroah-Hartman
2021-07-19 14:54 ` [PATCH 5.13 308/351] ARM: dts: BCM5301X: Fixup SPI binding Greg Kroah-Hartman
2021-07-19 14:54 ` [PATCH 5.13 309/351] reset: bail if try_module_get() fails Greg Kroah-Hartman
2021-07-19 14:54 ` [PATCH 5.13 310/351] arm64: dts: renesas: r8a779a0: Drop power-domains property from GIC node Greg Kroah-Hartman
2021-07-19 14:54 ` [PATCH 5.13 311/351] Revert "ARM: dts: bcm283x: increase dwc2s RX FIFO size" Greg Kroah-Hartman
2021-07-19 14:54 ` [PATCH 5.13 312/351] firmware: arm_scmi: Add delayed response status check Greg Kroah-Hartman
2021-07-19 14:54 ` [PATCH 5.13 313/351] arm64: dts: ti: k3-j721e-main: Fix external refclk input to SERDES Greg Kroah-Hartman
2021-07-19 14:54 ` [PATCH 5.13 314/351] arm64: dts: ti: k3-j721e-common-proc-board: Use external clock for SERDES Greg Kroah-Hartman
2021-07-19 14:54 ` [PATCH 5.13 315/351] arm64: dts: ti: k3-j721e-common-proc-board: Re-name "link" name as "phy" Greg Kroah-Hartman
2021-07-19 14:54 ` [PATCH 5.13 316/351] memory: fsl_ifc: fix leak of IO mapping on probe failure Greg Kroah-Hartman
2021-07-19 14:54 ` [PATCH 5.13 317/351] memory: fsl_ifc: fix leak of private memory " Greg Kroah-Hartman
2021-07-19 14:54 ` [PATCH 5.13 318/351] arm64: dts: allwinner: a64-sopine-baseboard: change RGMII mode to TXID Greg Kroah-Hartman
2021-07-19 14:54 ` [PATCH 5.13 319/351] ARM: dts: dra7: Fix duplicate USB4 target module node Greg Kroah-Hartman
2021-07-19 14:54 ` [PATCH 5.13 320/351] ARM: dts: am335x: align ti,pindir-d0-out-d1-in property with dt-shema Greg Kroah-Hartman
2021-07-19 14:54 ` [PATCH 5.13 321/351] ARM: dts: am437x: " Greg Kroah-Hartman
2021-07-19 14:54 ` [PATCH 5.13 322/351] thermal/drivers/sprd: Add missing MODULE_DEVICE_TABLE Greg Kroah-Hartman
2021-07-19 14:54 ` [PATCH 5.13 323/351] ARM: dts: imx6q-dhcom: Fix ethernet reset time properties Greg Kroah-Hartman
2021-07-19 14:54 ` [PATCH 5.13 324/351] ARM: dts: imx6q-dhcom: Fix ethernet plugin detection problems Greg Kroah-Hartman
2021-07-19 14:54 ` [PATCH 5.13 325/351] ARM: dts: imx6q-dhcom: Add gpios pinctrl for i2c bus recovery Greg Kroah-Hartman
2021-07-19 14:54 ` [PATCH 5.13 326/351] arm64: dts: ti: k3-am642-main: fix ports mac properties Greg Kroah-Hartman
2021-07-19 14:54 ` [PATCH 5.13 327/351] arm64: dts: ti: am65: align ti,pindir-d0-out-d1-in property with dt-shema Greg Kroah-Hartman
2021-07-19 14:54 ` [PATCH 5.13 328/351] arm64: dts: ti: k3-am642-evm: " Greg Kroah-Hartman
2021-07-19 14:54 ` [PATCH 5.13 329/351] thermal/drivers/rcar_gen3_thermal: Fix coefficient calculations Greg Kroah-Hartman
2021-07-19 14:54 ` [PATCH 5.13 330/351] kbuild: remove trailing slashes from $(KBUILD_EXTMOD) Greg Kroah-Hartman
2021-07-19 14:54 ` [PATCH 5.13 331/351] firmware: turris-mox-rwtm: fix reply status decoding function Greg Kroah-Hartman
2021-07-19 14:54 ` [PATCH 5.13 332/351] firmware: turris-mox-rwtm: report failures better Greg Kroah-Hartman
2021-07-19 14:54 ` [PATCH 5.13 333/351] firmware: turris-mox-rwtm: fail probing when firmware does not support hwrng Greg Kroah-Hartman
2021-07-19 14:54 ` [PATCH 5.13 334/351] firmware: turris-mox-rwtm: show message about HWRNG registration Greg Kroah-Hartman
2021-07-19 14:54 ` [PATCH 5.13 335/351] 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.13 336/351] 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.13 337/351] scsi: be2iscsi: Fix an error handling path in beiscsi_dev_probe() Greg Kroah-Hartman
2021-07-19 14:54 ` [PATCH 5.13 338/351] sched/uclamp: Ignore max aggregation if rq is idle Greg Kroah-Hartman
2021-07-19 14:54 ` [PATCH 5.13 339/351] jump_label: Fix jump_label_text_reserved() vs __init Greg Kroah-Hartman
2021-07-19 14:54 ` [PATCH 5.13 340/351] static_call: Fix static_call_text_reserved() " Greg Kroah-Hartman
2021-07-19 14:54 ` [PATCH 5.13 341/351] kprobe/static_call: Restore missing static_call_text_reserved() Greg Kroah-Hartman
2021-07-19 14:54 ` [PATCH 5.13 342/351] mips: always link byteswap helpers into decompressor Greg Kroah-Hartman
2021-07-19 14:54 ` [PATCH 5.13 343/351] mips: disable branch profiling in boot/decompress.o Greg Kroah-Hartman
2021-07-19 14:54 ` [PATCH 5.13 344/351] perf report: Fix --task and --stat with pipe input Greg Kroah-Hartman
2021-07-19 14:54 ` [PATCH 5.13 345/351] perf script python: Fix buffer size to report iregs in perf script Greg Kroah-Hartman
2021-07-19 14:54 ` [PATCH 5.13 346/351] s390/irq: remove HAVE_IRQ_EXIT_ON_IRQ_STACK Greg Kroah-Hartman
2021-07-19 14:54 ` [PATCH 5.13 347/351] MIPS: vdso: Invalid GIC access through VDSO Greg Kroah-Hartman
2021-07-19 14:54 ` [PATCH 5.13 348/351] perf tools: Fix pattern matching for same substring in different PMU type Greg Kroah-Hartman
2021-07-19 14:54 ` [PATCH 5.13 349/351] cpufreq: CPPC: Fix potential memleak in cppc_cpufreq_cpu_init Greg Kroah-Hartman
2021-07-19 14:54 ` [PATCH 5.13 350/351] scsi: scsi_dh_alua: Fix signedness bug in alua_rtpg() Greg Kroah-Hartman
2021-07-19 14:54 ` [PATCH 5.13 351/351] misc: alcor_pci: fix inverted branch condition Greg Kroah-Hartman
2021-07-19 19:32 ` [PATCH 5.13 000/351] 5.13.4-rc1 review Fox Chen

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=20210719144953.644611723@linuxfoundation.org \
    --to=gregkh@linuxfoundation.org \
    --cc=david@redhat.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=mst@redhat.com \
    --cc=sashal@kernel.org \
    --cc=stable@vger.kernel.org \
    /path/to/YOUR_REPLY

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

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