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, Marco Elver <elver@google.com>,
	"Peter Zijlstra (Intel)" <peterz@infradead.org>,
	Sasha Levin <sashal@kernel.org>
Subject: [PATCH 5.11 233/342] perf: Rework perf_event_exit_event()
Date: Mon, 10 May 2021 12:20:23 +0200	[thread overview]
Message-ID: <20210510102017.787280293@linuxfoundation.org> (raw)
In-Reply-To: <20210510102010.096403571@linuxfoundation.org>

From: Peter Zijlstra <peterz@infradead.org>

[ Upstream commit ef54c1a476aef7eef26fe13ea10dc090952c00f8 ]

Make perf_event_exit_event() more robust, such that we can use it from
other contexts. Specifically the up and coming remove_on_exec.

For this to work we need to address a few issues. Remove_on_exec will
not destroy the entire context, so we cannot rely on TASK_TOMBSTONE to
disable event_function_call() and we thus have to use
perf_remove_from_context().

When using perf_remove_from_context(), there's two races to consider.
The first is against close(), where we can have concurrent tear-down
of the event. The second is against child_list iteration, which should
not find a half baked event.

To address this, teach perf_remove_from_context() to special case
!ctx->is_active and about DETACH_CHILD.

[ elver@google.com: fix racing parent/child exit in sync_child_event(). ]
Signed-off-by: Marco Elver <elver@google.com>
Signed-off-by: Peter Zijlstra (Intel) <peterz@infradead.org>
Link: https://lkml.kernel.org/r/20210408103605.1676875-2-elver@google.com
Signed-off-by: Sasha Levin <sashal@kernel.org>
---
 include/linux/perf_event.h |   1 +
 kernel/events/core.c       | 142 +++++++++++++++++++++----------------
 2 files changed, 80 insertions(+), 63 deletions(-)

diff --git a/include/linux/perf_event.h b/include/linux/perf_event.h
index 419a4d77de00..7724c6842bea 100644
--- a/include/linux/perf_event.h
+++ b/include/linux/perf_event.h
@@ -607,6 +607,7 @@ struct swevent_hlist {
 #define PERF_ATTACH_TASK_DATA	0x08
 #define PERF_ATTACH_ITRACE	0x10
 #define PERF_ATTACH_SCHED_CB	0x20
+#define PERF_ATTACH_CHILD	0x40
 
 struct perf_cgroup;
 struct perf_buffer;
diff --git a/kernel/events/core.c b/kernel/events/core.c
index cd88af555471..41bec6d7e06e 100644
--- a/kernel/events/core.c
+++ b/kernel/events/core.c
@@ -2217,6 +2217,26 @@ out:
 	perf_event__header_size(leader);
 }
 
+static void sync_child_event(struct perf_event *child_event);
+
+static void perf_child_detach(struct perf_event *event)
+{
+	struct perf_event *parent_event = event->parent;
+
+	if (!(event->attach_state & PERF_ATTACH_CHILD))
+		return;
+
+	event->attach_state &= ~PERF_ATTACH_CHILD;
+
+	if (WARN_ON_ONCE(!parent_event))
+		return;
+
+	lockdep_assert_held(&parent_event->child_mutex);
+
+	sync_child_event(event);
+	list_del_init(&event->child_list);
+}
+
 static bool is_orphaned_event(struct perf_event *event)
 {
 	return event->state == PERF_EVENT_STATE_DEAD;
@@ -2324,6 +2344,7 @@ group_sched_out(struct perf_event *group_event,
 }
 
 #define DETACH_GROUP	0x01UL
+#define DETACH_CHILD	0x02UL
 
 /*
  * Cross CPU call to remove a performance event
@@ -2347,6 +2368,8 @@ __perf_remove_from_context(struct perf_event *event,
 	event_sched_out(event, cpuctx, ctx);
 	if (flags & DETACH_GROUP)
 		perf_group_detach(event);
+	if (flags & DETACH_CHILD)
+		perf_child_detach(event);
 	list_del_event(event, ctx);
 
 	if (!ctx->nr_events && ctx->is_active) {
@@ -2375,25 +2398,21 @@ static void perf_remove_from_context(struct perf_event *event, unsigned long fla
 
 	lockdep_assert_held(&ctx->mutex);
 
-	event_function_call(event, __perf_remove_from_context, (void *)flags);
-
 	/*
-	 * The above event_function_call() can NO-OP when it hits
-	 * TASK_TOMBSTONE. In that case we must already have been detached
-	 * from the context (by perf_event_exit_event()) but the grouping
-	 * might still be in-tact.
+	 * Because of perf_event_exit_task(), perf_remove_from_context() ought
+	 * to work in the face of TASK_TOMBSTONE, unlike every other
+	 * event_function_call() user.
 	 */
-	WARN_ON_ONCE(event->attach_state & PERF_ATTACH_CONTEXT);
-	if ((flags & DETACH_GROUP) &&
-	    (event->attach_state & PERF_ATTACH_GROUP)) {
-		/*
-		 * Since in that case we cannot possibly be scheduled, simply
-		 * detach now.
-		 */
-		raw_spin_lock_irq(&ctx->lock);
-		perf_group_detach(event);
+	raw_spin_lock_irq(&ctx->lock);
+	if (!ctx->is_active) {
+		__perf_remove_from_context(event, __get_cpu_context(ctx),
+					   ctx, (void *)flags);
 		raw_spin_unlock_irq(&ctx->lock);
+		return;
 	}
+	raw_spin_unlock_irq(&ctx->lock);
+
+	event_function_call(event, __perf_remove_from_context, (void *)flags);
 }
 
 /*
@@ -12361,14 +12380,17 @@ void perf_pmu_migrate_context(struct pmu *pmu, int src_cpu, int dst_cpu)
 }
 EXPORT_SYMBOL_GPL(perf_pmu_migrate_context);
 
-static void sync_child_event(struct perf_event *child_event,
-			       struct task_struct *child)
+static void sync_child_event(struct perf_event *child_event)
 {
 	struct perf_event *parent_event = child_event->parent;
 	u64 child_val;
 
-	if (child_event->attr.inherit_stat)
-		perf_event_read_event(child_event, child);
+	if (child_event->attr.inherit_stat) {
+		struct task_struct *task = child_event->ctx->task;
+
+		if (task && task != TASK_TOMBSTONE)
+			perf_event_read_event(child_event, task);
+	}
 
 	child_val = perf_event_count(child_event);
 
@@ -12383,60 +12405,53 @@ static void sync_child_event(struct perf_event *child_event,
 }
 
 static void
-perf_event_exit_event(struct perf_event *child_event,
-		      struct perf_event_context *child_ctx,
-		      struct task_struct *child)
+perf_event_exit_event(struct perf_event *event, struct perf_event_context *ctx)
 {
-	struct perf_event *parent_event = child_event->parent;
+	struct perf_event *parent_event = event->parent;
+	unsigned long detach_flags = 0;
 
-	/*
-	 * Do not destroy the 'original' grouping; because of the context
-	 * switch optimization the original events could've ended up in a
-	 * random child task.
-	 *
-	 * If we were to destroy the original group, all group related
-	 * operations would cease to function properly after this random
-	 * child dies.
-	 *
-	 * Do destroy all inherited groups, we don't care about those
-	 * and being thorough is better.
-	 */
-	raw_spin_lock_irq(&child_ctx->lock);
-	WARN_ON_ONCE(child_ctx->is_active);
+	if (parent_event) {
+		/*
+		 * Do not destroy the 'original' grouping; because of the
+		 * context switch optimization the original events could've
+		 * ended up in a random child task.
+		 *
+		 * If we were to destroy the original group, all group related
+		 * operations would cease to function properly after this
+		 * random child dies.
+		 *
+		 * Do destroy all inherited groups, we don't care about those
+		 * and being thorough is better.
+		 */
+		detach_flags = DETACH_GROUP | DETACH_CHILD;
+		mutex_lock(&parent_event->child_mutex);
+	}
 
-	if (parent_event)
-		perf_group_detach(child_event);
-	list_del_event(child_event, child_ctx);
-	perf_event_set_state(child_event, PERF_EVENT_STATE_EXIT); /* is_event_hup() */
-	raw_spin_unlock_irq(&child_ctx->lock);
+	perf_remove_from_context(event, detach_flags);
+
+	raw_spin_lock_irq(&ctx->lock);
+	if (event->state > PERF_EVENT_STATE_EXIT)
+		perf_event_set_state(event, PERF_EVENT_STATE_EXIT);
+	raw_spin_unlock_irq(&ctx->lock);
 
 	/*
-	 * Parent events are governed by their filedesc, retain them.
+	 * Child events can be freed.
 	 */
-	if (!parent_event) {
-		perf_event_wakeup(child_event);
+	if (parent_event) {
+		mutex_unlock(&parent_event->child_mutex);
+		/*
+		 * Kick perf_poll() for is_event_hup();
+		 */
+		perf_event_wakeup(parent_event);
+		free_event(event);
+		put_event(parent_event);
 		return;
 	}
-	/*
-	 * Child events can be cleaned up.
-	 */
-
-	sync_child_event(child_event, child);
 
 	/*
-	 * Remove this event from the parent's list
-	 */
-	WARN_ON_ONCE(parent_event->ctx->parent_ctx);
-	mutex_lock(&parent_event->child_mutex);
-	list_del_init(&child_event->child_list);
-	mutex_unlock(&parent_event->child_mutex);
-
-	/*
-	 * Kick perf_poll() for is_event_hup().
+	 * Parent events are governed by their filedesc, retain them.
 	 */
-	perf_event_wakeup(parent_event);
-	free_event(child_event);
-	put_event(parent_event);
+	perf_event_wakeup(event);
 }
 
 static void perf_event_exit_task_context(struct task_struct *child, int ctxn)
@@ -12493,7 +12508,7 @@ static void perf_event_exit_task_context(struct task_struct *child, int ctxn)
 	perf_event_task(child, child_ctx, 0);
 
 	list_for_each_entry_safe(child_event, next, &child_ctx->event_list, event_entry)
-		perf_event_exit_event(child_event, child_ctx, child);
+		perf_event_exit_event(child_event, child_ctx);
 
 	mutex_unlock(&child_ctx->mutex);
 
@@ -12753,6 +12768,7 @@ inherit_event(struct perf_event *parent_event,
 	 */
 	raw_spin_lock_irqsave(&child_ctx->lock, flags);
 	add_event_to_ctx(child_event, child_ctx);
+	child_event->attach_state |= PERF_ATTACH_CHILD;
 	raw_spin_unlock_irqrestore(&child_ctx->lock, flags);
 
 	/*
-- 
2.30.2




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

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

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=20210510102017.787280293@linuxfoundation.org \
    --to=gregkh@linuxfoundation.org \
    --cc=elver@google.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=peterz@infradead.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).