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, Daniel Vetter <daniel.vetter@ffwll.ch>,
	Desmond Cheong Zhi Xi <desmondcheongzx@gmail.com>,
	Sasha Levin <sashal@kernel.org>
Subject: [PATCH 5.10 128/306] drm: serialize drm_file.master with a new spinlock
Date: Thu, 16 Sep 2021 17:57:53 +0200	[thread overview]
Message-ID: <20210916155758.428803878@linuxfoundation.org> (raw)
In-Reply-To: <20210916155753.903069397@linuxfoundation.org>

From: Desmond Cheong Zhi Xi <desmondcheongzx@gmail.com>

[ Upstream commit 0b0860a3cf5eccf183760b1177a1dcdb821b0b66 ]

Currently, drm_file.master pointers should be protected by
drm_device.master_mutex when being dereferenced. This is because
drm_file.master is not invariant for the lifetime of drm_file. If
drm_file is not the creator of master, then drm_file.is_master is
false, and a call to drm_setmaster_ioctl will invoke
drm_new_set_master, which then allocates a new master for drm_file and
puts the old master.

Thus, without holding drm_device.master_mutex, the old value of
drm_file.master could be freed while it is being used by another
concurrent process.

However, it is not always possible to lock drm_device.master_mutex to
dereference drm_file.master. Through the fbdev emulation code, this
might occur in a deep nest of other locks. But drm_device.master_mutex
is also the outermost lock in the nesting hierarchy, so this leads to
potential deadlocks.

To address this, we introduce a new spin lock at the bottom of the
lock hierarchy that only serializes drm_file.master. With this change,
the value of drm_file.master changes only when both
drm_device.master_mutex and drm_file.master_lookup_lock are
held. Hence, any process holding either of those locks can ensure that
the value of drm_file.master will not change concurrently.

Since no lock depends on the new drm_file.master_lookup_lock, when
drm_file.master is dereferenced, but drm_device.master_mutex cannot be
held, we can safely protect the master pointer with
drm_file.master_lookup_lock.

Reported-by: Daniel Vetter <daniel.vetter@ffwll.ch>
Signed-off-by: Desmond Cheong Zhi Xi <desmondcheongzx@gmail.com>
Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
Link: https://patchwork.freedesktop.org/patch/msgid/20210712043508.11584-5-desmondcheongzx@gmail.com
Signed-off-by: Sasha Levin <sashal@kernel.org>
---
 drivers/gpu/drm/drm_auth.c | 17 +++++++++++------
 drivers/gpu/drm/drm_file.c |  1 +
 include/drm/drm_file.h     | 12 +++++++++---
 3 files changed, 21 insertions(+), 9 deletions(-)

diff --git a/drivers/gpu/drm/drm_auth.c b/drivers/gpu/drm/drm_auth.c
index 232abbba3686..0024ad93d24b 100644
--- a/drivers/gpu/drm/drm_auth.c
+++ b/drivers/gpu/drm/drm_auth.c
@@ -135,16 +135,18 @@ static void drm_set_master(struct drm_device *dev, struct drm_file *fpriv,
 static int drm_new_set_master(struct drm_device *dev, struct drm_file *fpriv)
 {
 	struct drm_master *old_master;
+	struct drm_master *new_master;
 
 	lockdep_assert_held_once(&dev->master_mutex);
 
 	WARN_ON(fpriv->is_master);
 	old_master = fpriv->master;
-	fpriv->master = drm_master_create(dev);
-	if (!fpriv->master) {
-		fpriv->master = old_master;
+	new_master = drm_master_create(dev);
+	if (!new_master)
 		return -ENOMEM;
-	}
+	spin_lock(&fpriv->master_lookup_lock);
+	fpriv->master = new_master;
+	spin_unlock(&fpriv->master_lookup_lock);
 
 	fpriv->is_master = 1;
 	fpriv->authenticated = 1;
@@ -302,10 +304,13 @@ int drm_master_open(struct drm_file *file_priv)
 	/* if there is no current master make this fd it, but do not create
 	 * any master object for render clients */
 	mutex_lock(&dev->master_mutex);
-	if (!dev->master)
+	if (!dev->master) {
 		ret = drm_new_set_master(dev, file_priv);
-	else
+	} else {
+		spin_lock(&file_priv->master_lookup_lock);
 		file_priv->master = drm_master_get(dev->master);
+		spin_unlock(&file_priv->master_lookup_lock);
+	}
 	mutex_unlock(&dev->master_mutex);
 
 	return ret;
diff --git a/drivers/gpu/drm/drm_file.c b/drivers/gpu/drm/drm_file.c
index 0ac4566ae3f4..537e7de8e9c3 100644
--- a/drivers/gpu/drm/drm_file.c
+++ b/drivers/gpu/drm/drm_file.c
@@ -177,6 +177,7 @@ struct drm_file *drm_file_alloc(struct drm_minor *minor)
 	init_waitqueue_head(&file->event_wait);
 	file->event_space = 4096; /* set aside 4k for event buffer */
 
+	spin_lock_init(&file->master_lookup_lock);
 	mutex_init(&file->event_read_lock);
 
 	if (drm_core_check_feature(dev, DRIVER_GEM))
diff --git a/include/drm/drm_file.h b/include/drm/drm_file.h
index 716990bace10..ca659ece3ee8 100644
--- a/include/drm/drm_file.h
+++ b/include/drm/drm_file.h
@@ -226,15 +226,21 @@ struct drm_file {
 	/**
 	 * @master:
 	 *
-	 * Master this node is currently associated with. Only relevant if
-	 * drm_is_primary_client() returns true. Note that this only
-	 * matches &drm_device.master if the master is the currently active one.
+	 * Master this node is currently associated with. Protected by struct
+	 * &drm_device.master_mutex, and serialized by @master_lookup_lock.
+	 *
+	 * Only relevant if drm_is_primary_client() returns true. Note that
+	 * this only matches &drm_device.master if the master is the currently
+	 * active one.
 	 *
 	 * See also @authentication and @is_master and the :ref:`section on
 	 * primary nodes and authentication <drm_primary_node>`.
 	 */
 	struct drm_master *master;
 
+	/** @master_lock: Serializes @master. */
+	spinlock_t master_lookup_lock;
+
 	/** @pid: Process that opened this file. */
 	struct pid *pid;
 
-- 
2.30.2




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

Thread overview: 323+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-09-16 15:55 [PATCH 5.10 000/306] 5.10.67-rc1 review Greg Kroah-Hartman
2021-09-16 15:55 ` [PATCH 5.10 001/306] rtc: tps65910: Correct driver module alias Greg Kroah-Hartman
2021-09-16 15:55 ` [PATCH 5.10 002/306] io_uring: limit fixed table size by RLIMIT_NOFILE Greg Kroah-Hartman
2021-09-19 19:04   ` Pavel Machek
2021-09-16 15:55 ` [PATCH 5.10 003/306] io_uring: place fixed tables under memcg limits Greg Kroah-Hartman
2021-09-16 15:55 ` [PATCH 5.10 004/306] io_uring: add ->splice_fd_in checks Greg Kroah-Hartman
2021-09-16 15:55 ` [PATCH 5.10 005/306] io_uring: fail links of cancelled timeouts Greg Kroah-Hartman
2021-09-16 15:55 ` [PATCH 5.10 006/306] io-wq: fix wakeup race when adding new work Greg Kroah-Hartman
2021-09-16 15:55 ` [PATCH 5.10 007/306] btrfs: wake up async_delalloc_pages waiters after submit Greg Kroah-Hartman
2021-09-16 15:55 ` [PATCH 5.10 008/306] btrfs: reset replace target device to allocation state on close Greg Kroah-Hartman
2021-09-16 15:55 ` [PATCH 5.10 009/306] blk-zoned: allow zone management send operations without CAP_SYS_ADMIN Greg Kroah-Hartman
2021-09-16 15:55 ` [PATCH 5.10 010/306] blk-zoned: allow BLKREPORTZONE " Greg Kroah-Hartman
2021-09-16 15:55 ` [PATCH 5.10 011/306] PCI/MSI: Skip masking MSI-X on Xen PV Greg Kroah-Hartman
2021-09-16 15:55 ` [PATCH 5.10 012/306] powerpc/perf/hv-gpci: Fix counter value parsing Greg Kroah-Hartman
2021-09-16 15:55 ` [PATCH 5.10 013/306] xen: fix setting of max_pfn in shared_info Greg Kroah-Hartman
2021-09-16 15:55 ` [PATCH 5.10 014/306] 9p/xen: Fix end of loop tests for list_for_each_entry Greg Kroah-Hartman
2021-09-16 15:56 ` [PATCH 5.10 015/306] ceph: fix dereference of null pointer cf Greg Kroah-Hartman
2021-09-16 15:56 ` [PATCH 5.10 016/306] selftests/ftrace: Fix requirement check of README file Greg Kroah-Hartman
2021-09-16 15:56 ` [PATCH 5.10 017/306] tools/thermal/tmon: Add cross compiling support Greg Kroah-Hartman
2021-09-16 15:56 ` [PATCH 5.10 018/306] clk: socfpga: agilex: fix the parents of the psi_ref_clk Greg Kroah-Hartman
2021-09-16 15:56 ` [PATCH 5.10 019/306] clk: socfpga: agilex: fix up s2f_user0_clk representation Greg Kroah-Hartman
2021-09-16 15:56 ` [PATCH 5.10 020/306] clk: socfpga: agilex: add the bypass register for s2f_usr0 clock Greg Kroah-Hartman
2021-09-16 15:56 ` [PATCH 5.10 021/306] pinctrl: stmfx: Fix hazardous u8[] to unsigned long cast Greg Kroah-Hartman
2021-09-16 15:56 ` [PATCH 5.10 022/306] pinctrl: ingenic: Fix incorrect pull up/down info Greg Kroah-Hartman
2021-09-16 15:56 ` [PATCH 5.10 023/306] soc: qcom: aoss: Fix the out of bound usage of cooling_devs Greg Kroah-Hartman
2021-09-16 15:56 ` [PATCH 5.10 024/306] soc: aspeed: lpc-ctrl: Fix boundary check for mmap Greg Kroah-Hartman
2021-09-16 15:56 ` [PATCH 5.10 025/306] soc: aspeed: p2a-ctrl: " Greg Kroah-Hartman
2021-09-16 15:56 ` [PATCH 5.10 026/306] arm64: mm: Fix TLBI vs ASID rollover Greg Kroah-Hartman
2021-09-16 15:56 ` [PATCH 5.10 027/306] arm64: head: avoid over-mapping in map_memory Greg Kroah-Hartman
2021-09-16 15:56 ` [PATCH 5.10 028/306] iio: ltc2983: fix device probe Greg Kroah-Hartman
2021-09-16 15:56 ` [PATCH 5.10 029/306] wcn36xx: Ensure finish scan is not requested before start scan Greg Kroah-Hartman
2021-09-16 15:56 ` [PATCH 5.10 030/306] crypto: public_key: fix overflow during implicit conversion Greg Kroah-Hartman
2021-09-16 15:56 ` [PATCH 5.10 031/306] block: bfq: fix bfq_set_next_ioprio_data() Greg Kroah-Hartman
2021-09-16 15:56 ` [PATCH 5.10 032/306] power: supply: max17042: handle fails of reading status register Greg Kroah-Hartman
2021-09-16 15:56 ` [PATCH 5.10 033/306] cpufreq: schedutil: Use kobject release() method to free sugov_tunables Greg Kroah-Hartman
2021-09-16 16:12   ` Rafael J. Wysocki
2021-09-16 17:20     ` Greg Kroah-Hartman
2021-09-19 18:36       ` Alexey Khoroshilov
2021-09-20  5:00         ` Greg Kroah-Hartman
2021-09-16 15:56 ` [PATCH 5.10 034/306] dm crypt: Avoid percpu_counter spinlock contention in crypt_page_alloc() Greg Kroah-Hartman
2021-09-16 15:56 ` [PATCH 5.10 035/306] crypto: ccp - shutdown SEV firmware on kexec Greg Kroah-Hartman
2021-09-16 15:56 ` [PATCH 5.10 036/306] VMCI: fix NULL pointer dereference when unmapping queue pair Greg Kroah-Hartman
2021-09-16 15:56 ` [PATCH 5.10 037/306] media: uvc: dont do DMA on stack Greg Kroah-Hartman
2021-09-16 15:56 ` [PATCH 5.10 038/306] media: rc-loopback: return number of emitters rather than error Greg Kroah-Hartman
2021-09-16 15:56 ` [PATCH 5.10 039/306] s390/qdio: fix roll-back after timeout on ESTABLISH ccw Greg Kroah-Hartman
2021-09-16 15:56 ` [PATCH 5.10 040/306] s390/qdio: cancel the ESTABLISH ccw after timeout Greg Kroah-Hartman
2021-09-16 15:56 ` [PATCH 5.10 041/306] Revert "dmaengine: imx-sdma: refine to load context only once" Greg Kroah-Hartman
2021-09-16 15:56 ` [PATCH 5.10 042/306] dmaengine: imx-sdma: remove duplicated sdma_load_context Greg Kroah-Hartman
2021-09-16 15:56 ` [PATCH 5.10 043/306] libata: add ATA_HORKAGE_NO_NCQ_TRIM for Samsung 860 and 870 SSDs Greg Kroah-Hartman
2021-09-16 15:56 ` [PATCH 5.10 044/306] ARM: 9105/1: atags_to_fdt: dont warn about stack size Greg Kroah-Hartman
2021-09-16 15:56 ` [PATCH 5.10 045/306] f2fs: fix to do sanity check for sb/cp fields correctly Greg Kroah-Hartman
2021-09-19 19:06   ` Pavel Machek
2021-09-16 15:56 ` [PATCH 5.10 046/306] PCI/portdrv: Enable Bandwidth Notification only if port supports it Greg Kroah-Hartman
2021-09-16 15:56 ` [PATCH 5.10 047/306] PCI: Restrict ASMedia ASM1062 SATA Max Payload Size Supported Greg Kroah-Hartman
2021-09-16 15:56 ` [PATCH 5.10 048/306] PCI: Return ~0 data on pciconfig_read() CAP_SYS_ADMIN failure Greg Kroah-Hartman
2021-09-16 15:56 ` [PATCH 5.10 049/306] PCI: xilinx-nwl: Enable the clock through CCF Greg Kroah-Hartman
2021-09-16 15:56 ` [PATCH 5.10 050/306] PCI: aardvark: Configure PCIe resources from ranges DT property Greg Kroah-Hartman
2021-09-16 15:56 ` [PATCH 5.10 051/306] PCI: Export pci_pio_to_address() for module use Greg Kroah-Hartman
2021-09-16 15:56 ` [PATCH 5.10 052/306] PCI: aardvark: Fix checking for PIO status Greg Kroah-Hartman
2021-09-16 15:56 ` [PATCH 5.10 053/306] PCI: aardvark: Fix masking and unmasking legacy INTx interrupts Greg Kroah-Hartman
2021-09-16 15:56 ` [PATCH 5.10 054/306] HID: input: do not report stylus battery state as "full" Greg Kroah-Hartman
2021-09-16 15:56 ` [PATCH 5.10 055/306] f2fs: quota: fix potential deadlock Greg Kroah-Hartman
2021-09-16 15:56 ` [PATCH 5.10 056/306] pinctrl: remove empty lines in pinctrl subsystem Greg Kroah-Hartman
2021-09-16 15:56 ` [PATCH 5.10 057/306] pinctrl: armada-37xx: Correct PWM pins definitions Greg Kroah-Hartman
2021-09-16 15:56 ` [PATCH 5.10 058/306] scsi: bsg: Remove support for SCSI_IOCTL_SEND_COMMAND Greg Kroah-Hartman
2021-09-19 19:10   ` Pavel Machek
2021-09-16 15:56 ` [PATCH 5.10 059/306] clk: rockchip: drop GRF dependency for rk3328/rk3036 pll types Greg Kroah-Hartman
2021-09-16 15:56 ` [PATCH 5.10 060/306] IB/hfi1: Adjust pkey entry in index 0 Greg Kroah-Hartman
2021-09-16 15:56 ` [PATCH 5.10 061/306] RDMA/iwcm: Release resources if iw_cm module initialization fails Greg Kroah-Hartman
2021-09-16 15:56 ` [PATCH 5.10 062/306] docs: Fix infiniband uverbs minor number Greg Kroah-Hartman
2021-09-16 15:56 ` [PATCH 5.10 063/306] scsi: BusLogic: Use %X for u32 sized integer rather than %lX Greg Kroah-Hartman
2021-09-16 15:56 ` [PATCH 5.10 064/306] pinctrl: samsung: Fix pinctrl bank pin count Greg Kroah-Hartman
2021-09-16 15:56 ` [PATCH 5.10 065/306] vfio: Use config not menuconfig for VFIO_NOIOMMU Greg Kroah-Hartman
2021-09-16 15:56 ` [PATCH 5.10 066/306] scsi: ufs: Fix memory corruption by ufshcd_read_desc_param() Greg Kroah-Hartman
2021-09-16 15:56 ` [PATCH 5.10 067/306] cpuidle: pseries: Fixup CEDE0 latency only for POWER10 onwards Greg Kroah-Hartman
2021-09-16 15:56 ` [PATCH 5.10 068/306] powerpc/stacktrace: Include linux/delay.h Greg Kroah-Hartman
2021-09-16 15:56 ` [PATCH 5.10 069/306] RDMA/efa: Remove double QP type assignment Greg Kroah-Hartman
2021-09-16 15:56 ` [PATCH 5.10 070/306] RDMA/mlx5: Delete not-available udata check Greg Kroah-Hartman
2021-09-16 15:56 ` [PATCH 5.10 071/306] cpuidle: pseries: Mark pseries_idle_proble() as __init Greg Kroah-Hartman
2021-09-16 15:56 ` [PATCH 5.10 072/306] f2fs: reduce the scope of setting fsck tag when de->name_len is zero Greg Kroah-Hartman
2021-09-16 15:56 ` [PATCH 5.10 073/306] openrisc: dont printk() unconditionally Greg Kroah-Hartman
2021-09-16 15:56 ` [PATCH 5.10 074/306] dma-debug: fix debugfs initialization order Greg Kroah-Hartman
2021-09-16 15:57 ` [PATCH 5.10 075/306] NFSv4/pNFS: Fix a layoutget livelock loop Greg Kroah-Hartman
2021-09-16 15:57 ` [PATCH 5.10 076/306] NFSv4/pNFS: Always allow update of a zero valued layout barrier Greg Kroah-Hartman
2021-09-16 15:57 ` [PATCH 5.10 077/306] NFSv4/pnfs: The layout barrier indicate a minimal value for the seqid Greg Kroah-Hartman
2021-09-16 15:57 ` [PATCH 5.10 078/306] SUNRPC: Fix potential memory corruption Greg Kroah-Hartman
2021-09-16 15:57 ` [PATCH 5.10 079/306] SUNRPC/xprtrdma: Fix reconnection locking Greg Kroah-Hartman
2021-09-16 15:57 ` [PATCH 5.10 080/306] SUNRPC query transports source port Greg Kroah-Hartman
2021-09-19 19:15   ` Pavel Machek
2021-09-16 15:57 ` [PATCH 5.10 081/306] sunrpc: Fix return value of get_srcport() Greg Kroah-Hartman
2021-09-16 15:57 ` [PATCH 5.10 082/306] scsi: fdomain: Fix error return code in fdomain_probe() Greg Kroah-Hartman
2021-09-16 15:57 ` [PATCH 5.10 083/306] pinctrl: single: Fix error return code in pcs_parse_bits_in_pinctrl_entry() Greg Kroah-Hartman
2021-09-16 15:57 ` [PATCH 5.10 084/306] powerpc/numa: Consider the max NUMA node for migratable LPAR Greg Kroah-Hartman
2021-09-16 15:57 ` [PATCH 5.10 085/306] scsi: smartpqi: Fix an error code in pqi_get_raid_map() Greg Kroah-Hartman
2021-09-16 15:57 ` [PATCH 5.10 086/306] scsi: qedi: Fix error codes in qedi_alloc_global_queues() Greg Kroah-Hartman
2021-09-16 15:57 ` [PATCH 5.10 087/306] scsi: qedf: Fix error codes in qedf_alloc_global_queues() Greg Kroah-Hartman
2021-09-16 15:57 ` [PATCH 5.10 088/306] powerpc/config: Renable MTD_PHYSMAP_OF Greg Kroah-Hartman
2021-09-16 15:57 ` [PATCH 5.10 089/306] iommu/vt-d: Update the virtual command related registers Greg Kroah-Hartman
2021-09-16 15:57 ` [PATCH 5.10 090/306] HID: i2c-hid: Fix Elan touchpad regression Greg Kroah-Hartman
2021-09-16 15:57 ` [PATCH 5.10 091/306] clk: imx8m: fix clock tree update of TF-A managed clocks Greg Kroah-Hartman
2021-09-16 15:57 ` [PATCH 5.10 092/306] KVM: PPC: Book3S HV: Fix copy_tofrom_guest routines Greg Kroah-Hartman
2021-09-16 15:57 ` [PATCH 5.10 093/306] scsi: ufs: ufs-exynos: Fix static checker warning Greg Kroah-Hartman
2021-09-16 15:57 ` [PATCH 5.10 094/306] KVM: PPC: Book3S HV Nested: Reflect guest PMU in-use to L0 when guest SPRs are live Greg Kroah-Hartman
2021-09-16 15:57 ` [PATCH 5.10 095/306] platform/x86: dell-smbios-wmi: Add missing kfree in error-exit from run_smbios_call Greg Kroah-Hartman
2021-09-16 15:57 ` [PATCH 5.10 096/306] powerpc/smp: Update cpu_core_map on all PowerPc systems Greg Kroah-Hartman
2021-09-16 15:57 ` [PATCH 5.10 097/306] RDMA/hns: Fix QPs resp incomplete assignment Greg Kroah-Hartman
2021-09-16 15:57 ` [PATCH 5.10 098/306] fscache: Fix cookie key hashing Greg Kroah-Hartman
2021-09-16 15:57 ` [PATCH 5.10 099/306] clk: at91: clk-generated: Limit the requested rate to our range Greg Kroah-Hartman
2021-09-16 15:57 ` [PATCH 5.10 100/306] KVM: PPC: Fix clearing never mapped TCEs in realmode Greg Kroah-Hartman
2021-09-16 15:57 ` [PATCH 5.10 101/306] soc: mediatek: cmdq: add address shift in jump Greg Kroah-Hartman
2021-09-16 15:57 ` [PATCH 5.10 102/306] f2fs: fix to account missing .skipped_gc_rwsem Greg Kroah-Hartman
2021-09-16 15:57 ` [PATCH 5.10 103/306] f2fs: fix unexpected ENOENT comes from f2fs_map_blocks() Greg Kroah-Hartman
2021-09-16 15:57 ` [PATCH 5.10 104/306] f2fs: fix to unmap pages from userspace process in punch_hole() Greg Kroah-Hartman
2021-09-16 15:57 ` [PATCH 5.10 105/306] f2fs: deallocate compressed pages when error happens Greg Kroah-Hartman
2021-09-16 15:57 ` [PATCH 5.10 106/306] f2fs: should put a page beyond EOF when preparing a write Greg Kroah-Hartman
2021-09-16 15:57 ` [PATCH 5.10 107/306] MIPS: Malta: fix alignment of the devicetree buffer Greg Kroah-Hartman
2021-09-16 15:57 ` [PATCH 5.10 108/306] kbuild: Fix no symbols warning when CONFIG_TRIM_UNUSD_KSYMS=y Greg Kroah-Hartman
2021-09-16 15:57 ` [PATCH 5.10 109/306] userfaultfd: prevent concurrent API initialization Greg Kroah-Hartman
2021-09-16 15:57 ` [PATCH 5.10 110/306] drm/vc4: hdmi: Set HD_CTL_WHOLSMP and HD_CTL_CHALIGN_SET Greg Kroah-Hartman
2021-09-16 15:57 ` [PATCH 5.10 111/306] drm/amdgpu: Fix amdgpu_ras_eeprom_init() Greg Kroah-Hartman
2021-09-16 15:57 ` [PATCH 5.10 112/306] ASoC: atmel: ATMEL drivers dont need HAS_DMA Greg Kroah-Hartman
2021-09-16 15:57 ` [PATCH 5.10 113/306] media: dib8000: rewrite the init prbs logic Greg Kroah-Hartman
2021-09-16 15:57 ` [PATCH 5.10 114/306] libbpf: Fix reuse of pinned map on older kernel Greg Kroah-Hartman
2021-09-16 15:57 ` [PATCH 5.10 115/306] x86/hyperv: fix for unwanted manipulation of sched_clock when TSC marked unstable Greg Kroah-Hartman
2021-09-16 15:57 ` [PATCH 5.10 116/306] crypto: mxs-dcp - Use sg_mapping_iter to copy data Greg Kroah-Hartman
2021-09-16 15:57 ` [PATCH 5.10 117/306] PCI: Use pci_update_current_state() in pci_enable_device_flags() Greg Kroah-Hartman
2021-09-16 15:57 ` [PATCH 5.10 118/306] tipc: keep the skb in rcv queue until the whole data is read Greg Kroah-Hartman
2021-09-16 15:57 ` [PATCH 5.10 119/306] net: phy: Fix data type in DP83822 dp8382x_disable_wol() Greg Kroah-Hartman
2021-09-16 15:57 ` [PATCH 5.10 120/306] iio: dac: ad5624r: Fix incorrect handling of an optional regulator Greg Kroah-Hartman
2021-09-16 15:57 ` [PATCH 5.10 121/306] iavf: do not override the adapter state in the watchdog task Greg Kroah-Hartman
2021-09-16 15:57 ` [PATCH 5.10 122/306] iavf: fix locking of critical sections Greg Kroah-Hartman
2021-09-16 15:57 ` [PATCH 5.10 123/306] ARM: dts: qcom: apq8064: correct clock names Greg Kroah-Hartman
2021-09-16 15:57 ` [PATCH 5.10 124/306] video: fbdev: kyro: fix a DoS bug by restricting user input Greg Kroah-Hartman
2021-09-16 15:57 ` [PATCH 5.10 125/306] netlink: Deal with ESRCH error in nlmsg_notify() Greg Kroah-Hartman
2021-09-16 15:57 ` [PATCH 5.10 126/306] Smack: Fix wrong semantics in smk_access_entry() Greg Kroah-Hartman
2021-09-16 15:57 ` [PATCH 5.10 127/306] drm: avoid blocking in drm_clients_infos rcu section Greg Kroah-Hartman
2021-09-16 15:57 ` Greg Kroah-Hartman [this message]
2021-09-16 15:57 ` [PATCH 5.10 129/306] drm: protect drm_master pointers in drm_lease.c Greg Kroah-Hartman
2021-09-16 15:57 ` [PATCH 5.10 130/306] rcu: Fix macro name CONFIG_TASKS_RCU_TRACE Greg Kroah-Hartman
2021-09-16 15:57 ` [PATCH 5.10 131/306] igc: Check if num of q_vectors is smaller than max before array access Greg Kroah-Hartman
2021-09-16 15:57 ` [PATCH 5.10 132/306] usb: host: fotg210: fix the endpoints transactional opportunities calculation Greg Kroah-Hartman
2021-09-16 15:57 ` [PATCH 5.10 133/306] usb: host: fotg210: fix the actual_length of an iso packet Greg Kroah-Hartman
2021-09-16 15:57 ` [PATCH 5.10 134/306] usb: gadget: u_ether: fix a potential null pointer dereference Greg Kroah-Hartman
2021-09-16 15:58 ` [PATCH 5.10 135/306] USB: EHCI: ehci-mv: improve error handling in mv_ehci_enable() Greg Kroah-Hartman
2021-09-16 15:58 ` [PATCH 5.10 136/306] usb: gadget: composite: Allow bMaxPower=0 if self-powered Greg Kroah-Hartman
2021-09-16 15:58 ` [PATCH 5.10 137/306] staging: board: Fix uninitialized spinlock when attaching genpd Greg Kroah-Hartman
2021-09-16 15:58 ` [PATCH 5.10 138/306] tty: serial: jsm: hold port lock when reporting modem line changes Greg Kroah-Hartman
2021-09-16 15:58 ` [PATCH 5.10 139/306] bus: fsl-mc: fix mmio base address for child DPRCs Greg Kroah-Hartman
2021-09-16 15:58 ` [PATCH 5.10 140/306] selftests: firmware: Fix ignored return val of asprintf() warn Greg Kroah-Hartman
2021-09-16 15:58 ` [PATCH 5.10 141/306] drm/amd/display: Fix timer_per_pixel unit error Greg Kroah-Hartman
2021-09-16 15:58 ` [PATCH 5.10 142/306] media: hantro: vp8: Move noisy WARN_ON to vpu_debug Greg Kroah-Hartman
2021-09-16 15:58 ` [PATCH 5.10 143/306] media: platform: stm32: unprepare clocks at handling errors in probe Greg Kroah-Hartman
2021-09-16 15:58 ` [PATCH 5.10 144/306] media: atomisp: Fix runtime PM imbalance in atomisp_pci_probe Greg Kroah-Hartman
2021-09-16 15:58 ` [PATCH 5.10 145/306] media: atomisp: pci: fix error return code in atomisp_pci_probe() Greg Kroah-Hartman
2021-09-16 15:58 ` [PATCH 5.10 146/306] nfp: fix return statement in nfp_net_parse_meta() Greg Kroah-Hartman
2021-09-16 15:58 ` [PATCH 5.10 147/306] ethtool: improve compat ioctl handling Greg Kroah-Hartman
2021-09-16 15:58 ` [PATCH 5.10 148/306] drm/amdgpu: Fix a printing message Greg Kroah-Hartman
2021-09-16 15:58 ` [PATCH 5.10 149/306] drm/amd/amdgpu: Update debugfs link_settings output link_rate field in hex Greg Kroah-Hartman
2021-09-16 15:58 ` [PATCH 5.10 150/306] bpf/tests: Fix copy-and-paste error in double word test Greg Kroah-Hartman
2021-09-16 15:58 ` [PATCH 5.10 151/306] bpf/tests: Do not PASS tests without actually testing the result Greg Kroah-Hartman
2021-09-16 15:58 ` [PATCH 5.10 152/306] drm/bridge: nwl-dsi: Avoid potential multiplication overflow on 32-bit Greg Kroah-Hartman
2021-09-16 15:58 ` [PATCH 5.10 153/306] arm64: dts: allwinner: h6: tanix-tx6: Fix regulator node names Greg Kroah-Hartman
2021-09-16 15:58 ` [PATCH 5.10 154/306] video: fbdev: asiliantfb: Error out if pixclock equals zero Greg Kroah-Hartman
2021-09-16 15:58 ` [PATCH 5.10 155/306] video: fbdev: kyro: " Greg Kroah-Hartman
2021-09-16 15:58 ` [PATCH 5.10 156/306] video: fbdev: riva: " Greg Kroah-Hartman
2021-09-16 15:58 ` [PATCH 5.10 157/306] ipv4: ip_output.c: Fix out-of-bounds warning in ip_copy_addrs() Greg Kroah-Hartman
2021-09-16 15:58 ` [PATCH 5.10 158/306] flow_dissector: Fix out-of-bounds warnings Greg Kroah-Hartman
2021-09-16 15:58 ` [PATCH 5.10 159/306] s390/jump_label: print real address in a case of a jump label bug Greg Kroah-Hartman
2021-09-16 15:58 ` [PATCH 5.10 160/306] s390: make PCI mio support a machine flag Greg Kroah-Hartman
2021-09-16 15:58 ` [PATCH 5.10 161/306] serial: 8250: Define RX trigger levels for OxSemi 950 devices Greg Kroah-Hartman
2021-09-16 15:58 ` [PATCH 5.10 162/306] xtensa: ISS: dont panic in rs_init Greg Kroah-Hartman
2021-09-16 15:58 ` [PATCH 5.10 163/306] hvsi: dont panic on tty_register_driver failure Greg Kroah-Hartman
2021-09-16 15:58 ` [PATCH 5.10 164/306] serial: 8250_pci: make setup_port() parameters explicitly unsigned Greg Kroah-Hartman
2021-09-16 15:58 ` [PATCH 5.10 165/306] staging: ks7010: Fix the initialization of the sleep_status structure Greg Kroah-Hartman
2021-09-16 15:58 ` [PATCH 5.10 166/306] samples: bpf: Fix tracex7 error raised on the missing argument Greg Kroah-Hartman
2021-09-16 15:58 ` [PATCH 5.10 167/306] libbpf: Fix race when pinning maps in parallel Greg Kroah-Hartman
2021-09-16 15:58 ` [PATCH 5.10 168/306] ata: sata_dwc_460ex: No need to call phy_exit() befre phy_init() Greg Kroah-Hartman
2021-09-16 15:58 ` [PATCH 5.10 169/306] Bluetooth: skip invalid hci_sync_conn_complete_evt Greg Kroah-Hartman
2021-09-16 15:58 ` [PATCH 5.10 170/306] workqueue: Fix possible memory leaks in wq_numa_init() Greg Kroah-Hartman
2021-09-16 15:58 ` [PATCH 5.10 171/306] ARM: dts: stm32: Set {bitclock,frame}-master phandles on DHCOM SoM Greg Kroah-Hartman
2021-09-16 15:58 ` [PATCH 5.10 172/306] ARM: dts: stm32: Set {bitclock,frame}-master phandles on ST DKx Greg Kroah-Hartman
2021-09-16 15:58 ` [PATCH 5.10 173/306] ARM: dts: stm32: Update AV96 adv7513 node per dtbs_check Greg Kroah-Hartman
2021-09-16 15:58 ` [PATCH 5.10 174/306] bonding: 3ad: fix the concurrency between __bond_release_one() and bond_3ad_state_machine_handler() Greg Kroah-Hartman
2021-09-16 15:58 ` [PATCH 5.10 175/306] ARM: dts: at91: use the right property for shutdown controller Greg Kroah-Hartman
2021-09-16 15:58 ` [PATCH 5.10 176/306] arm64: tegra: Fix Tegra194 PCIe EP compatible string Greg Kroah-Hartman
2021-09-16 15:58 ` [PATCH 5.10 177/306] ASoC: Intel: bytcr_rt5640: Move "Platform Clock" routes to the maps for the matching in-/output Greg Kroah-Hartman
2021-09-16 15:58 ` [PATCH 5.10 178/306] ASoC: Intel: update sof_pcm512x quirks Greg Kroah-Hartman
2021-09-16 15:58 ` [PATCH 5.10 179/306] media: imx258: Rectify mismatch of VTS value Greg Kroah-Hartman
2021-09-16 15:58 ` [PATCH 5.10 180/306] media: imx258: Limit the max analogue gain to 480 Greg Kroah-Hartman
2021-09-16 15:58 ` [PATCH 5.10 181/306] media: v4l2-dv-timings.c: fix wrong condition in two for-loops Greg Kroah-Hartman
2021-09-16 15:58 ` [PATCH 5.10 182/306] media: TDA1997x: fix tda1997x_query_dv_timings() return value Greg Kroah-Hartman
2021-09-16 15:58 ` [PATCH 5.10 183/306] media: tegra-cec: Handle errors of clk_prepare_enable() Greg Kroah-Hartman
2021-09-16 15:58 ` [PATCH 5.10 184/306] gfs2: Fix glock recursion in freeze_go_xmote_bh Greg Kroah-Hartman
2021-09-16 15:58 ` [PATCH 5.10 185/306] arm64: dts: qcom: sdm630: Rewrite memory map Greg Kroah-Hartman
2021-09-16 15:58 ` [PATCH 5.10 186/306] arm64: dts: qcom: sdm630: Fix TLMM node and pinctrl configuration Greg Kroah-Hartman
2021-09-16 15:58 ` [PATCH 5.10 187/306] serial: 8250_omap: Handle optional overrun-throttle-ms property Greg Kroah-Hartman
2021-09-16 15:58 ` [PATCH 5.10 188/306] ARM: dts: imx53-ppd: Fix ACHC entry Greg Kroah-Hartman
2021-09-16 15:58 ` [PATCH 5.10 189/306] arm64: dts: qcom: ipq8074: fix pci node reg property Greg Kroah-Hartman
2021-09-16 15:58 ` [PATCH 5.10 190/306] arm64: dts: qcom: sdm660: use reg value for memory node Greg Kroah-Hartman
2021-09-16 15:58 ` [PATCH 5.10 191/306] arm64: dts: qcom: ipq6018: drop 0x from unit address Greg Kroah-Hartman
2021-09-16 15:58 ` [PATCH 5.10 192/306] arm64: dts: qcom: sdm630: dont use underscore in node name Greg Kroah-Hartman
2021-09-16 15:58 ` [PATCH 5.10 193/306] arm64: dts: qcom: msm8994: " Greg Kroah-Hartman
2021-09-16 15:58 ` [PATCH 5.10 194/306] arm64: dts: qcom: msm8996: " Greg Kroah-Hartman
2021-09-16 15:59 ` [PATCH 5.10 195/306] arm64: dts: qcom: sm8250: Fix epss_l3 unit address Greg Kroah-Hartman
2021-09-16 15:59 ` [PATCH 5.10 196/306] nvmem: qfprom: Fix up qfprom_disable_fuse_blowing() ordering Greg Kroah-Hartman
2021-09-16 15:59 ` [PATCH 5.10 197/306] net: ethernet: stmmac: Do not use unreachable() in ipq806x_gmac_probe() Greg Kroah-Hartman
2021-09-16 15:59 ` [PATCH 5.10 198/306] drm/msm: mdp4: drop vblank get/put from prepare/complete_commit Greg Kroah-Hartman
2021-09-16 15:59 ` [PATCH 5.10 199/306] drm/msm/dsi: Fix DSI and DSI PHY regulator config from SDM660 Greg Kroah-Hartman
2021-09-16 15:59 ` [PATCH 5.10 200/306] drm: xlnx: zynqmp_dpsub: Call pm_runtime_get_sync before setting pixel clock Greg Kroah-Hartman
2021-09-16 15:59 ` [PATCH 5.10 201/306] drm: xlnx: zynqmp: release reset to DP controller before accessing DP registers Greg Kroah-Hartman
2021-09-16 15:59 ` [PATCH 5.10 202/306] thunderbolt: Fix port linking by checking all adapters Greg Kroah-Hartman
2021-09-16 15:59 ` [PATCH 5.10 203/306] drm/amd/display: fix missing writeback disablement if plane is removed Greg Kroah-Hartman
2021-09-16 15:59 ` [PATCH 5.10 204/306] drm/amd/display: fix incorrect CM/TF programming sequence in dwb Greg Kroah-Hartman
2021-09-16 15:59 ` [PATCH 5.10 205/306] selftests/bpf: Fix xdp_tx.c prog section name Greg Kroah-Hartman
2021-09-16 15:59 ` [PATCH 5.10 206/306] drm/vmwgfx: fix potential UAF in vmwgfx_surface.c Greg Kroah-Hartman
2021-09-16 15:59 ` [PATCH 5.10 207/306] Bluetooth: schedule SCO timeouts with delayed_work Greg Kroah-Hartman
2021-09-16 15:59 ` [PATCH 5.10 208/306] Bluetooth: avoid circular locks in sco_sock_connect Greg Kroah-Hartman
2021-09-16 15:59 ` [PATCH 5.10 209/306] drm/msm/dp: return correct edid checksum after corrupted edid checksum read Greg Kroah-Hartman
2021-09-16 15:59 ` [PATCH 5.10 210/306] net/mlx5: Fix variable type to match 64bit Greg Kroah-Hartman
2021-09-16 15:59 ` [PATCH 5.10 211/306] gpu: drm: amd: amdgpu: amdgpu_i2c: fix possible uninitialized-variable access in amdgpu_i2c_router_select_ddc_port() Greg Kroah-Hartman
2021-09-16 15:59 ` [PATCH 5.10 212/306] drm/display: fix possible null-pointer dereference in dcn10_set_clock() Greg Kroah-Hartman
2021-09-16 15:59 ` [PATCH 5.10 213/306] mac80211: Fix monitor MTU limit so that A-MSDUs get through Greg Kroah-Hartman
2021-09-16 15:59 ` [PATCH 5.10 214/306] ARM: tegra: acer-a500: Remove bogus USB VBUS regulators Greg Kroah-Hartman
2021-09-16 15:59 ` [PATCH 5.10 215/306] ARM: tegra: tamonten: Fix UART pad setting Greg Kroah-Hartman
2021-09-16 15:59 ` [PATCH 5.10 216/306] arm64: tegra: Fix compatible string for Tegra132 CPUs Greg Kroah-Hartman
2021-09-16 15:59 ` [PATCH 5.10 217/306] arm64: dts: ls1046a: fix eeprom entries Greg Kroah-Hartman
2021-09-16 15:59 ` [PATCH 5.10 218/306] nvme-tcp: dont check blk_mq_tag_to_rq when receiving pdu data Greg Kroah-Hartman
2021-09-16 15:59 ` [PATCH 5.10 219/306] nvme: code command_id with a genctr for use-after-free validation Greg Kroah-Hartman
2021-09-16 15:59 ` [PATCH 5.10 220/306] Bluetooth: Fix handling of LE Enhanced Connection Complete Greg Kroah-Hartman
2021-09-16 15:59 ` [PATCH 5.10 221/306] opp: Dont print an error if required-opps is missing Greg Kroah-Hartman
2021-09-16 15:59 ` [PATCH 5.10 222/306] serial: sh-sci: fix break handling for sysrq Greg Kroah-Hartman
2021-09-16 15:59 ` [PATCH 5.10 223/306] iomap: pass writeback errors to the mapping Greg Kroah-Hartman
2021-09-16 15:59 ` [PATCH 5.10 224/306] tcp: enable data-less, empty-cookie SYN with TFO_SERVER_COOKIE_NOT_REQD Greg Kroah-Hartman
2021-09-16 15:59 ` [PATCH 5.10 225/306] rpc: fix gss_svc_init cleanup on failure Greg Kroah-Hartman
2021-09-16 15:59 ` [PATCH 5.10 226/306] selftests/bpf: Fix flaky send_signal test Greg Kroah-Hartman
2021-09-16 15:59 ` [PATCH 5.10 227/306] hwmon: (pmbus/ibm-cffps) Fix write bits for LED control Greg Kroah-Hartman
2021-09-16 15:59 ` [PATCH 5.10 228/306] staging: rts5208: Fix get_ms_information() heap buffer size Greg Kroah-Hartman
2021-09-16 15:59 ` [PATCH 5.10 229/306] net: Fix offloading indirect devices dependency on qdisc order creation Greg Kroah-Hartman
2021-09-16 15:59 ` [PATCH 5.10 230/306] kselftest/arm64: mte: Fix misleading output when skipping tests Greg Kroah-Hartman
2021-09-16 15:59 ` [PATCH 5.10 231/306] kselftest/arm64: pac: Fix skipping of tests on systems without PAC Greg Kroah-Hartman
2021-09-16 15:59 ` [PATCH 5.10 232/306] gfs2: Dont call dlm after protocol is unmounted Greg Kroah-Hartman
2021-09-16 15:59 ` [PATCH 5.10 233/306] usb: chipidea: host: fix port index underflow and UBSAN complains Greg Kroah-Hartman
2021-09-16 15:59 ` [PATCH 5.10 234/306] lockd: lockd server-side shouldnt set fl_ops Greg Kroah-Hartman
2021-09-16 15:59 ` [PATCH 5.10 235/306] drm/exynos: Always initialize mapping in exynos_drm_register_dma() Greg Kroah-Hartman
2021-09-16 15:59 ` [PATCH 5.10 236/306] rtl8xxxu: Fix the handling of TX A-MPDU aggregation Greg Kroah-Hartman
2021-09-16 15:59 ` [PATCH 5.10 237/306] rtw88: use read_poll_timeout instead of fixed sleep Greg Kroah-Hartman
2021-09-16 15:59 ` [PATCH 5.10 238/306] rtw88: wow: build wow function only if CONFIG_PM is on Greg Kroah-Hartman
2021-09-16 15:59 ` [PATCH 5.10 239/306] rtw88: wow: fix size access error of probe request Greg Kroah-Hartman
2021-09-16 15:59 ` [PATCH 5.10 240/306] octeontx2-pf: Fix NIX1_RX interface backpressure Greg Kroah-Hartman
2021-09-16 15:59 ` [PATCH 5.10 241/306] m68knommu: only set CONFIG_ISA_DMA_API for ColdFire sub-arch Greg Kroah-Hartman
2021-09-16 15:59 ` [PATCH 5.10 242/306] btrfs: tree-log: check btrfs_lookup_data_extent return value Greg Kroah-Hartman
2021-09-16 15:59 ` [PATCH 5.10 243/306] soundwire: intel: fix potential race condition during power down Greg Kroah-Hartman
2021-09-16 15:59 ` [PATCH 5.10 244/306] ASoC: Intel: Skylake: Fix module configuration for KPB and MIXER Greg Kroah-Hartman
2021-09-16 15:59 ` [PATCH 5.10 245/306] ASoC: Intel: Skylake: Fix passing loadable flag for module Greg Kroah-Hartman
2021-09-16 15:59 ` [PATCH 5.10 246/306] of: Dont allow __of_attached_node_sysfs() without CONFIG_SYSFS Greg Kroah-Hartman
2021-09-16 15:59 ` [PATCH 5.10 247/306] mmc: sdhci-of-arasan: Modified SD default speed to 19MHz for ZynqMP Greg Kroah-Hartman
2021-09-16 15:59 ` [PATCH 5.10 248/306] mmc: sdhci-of-arasan: Check return value of non-void funtions Greg Kroah-Hartman
2021-09-16 15:59 ` [PATCH 5.10 249/306] mmc: rtsx_pci: Fix long reads when clock is prescaled Greg Kroah-Hartman
2021-09-16 15:59 ` [PATCH 5.10 250/306] selftests/bpf: Enlarge select() timeout for test_maps Greg Kroah-Hartman
2021-09-16 15:59 ` [PATCH 5.10 251/306] mmc: core: Return correct emmc response in case of ioctl error Greg Kroah-Hartman
2021-09-16 15:59 ` [PATCH 5.10 252/306] cifs: fix wrong release in sess_alloc_buffer() failed path Greg Kroah-Hartman
2021-09-16 15:59 ` [PATCH 5.10 253/306] Revert "USB: xhci: fix U1/U2 handling for hardware with XHCI_INTEL_HOST quirk set" Greg Kroah-Hartman
2021-09-16 15:59 ` [PATCH 5.10 254/306] usb: musb: musb_dsps: request_irq() after initializing musb Greg Kroah-Hartman
2021-09-16 16:00 ` [PATCH 5.10 255/306] usbip: give back URBs for unsent unlink requests during cleanup Greg Kroah-Hartman
2021-09-16 16:00 ` [PATCH 5.10 256/306] usbip:vhci_hcd USB port can get stuck in the disabled state Greg Kroah-Hartman
2021-09-16 16:00 ` [PATCH 5.10 257/306] ASoC: rockchip: i2s: Fix regmap_ops hang Greg Kroah-Hartman
2021-09-16 16:00 ` [PATCH 5.10 258/306] ASoC: rockchip: i2s: Fixup config for DAIFMT_DSP_A/B Greg Kroah-Hartman
2021-09-16 16:00 ` [PATCH 5.10 259/306] drm/amdkfd: Account for SH/SE count when setting up cu masks Greg Kroah-Hartman
2021-09-16 16:00 ` [PATCH 5.10 260/306] nfsd: fix crash on LOCKT on reexported NFSv3 Greg Kroah-Hartman
2021-09-16 16:00 ` [PATCH 5.10 261/306] iwlwifi: pcie: free RBs during configure Greg Kroah-Hartman
2021-09-16 16:00 ` [PATCH 5.10 262/306] iwlwifi: mvm: fix a memory leak in iwl_mvm_mac_ctxt_beacon_changed Greg Kroah-Hartman
2021-09-16 16:00 ` [PATCH 5.10 263/306] iwlwifi: mvm: avoid static queue number aliasing Greg Kroah-Hartman
2021-09-16 16:00 ` [PATCH 5.10 264/306] iwlwifi: mvm: fix access to BSS elements Greg Kroah-Hartman
2021-09-16 16:00 ` [PATCH 5.10 265/306] iwlwifi: fw: correctly limit to monitor dump Greg Kroah-Hartman
2021-09-16 16:00 ` [PATCH 5.10 266/306] iwlwifi: mvm: Fix scan channel flags settings Greg Kroah-Hartman
2021-09-16 16:00 ` [PATCH 5.10 267/306] net/mlx5: DR, fix a potential use-after-free bug Greg Kroah-Hartman
2021-09-16 16:00 ` [PATCH 5.10 268/306] net/mlx5: DR, Enable QP retransmission Greg Kroah-Hartman
2021-09-16 16:00 ` [PATCH 5.10 269/306] parport: remove non-zero check on count Greg Kroah-Hartman
2021-09-16 16:00 ` [PATCH 5.10 270/306] selftests/bpf: Fix potential unreleased lock Greg Kroah-Hartman
2021-09-16 16:00 ` [PATCH 5.10 271/306] wcn36xx: Fix missing frame timestamp for beacon/probe-resp Greg Kroah-Hartman
2021-09-16 16:00 ` [PATCH 5.10 272/306] ath9k: fix OOB read ar9300_eeprom_restore_internal Greg Kroah-Hartman
2021-09-16 16:00 ` [PATCH 5.10 273/306] ath9k: fix sleeping in atomic context Greg Kroah-Hartman
2021-09-16 16:00 ` [PATCH 5.10 274/306] net: fix NULL pointer reference in cipso_v4_doi_free Greg Kroah-Hartman
2021-09-16 16:00 ` [PATCH 5.10 275/306] fix array-index-out-of-bounds in taprio_change Greg Kroah-Hartman
2021-09-16 16:00 ` [PATCH 5.10 276/306] net: w5100: check return value after calling platform_get_resource() Greg Kroah-Hartman
2021-09-16 16:00 ` [PATCH 5.10 277/306] net: hns3: clean up a type mismatch warning Greg Kroah-Hartman
2021-09-16 16:00 ` [PATCH 5.10 278/306] fs/io_uring Dont use the return value from import_iovec() Greg Kroah-Hartman
2021-09-16 16:00 ` [PATCH 5.10 279/306] io_uring: remove duplicated io_size from rw Greg Kroah-Hartman
2021-09-16 16:00 ` [PATCH 5.10 280/306] parisc: fix crash with signals and alloca Greg Kroah-Hartman
2021-09-16 16:00 ` [PATCH 5.10 281/306] ovl: fix BUG_ON() in may_delete() when called from ovl_cleanup() Greg Kroah-Hartman
2021-09-16 16:00 ` [PATCH 5.10 282/306] scsi: BusLogic: Fix missing pr_cont() use Greg Kroah-Hartman
2021-09-16 16:00 ` [PATCH 5.10 283/306] scsi: qla2xxx: Changes to support kdump kernel Greg Kroah-Hartman
2021-09-16 16:00 ` [PATCH 5.10 284/306] scsi: qla2xxx: Sync queue idx with queue_pair_map idx Greg Kroah-Hartman
2021-09-16 16:00 ` [PATCH 5.10 285/306] cpufreq: powernv: Fix init_chip_info initialization in numa=off Greg Kroah-Hartman
2021-09-16 16:00 ` [PATCH 5.10 286/306] s390/pv: fix the forcing of the swiotlb Greg Kroah-Hartman
2021-09-16 16:00 ` [PATCH 5.10 287/306] hugetlb: fix hugetlb cgroup refcounting during vma split Greg Kroah-Hartman
2021-09-16 16:00 ` [PATCH 5.10 288/306] mm/hmm: bypass devmap pte when all pfn requested flags are fulfilled Greg Kroah-Hartman
2021-09-16 16:00 ` [PATCH 5.10 289/306] mm/hugetlb: initialize hugetlb_usage in mm_init Greg Kroah-Hartman
2021-09-16 16:00 ` [PATCH 5.10 290/306] mm,vmscan: fix divide by zero in get_scan_count Greg Kroah-Hartman
2021-09-16 16:00 ` [PATCH 5.10 291/306] memcg: enable accounting for pids in nested pid namespaces Greg Kroah-Hartman
2021-09-16 16:00 ` [PATCH 5.10 292/306] libnvdimm/pmem: Fix crash triggered when I/O in-flight during unbind Greg Kroah-Hartman
2021-09-16 16:00 ` [PATCH 5.10 293/306] platform/chrome: cros_ec_proto: Send command again when timeout occurs Greg Kroah-Hartman
2021-09-16 16:00 ` [PATCH 5.10 294/306] lib/test_stackinit: Fix static initializer test Greg Kroah-Hartman
2021-09-16 16:00 ` [PATCH 5.10 295/306] net: dsa: lantiq_gswip: fix maximum frame length Greg Kroah-Hartman
2021-09-16 16:00 ` [PATCH 5.10 296/306] drm/mgag200: Select clock in PLL update functions Greg Kroah-Hartman
2021-09-16 16:00 ` [PATCH 5.10 297/306] drm/msi/mdp4: populate priv->kms in mdp4_kms_init Greg Kroah-Hartman
2021-09-16 16:00 ` [PATCH 5.10 298/306] drm/dp_mst: Fix return code on sideband message failure Greg Kroah-Hartman
2021-09-16 16:00 ` [PATCH 5.10 299/306] drm/panfrost: Make sure MMU context lifetime is not bound to panfrost_priv Greg Kroah-Hartman
2021-09-16 16:00 ` [PATCH 5.10 300/306] drm/amdgpu: Fix BUG_ON assert Greg Kroah-Hartman
2021-09-16 16:00 ` [PATCH 5.10 301/306] drm/amd/display: Update number of DCN3 clock states Greg Kroah-Hartman
2021-09-16 16:00 ` [PATCH 5.10 302/306] drm/amd/display: Update bounding box states (v2) Greg Kroah-Hartman
2021-09-16 16:00 ` [PATCH 5.10 303/306] drm/panfrost: Simplify lock_region calculation Greg Kroah-Hartman
2021-09-16 16:00 ` [PATCH 5.10 304/306] drm/panfrost: Use u64 for size in lock_region Greg Kroah-Hartman
2021-09-16 16:00 ` [PATCH 5.10 305/306] drm/panfrost: Clamp lock region to Bifrost minimum Greg Kroah-Hartman
2021-09-16 16:00 ` [PATCH 5.10 306/306] fanotify: limit number of event merge attempts Greg Kroah-Hartman
2021-09-16 18:59 ` [PATCH 5.10 000/306] 5.10.67-rc1 review Fox Chen
2021-09-16 21:18 ` Shuah Khan
2021-09-16 22:26 ` Florian Fainelli
2021-09-17 11:25 ` Naresh Kamboju
2021-09-17 17:38 ` Pavel Machek
2021-09-17 17:59 ` Guenter Roeck
2021-09-17 19:48 ` Sudip Mukherjee
2021-09-18  3:02 ` Samuel Zou

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=20210916155758.428803878@linuxfoundation.org \
    --to=gregkh@linuxfoundation.org \
    --cc=daniel.vetter@ffwll.ch \
    --cc=desmondcheongzx@gmail.com \
    --cc=linux-kernel@vger.kernel.org \
    --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).