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,
	Carsten Haitzler <carsten.haitzler@arm.com>,
	Liviu Dudau <liviu.dudau@arm.com>,
	Sasha Levin <sashal@kernel.org>
Subject: [PATCH 5.10 155/299] drm/komeda: Fix bit check to import to value of proper type
Date: Mon, 10 May 2021 12:19:12 +0200	[thread overview]
Message-ID: <20210510102010.078527836@linuxfoundation.org> (raw)
In-Reply-To: <20210510102004.821838356@linuxfoundation.org>

From: Carsten Haitzler <carsten.haitzler@arm.com>

[ Upstream commit be3e477effba636ad25dcd244db264c6cd5c1f36 ]

KASAN found this problem. find_first_bit() expects to look at a
pointer pointing to a long, but we look at a u32 - this is going to be
an issue with endianness but, KSAN already flags this as out-of-bounds
stack reads. This fixes it by just importing inot a local long.

Signed-off-by: Carsten Haitzler <carsten.haitzler@arm.com>
Acked-by: Liviu Dudau <liviu.dudau@arm.com>
Signed-off-by: Liviu Dudau <liviu.dudau@arm.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20201218150812.68195-1-carsten.haitzler@foss.arm.com
Signed-off-by: Sasha Levin <sashal@kernel.org>
---
 .../drm/arm/display/include/malidp_utils.h    |  3 ---
 .../drm/arm/display/komeda/komeda_pipeline.c  | 16 +++++++++++-----
 .../display/komeda/komeda_pipeline_state.c    | 19 +++++++++++--------
 3 files changed, 22 insertions(+), 16 deletions(-)

diff --git a/drivers/gpu/drm/arm/display/include/malidp_utils.h b/drivers/gpu/drm/arm/display/include/malidp_utils.h
index 3bc383d5bf73..49a1d7f3539c 100644
--- a/drivers/gpu/drm/arm/display/include/malidp_utils.h
+++ b/drivers/gpu/drm/arm/display/include/malidp_utils.h
@@ -13,9 +13,6 @@
 #define has_bit(nr, mask)	(BIT(nr) & (mask))
 #define has_bits(bits, mask)	(((bits) & (mask)) == (bits))
 
-#define dp_for_each_set_bit(bit, mask) \
-	for_each_set_bit((bit), ((unsigned long *)&(mask)), sizeof(mask) * 8)
-
 #define dp_wait_cond(__cond, __tries, __min_range, __max_range)	\
 ({							\
 	int num_tries = __tries;			\
diff --git a/drivers/gpu/drm/arm/display/komeda/komeda_pipeline.c b/drivers/gpu/drm/arm/display/komeda/komeda_pipeline.c
index 452e505a1fd3..79a6339840bb 100644
--- a/drivers/gpu/drm/arm/display/komeda/komeda_pipeline.c
+++ b/drivers/gpu/drm/arm/display/komeda/komeda_pipeline.c
@@ -46,8 +46,9 @@ void komeda_pipeline_destroy(struct komeda_dev *mdev,
 {
 	struct komeda_component *c;
 	int i;
+	unsigned long avail_comps = pipe->avail_comps;
 
-	dp_for_each_set_bit(i, pipe->avail_comps) {
+	for_each_set_bit(i, &avail_comps, 32) {
 		c = komeda_pipeline_get_component(pipe, i);
 		komeda_component_destroy(mdev, c);
 	}
@@ -246,6 +247,7 @@ static void komeda_pipeline_dump(struct komeda_pipeline *pipe)
 {
 	struct komeda_component *c;
 	int id;
+	unsigned long avail_comps = pipe->avail_comps;
 
 	DRM_INFO("Pipeline-%d: n_layers: %d, n_scalers: %d, output: %s.\n",
 		 pipe->id, pipe->n_layers, pipe->n_scalers,
@@ -257,7 +259,7 @@ static void komeda_pipeline_dump(struct komeda_pipeline *pipe)
 		 pipe->of_output_links[1] ?
 		 pipe->of_output_links[1]->full_name : "none");
 
-	dp_for_each_set_bit(id, pipe->avail_comps) {
+	for_each_set_bit(id, &avail_comps, 32) {
 		c = komeda_pipeline_get_component(pipe, id);
 
 		komeda_component_dump(c);
@@ -269,8 +271,9 @@ static void komeda_component_verify_inputs(struct komeda_component *c)
 	struct komeda_pipeline *pipe = c->pipeline;
 	struct komeda_component *input;
 	int id;
+	unsigned long supported_inputs = c->supported_inputs;
 
-	dp_for_each_set_bit(id, c->supported_inputs) {
+	for_each_set_bit(id, &supported_inputs, 32) {
 		input = komeda_pipeline_get_component(pipe, id);
 		if (!input) {
 			c->supported_inputs &= ~(BIT(id));
@@ -301,8 +304,9 @@ static void komeda_pipeline_assemble(struct komeda_pipeline *pipe)
 	struct komeda_component *c;
 	struct komeda_layer *layer;
 	int i, id;
+	unsigned long avail_comps = pipe->avail_comps;
 
-	dp_for_each_set_bit(id, pipe->avail_comps) {
+	for_each_set_bit(id, &avail_comps, 32) {
 		c = komeda_pipeline_get_component(pipe, id);
 		komeda_component_verify_inputs(c);
 	}
@@ -354,13 +358,15 @@ void komeda_pipeline_dump_register(struct komeda_pipeline *pipe,
 {
 	struct komeda_component *c;
 	u32 id;
+	unsigned long avail_comps;
 
 	seq_printf(sf, "\n======== Pipeline-%d ==========\n", pipe->id);
 
 	if (pipe->funcs && pipe->funcs->dump_register)
 		pipe->funcs->dump_register(pipe, sf);
 
-	dp_for_each_set_bit(id, pipe->avail_comps) {
+	avail_comps = pipe->avail_comps;
+	for_each_set_bit(id, &avail_comps, 32) {
 		c = komeda_pipeline_get_component(pipe, id);
 
 		seq_printf(sf, "\n------%s------\n", c->name);
diff --git a/drivers/gpu/drm/arm/display/komeda/komeda_pipeline_state.c b/drivers/gpu/drm/arm/display/komeda/komeda_pipeline_state.c
index 8f32ae7c25d0..c3cdf283ecef 100644
--- a/drivers/gpu/drm/arm/display/komeda/komeda_pipeline_state.c
+++ b/drivers/gpu/drm/arm/display/komeda/komeda_pipeline_state.c
@@ -1231,14 +1231,15 @@ komeda_pipeline_unbound_components(struct komeda_pipeline *pipe,
 	struct komeda_pipeline_state *old = priv_to_pipe_st(pipe->obj.state);
 	struct komeda_component_state *c_st;
 	struct komeda_component *c;
-	u32 disabling_comps, id;
+	u32 id;
+	unsigned long disabling_comps;
 
 	WARN_ON(!old);
 
 	disabling_comps = (~new->active_comps) & old->active_comps;
 
 	/* unbound all disabling component */
-	dp_for_each_set_bit(id, disabling_comps) {
+	for_each_set_bit(id, &disabling_comps, 32) {
 		c = komeda_pipeline_get_component(pipe, id);
 		c_st = komeda_component_get_state_and_set_user(c,
 				drm_st, NULL, new->crtc);
@@ -1286,7 +1287,8 @@ bool komeda_pipeline_disable(struct komeda_pipeline *pipe,
 	struct komeda_pipeline_state *old;
 	struct komeda_component *c;
 	struct komeda_component_state *c_st;
-	u32 id, disabling_comps = 0;
+	u32 id;
+	unsigned long disabling_comps;
 
 	old = komeda_pipeline_get_old_state(pipe, old_state);
 
@@ -1296,10 +1298,10 @@ bool komeda_pipeline_disable(struct komeda_pipeline *pipe,
 		disabling_comps = old->active_comps &
 				  pipe->standalone_disabled_comps;
 
-	DRM_DEBUG_ATOMIC("PIPE%d: active_comps: 0x%x, disabling_comps: 0x%x.\n",
+	DRM_DEBUG_ATOMIC("PIPE%d: active_comps: 0x%x, disabling_comps: 0x%lx.\n",
 			 pipe->id, old->active_comps, disabling_comps);
 
-	dp_for_each_set_bit(id, disabling_comps) {
+	for_each_set_bit(id, &disabling_comps, 32) {
 		c = komeda_pipeline_get_component(pipe, id);
 		c_st = priv_to_comp_st(c->obj.state);
 
@@ -1330,16 +1332,17 @@ void komeda_pipeline_update(struct komeda_pipeline *pipe,
 	struct komeda_pipeline_state *new = priv_to_pipe_st(pipe->obj.state);
 	struct komeda_pipeline_state *old;
 	struct komeda_component *c;
-	u32 id, changed_comps = 0;
+	u32 id;
+	unsigned long changed_comps;
 
 	old = komeda_pipeline_get_old_state(pipe, old_state);
 
 	changed_comps = new->active_comps | old->active_comps;
 
-	DRM_DEBUG_ATOMIC("PIPE%d: active_comps: 0x%x, changed: 0x%x.\n",
+	DRM_DEBUG_ATOMIC("PIPE%d: active_comps: 0x%x, changed: 0x%lx.\n",
 			 pipe->id, new->active_comps, changed_comps);
 
-	dp_for_each_set_bit(id, changed_comps) {
+	for_each_set_bit(id, &changed_comps, 32) {
 		c = komeda_pipeline_get_component(pipe, id);
 
 		if (new->active_comps & BIT(c->id))
-- 
2.30.2




  parent reply	other threads:[~2021-05-10 11:08 UTC|newest]

Thread overview: 323+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-05-10 10:16 [PATCH 5.10 000/299] 5.10.36-rc1 review Greg Kroah-Hartman
2021-05-10 10:16 ` [PATCH 5.10 001/299] bus: mhi: core: Fix check for syserr at power_up Greg Kroah-Hartman
2021-05-10 10:16 ` [PATCH 5.10 002/299] bus: mhi: core: Clear configuration from channel context during reset Greg Kroah-Hartman
2021-05-10 20:56   ` Pavel Machek
2021-05-11  6:17     ` Manivannan Sadhasivam
2021-05-21 17:50       ` Bhaumik Bhatt
2021-05-24  4:19         ` Manivannan Sadhasivam
2021-05-25 16:23           ` Jeffrey Hugo
2021-05-26  6:11             ` Manivannan Sadhasivam
2021-05-28  8:52           ` Pavel Machek
2021-05-28 16:59             ` Bhaumik Bhatt
2021-05-10 10:16 ` [PATCH 5.10 003/299] bus: mhi: core: Sanity check values from remote device before use Greg Kroah-Hartman
2021-05-10 10:16 ` [PATCH 5.10 004/299] nitro_enclaves: Fix stale file descriptors on failed usercopy Greg Kroah-Hartman
2021-05-10 10:16 ` [PATCH 5.10 005/299] dyndbg: fix parsing file query without a line-range suffix Greg Kroah-Hartman
2021-05-10 10:16 ` [PATCH 5.10 006/299] s390/disassembler: increase ebpf disasm buffer size Greg Kroah-Hartman
2021-05-10 10:16 ` [PATCH 5.10 007/299] s390/zcrypt: fix zcard and zqueue hot-unplug memleak Greg Kroah-Hartman
2021-05-10 10:16 ` [PATCH 5.10 008/299] vhost-vdpa: fix vm_flags for virtqueue doorbell mapping Greg Kroah-Hartman
2021-05-10 10:16 ` [PATCH 5.10 009/299] tpm: acpi: Check eventlog signature before using it Greg Kroah-Hartman
2021-05-10 10:16 ` [PATCH 5.10 010/299] ACPI: custom_method: fix potential use-after-free issue Greg Kroah-Hartman
2021-05-10 10:16 ` [PATCH 5.10 011/299] ACPI: custom_method: fix a possible memory leak Greg Kroah-Hartman
2021-05-10 10:16 ` [PATCH 5.10 012/299] ftrace: Handle commands when closing set_ftrace_filter file Greg Kroah-Hartman
2021-05-10 10:16 ` [PATCH 5.10 013/299] ARM: 9056/1: decompressor: fix BSS size calculation for LLVM ld.lld Greg Kroah-Hartman
2021-05-10 10:16 ` [PATCH 5.10 014/299] arm64: dts: marvell: armada-37xx: add syscon compatible to NB clk node Greg Kroah-Hartman
2021-05-10 10:16 ` [PATCH 5.10 015/299] arm64: dts: mt8173: fix property typo of phys in dsi node Greg Kroah-Hartman
2021-05-10 10:16 ` [PATCH 5.10 016/299] ecryptfs: fix kernel panic with null dev_name Greg Kroah-Hartman
2021-05-10 10:16 ` [PATCH 5.10 017/299] fs/epoll: restore waking from ep_done_scan() Greg Kroah-Hartman
2021-05-10 10:16 ` [PATCH 5.10 018/299] mtd: spi-nor: core: Fix an issue of releasing resources during read/write Greg Kroah-Hartman
2021-05-10 10:16 ` [PATCH 5.10 019/299] Revert "mtd: spi-nor: macronix: Add support for mx25l51245g" Greg Kroah-Hartman
2021-05-10 10:16 ` [PATCH 5.10 020/299] mtd: spinand: core: add missing MODULE_DEVICE_TABLE() Greg Kroah-Hartman
2021-05-10 10:16 ` [PATCH 5.10 021/299] mtd: rawnand: atmel: Update ecc_stats.corrected counter Greg Kroah-Hartman
2021-05-10 10:16 ` [PATCH 5.10 022/299] mtd: physmap: physmap-bt1-rom: Fix unintentional stack access Greg Kroah-Hartman
2021-05-10 10:17 ` [PATCH 5.10 023/299] erofs: add unsupported inode i_format check Greg Kroah-Hartman
2021-05-10 10:17 ` [PATCH 5.10 024/299] spi: stm32-qspi: fix pm_runtime usage_count counter Greg Kroah-Hartman
2021-05-10 10:17 ` [PATCH 5.10 025/299] spi: spi-ti-qspi: Free DMA resources Greg Kroah-Hartman
2021-05-10 10:17 ` [PATCH 5.10 026/299] scsi: qla2xxx: Fix crash in qla2xxx_mqueuecommand() Greg Kroah-Hartman
2021-05-10 10:17 ` [PATCH 5.10 027/299] scsi: mpt3sas: Block PCI config access from userspace during reset Greg Kroah-Hartman
2021-05-10 10:17 ` [PATCH 5.10 028/299] mmc: uniphier-sd: Fix an error handling path in uniphier_sd_probe() Greg Kroah-Hartman
2021-05-10 10:17 ` [PATCH 5.10 029/299] mmc: uniphier-sd: Fix a resource leak in the remove function Greg Kroah-Hartman
2021-05-10 10:17 ` [PATCH 5.10 030/299] mmc: sdhci: Check for reset prior to DMA address unmap Greg Kroah-Hartman
2021-05-10 10:17 ` [PATCH 5.10 031/299] mmc: sdhci-pci: Fix initialization of some SD cards for Intel BYT-based controllers Greg Kroah-Hartman
2021-05-10 10:17 ` [PATCH 5.10 032/299] mmc: sdhci-tegra: Add required callbacks to set/clear CQE_EN bit Greg Kroah-Hartman
2021-05-10 10:17 ` [PATCH 5.10 033/299] mmc: block: Update ext_csd.cache_ctrl if it was written Greg Kroah-Hartman
2021-05-10 10:17 ` [PATCH 5.10 034/299] mmc: block: Issue a cache flush only when its enabled Greg Kroah-Hartman
2021-05-10 10:17 ` [PATCH 5.10 035/299] mmc: core: Do a power cycle when the CMD11 fails Greg Kroah-Hartman
2021-05-10 10:17 ` [PATCH 5.10 036/299] mmc: core: Set read only for SD cards with permanent write protect bit Greg Kroah-Hartman
2021-05-10 10:17 ` [PATCH 5.10 037/299] mmc: core: Fix hanging on I/O during system suspend for removable cards Greg Kroah-Hartman
2021-05-10 10:17 ` [PATCH 5.10 038/299] irqchip/gic-v3: Do not enable irqs when handling spurious interrups Greg Kroah-Hartman
2021-05-10 10:17 ` [PATCH 5.10 039/299] cifs: Return correct error code from smb2_get_enc_key Greg Kroah-Hartman
2021-05-10 10:17 ` [PATCH 5.10 040/299] cifs: fix out-of-bound memory access when calling smb3_notify() at mount point Greg Kroah-Hartman
2021-05-10 10:17 ` [PATCH 5.10 041/299] cifs: detect dead connections only when echoes are enabled Greg Kroah-Hartman
2021-05-10 10:17 ` [PATCH 5.10 042/299] smb2: fix use-after-free in smb2_ioctl_query_info() Greg Kroah-Hartman
2021-05-10 10:17 ` [PATCH 5.10 043/299] btrfs: handle remount to no compress during compression Greg Kroah-Hartman
2021-05-10 10:17 ` [PATCH 5.10 044/299] x86/build: Disable HIGHMEM64G selection for M486SX Greg Kroah-Hartman
2021-05-10 10:17 ` [PATCH 5.10 045/299] btrfs: fix metadata extent leak after failure to create subvolume Greg Kroah-Hartman
2021-05-10 10:17 ` [PATCH 5.10 046/299] intel_th: pci: Add Rocket Lake CPU support Greg Kroah-Hartman
2021-05-10 10:17 ` [PATCH 5.10 047/299] btrfs: fix race between transaction aborts and fsyncs leading to use-after-free Greg Kroah-Hartman
2021-05-10 10:17 ` [PATCH 5.10 048/299] posix-timers: Preserve return value in clock_adjtime32() Greg Kroah-Hartman
2021-05-10 10:17 ` [PATCH 5.10 049/299] fbdev: zero-fill colormap in fbcmap.c Greg Kroah-Hartman
2021-05-10 10:17 ` [PATCH 5.10 050/299] cpuidle: tegra: Fix C7 idling state on Tegra114 Greg Kroah-Hartman
2021-05-10 10:17 ` [PATCH 5.10 051/299] bus: ti-sysc: Probe for l4_wkup and l4_cfg interconnect devices first Greg Kroah-Hartman
2021-05-10 10:17 ` [PATCH 5.10 052/299] staging: wimax/i2400m: fix byte-order issue Greg Kroah-Hartman
2021-05-10 10:17 ` [PATCH 5.10 053/299] spi: ath79: always call chipselect function Greg Kroah-Hartman
2021-05-10 10:17 ` [PATCH 5.10 054/299] spi: ath79: remove spi-master setup and cleanup assignment Greg Kroah-Hartman
2021-05-10 10:17 ` [PATCH 5.10 055/299] bus: mhi: core: Destroy SBL devices when moving to mission mode Greg Kroah-Hartman
2021-05-10 10:17 ` [PATCH 5.10 056/299] crypto: api - check for ERR pointers in crypto_destroy_tfm() Greg Kroah-Hartman
2021-05-10 10:17 ` [PATCH 5.10 057/299] crypto: qat - fix unmap invalid dma address Greg Kroah-Hartman
2021-05-10 10:17 ` [PATCH 5.10 058/299] usb: gadget: uvc: add bInterval checking for HS mode Greg Kroah-Hartman
2021-05-10 10:17 ` [PATCH 5.10 059/299] usb: webcam: Invalid size of Processing Unit Descriptor Greg Kroah-Hartman
2021-05-10 10:17 ` [PATCH 5.10 060/299] x86/sev: Do not require Hypervisor CPUID bit for SEV guests Greg Kroah-Hartman
2021-05-10 10:17 ` [PATCH 5.10 061/299] crypto: hisilicon/sec - fixes a printing error Greg Kroah-Hartman
2021-05-10 10:17 ` [PATCH 5.10 062/299] genirq/matrix: Prevent allocation counter corruption Greg Kroah-Hartman
2021-05-10 10:17 ` [PATCH 5.10 063/299] usb: gadget: f_uac2: validate input parameters Greg Kroah-Hartman
2021-05-10 10:17 ` [PATCH 5.10 064/299] usb: gadget: f_uac1: " Greg Kroah-Hartman
2021-05-10 10:17 ` [PATCH 5.10 065/299] usb: dwc3: gadget: Ignore EP queue requests during bus reset Greg Kroah-Hartman
2021-05-10 10:17 ` [PATCH 5.10 066/299] usb: xhci: Fix port minor revision Greg Kroah-Hartman
2021-05-10 10:17 ` [PATCH 5.10 067/299] kselftest/arm64: mte: Fix compilation with native compiler Greg Kroah-Hartman
2021-05-10 10:17 ` [PATCH 5.10 068/299] ARM: tegra: acer-a500: Rename avdd to vdda of touchscreen node Greg Kroah-Hartman
2021-05-10 10:17 ` [PATCH 5.10 069/299] PCI: PM: Do not read power state in pci_enable_device_flags() Greg Kroah-Hartman
2021-05-10 10:17 ` [PATCH 5.10 070/299] kselftest/arm64: mte: Fix MTE feature detection Greg Kroah-Hartman
2021-05-10 10:17 ` [PATCH 5.10 071/299] ARM: dts: BCM5301X: fix "reg" formatting in /memory node Greg Kroah-Hartman
2021-05-10 10:17 ` [PATCH 5.10 072/299] ARM: dts: ux500: Fix up TVK R3 sensors Greg Kroah-Hartman
2021-05-10 10:17 ` [PATCH 5.10 073/299] x86/build: Propagate $(CLANG_FLAGS) to $(REALMODE_FLAGS) Greg Kroah-Hartman
2021-05-10 10:17 ` [PATCH 5.10 074/299] x86/boot: Add $(CLANG_FLAGS) to compressed KBUILD_CFLAGS Greg Kroah-Hartman
2021-05-10 10:17 ` [PATCH 5.10 075/299] efi/libstub: Add $(CLANG_FLAGS) to x86 flags Greg Kroah-Hartman
2021-05-10 10:17 ` [PATCH 5.10 076/299] soc/tegra: pmc: Fix completion of power-gate toggling Greg Kroah-Hartman
2021-05-10 10:17 ` [PATCH 5.10 077/299] arm64: dts: imx8mq-librem5-r3: Mark buck3 as always on Greg Kroah-Hartman
2021-05-10 10:17 ` [PATCH 5.10 078/299] tee: optee: do not check memref size on return from Secure World Greg Kroah-Hartman
2021-05-10 10:17 ` [PATCH 5.10 079/299] soundwire: cadence: only prepare attached devices on clock stop Greg Kroah-Hartman
2021-05-10 10:17 ` [PATCH 5.10 080/299] perf/arm_pmu_platform: Use dev_err_probe() for IRQ errors Greg Kroah-Hartman
2021-05-10 10:17 ` [PATCH 5.10 081/299] perf/arm_pmu_platform: Fix error handling Greg Kroah-Hartman
2021-05-10 10:17 ` [PATCH 5.10 082/299] random: initialize ChaCha20 constants with correct endianness Greg Kroah-Hartman
2021-05-10 10:18 ` [PATCH 5.10 083/299] usb: xhci-mtk: support quirk to disable usb2 lpm Greg Kroah-Hartman
2021-05-10 12:15   ` Pavel Machek
2021-05-10 10:18 ` [PATCH 5.10 084/299] fpga: dfl: pci: add DID for D5005 PAC cards Greg Kroah-Hartman
2021-05-10 10:18 ` [PATCH 5.10 085/299] xhci: check port array allocation was successful before dereferencing it Greg Kroah-Hartman
2021-05-10 10:18 ` [PATCH 5.10 086/299] xhci: check control context is valid " Greg Kroah-Hartman
2021-05-10 10:18 ` [PATCH 5.10 087/299] xhci: fix potential array out of bounds with several interrupters Greg Kroah-Hartman
2021-05-10 10:18 ` [PATCH 5.10 088/299] bus: mhi: core: Clear context for stopped channels from remove() Greg Kroah-Hartman
2021-05-10 10:18 ` [PATCH 5.10 089/299] ARM: dts: at91: change the key code of the gpio key Greg Kroah-Hartman
2021-05-10 10:18 ` [PATCH 5.10 090/299] tools/power/x86/intel-speed-select: Increase string size Greg Kroah-Hartman
2021-05-10 10:18 ` [PATCH 5.10 091/299] platform/x86: ISST: Account for increased timeout in some cases Greg Kroah-Hartman
2021-05-10 10:18 ` [PATCH 5.10 092/299] spi: dln2: Fix reference leak to master Greg Kroah-Hartman
2021-05-10 10:18 ` [PATCH 5.10 093/299] spi: omap-100k: " Greg Kroah-Hartman
2021-05-10 10:18 ` [PATCH 5.10 094/299] spi: qup: fix PM reference leak in spi_qup_remove() Greg Kroah-Hartman
2021-05-10 10:18 ` [PATCH 5.10 095/299] usb: gadget: tegra-xudc: Fix possible use-after-free in tegra_xudc_remove() Greg Kroah-Hartman
2021-05-10 10:18 ` [PATCH 5.10 096/299] usb: musb: fix PM reference leak in musb_irq_work() Greg Kroah-Hartman
2021-05-10 10:18 ` [PATCH 5.10 097/299] usb: core: hub: Fix PM reference leak in usb_port_resume() Greg Kroah-Hartman
2021-05-10 10:18 ` [PATCH 5.10 098/299] usb: dwc3: gadget: Check for disabled LPM quirk Greg Kroah-Hartman
2021-05-10 10:18 ` [PATCH 5.10 099/299] tty: n_gsm: check error while registering tty devices Greg Kroah-Hartman
2021-05-10 10:18 ` [PATCH 5.10 100/299] intel_th: Consistency and off-by-one fix Greg Kroah-Hartman
2021-05-10 10:18 ` [PATCH 5.10 101/299] phy: phy-twl4030-usb: Fix possible use-after-free in twl4030_usb_remove() Greg Kroah-Hartman
2021-05-10 10:18 ` [PATCH 5.10 102/299] crypto: sun8i-ss - Fix PM reference leak when pm_runtime_get_sync() fails Greg Kroah-Hartman
2021-05-10 10:18 ` [PATCH 5.10 103/299] crypto: sun8i-ce - Fix PM reference leak in sun8i_ce_probe() Greg Kroah-Hartman
2021-05-10 10:18 ` [PATCH 5.10 104/299] crypto: stm32/hash - Fix PM reference leak on stm32-hash.c Greg Kroah-Hartman
2021-05-10 12:05   ` Pavel Machek
2021-05-10 10:18 ` [PATCH 5.10 105/299] crypto: stm32/cryp - Fix PM reference leak on stm32-cryp.c Greg Kroah-Hartman
2021-05-10 12:07   ` Pavel Machek
2021-05-11  3:55     ` Liu Shixin
2021-05-10 10:18 ` [PATCH 5.10 106/299] crypto: sa2ul - Fix PM reference leak in sa_ul_probe() Greg Kroah-Hartman
2021-05-10 10:18 ` [PATCH 5.10 107/299] crypto: omap-aes - Fix PM reference leak on omap-aes.c Greg Kroah-Hartman
2021-05-10 10:18 ` [PATCH 5.10 108/299] platform/x86: intel_pmc_core: Dont use global pmcdev in quirks Greg Kroah-Hartman
2021-05-10 12:12   ` Pavel Machek
2021-05-11 11:57     ` Greg Kroah-Hartman
2021-05-10 10:18 ` [PATCH 5.10 109/299] spi: sync up initial chipselect state Greg Kroah-Hartman
2021-05-10 10:18 ` [PATCH 5.10 110/299] btrfs: do proper error handling in create_reloc_root Greg Kroah-Hartman
2021-05-10 10:18 ` [PATCH 5.10 111/299] btrfs: do proper error handling in btrfs_update_reloc_root Greg Kroah-Hartman
2021-05-10 10:18 ` [PATCH 5.10 112/299] btrfs: convert logic BUG_ON()s in replace_path to ASSERT()s Greg Kroah-Hartman
2021-05-10 10:18 ` [PATCH 5.10 113/299] drm: Added orientation quirk for OneGX1 Pro Greg Kroah-Hartman
2021-05-10 10:18 ` [PATCH 5.10 114/299] drm/qxl: do not run release if qxl failed to init Greg Kroah-Hartman
2021-05-10 10:18 ` [PATCH 5.10 115/299] drm/qxl: release shadow on shutdown Greg Kroah-Hartman
2021-05-10 10:18 ` [PATCH 5.10 116/299] drm/ast: Fix invalid usage of AST_MAX_HWC_WIDTH in cursor atomic_check Greg Kroah-Hartman
2021-05-10 10:18 ` [PATCH 5.10 117/299] drm/amd/display: changing sr exit latency Greg Kroah-Hartman
2021-05-10 10:18 ` [PATCH 5.10 118/299] drm/ast: fix memory leak when unload the driver Greg Kroah-Hartman
2021-05-10 10:18 ` [PATCH 5.10 119/299] drm/amd/display: Check for DSC support instead of ASIC revision Greg Kroah-Hartman
2021-05-10 10:18 ` [PATCH 5.10 120/299] drm/amd/display: Dont optimize bandwidth before disabling planes Greg Kroah-Hartman
2021-05-10 10:18 ` [PATCH 5.10 121/299] drm/amdgpu/display: buffer INTERRUPT_LOW_IRQ_CONTEXT interrupt work Greg Kroah-Hartman
2021-05-10 10:18 ` [PATCH 5.10 122/299] drm/amd/display/dc/dce/dce_aux: Remove duplicate line causing field overwritten issue Greg Kroah-Hartman
2021-05-10 10:18 ` [PATCH 5.10 123/299] scsi: lpfc: Fix incorrect dbde assignment when building target abts wqe Greg Kroah-Hartman
2021-05-10 10:18 ` [PATCH 5.10 124/299] scsi: lpfc: Fix pt2pt connection does not recover after LOGO Greg Kroah-Hartman
2021-05-10 10:18 ` [PATCH 5.10 125/299] drm/amdgpu: Fix some unload driver issues Greg Kroah-Hartman
2021-05-10 10:18 ` [PATCH 5.10 126/299] sched/pelt: Fix task util_est update filtering Greg Kroah-Hartman
2021-05-10 10:18 ` [PATCH 5.10 127/299] kvfree_rcu: Use same set of GFP flags as does single-argument Greg Kroah-Hartman
2021-05-10 10:18 ` [PATCH 5.10 128/299] scsi: target: pscsi: Fix warning in pscsi_complete_cmd() Greg Kroah-Hartman
2021-05-10 10:18 ` [PATCH 5.10 129/299] media: ite-cir: check for receive overflow Greg Kroah-Hartman
2021-05-10 10:18 ` [PATCH 5.10 130/299] media: drivers: media: pci: sta2x11: fix Kconfig dependency on GPIOLIB Greg Kroah-Hartman
2021-05-10 10:18 ` [PATCH 5.10 131/299] media: imx: capture: Return -EPIPE from __capture_legacy_try_fmt() Greg Kroah-Hartman
2021-05-10 10:18 ` [PATCH 5.10 132/299] atomisp: dont let it go past pipes array Greg Kroah-Hartman
2021-05-10 10:18 ` [PATCH 5.10 133/299] power: supply: bq27xxx: fix power_avg for newer ICs Greg Kroah-Hartman
2021-05-10 10:18 ` [PATCH 5.10 134/299] extcon: arizona: Fix some issues when HPDET IRQ fires after the jack has been unplugged Greg Kroah-Hartman
2021-05-10 10:18 ` [PATCH 5.10 135/299] extcon: arizona: Fix various races on driver unbind Greg Kroah-Hartman
2021-05-10 10:18 ` [PATCH 5.10 136/299] media: media/saa7164: fix saa7164_encoder_register() memory leak bugs Greg Kroah-Hartman
2021-05-10 10:18 ` [PATCH 5.10 137/299] media: gspca/sq905.c: fix uninitialized variable Greg Kroah-Hartman
2021-05-10 10:18 ` [PATCH 5.10 138/299] power: supply: Use IRQF_ONESHOT Greg Kroah-Hartman
2021-05-10 10:18 ` [PATCH 5.10 139/299] backlight: qcom-wled: Use sink_addr for sync toggle Greg Kroah-Hartman
2021-05-10 10:18 ` [PATCH 5.10 140/299] backlight: qcom-wled: Fix FSC update issue for WLED5 Greg Kroah-Hartman
2021-05-10 10:18 ` [PATCH 5.10 141/299] drm/amdgpu: mask the xgmi number of hops reported from psp to kfd Greg Kroah-Hartman
2021-05-10 10:18 ` [PATCH 5.10 142/299] drm/amdkfd: Fix UBSAN shift-out-of-bounds warning Greg Kroah-Hartman
2021-05-10 10:19 ` [PATCH 5.10 143/299] drm/amdgpu : Fix asic reset regression issue introduce by 8f211fe8ac7c4f Greg Kroah-Hartman
2021-05-10 10:19 ` [PATCH 5.10 144/299] drm/amd/pm: fix workload mismatch on vega10 Greg Kroah-Hartman
2021-05-10 10:19 ` [PATCH 5.10 145/299] drm/amd/display: Fix UBSAN warning for not a valid value for type _Bool Greg Kroah-Hartman
2021-05-10 10:19 ` [PATCH 5.10 146/299] drm/amd/display: DCHUB underflow counter increasing in some scenarios Greg Kroah-Hartman
2021-05-10 10:19 ` [PATCH 5.10 147/299] drm/amd/display: fix dml prefetch validation Greg Kroah-Hartman
2021-05-10 10:19 ` [PATCH 5.10 148/299] scsi: qla2xxx: Always check the return value of qla24xx_get_isp_stats() Greg Kroah-Hartman
2021-05-10 10:19 ` [PATCH 5.10 149/299] drm/vkms: fix misuse of WARN_ON Greg Kroah-Hartman
2021-05-10 10:19 ` [PATCH 5.10 150/299] scsi: qla2xxx: Fix use after free in bsg Greg Kroah-Hartman
2021-05-10 10:19 ` [PATCH 5.10 151/299] mmc: sdhci-esdhc-imx: validate pinctrl before use it Greg Kroah-Hartman
2021-05-10 10:19 ` [PATCH 5.10 152/299] mmc: sdhci-pci: Add PCI IDs for Intel LKF Greg Kroah-Hartman
2021-05-10 10:19 ` [PATCH 5.10 153/299] mmc: sdhci-brcmstb: Remove CQE quirk Greg Kroah-Hartman
2021-05-10 10:19 ` [PATCH 5.10 154/299] ata: ahci: Disable SXS for Hisilicon Kunpeng920 Greg Kroah-Hartman
2021-05-10 10:19 ` Greg Kroah-Hartman [this message]
2021-05-10 10:19 ` [PATCH 5.10 156/299] nvmet: return proper error code from discovery ctrl Greg Kroah-Hartman
2021-05-10 10:19 ` [PATCH 5.10 157/299] selftests/resctrl: Enable gcc checks to detect buffer overflows Greg Kroah-Hartman
2021-05-10 10:19 ` [PATCH 5.10 158/299] selftests/resctrl: Fix compilation issues for global variables Greg Kroah-Hartman
2021-05-10 10:19 ` [PATCH 5.10 159/299] selftests/resctrl: Fix compilation issues for other " Greg Kroah-Hartman
2021-05-10 10:19 ` [PATCH 5.10 160/299] selftests/resctrl: Clean up resctrl features check Greg Kroah-Hartman
2021-05-10 10:19 ` [PATCH 5.10 161/299] selftests/resctrl: Fix missing options "-n" and "-p" Greg Kroah-Hartman
2021-05-10 10:19 ` [PATCH 5.10 162/299] selftests/resctrl: Use resctrl/info for feature detection Greg Kroah-Hartman
2021-05-10 10:19 ` [PATCH 5.10 163/299] selftests/resctrl: Fix incorrect parsing of iMC counters Greg Kroah-Hartman
2021-05-10 10:19 ` [PATCH 5.10 164/299] selftests/resctrl: Fix checking for < 0 for unsigned values Greg Kroah-Hartman
2021-05-10 10:19 ` [PATCH 5.10 165/299] power: supply: cpcap-charger: Add usleep to cpcap charger to avoid usb plug bounce Greg Kroah-Hartman
2021-05-10 10:19 ` [PATCH 5.10 166/299] scsi: smartpqi: Use host-wide tag space Greg Kroah-Hartman
2021-05-10 10:19 ` [PATCH 5.10 167/299] scsi: smartpqi: Correct request leakage during reset operations Greg Kroah-Hartman
2021-05-10 10:19 ` [PATCH 5.10 168/299] scsi: smartpqi: Add new PCI IDs Greg Kroah-Hartman
2021-05-10 10:19 ` [PATCH 5.10 169/299] scsi: scsi_dh_alua: Remove check for ASC 24h in alua_rtpg() Greg Kroah-Hartman
2021-05-10 10:19 ` [PATCH 5.10 170/299] media: em28xx: fix memory leak Greg Kroah-Hartman
2021-05-10 10:19 ` [PATCH 5.10 171/299] media: vivid: update EDID Greg Kroah-Hartman
2021-05-10 10:19 ` [PATCH 5.10 172/299] drm/msm/dp: Fix incorrect NULL check kbot warnings in DP driver Greg Kroah-Hartman
2021-05-10 10:19 ` [PATCH 5.10 173/299] clk: socfpga: arria10: Fix memory leak of socfpga_clk on error return Greg Kroah-Hartman
2021-05-10 10:19 ` [PATCH 5.10 174/299] power: supply: generic-adc-battery: fix possible use-after-free in gab_remove() Greg Kroah-Hartman
2021-05-10 10:19 ` [PATCH 5.10 175/299] power: supply: s3c_adc_battery: fix possible use-after-free in s3c_adc_bat_remove() Greg Kroah-Hartman
2021-05-10 10:19 ` [PATCH 5.10 176/299] media: tc358743: fix possible use-after-free in tc358743_remove() Greg Kroah-Hartman
2021-05-10 10:19 ` [PATCH 5.10 177/299] media: adv7604: fix possible use-after-free in adv76xx_remove() Greg Kroah-Hartman
2021-05-10 10:19 ` [PATCH 5.10 178/299] media: i2c: adv7511-v4l2: fix possible use-after-free in adv7511_remove() Greg Kroah-Hartman
2021-05-10 10:19 ` [PATCH 5.10 179/299] media: i2c: tda1997: Fix possible use-after-free in tda1997x_remove() Greg Kroah-Hartman
2021-05-10 10:19 ` [PATCH 5.10 180/299] media: i2c: adv7842: fix possible use-after-free in adv7842_remove() Greg Kroah-Hartman
2021-05-10 10:19 ` [PATCH 5.10 181/299] media: platform: sti: Fix runtime PM imbalance in regs_show Greg Kroah-Hartman
2021-05-10 10:19 ` [PATCH 5.10 182/299] media: sun8i-di: Fix runtime PM imbalance in deinterlace_start_streaming Greg Kroah-Hartman
2021-05-10 10:19 ` [PATCH 5.10 183/299] media: dvb-usb: fix memory leak in dvb_usb_adapter_init Greg Kroah-Hartman
2021-05-10 10:19 ` [PATCH 5.10 184/299] media: gscpa/stv06xx: fix memory leak Greg Kroah-Hartman
2021-05-10 10:19 ` [PATCH 5.10 185/299] sched/fair: Ignore percpu threads for imbalance pulls Greg Kroah-Hartman
2021-05-10 10:19 ` [PATCH 5.10 186/299] drm/msm/mdp5: Configure PP_SYNC_HEIGHT to double the vtotal Greg Kroah-Hartman
2021-05-10 10:19 ` [PATCH 5.10 187/299] drm/msm/mdp5: Do not multiply vclk line count by 100 Greg Kroah-Hartman
2021-05-10 10:19 ` [PATCH 5.10 188/299] drm/amdgpu/ttm: Fix memory leak userptr pages Greg Kroah-Hartman
2021-05-10 10:19 ` [PATCH 5.10 189/299] drm/radeon/ttm: " Greg Kroah-Hartman
2021-05-10 10:19 ` [PATCH 5.10 190/299] drm/amd/display: Fix debugfs link_settings entry Greg Kroah-Hartman
2021-05-10 10:19 ` [PATCH 5.10 191/299] drm/amd/display: Fix UBSAN: shift-out-of-bounds warning Greg Kroah-Hartman
2021-05-10 10:19 ` [PATCH 5.10 192/299] drm/amdkfd: Fix cat debugfs hang_hws file causes system crash bug Greg Kroah-Hartman
2021-05-10 10:19 ` [PATCH 5.10 193/299] amdgpu: avoid incorrect %hu format string Greg Kroah-Hartman
2021-05-10 10:19 ` [PATCH 5.10 194/299] drm/amd/display: Try YCbCr420 color when YCbCr444 fails Greg Kroah-Hartman
2021-05-10 10:19 ` [PATCH 5.10 195/299] drm/amdgpu: fix NULL pointer dereference Greg Kroah-Hartman
2021-05-10 10:19 ` [PATCH 5.10 196/299] scsi: lpfc: Fix crash when a REG_RPI mailbox fails triggering a LOGO response Greg Kroah-Hartman
2021-05-10 10:19 ` [PATCH 5.10 197/299] scsi: lpfc: Fix error handling for mailboxes completed in MBX_POLL mode Greg Kroah-Hartman
2021-05-10 10:19 ` [PATCH 5.10 198/299] scsi: lpfc: Remove unsupported mbox PORT_CAPABILITIES logic Greg Kroah-Hartman
2021-05-10 10:19 ` [PATCH 5.10 199/299] mfd: intel-m10-bmc: Fix the register access range Greg Kroah-Hartman
2021-05-10 10:19 ` [PATCH 5.10 200/299] mfd: da9063: Support SMBus and I2C mode Greg Kroah-Hartman
2021-05-10 10:19 ` [PATCH 5.10 201/299] mfd: arizona: Fix rumtime PM imbalance on error Greg Kroah-Hartman
2021-05-10 10:19 ` [PATCH 5.10 202/299] scsi: libfc: Fix a format specifier Greg Kroah-Hartman
2021-05-10 10:20 ` [PATCH 5.10 203/299] perf: Rework perf_event_exit_event() Greg Kroah-Hartman
2021-05-10 10:20 ` [PATCH 5.10 204/299] sched,fair: Alternative sched_slice() Greg Kroah-Hartman
2021-05-10 10:20 ` [PATCH 5.10 205/299] block/rnbd-clt: Fix missing a memory free when unloading the module Greg Kroah-Hartman
2021-05-10 10:20 ` [PATCH 5.10 206/299] s390/archrandom: add parameter check for s390_arch_random_generate Greg Kroah-Hartman
2021-05-10 10:20 ` [PATCH 5.10 207/299] sched,psi: Handle potential task count underflow bugs more gracefully Greg Kroah-Hartman
2021-05-10 10:20 ` [PATCH 5.10 208/299] power: supply: cpcap-battery: fix invalid usage of list cursor Greg Kroah-Hartman
2021-05-10 10:20 ` [PATCH 5.10 209/299] ALSA: emu8000: Fix a use after free in snd_emu8000_create_mixer Greg Kroah-Hartman
2021-05-10 10:20 ` [PATCH 5.10 210/299] ALSA: hda/conexant: Re-order CX5066 quirk table entries Greg Kroah-Hartman
2021-05-10 10:20 ` [PATCH 5.10 211/299] ALSA: sb: Fix two use after free in snd_sb_qsound_build Greg Kroah-Hartman
2021-05-10 10:20 ` [PATCH 5.10 212/299] ALSA: usb-audio: Explicitly set up the clock selector Greg Kroah-Hartman
2021-05-10 10:20 ` [PATCH 5.10 213/299] ALSA: usb-audio: Add dB range mapping for Sennheiser Communications Headset PC 8 Greg Kroah-Hartman
2021-05-10 10:20 ` [PATCH 5.10 214/299] ALSA: hda/realtek: fix mute/micmute LEDs for HP ProBook 445 G7 Greg Kroah-Hartman
2021-05-10 10:20 ` [PATCH 5.10 215/299] ALSA: hda/realtek: GA503 use same quirks as GA401 Greg Kroah-Hartman
2021-05-10 10:20 ` [PATCH 5.10 216/299] ALSA: hda/realtek: fix mic boost on Intel NUC 8 Greg Kroah-Hartman
2021-05-10 10:20 ` [PATCH 5.10 217/299] ALSA: hda/realtek - Headset Mic issue on HP platform Greg Kroah-Hartman
2021-05-10 10:20 ` [PATCH 5.10 218/299] ALSA: hda/realtek: fix static noise on ALC285 Lenovo laptops Greg Kroah-Hartman
2021-05-10 10:20 ` [PATCH 5.10 219/299] ALSA: hda/realtek: Add quirk for Intel Clevo PCx0Dx Greg Kroah-Hartman
2021-05-10 10:20 ` [PATCH 5.10 220/299] tools/power/turbostat: Fix turbostat for AMD Zen CPUs Greg Kroah-Hartman
2021-05-10 10:20 ` [PATCH 5.10 221/299] btrfs: fix race when picking most recent mod log operation for an old root Greg Kroah-Hartman
2021-05-10 10:20 ` [PATCH 5.10 222/299] arm64/vdso: Discard .note.gnu.property sections in vDSO Greg Kroah-Hartman
2021-05-10 10:20 ` [PATCH 5.10 223/299] Makefile: Move -Wno-unused-but-set-variable out of GCC only block Greg Kroah-Hartman
2021-05-10 10:20 ` [PATCH 5.10 224/299] fs: fix reporting supported extra file attributes for statx() Greg Kroah-Hartman
2021-05-10 10:20 ` [PATCH 5.10 225/299] virtiofs: fix memory leak in virtio_fs_probe() Greg Kroah-Hartman
2021-05-10 10:20 ` [PATCH 5.10 226/299] kcsan, debugfs: Move debugfs file creation out of early init Greg Kroah-Hartman
2021-05-10 10:20 ` [PATCH 5.10 227/299] ubifs: Only check replay with inode type to judge if inode linked Greg Kroah-Hartman
2021-05-10 10:20 ` [PATCH 5.10 228/299] f2fs: fix error handling in f2fs_end_enable_verity() Greg Kroah-Hartman
2021-05-10 10:20 ` [PATCH 5.10 229/299] f2fs: fix to avoid out-of-bounds memory access Greg Kroah-Hartman
2021-05-10 10:20 ` [PATCH 5.10 230/299] mlxsw: spectrum_mr: Update egress RIF list before routes action Greg Kroah-Hartman
2021-05-10 10:20 ` [PATCH 5.10 231/299] openvswitch: fix stack OOB read while fragmenting IPv4 packets Greg Kroah-Hartman
2021-05-10 10:20 ` [PATCH 5.10 232/299] ACPI: GTDT: Dont corrupt interrupt mappings on watchdow probe failure Greg Kroah-Hartman
2021-05-10 10:20 ` [PATCH 5.10 233/299] NFS: fs_context: validate UDP retrans to prevent shift out-of-bounds Greg Kroah-Hartman
2021-05-10 10:20 ` [PATCH 5.10 234/299] NFS: Dont discard pNFS layout segments that are marked for return Greg Kroah-Hartman
2021-05-10 10:20 ` [PATCH 5.10 235/299] NFSv4: Dont discard segments marked for return in _pnfs_return_layout() Greg Kroah-Hartman
2021-05-10 10:20 ` [PATCH 5.10 236/299] Input: ili210x - add missing negation for touch indication on ili210x Greg Kroah-Hartman
2021-05-10 10:20 ` [PATCH 5.10 237/299] jffs2: Fix kasan slab-out-of-bounds problem Greg Kroah-Hartman
2021-05-10 10:20 ` [PATCH 5.10 238/299] jffs2: Hook up splice_write callback Greg Kroah-Hartman
2021-05-10 10:20 ` [PATCH 5.10 239/299] powerpc/powernv: Enable HAIL (HV AIL) for ISA v3.1 processors Greg Kroah-Hartman
2021-05-10 10:20 ` [PATCH 5.10 240/299] powerpc/eeh: Fix EEH handling for hugepages in ioremap space Greg Kroah-Hartman
2021-05-10 10:20 ` [PATCH 5.10 241/299] powerpc/kexec_file: Use current CPU info while setting up FDT Greg Kroah-Hartman
2021-05-10 10:20 ` [PATCH 5.10 242/299] powerpc/32: Fix boot failure with CONFIG_STACKPROTECTOR Greg Kroah-Hartman
2021-05-10 10:20 ` [PATCH 5.10 243/299] powerpc: fix EDEADLOCK redefinition error in uapi/asm/errno.h Greg Kroah-Hartman
2021-05-10 10:20 ` [PATCH 5.10 244/299] intel_th: pci: Add Alder Lake-M support Greg Kroah-Hartman
2021-05-10 10:20 ` [PATCH 5.10 245/299] tpm: efi: Use local variable for calculating final log size Greg Kroah-Hartman
2021-05-10 10:20 ` [PATCH 5.10 246/299] tpm: vtpm_proxy: Avoid reading host log when using a virtual device Greg Kroah-Hartman
2021-05-10 10:20 ` [PATCH 5.10 247/299] crypto: arm/curve25519 - Move .fpu after .arch Greg Kroah-Hartman
2021-05-10 10:20 ` [PATCH 5.10 248/299] crypto: rng - fix crypto_rng_reset() refcounting when !CRYPTO_STATS Greg Kroah-Hartman
2021-05-10 10:20 ` [PATCH 5.10 249/299] md/raid1: properly indicate failure when ending a failed write request Greg Kroah-Hartman
2021-05-10 10:20 ` [PATCH 5.10 250/299] dm raid: fix inconclusive reshape layout on fast raid4/5/6 table reload sequences Greg Kroah-Hartman
2021-05-10 10:20 ` [PATCH 5.10 251/299] fuse: fix write deadlock Greg Kroah-Hartman
2021-05-10 10:20 ` [PATCH 5.10 252/299] exfat: fix erroneous discard when clear cluster bit Greg Kroah-Hartman
2021-05-10 10:20 ` [PATCH 5.10 253/299] sfc: farch: fix TX queue lookup in TX flush done handling Greg Kroah-Hartman
2021-05-10 10:20 ` [PATCH 5.10 254/299] sfc: farch: fix TX queue lookup in TX event handling Greg Kroah-Hartman
2021-05-10 10:20 ` [PATCH 5.10 255/299] security: commoncap: fix -Wstringop-overread warning Greg Kroah-Hartman
2021-05-10 10:20 ` [PATCH 5.10 256/299] Fix misc new gcc warnings Greg Kroah-Hartman
2021-05-10 10:20 ` [PATCH 5.10 257/299] jffs2: check the validity of dstlen in jffs2_zlib_compress() Greg Kroah-Hartman
2021-05-10 10:20 ` [PATCH 5.10 258/299] smb3: when mounting with multichannel include it in requested capabilities Greg Kroah-Hartman
2021-05-10 10:20 ` [PATCH 5.10 259/299] smb3: do not attempt multichannel to server which does not support it Greg Kroah-Hartman
2021-05-10 10:20 ` [PATCH 5.10 260/299] Revert 337f13046ff0 ("futex: Allow FUTEX_CLOCK_REALTIME with FUTEX_WAIT op") Greg Kroah-Hartman
2021-05-10 10:20 ` [PATCH 5.10 261/299] futex: Do not apply time namespace adjustment on FUTEX_LOCK_PI Greg Kroah-Hartman
2021-05-10 10:20 ` [PATCH 5.10 262/299] x86/cpu: Initialize MSR_TSC_AUX if RDTSCP *or* RDPID is supported Greg Kroah-Hartman
2021-05-10 10:21 ` [PATCH 5.10 263/299] kbuild: update config_data.gz only when the content of .config is changed Greg Kroah-Hartman
2021-05-10 10:21 ` [PATCH 5.10 264/299] ext4: annotate data race in start_this_handle() Greg Kroah-Hartman
2021-05-10 10:21 ` [PATCH 5.10 265/299] ext4: annotate data race in jbd2_journal_dirty_metadata() Greg Kroah-Hartman
2021-05-10 10:21 ` [PATCH 5.10 266/299] ext4: fix check to prevent false positive report of incorrect used inodes Greg Kroah-Hartman
2021-05-10 10:21 ` [PATCH 5.10 267/299] ext4: do not set SB_ACTIVE in ext4_orphan_cleanup() Greg Kroah-Hartman
2021-05-10 10:21 ` [PATCH 5.10 268/299] ext4: fix error code in ext4_commit_super Greg Kroah-Hartman
2021-05-10 10:21 ` [PATCH 5.10 269/299] ext4: fix ext4_error_err save negative errno into superblock Greg Kroah-Hartman
2021-05-10 10:21 ` [PATCH 5.10 270/299] ext4: fix error return code in ext4_fc_perform_commit() Greg Kroah-Hartman
2021-05-10 10:21 ` [PATCH 5.10 271/299] ext4: allow the dax flag to be set and cleared on inline directories Greg Kroah-Hartman
2021-05-10 10:21 ` [PATCH 5.10 272/299] ext4: Fix occasional generic/418 failure Greg Kroah-Hartman
2021-05-10 10:21 ` [PATCH 5.10 273/299] media: dvbdev: Fix memory leak in dvb_media_device_free() Greg Kroah-Hartman
2021-05-10 10:21 ` [PATCH 5.10 274/299] media: dvb-usb: Fix use-after-free access Greg Kroah-Hartman
2021-05-10 10:21 ` [PATCH 5.10 275/299] media: dvb-usb: Fix memory leak at error in dvb_usb_device_init() Greg Kroah-Hartman
2021-05-10 10:21 ` [PATCH 5.10 276/299] media: staging/intel-ipu3: Fix memory leak in imu_fmt Greg Kroah-Hartman
2021-05-10 10:21 ` [PATCH 5.10 277/299] media: staging/intel-ipu3: Fix set_fmt error handling Greg Kroah-Hartman
2021-05-10 10:21 ` [PATCH 5.10 278/299] media: staging/intel-ipu3: Fix race condition during set_fmt Greg Kroah-Hartman
2021-05-10 10:21 ` [PATCH 5.10 279/299] media: v4l2-ctrls: fix reference to freed memory Greg Kroah-Hartman
2021-05-10 10:21 ` [PATCH 5.10 280/299] media: venus: hfi_parser: Dont initialize parser on v1 Greg Kroah-Hartman
2021-05-10 10:21 ` [PATCH 5.10 281/299] usb: gadget: dummy_hcd: fix gpf in gadget_setup Greg Kroah-Hartman
2021-05-10 10:21 ` [PATCH 5.10 282/299] usb: gadget: Fix double free of device descriptor pointers Greg Kroah-Hartman
2021-05-10 10:21 ` [PATCH 5.10 283/299] usb: gadget/function/f_fs string table fix for multiple languages Greg Kroah-Hartman
2021-05-10 10:21 ` [PATCH 5.10 284/299] usb: dwc3: gadget: Remove FS bInterval_m1 limitation Greg Kroah-Hartman
2021-05-10 10:21 ` [PATCH 5.10 285/299] usb: dwc3: gadget: Fix START_TRANSFER link state check Greg Kroah-Hartman
2021-05-10 10:21 ` [PATCH 5.10 286/299] usb: dwc3: core: Do core softreset when switch mode Greg Kroah-Hartman
2021-05-10 10:21 ` [PATCH 5.10 287/299] usb: dwc2: Fix session request interrupt handler Greg Kroah-Hartman
2021-05-10 10:21 ` [PATCH 5.10 288/299] tty: fix memory leak in vc_deallocate Greg Kroah-Hartman
2021-05-10 10:21 ` [PATCH 5.10 289/299] rsi: Use resume_noirq for SDIO Greg Kroah-Hartman
2021-05-10 10:21 ` [PATCH 5.10 290/299] tools/power turbostat: Fix offset overflow issue in index converting Greg Kroah-Hartman
2021-05-10 10:21 ` [PATCH 5.10 291/299] tracing: Map all PIDs to command lines Greg Kroah-Hartman
2021-05-10 10:21 ` [PATCH 5.10 292/299] tracing: Restructure trace_clock_global() to never block Greg Kroah-Hartman
2021-05-10 10:21 ` [PATCH 5.10 293/299] dm persistent data: packed struct should have an aligned() attribute too Greg Kroah-Hartman
2021-05-10 10:21 ` [PATCH 5.10 294/299] dm space map common: fix division bug in sm_ll_find_free_block() Greg Kroah-Hartman
2021-05-10 10:21 ` [PATCH 5.10 295/299] dm integrity: fix missing goto in bitmap_flush_interval error handling Greg Kroah-Hartman
2021-05-10 10:21 ` [PATCH 5.10 296/299] dm rq: fix double free of blk_mq_tag_set in dev remove after table load fails Greg Kroah-Hartman
2021-05-10 10:21 ` [PATCH 5.10 297/299] lib/vsprintf.c: remove leftover f and F cases from bstr_printf() Greg Kroah-Hartman
2021-05-10 10:21 ` [PATCH 5.10 298/299] thermal/drivers/cpufreq_cooling: Fix slab OOB issue Greg Kroah-Hartman
2021-05-10 10:21 ` [PATCH 5.10 299/299] thermal/core/fair share: Lock the thermal zone while looping over instances Greg Kroah-Hartman
2021-05-10 12:18 ` [PATCH 5.10 000/299] 5.10.36-rc1 review Pavel Machek
2021-05-10 14:42 ` Florian Fainelli
2021-05-10 16:59 ` Fox Chen
2021-05-10 22:15 ` Guenter Roeck
2021-05-10 22:17 ` Shuah Khan
2021-05-10 22:32 ` Joel Stanley
2021-05-11  7:26 ` Naresh Kamboju
2021-05-11  9:26 ` Sudip Mukherjee
2021-05-12  1:54 ` 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=20210510102010.078527836@linuxfoundation.org \
    --to=gregkh@linuxfoundation.org \
    --cc=carsten.haitzler@arm.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=liviu.dudau@arm.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).