stable.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
To: stable@vger.kernel.org
Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>,
	patches@lists.linux.dev,
	Christian Borntraeger <borntraeger@linux.ibm.com>,
	David Hildenbrand <david@redhat.com>,
	Alexander Gordeev <agordeev@linux.ibm.com>,
	Sasha Levin <sashal@kernel.org>
Subject: [PATCH 6.8 138/493] s390/mm: Re-enable the shared zeropage for !PV and !skeys KVM guests
Date: Mon, 27 May 2024 20:52:20 +0200	[thread overview]
Message-ID: <20240527185634.973640317@linuxfoundation.org> (raw)
In-Reply-To: <20240527185626.546110716@linuxfoundation.org>

6.8-stable review patch.  If anyone has any objections, please let me know.

------------------

From: David Hildenbrand <david@redhat.com>

[ Upstream commit 06201e00ee3e4beacac48aab2b83eff64ebf0bc0 ]

commit fa41ba0d08de ("s390/mm: avoid empty zero pages for KVM guests to
avoid postcopy hangs") introduced an undesired side effect when combined
with memory ballooning and VM migration: memory part of the inflated
memory balloon will consume memory.

Assuming we have a 100GiB VM and inflated the balloon to 40GiB. Our VM
will consume ~60GiB of memory. If we now trigger a VM migration,
hypervisors like QEMU will read all VM memory. As s390x does not support
the shared zeropage, we'll end up allocating for all previously-inflated
memory part of the memory balloon: 50 GiB. So we might easily
(unexpectedly) crash the VM on the migration source.

Even worse, hypervisors like QEMU optimize for zeropage migration to not
consume memory on the migration destination: when migrating a
"page full of zeroes", on the migration destination they check whether the
target memory is already zero (by reading the destination memory) and avoid
writing to the memory to not allocate memory: however, s390x will also
allocate memory here, implying that also on the migration destination, we
will end up allocating all previously-inflated memory part of the memory
balloon.

This is especially bad if actual memory overcommit was not desired, when
memory ballooning is used for dynamic VM memory resizing, setting aside
some memory during boot that can be added later on demand. Alternatives
like virtio-mem that would avoid this issue are not yet available on
s390x.

There could be ways to optimize some cases in user space: before reading
memory in an anonymous private mapping on the migration source, check via
/proc/self/pagemap if anything is already populated. Similarly check on
the migration destination before reading. While that would avoid
populating tables full of shared zeropages on all architectures, it's
harder to get right and performant, and requires user space changes.

Further, with posctopy live migration we must place a page, so there,
"avoid touching memory to avoid allocating memory" is not really
possible. (Note that a previously we would have falsely inserted
shared zeropages into processes using UFFDIO_ZEROPAGE where
mm_forbids_zeropage() would have actually forbidden it)

PV is currently incompatible with memory ballooning, and in the common
case, KVM guests don't make use of storage keys. Instead of zapping
zeropages when enabling storage keys / PV, that turned out to be
problematic in the past, let's do exactly the same we do with KSM pages:
trigger unsharing faults to replace the shared zeropages by proper
anonymous folios.

What about added latency when enabling storage kes? Having a lot of
zeropages in applicable environments (PV, legacy guests, unittests) is
unexpected. Further, KSM could today already unshare the zeropages
and unmerging KSM pages when enabling storage kets would unshare the
KSM-placed zeropages in the same way, resulting in the same latency.

[ agordeev: Fixed sparse and checkpatch complaints and error handling ]

Reviewed-by: Christian Borntraeger <borntraeger@linux.ibm.com>
Tested-by: Christian Borntraeger <borntraeger@linux.ibm.com>
Fixes: fa41ba0d08de ("s390/mm: avoid empty zero pages for KVM guests to avoid postcopy hangs")
Signed-off-by: David Hildenbrand <david@redhat.com>
Link: https://lore.kernel.org/r/20240411161441.910170-3-david@redhat.com
Signed-off-by: Alexander Gordeev <agordeev@linux.ibm.com>
Signed-off-by: Sasha Levin <sashal@kernel.org>
---
 arch/s390/include/asm/gmap.h        |   2 +-
 arch/s390/include/asm/mmu.h         |   5 +
 arch/s390/include/asm/mmu_context.h |   1 +
 arch/s390/include/asm/pgtable.h     |  16 ++-
 arch/s390/kvm/kvm-s390.c            |   4 +-
 arch/s390/mm/gmap.c                 | 165 +++++++++++++++++++++-------
 6 files changed, 146 insertions(+), 47 deletions(-)

diff --git a/arch/s390/include/asm/gmap.h b/arch/s390/include/asm/gmap.h
index 5cc46e0dde620..9725586f42597 100644
--- a/arch/s390/include/asm/gmap.h
+++ b/arch/s390/include/asm/gmap.h
@@ -146,7 +146,7 @@ int gmap_mprotect_notify(struct gmap *, unsigned long start,
 
 void gmap_sync_dirty_log_pmd(struct gmap *gmap, unsigned long dirty_bitmap[4],
 			     unsigned long gaddr, unsigned long vmaddr);
-int gmap_mark_unmergeable(void);
+int s390_disable_cow_sharing(void);
 void s390_unlist_old_asce(struct gmap *gmap);
 int s390_replace_asce(struct gmap *gmap);
 void s390_uv_destroy_pfns(unsigned long count, unsigned long *pfns);
diff --git a/arch/s390/include/asm/mmu.h b/arch/s390/include/asm/mmu.h
index bb1b4bef1878b..4c2dc7abc2858 100644
--- a/arch/s390/include/asm/mmu.h
+++ b/arch/s390/include/asm/mmu.h
@@ -32,6 +32,11 @@ typedef struct {
 	unsigned int uses_skeys:1;
 	/* The mmu context uses CMM. */
 	unsigned int uses_cmm:1;
+	/*
+	 * The mmu context allows COW-sharing of memory pages (KSM, zeropage).
+	 * Note that COW-sharing during fork() is currently always allowed.
+	 */
+	unsigned int allow_cow_sharing:1;
 	/* The gmaps associated with this context are allowed to use huge pages. */
 	unsigned int allow_gmap_hpage_1m:1;
 } mm_context_t;
diff --git a/arch/s390/include/asm/mmu_context.h b/arch/s390/include/asm/mmu_context.h
index 929af18b09081..a7789a9f62186 100644
--- a/arch/s390/include/asm/mmu_context.h
+++ b/arch/s390/include/asm/mmu_context.h
@@ -35,6 +35,7 @@ static inline int init_new_context(struct task_struct *tsk,
 	mm->context.has_pgste = 0;
 	mm->context.uses_skeys = 0;
 	mm->context.uses_cmm = 0;
+	mm->context.allow_cow_sharing = 1;
 	mm->context.allow_gmap_hpage_1m = 0;
 #endif
 	switch (mm->context.asce_limit) {
diff --git a/arch/s390/include/asm/pgtable.h b/arch/s390/include/asm/pgtable.h
index 12a7b86789259..0a7055518ba20 100644
--- a/arch/s390/include/asm/pgtable.h
+++ b/arch/s390/include/asm/pgtable.h
@@ -566,10 +566,20 @@ static inline pud_t set_pud_bit(pud_t pud, pgprot_t prot)
 }
 
 /*
- * In the case that a guest uses storage keys
- * faults should no longer be backed by zero pages
+ * As soon as the guest uses storage keys or enables PV, we deduplicate all
+ * mapped shared zeropages and prevent new shared zeropages from getting
+ * mapped.
  */
-#define mm_forbids_zeropage mm_has_pgste
+#define mm_forbids_zeropage mm_forbids_zeropage
+static inline int mm_forbids_zeropage(struct mm_struct *mm)
+{
+#ifdef CONFIG_PGSTE
+	if (!mm->context.allow_cow_sharing)
+		return 1;
+#endif
+	return 0;
+}
+
 static inline int mm_uses_skeys(struct mm_struct *mm)
 {
 #ifdef CONFIG_PGSTE
diff --git a/arch/s390/kvm/kvm-s390.c b/arch/s390/kvm/kvm-s390.c
index ea63ac7698891..7c17be6ad4802 100644
--- a/arch/s390/kvm/kvm-s390.c
+++ b/arch/s390/kvm/kvm-s390.c
@@ -2631,9 +2631,7 @@ static int kvm_s390_handle_pv(struct kvm *kvm, struct kvm_pv_cmd *cmd)
 		if (r)
 			break;
 
-		mmap_write_lock(current->mm);
-		r = gmap_mark_unmergeable();
-		mmap_write_unlock(current->mm);
+		r = s390_disable_cow_sharing();
 		if (r)
 			break;
 
diff --git a/arch/s390/mm/gmap.c b/arch/s390/mm/gmap.c
index 41a4a60c5e651..3b57837f3e914 100644
--- a/arch/s390/mm/gmap.c
+++ b/arch/s390/mm/gmap.c
@@ -2547,41 +2547,6 @@ static inline void thp_split_mm(struct mm_struct *mm)
 }
 #endif /* CONFIG_TRANSPARENT_HUGEPAGE */
 
-/*
- * Remove all empty zero pages from the mapping for lazy refaulting
- * - This must be called after mm->context.has_pgste is set, to avoid
- *   future creation of zero pages
- * - This must be called after THP was disabled.
- *
- * mm contracts with s390, that even if mm were to remove a page table,
- * racing with the loop below and so causing pte_offset_map_lock() to fail,
- * it will never insert a page table containing empty zero pages once
- * mm_forbids_zeropage(mm) i.e. mm->context.has_pgste is set.
- */
-static int __zap_zero_pages(pmd_t *pmd, unsigned long start,
-			   unsigned long end, struct mm_walk *walk)
-{
-	unsigned long addr;
-
-	for (addr = start; addr != end; addr += PAGE_SIZE) {
-		pte_t *ptep;
-		spinlock_t *ptl;
-
-		ptep = pte_offset_map_lock(walk->mm, pmd, addr, &ptl);
-		if (!ptep)
-			break;
-		if (is_zero_pfn(pte_pfn(*ptep)))
-			ptep_xchg_direct(walk->mm, addr, ptep, __pte(_PAGE_INVALID));
-		pte_unmap_unlock(ptep, ptl);
-	}
-	return 0;
-}
-
-static const struct mm_walk_ops zap_zero_walk_ops = {
-	.pmd_entry	= __zap_zero_pages,
-	.walk_lock	= PGWALK_WRLOCK,
-};
-
 /*
  * switch on pgstes for its userspace process (for kvm)
  */
@@ -2599,22 +2564,142 @@ int s390_enable_sie(void)
 	mm->context.has_pgste = 1;
 	/* split thp mappings and disable thp for future mappings */
 	thp_split_mm(mm);
-	walk_page_range(mm, 0, TASK_SIZE, &zap_zero_walk_ops, NULL);
 	mmap_write_unlock(mm);
 	return 0;
 }
 EXPORT_SYMBOL_GPL(s390_enable_sie);
 
-int gmap_mark_unmergeable(void)
+static int find_zeropage_pte_entry(pte_t *pte, unsigned long addr,
+				   unsigned long end, struct mm_walk *walk)
+{
+	unsigned long *found_addr = walk->private;
+
+	/* Return 1 of the page is a zeropage. */
+	if (is_zero_pfn(pte_pfn(*pte))) {
+		/*
+		 * Shared zeropage in e.g., a FS DAX mapping? We cannot do the
+		 * right thing and likely don't care: FAULT_FLAG_UNSHARE
+		 * currently only works in COW mappings, which is also where
+		 * mm_forbids_zeropage() is checked.
+		 */
+		if (!is_cow_mapping(walk->vma->vm_flags))
+			return -EFAULT;
+
+		*found_addr = addr;
+		return 1;
+	}
+	return 0;
+}
+
+static const struct mm_walk_ops find_zeropage_ops = {
+	.pte_entry	= find_zeropage_pte_entry,
+	.walk_lock	= PGWALK_WRLOCK,
+};
+
+/*
+ * Unshare all shared zeropages, replacing them by anonymous pages. Note that
+ * we cannot simply zap all shared zeropages, because this could later
+ * trigger unexpected userfaultfd missing events.
+ *
+ * This must be called after mm->context.allow_cow_sharing was
+ * set to 0, to avoid future mappings of shared zeropages.
+ *
+ * mm contracts with s390, that even if mm were to remove a page table,
+ * and racing with walk_page_range_vma() calling pte_offset_map_lock()
+ * would fail, it will never insert a page table containing empty zero
+ * pages once mm_forbids_zeropage(mm) i.e.
+ * mm->context.allow_cow_sharing is set to 0.
+ */
+static int __s390_unshare_zeropages(struct mm_struct *mm)
+{
+	struct vm_area_struct *vma;
+	VMA_ITERATOR(vmi, mm, 0);
+	unsigned long addr;
+	vm_fault_t fault;
+	int rc;
+
+	for_each_vma(vmi, vma) {
+		/*
+		 * We could only look at COW mappings, but it's more future
+		 * proof to catch unexpected zeropages in other mappings and
+		 * fail.
+		 */
+		if ((vma->vm_flags & VM_PFNMAP) || is_vm_hugetlb_page(vma))
+			continue;
+		addr = vma->vm_start;
+
+retry:
+		rc = walk_page_range_vma(vma, addr, vma->vm_end,
+					 &find_zeropage_ops, &addr);
+		if (rc < 0)
+			return rc;
+		else if (!rc)
+			continue;
+
+		/* addr was updated by find_zeropage_pte_entry() */
+		fault = handle_mm_fault(vma, addr,
+					FAULT_FLAG_UNSHARE | FAULT_FLAG_REMOTE,
+					NULL);
+		if (fault & VM_FAULT_OOM)
+			return -ENOMEM;
+		/*
+		 * See break_ksm(): even after handle_mm_fault() returned 0, we
+		 * must start the lookup from the current address, because
+		 * handle_mm_fault() may back out if there's any difficulty.
+		 *
+		 * VM_FAULT_SIGBUS and VM_FAULT_SIGSEGV are unexpected but
+		 * maybe they could trigger in the future on concurrent
+		 * truncation. In that case, the shared zeropage would be gone
+		 * and we can simply retry and make progress.
+		 */
+		cond_resched();
+		goto retry;
+	}
+
+	return 0;
+}
+
+static int __s390_disable_cow_sharing(struct mm_struct *mm)
 {
+	int rc;
+
+	if (!mm->context.allow_cow_sharing)
+		return 0;
+
+	mm->context.allow_cow_sharing = 0;
+
+	/* Replace all shared zeropages by anonymous pages. */
+	rc = __s390_unshare_zeropages(mm);
 	/*
 	 * Make sure to disable KSM (if enabled for the whole process or
 	 * individual VMAs). Note that nothing currently hinders user space
 	 * from re-enabling it.
 	 */
-	return ksm_disable(current->mm);
+	if (!rc)
+		rc = ksm_disable(mm);
+	if (rc)
+		mm->context.allow_cow_sharing = 1;
+	return rc;
+}
+
+/*
+ * Disable most COW-sharing of memory pages for the whole process:
+ * (1) Disable KSM and unmerge/unshare any KSM pages.
+ * (2) Disallow shared zeropages and unshare any zerpages that are mapped.
+ *
+ * Not that we currently don't bother with COW-shared pages that are shared
+ * with parent/child processes due to fork().
+ */
+int s390_disable_cow_sharing(void)
+{
+	int rc;
+
+	mmap_write_lock(current->mm);
+	rc = __s390_disable_cow_sharing(current->mm);
+	mmap_write_unlock(current->mm);
+	return rc;
 }
-EXPORT_SYMBOL_GPL(gmap_mark_unmergeable);
+EXPORT_SYMBOL_GPL(s390_disable_cow_sharing);
 
 /*
  * Enable storage key handling from now on and initialize the storage
@@ -2683,7 +2768,7 @@ int s390_enable_skey(void)
 		goto out_up;
 
 	mm->context.uses_skeys = 1;
-	rc = gmap_mark_unmergeable();
+	rc = __s390_disable_cow_sharing(mm);
 	if (rc) {
 		mm->context.uses_skeys = 0;
 		goto out_up;
-- 
2.43.0




  parent reply	other threads:[~2024-05-27 19:22 UTC|newest]

Thread overview: 504+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-05-27 18:50 [PATCH 6.8 000/493] 6.8.12-rc1 review Greg Kroah-Hartman
2024-05-27 18:50 ` [PATCH 6.8 001/493] sunrpc: use the struct net as the svc proc private Greg Kroah-Hartman
2024-05-27 18:50 ` [PATCH 6.8 002/493] x86/tsc: Trust initial offset in architectural TSC-adjust MSRs Greg Kroah-Hartman
2024-05-27 18:50 ` [PATCH 6.8 003/493] selftests/ftrace: Fix BTFARG testcase to check fprobe is enabled correctly Greg Kroah-Hartman
2024-05-27 18:50 ` [PATCH 6.8 004/493] ftrace: Fix possible use-after-free issue in ftrace_location() Greg Kroah-Hartman
2024-05-27 18:50 ` [PATCH 6.8 005/493] Revert "arm64: fpsimd: Implement lazy restore for kernel mode FPSIMD" Greg Kroah-Hartman
2024-05-27 18:50 ` [PATCH 6.8 006/493] arm64/fpsimd: Avoid erroneous elide of user state reload Greg Kroah-Hartman
2024-05-27 18:50 ` [PATCH 6.8 007/493] Reapply "arm64: fpsimd: Implement lazy restore for kernel mode FPSIMD" Greg Kroah-Hartman
2024-05-27 18:50 ` [PATCH 6.8 008/493] tty: n_gsm: fix possible out-of-bounds in gsm0_receive() Greg Kroah-Hartman
2024-05-27 18:50 ` [PATCH 6.8 009/493] tty: n_gsm: fix missing receive state reset after mode switch Greg Kroah-Hartman
2024-05-27 18:50 ` [PATCH 6.8 010/493] speakup: Fix sizeof() vs ARRAY_SIZE() bug Greg Kroah-Hartman
2024-05-27 18:50 ` [PATCH 6.8 011/493] serial: sc16is7xx: fix bug in sc16is7xx_set_baud() when using prescaler Greg Kroah-Hartman
2024-05-27 18:50 ` [PATCH 6.8 012/493] serial: 8250_bcm7271: use default_mux_rate if possible Greg Kroah-Hartman
2024-05-27 18:50 ` [PATCH 6.8 013/493] serial: 8520_mtk: Set RTS on shutdown for Rx in-band wakeup Greg Kroah-Hartman
2024-05-27 18:50 ` [PATCH 6.8 014/493] Input: try trimming too long modalias strings Greg Kroah-Hartman
2024-05-27 18:50 ` [PATCH 6.8 015/493] io_uring: fail NOP if non-zero op flags is passed in Greg Kroah-Hartman
2024-05-27 18:50 ` [PATCH 6.8 016/493] Revert "r8169: dont try to disable interrupts if NAPI is, scheduled already" Greg Kroah-Hartman
2024-05-27 18:50 ` [PATCH 6.8 017/493] r8169: Fix possible ring buffer corruption on fragmented Tx packets Greg Kroah-Hartman
2024-05-27 18:50 ` [PATCH 6.8 018/493] ring-buffer: Fix a race between readers and resize checks Greg Kroah-Hartman
2024-05-27 18:50 ` [PATCH 6.8 019/493] net: mana: Fix the extra HZ in mana_hwc_send_request Greg Kroah-Hartman
2024-05-27 18:50 ` [PATCH 6.8 020/493] tools/latency-collector: Fix -Wformat-security compile warns Greg Kroah-Hartman
2024-05-27 18:50 ` [PATCH 6.8 021/493] tools/nolibc/stdlib: fix memory error in realloc() Greg Kroah-Hartman
2024-05-27 18:50 ` [PATCH 6.8 022/493] net: ti: icssg_prueth: Fix NULL pointer dereference in prueth_probe() Greg Kroah-Hartman
2024-05-27 18:50 ` [PATCH 6.8 023/493] net: lan966x: remove debugfs directory in probe() error path Greg Kroah-Hartman
2024-05-27 18:50 ` [PATCH 6.8 024/493] net: smc91x: Fix m68k kernel compilation for ColdFire CPU Greg Kroah-Hartman
2024-05-27 18:50 ` [PATCH 6.8 025/493] nilfs2: fix use-after-free of timer for log writer thread Greg Kroah-Hartman
2024-05-27 18:50 ` [PATCH 6.8 026/493] nilfs2: fix unexpected freezing of nilfs_segctor_sync() Greg Kroah-Hartman
2024-05-27 18:50 ` [PATCH 6.8 027/493] nilfs2: fix potential hang in nilfs_detach_log_writer() Greg Kroah-Hartman
2024-05-27 18:50 ` [PATCH 6.8 028/493] fs/ntfs3: Remove max link count info display during driver init Greg Kroah-Hartman
2024-05-27 18:50 ` [PATCH 6.8 029/493] fs/ntfs3: Taking DOS names into account during link counting Greg Kroah-Hartman
2024-05-27 18:50 ` [PATCH 6.8 030/493] fs/ntfs3: Fix case when index is reused during tree transformation Greg Kroah-Hartman
2024-05-27 18:50 ` [PATCH 6.8 031/493] fs/ntfs3: Break dir enumeration if directory contents error Greg Kroah-Hartman
2024-05-27 18:50 ` [PATCH 6.8 032/493] ksmbd: avoid to send duplicate oplock break notifications Greg Kroah-Hartman
2024-05-27 18:50 ` [PATCH 6.8 033/493] ksmbd: ignore trailing slashes in share paths Greg Kroah-Hartman
2024-05-27 18:50 ` [PATCH 6.8 034/493] ALSA: hda/realtek: fix mute/micmute LEDs dont work for ProBook 440/460 G11 Greg Kroah-Hartman
2024-05-27 18:50 ` [PATCH 6.8 035/493] ALSA: core: Fix NULL module pointer assignment at card init Greg Kroah-Hartman
2024-05-27 18:50 ` [PATCH 6.8 036/493] ALSA: Fix deadlocks with kctl removals at disconnection Greg Kroah-Hartman
2024-05-27 18:50 ` [PATCH 6.8 037/493] KEYS: asymmetric: Add missing dependency on CRYPTO_SIG Greg Kroah-Hartman
2024-05-27 18:50 ` [PATCH 6.8 038/493] KEYS: asymmetric: Add missing dependencies of FIPS_SIGNATURE_SELFTEST Greg Kroah-Hartman
2024-05-27 18:50 ` [PATCH 6.8 039/493] HID: nintendo: Fix N64 controller being identified as mouse Greg Kroah-Hartman
2024-05-27 18:50 ` [PATCH 6.8 040/493] dmaengine: xilinx: xdma: Clarify kdoc in XDMA driver Greg Kroah-Hartman
2024-05-27 18:50 ` [PATCH 6.8 041/493] wifi: mac80211: dont use rate mask for scanning Greg Kroah-Hartman
2024-05-27 18:50 ` [PATCH 6.8 042/493] wifi: mac80211: ensure beacon is non-S1G prior to extracting the beacon timestamp field Greg Kroah-Hartman
2024-05-27 18:50 ` [PATCH 6.8 043/493] wifi: cfg80211: fix the order of arguments for trace events of the tx_rx_evt class Greg Kroah-Hartman
2024-05-27 18:50 ` [PATCH 6.8 044/493] dt-bindings: rockchip: grf: Add missing type to pcie-phy node Greg Kroah-Hartman
2024-05-27 18:50 ` [PATCH 6.8 045/493] HID: mcp-2221: cancel delayed_work only when CONFIG_IIO is enabled Greg Kroah-Hartman
2024-05-27 18:50 ` [PATCH 6.8 046/493] net: usb: qmi_wwan: add Telit FN920C04 compositions Greg Kroah-Hartman
2024-05-27 18:50 ` [PATCH 6.8 047/493] drm/amd/display: Set color_mgmt_changed to true on unsuspend Greg Kroah-Hartman
2024-05-27 18:50 ` [PATCH 6.8 048/493] drm/amdgpu: Update BO eviction priorities Greg Kroah-Hartman
2024-05-27 18:50 ` [PATCH 6.8 049/493] drm/amd/pm: Restore config space after reset Greg Kroah-Hartman
2024-05-27 18:50 ` [PATCH 6.8 050/493] drm/amdkfd: Add VRAM accounting for SVM migration Greg Kroah-Hartman
2024-05-27 18:50 ` [PATCH 6.8 051/493] drm/amdgpu: Fix the ring buffer size for queue VM flush Greg Kroah-Hartman
2024-05-27 18:50 ` [PATCH 6.8 052/493] drm/amdgpu/mes: fix use-after-free issue Greg Kroah-Hartman
2024-05-27 18:50 ` [PATCH 6.8 053/493] Revert "net: txgbe: fix i2c dev name cannot match clkdev" Greg Kroah-Hartman
2024-05-27 18:50 ` [PATCH 6.8 054/493] Revert "net: txgbe: fix clk_name exceed MAX_DEV_ID limits" Greg Kroah-Hartman
2024-05-27 18:50 ` [PATCH 6.8 055/493] cpu: Ignore "mitigations" kernel parameter if CPU_MITIGATIONS=n Greg Kroah-Hartman
2024-05-27 18:50 ` [PATCH 6.8 056/493] LoongArch: Lately init pmu after smp is online Greg Kroah-Hartman
2024-05-27 18:50 ` [PATCH 6.8 057/493] drm/etnaviv: fix tx clock gating on some GC7000 variants Greg Kroah-Hartman
2024-05-27 18:51 ` [PATCH 6.8 058/493] selftests: sud_test: return correct emulated syscall value on RISC-V Greg Kroah-Hartman
2024-05-27 18:51 ` [PATCH 6.8 059/493] riscv: thead: Rename T-Head PBMT to MAE Greg Kroah-Hartman
2024-05-27 18:51 ` [PATCH 6.8 060/493] riscv: T-Head: Test availability bit before enabling MAE errata Greg Kroah-Hartman
2024-05-27 18:51 ` [PATCH 6.8 061/493] sched/isolation: Fix boot crash when maxcpus < first housekeeping CPU Greg Kroah-Hartman
2024-05-27 18:51 ` [PATCH 6.8 062/493] ASoC: Intel: bytcr_rt5640: Apply Asus T100TA quirk to Asus T100TAM too Greg Kroah-Hartman
2024-05-27 18:51 ` [PATCH 6.8 063/493] regulator: irq_helpers: duplicate IRQ name Greg Kroah-Hartman
2024-05-27 18:51 ` [PATCH 6.8 064/493] ALSA: hda: cs35l56: Exit cache-only after cs35l56_wait_for_firmware_boot() Greg Kroah-Hartman
2024-05-27 18:51 ` [PATCH 6.8 065/493] ASoC: SOF: ipc4-pcm: Use consistent name for snd_sof_pcm_stream pointer Greg Kroah-Hartman
2024-05-27 18:51 ` [PATCH 6.8 066/493] ASoC: SOF: ipc4-pcm: Use consistent name for sof_ipc4_timestamp_info pointer Greg Kroah-Hartman
2024-05-27 18:51 ` [PATCH 6.8 067/493] ASoC: SOF: ipc4-pcm: Introduce generic sof_ipc4_pcm_stream_priv Greg Kroah-Hartman
2024-05-27 18:51 ` [PATCH 6.8 068/493] ASoC: SOF: pcm: Restrict DSP D0i3 during S0ix to IPC3 Greg Kroah-Hartman
2024-05-27 18:51 ` [PATCH 6.8 069/493] ASoC: acp: Support microphone from device Acer 315-24p Greg Kroah-Hartman
2024-05-27 18:51 ` [PATCH 6.8 070/493] ASoC: rt5645: Fix the electric noise due to the CBJ contacts floating Greg Kroah-Hartman
2024-05-27 18:51 ` [PATCH 6.8 071/493] ASoC: dt-bindings: rt5645: add cbj sleeve gpio property Greg Kroah-Hartman
2024-05-27 18:51 ` [PATCH 6.8 072/493] ASoC: rt722-sdca: modify channel number to support 4 channels Greg Kroah-Hartman
2024-05-27 18:51 ` [PATCH 6.8 073/493] ASoC: rt722-sdca: add headset microphone vrefo setting Greg Kroah-Hartman
2024-05-27 18:51 ` [PATCH 6.8 074/493] regulator: qcom-refgen: fix module autoloading Greg Kroah-Hartman
2024-05-27 18:51 ` [PATCH 6.8 075/493] regulator: vqmmc-ipq4019: " Greg Kroah-Hartman
2024-05-27 18:51 ` [PATCH 6.8 076/493] ASoC: cs35l41: Update DSP1RX5/6 Sources for DSP config Greg Kroah-Hartman
2024-05-27 18:51 ` [PATCH 6.8 077/493] ASoC: rt715: add vendor clear control register Greg Kroah-Hartman
2024-05-27 18:51 ` [PATCH 6.8 078/493] ASoC: rt715-sdca: volume step modification Greg Kroah-Hartman
2024-05-27 18:51 ` [PATCH 6.8 079/493] KVM: selftests: Add test for uaccesses to non-existent vgic-v2 CPUIF Greg Kroah-Hartman
2024-05-27 18:51 ` [PATCH 6.8 080/493] Input: xpad - add support for ASUS ROG RAIKIRI Greg Kroah-Hartman
2024-05-27 18:51 ` [PATCH 6.8 081/493] btrfs: take the cleaner_mutex earlier in qgroup disable Greg Kroah-Hartman
2024-05-27 18:51 ` [PATCH 6.8 082/493] EDAC/versal: Do not register for NOC errors Greg Kroah-Hartman
2024-05-27 18:51 ` [PATCH 6.8 083/493] fpga: dfl-pci: add PCI subdevice ID for Intel D5005 card Greg Kroah-Hartman
2024-05-27 18:51 ` [PATCH 6.8 084/493] bpf, x86: Fix PROBE_MEM runtime load check Greg Kroah-Hartman
2024-05-27 18:51 ` [PATCH 6.8 085/493] ALSA: emu10k1: make E-MU FPGA writes potentially more reliable Greg Kroah-Hartman
2024-05-27 18:51 ` [PATCH 6.8 086/493] softirq: Fix suspicious RCU usage in __do_softirq() Greg Kroah-Hartman
2024-05-27 18:51 ` [PATCH 6.8 087/493] platform/x86: ISST: Add Grand Ridge to HPM CPU list Greg Kroah-Hartman
2024-05-27 18:51 ` [PATCH 6.8 088/493] ASoC: da7219-aad: fix usage of device_get_named_child_node() Greg Kroah-Hartman
2024-05-27 18:51 ` [PATCH 6.8 089/493] ASoC: cs35l56: fix usages " Greg Kroah-Hartman
2024-05-27 18:51 ` [PATCH 6.8 090/493] ALSA: hda: intel-dsp-config: harden I2C/I2S codec detection Greg Kroah-Hartman
2024-05-27 18:51 ` [PATCH 6.8 091/493] Input: amimouse - mark driver struct with __refdata to prevent section mismatch Greg Kroah-Hartman
2024-05-27 18:51 ` [PATCH 6.8 092/493] drm/amdgpu: Fix VRAM memory accounting Greg Kroah-Hartman
2024-05-27 18:51 ` [PATCH 6.8 093/493] drm/amd/display: Ensure that dmcub support flag is set for DCN20 Greg Kroah-Hartman
2024-05-27 18:51 ` [PATCH 6.8 094/493] drm/amd/display: Add dtbclk access to dcn315 Greg Kroah-Hartman
2024-05-27 18:51 ` [PATCH 6.8 095/493] drm/amd/display: Allocate zero bw after bw alloc enable Greg Kroah-Hartman
2024-05-27 18:51 ` [PATCH 6.8 096/493] drm/amd/display: Add VCO speed parameter for DCN31 FPU Greg Kroah-Hartman
2024-05-27 18:51 ` [PATCH 6.8 097/493] drm/amd/display: Fix DC mode screen flickering on DCN321 Greg Kroah-Hartman
2024-05-27 18:51 ` [PATCH 6.8 098/493] drm/amd/display: Disable seamless boot on 128b/132b encoding Greg Kroah-Hartman
2024-05-27 18:51 ` [PATCH 6.8 099/493] drm/amdkfd: Flush the process wq before creating a kfd_process Greg Kroah-Hartman
2024-05-27 18:51 ` [PATCH 6.8 100/493] x86/mm: Remove broken vsyscall emulation code from the page fault code Greg Kroah-Hartman
2024-05-27 18:51 ` [PATCH 6.8 101/493] nvme: find numa distance only if controller has valid numa id Greg Kroah-Hartman
2024-05-27 18:51 ` [PATCH 6.8 102/493] nvmet-auth: return the error code to the nvmet_auth_host_hash() callers Greg Kroah-Hartman
2024-05-27 18:51 ` [PATCH 6.8 103/493] nvmet-auth: replace pr_debug() with pr_err() to report an error Greg Kroah-Hartman
2024-05-27 18:51 ` [PATCH 6.8 104/493] nvme: cancel pending I/O if nvme controller is in terminal state Greg Kroah-Hartman
2024-05-27 18:51 ` [PATCH 6.8 105/493] nvmet-tcp: fix possible memory leak when tearing down a controller Greg Kroah-Hartman
2024-05-27 18:51 ` [PATCH 6.8 106/493] nvmet: fix nvme status code when namespace is disabled Greg Kroah-Hartman
2024-05-27 18:51 ` [PATCH 6.8 107/493] nvme-tcp: strict pdu pacing to avoid send stalls on TLS Greg Kroah-Hartman
2024-05-27 18:51 ` [PATCH 6.8 108/493] epoll: be better about file lifetimes Greg Kroah-Hartman
2024-05-27 18:51 ` [PATCH 6.8 109/493] nvmet: prevent sprintf() overflow in nvmet_subsys_nsid_exists() Greg Kroah-Hartman
2024-05-27 18:51 ` [PATCH 6.8 110/493] openpromfs: finish conversion to the new mount API Greg Kroah-Hartman
2024-05-27 18:51 ` [PATCH 6.8 111/493] crypto: bcm - Fix pointer arithmetic Greg Kroah-Hartman
2024-05-27 18:51 ` [PATCH 6.8 112/493] firmware: qcom: qcm: fix unused qcom_scm_qseecom_allowlist Greg Kroah-Hartman
2024-05-27 18:51 ` [PATCH 6.8 113/493] mm/slub, kunit: Use inverted data to corrupt kmem cache Greg Kroah-Hartman
2024-05-27 18:51 ` [PATCH 6.8 114/493] firmware: raspberrypi: Use correct device for DMA mappings Greg Kroah-Hartman
2024-05-27 18:51 ` [PATCH 6.8 115/493] ecryptfs: Fix buffer size for tag 66 packet Greg Kroah-Hartman
2024-05-27 18:51 ` [PATCH 6.8 116/493] nilfs2: fix out-of-range warning Greg Kroah-Hartman
2024-05-27 18:51 ` [PATCH 6.8 117/493] parisc: add missing export of __cmpxchg_u8() Greg Kroah-Hartman
2024-05-27 18:52 ` [PATCH 6.8 118/493] crypto: ccp - drop platform ifdef checks Greg Kroah-Hartman
2024-05-27 18:52 ` [PATCH 6.8 119/493] crypto: x86/nh-avx2 - add missing vzeroupper Greg Kroah-Hartman
2024-05-27 18:52 ` [PATCH 6.8 120/493] crypto: x86/sha256-avx2 " Greg Kroah-Hartman
2024-05-27 18:52 ` [PATCH 6.8 121/493] crypto: x86/sha512-avx2 " Greg Kroah-Hartman
2024-05-27 18:52 ` [PATCH 6.8 122/493] s390/cio: fix tracepoint subchannel type field Greg Kroah-Hartman
2024-05-27 18:52 ` [PATCH 6.8 123/493] io_uring: use the right type for work_llist empty check Greg Kroah-Hartman
2024-05-27 18:52 ` [PATCH 6.8 124/493] rcu-tasks: Fix show_rcu_tasks_trace_gp_kthread buffer overflow Greg Kroah-Hartman
2024-05-27 18:52 ` [PATCH 6.8 125/493] rcu: Fix buffer overflow in print_cpu_stall_info() Greg Kroah-Hartman
2024-05-27 18:52 ` [PATCH 6.8 126/493] ARM: configs: sunxi: Enable DRM_DW_HDMI Greg Kroah-Hartman
2024-05-27 18:52 ` [PATCH 6.8 127/493] jffs2: prevent xattr node from overflowing the eraseblock Greg Kroah-Hartman
2024-05-27 18:52 ` [PATCH 6.8 128/493] libfs: Re-arrange locking in offset_iterate_dir() Greg Kroah-Hartman
2024-05-27 18:52 ` [PATCH 6.8 129/493] libfs: Define a minimum directory offset Greg Kroah-Hartman
2024-05-27 18:52 ` [PATCH 6.8 130/493] libfs: Add simple_offset_empty() Greg Kroah-Hartman
2024-05-27 18:52 ` [PATCH 6.8 131/493] maple_tree: Add mtree_alloc_cyclic() Greg Kroah-Hartman
2024-05-27 18:52 ` [PATCH 6.8 132/493] libfs: Convert simple directory offsets to use a Maple Tree Greg Kroah-Hartman
2024-05-27 18:52 ` [PATCH 6.8 133/493] libfs: Fix simple_offset_rename_exchange() Greg Kroah-Hartman
2024-05-27 18:52 ` [PATCH 6.8 134/493] libfs: Add simple_offset_rename() API Greg Kroah-Hartman
2024-05-27 18:52 ` [PATCH 6.8 135/493] shmem: Fix shmem_rename2() Greg Kroah-Hartman
2024-05-27 18:52 ` [PATCH 6.8 136/493] io-wq: write next_work before dropping acct_lock Greg Kroah-Hartman
2024-05-27 18:52 ` [PATCH 6.8 137/493] mm/userfaultfd: Do not place zeropages when zeropages are disallowed Greg Kroah-Hartman
2024-05-27 18:52 ` Greg Kroah-Hartman [this message]
2024-05-27 18:52 ` [PATCH 6.8 139/493] crypto: octeontx2 - add missing check for dma_map_single Greg Kroah-Hartman
2024-05-27 18:52 ` [PATCH 6.8 140/493] crypto: qat - improve error message in adf_get_arbiter_mapping() Greg Kroah-Hartman
2024-05-27 18:52 ` [PATCH 6.8 141/493] crypto: qat - improve error logging to be consistent across features Greg Kroah-Hartman
2024-05-27 18:52 ` [PATCH 6.8 142/493] soc: qcom: pmic_glink: dont traverse clients list without a lock Greg Kroah-Hartman
2024-05-27 18:52 ` [PATCH 6.8 143/493] soc: qcom: pmic_glink: notify clients about the current state Greg Kroah-Hartman
2024-05-27 18:52 ` [PATCH 6.8 144/493] firmware: qcom: scm: Fix __scm and waitq completion variable initialization Greg Kroah-Hartman
2024-05-27 18:52 ` [PATCH 6.8 145/493] soc: mediatek: cmdq: Fix typo of CMDQ_JUMP_RELATIVE Greg Kroah-Hartman
2024-05-27 18:52 ` [PATCH 6.8 146/493] null_blk: Fix missing mutex_destroy() at module removal Greg Kroah-Hartman
2024-05-27 18:52 ` [PATCH 6.8 147/493] crypto: qat - validate slices count returned by FW Greg Kroah-Hartman
2024-05-27 18:52 ` [PATCH 6.8 148/493] hwrng: stm32 - use logical OR in conditional Greg Kroah-Hartman
2024-05-27 18:52 ` [PATCH 6.8 149/493] hwrng: stm32 - put IP into RPM suspend on failure Greg Kroah-Hartman
2024-05-27 18:52 ` [PATCH 6.8 150/493] hwrng: stm32 - repair clock handling Greg Kroah-Hartman
2024-05-27 18:52 ` [PATCH 6.8 151/493] kunit/fortify: Fix mismatched kvalloc()/vfree() usage Greg Kroah-Hartman
2024-05-27 18:52 ` [PATCH 6.8 152/493] io_uring/net: remove dependency on REQ_F_PARTIAL_IO for sr->done_io Greg Kroah-Hartman
2024-05-27 18:52 ` [PATCH 6.8 153/493] io_uring/net: fix sendzc lazy wake polling Greg Kroah-Hartman
2024-05-27 18:52 ` [PATCH 6.8 154/493] soc: qcom: pmic_glink: Make client-lock non-sleeping Greg Kroah-Hartman
2024-05-27 18:52 ` [PATCH 6.8 155/493] lkdtm: Disable CFI checking for perms functions Greg Kroah-Hartman
2024-05-27 18:52 ` [PATCH 6.8 156/493] md: fix resync softlockup when bitmap size is less than array size Greg Kroah-Hartman
2024-05-27 18:52 ` [PATCH 6.8 157/493] crypto: qat - specify firmware files for 402xx Greg Kroah-Hartman
2024-05-27 18:52 ` [PATCH 6.8 158/493] block: refine the EOF check in blkdev_iomap_begin Greg Kroah-Hartman
2024-05-27 18:52 ` [PATCH 6.8 159/493] block: fix and simplify blkdevparts= cmdline parsing Greg Kroah-Hartman
2024-05-27 18:52 ` [PATCH 6.8 160/493] block: support to account io_ticks precisely Greg Kroah-Hartman
2024-05-27 18:52 ` [PATCH 6.8 161/493] wifi: ath10k: poll service ready message before failing Greg Kroah-Hartman
2024-05-27 18:52 ` [PATCH 6.8 162/493] wifi: brcmfmac: pcie: handle randbuf allocation failure Greg Kroah-Hartman
2024-05-27 18:52 ` [PATCH 6.8 163/493] wifi: ath11k: dont force enable power save on non-running vdevs Greg Kroah-Hartman
2024-05-27 18:52 ` [PATCH 6.8 164/493] bpftool: Fix missing pids during link show Greg Kroah-Hartman
2024-05-27 18:52 ` [PATCH 6.8 165/493] libbpf: Prevent null-pointer dereference when prog to load has no BTF Greg Kroah-Hartman
2024-05-27 18:52 ` [PATCH 6.8 166/493] wifi: ath12k: use correct flag field for 320 MHz channels Greg Kroah-Hartman
2024-05-27 18:52 ` [PATCH 6.8 167/493] wifi: mt76: mt7915: workaround too long expansion sparse warnings Greg Kroah-Hartman
2024-05-27 18:52 ` [PATCH 6.8 168/493] x86/boot: Ignore relocations in .notes sections in walk_relocs() too Greg Kroah-Hartman
2024-05-27 18:52 ` [PATCH 6.8 169/493] wifi: ieee80211: fix ieee80211_mle_basic_sta_prof_size_ok() Greg Kroah-Hartman
2024-05-27 18:52 ` [PATCH 6.8 170/493] wifi: iwlwifi: mvm: Do not warn on invalid link on scan complete Greg Kroah-Hartman
2024-05-27 18:52 ` [PATCH 6.8 171/493] wifi: iwlwifi: mvm: allocate STA links only for active links Greg Kroah-Hartman
2024-05-27 18:52 ` [PATCH 6.8 172/493] wifi: mac80211: dont select link ID if not provided in scan request Greg Kroah-Hartman
2024-05-27 18:52 ` [PATCH 6.8 173/493] wifi: iwlwifi: implement can_activate_links callback Greg Kroah-Hartman
2024-05-27 18:52 ` [PATCH 6.8 174/493] wifi: iwlwifi: mvm: fix active link counting during recovery Greg Kroah-Hartman
2024-05-27 18:52 ` [PATCH 6.8 175/493] wifi: iwlwifi: mvm: select STA mask only for active links Greg Kroah-Hartman
2024-05-27 18:52 ` [PATCH 6.8 176/493] wifi: iwlwifi: reconfigure TLC during HW restart Greg Kroah-Hartman
2024-05-27 18:52 ` [PATCH 6.8 177/493] wifi: iwlwifi: mvm: fix check in iwl_mvm_sta_fw_id_mask Greg Kroah-Hartman
2024-05-27 18:53 ` [PATCH 6.8 178/493] sched/fair: Add EAS checks before updating root_domain::overutilized Greg Kroah-Hartman
2024-05-27 18:53 ` [PATCH 6.8 179/493] ACPI: bus: Indicate support for _TFP thru _OSC Greg Kroah-Hartman
2024-05-27 18:53 ` [PATCH 6.8 180/493] ACPI: bus: Indicate support for more than 16 p-states " Greg Kroah-Hartman
2024-05-27 18:53 ` [PATCH 6.8 181/493] ACPI: bus: Indicate support for the Generic Event Device " Greg Kroah-Hartman
2024-05-27 18:53 ` [PATCH 6.8 182/493] ACPI: Fix Generic Initiator Affinity _OSC bit Greg Kroah-Hartman
2024-05-27 18:53 ` [PATCH 6.8 183/493] ACPI: bus: Indicate support for IRQ ResourceSource thru _OSC Greg Kroah-Hartman
2024-05-27 18:53 ` [PATCH 6.8 184/493] enetc: avoid truncating error message Greg Kroah-Hartman
2024-05-27 18:53 ` [PATCH 6.8 185/493] qed: avoid truncating work queue length Greg Kroah-Hartman
2024-05-27 18:53 ` [PATCH 6.8 186/493] mlx5: avoid truncating error message Greg Kroah-Hartman
2024-05-27 18:53 ` [PATCH 6.8 187/493] mlx5: stop warning for 64KB pages Greg Kroah-Hartman
2024-05-27 18:53 ` [PATCH 6.8 188/493] bitops: add missing prototype check Greg Kroah-Hartman
2024-05-27 18:53 ` [PATCH 6.8 189/493] dlm: fix user space lock decision to copy lvb Greg Kroah-Hartman
2024-05-27 18:53 ` [PATCH 6.8 190/493] wifi: carl9170: re-fix fortified-memset warning Greg Kroah-Hartman
2024-05-27 18:53 ` [PATCH 6.8 191/493] bpftool: Mount bpffs on provided dir instead of parent dir Greg Kroah-Hartman
2024-05-27 18:53 ` [PATCH 6.8 192/493] bpf: Pack struct bpf_fib_lookup Greg Kroah-Hartman
2024-05-27 18:53 ` [PATCH 6.8 193/493] bpf: prevent r10 register from being marked as precise Greg Kroah-Hartman
2024-05-27 18:53 ` [PATCH 6.8 194/493] x86/microcode/AMD: Avoid -Wformat warning with clang-15 Greg Kroah-Hartman
2024-05-27 18:53 ` [PATCH 6.8 195/493] scsi: ufs: qcom: Perform read back after writing reset bit Greg Kroah-Hartman
2024-05-27 18:53 ` [PATCH 6.8 196/493] scsi: ufs: qcom: Perform read back after writing REG_UFS_SYS1CLK_1US Greg Kroah-Hartman
2024-05-27 18:53 ` [PATCH 6.8 197/493] scsi: ufs: qcom: Perform read back after writing unipro mode Greg Kroah-Hartman
2024-05-27 18:53 ` [PATCH 6.8 198/493] scsi: ufs: qcom: Perform read back after writing CGC enable Greg Kroah-Hartman
2024-05-27 18:53 ` [PATCH 6.8 199/493] scsi: ufs: cdns-pltfrm: Perform read back after writing HCLKDIV Greg Kroah-Hartman
2024-05-27 18:53 ` [PATCH 6.8 200/493] scsi: ufs: core: Perform read back after writing UTP_TASK_REQ_LIST_BASE_H Greg Kroah-Hartman
2024-05-27 18:53 ` [PATCH 6.8 201/493] scsi: ufs: core: Perform read back after disabling interrupts Greg Kroah-Hartman
2024-05-27 18:53 ` [PATCH 6.8 202/493] scsi: ufs: core: Perform read back after disabling UIC_COMMAND_COMPL Greg Kroah-Hartman
2024-05-27 18:53 ` [PATCH 6.8 203/493] ACPI: LPSS: Advertise number of chip selects via property Greg Kroah-Hartman
2024-05-27 18:53 ` [PATCH 6.8 204/493] EDAC/skx_common: Allow decoding of SGX addresses Greg Kroah-Hartman
2024-05-27 18:53 ` [PATCH 6.8 205/493] locking/atomic/x86: Correct the definition of __arch_try_cmpxchg128() Greg Kroah-Hartman
2024-05-27 18:53 ` [PATCH 6.8 206/493] irqchip/alpine-msi: Fix off-by-one in allocation error path Greg Kroah-Hartman
2024-05-27 18:53 ` [PATCH 6.8 207/493] irqchip/loongson-pch-msi: Fix off-by-one on " Greg Kroah-Hartman
2024-05-27 18:53 ` [PATCH 6.8 208/493] ACPI: disable -Wstringop-truncation Greg Kroah-Hartman
2024-05-27 18:53 ` [PATCH 6.8 209/493] gfs2: Dont forget to complete delayed withdraw Greg Kroah-Hartman
2024-05-27 18:53 ` [PATCH 6.8 210/493] gfs2: Fix "ignore unlock failures after withdraw" Greg Kroah-Hartman
2024-05-27 18:53 ` [PATCH 6.8 211/493] arm64: Remove unnecessary irqflags alternative.h include Greg Kroah-Hartman
2024-05-27 18:53 ` [PATCH 6.8 212/493] x86/boot/64: Clear most of CR4 in startup_64(), except PAE, MCE and LA57 Greg Kroah-Hartman
2024-05-27 18:53 ` [PATCH 6.8 213/493] selftests/bpf: Fix umount cgroup2 error in test_sockmap Greg Kroah-Hartman
2024-05-27 18:53 ` [PATCH 6.8 214/493] tcp: increase the default TCP scaling ratio Greg Kroah-Hartman
2024-05-27 18:53 ` [PATCH 6.8 215/493] cpufreq: exit() callback is optional Greg Kroah-Hartman
2024-05-27 18:53 ` [PATCH 6.8 216/493] x86/pat: Introduce lookup_address_in_pgd_attr() Greg Kroah-Hartman
2024-05-27 18:53 ` [PATCH 6.8 217/493] x86/pat: Restructure _lookup_address_cpa() Greg Kroah-Hartman
2024-05-27 18:53 ` [PATCH 6.8 218/493] x86/pat: Fix W^X violation false-positives when running as Xen PV guest Greg Kroah-Hartman
2024-05-27 18:53 ` [PATCH 6.8 219/493] udp: Avoid call to compute_score on multiple sites Greg Kroah-Hartman
2024-05-27 18:53 ` [PATCH 6.8 220/493] openrisc: traps: Dont send signals to kernel mode threads Greg Kroah-Hartman
2024-05-27 18:53 ` [PATCH 6.8 221/493] cppc_cpufreq: Fix possible null pointer dereference Greg Kroah-Hartman
2024-05-27 18:53 ` [PATCH 6.8 222/493] wifi: iwlwifi: mvm: init vif works only once Greg Kroah-Hartman
2024-05-27 18:53 ` [PATCH 6.8 223/493] scsi: libsas: Fix the failure of adding phy with zero-address to port Greg Kroah-Hartman
2024-05-27 18:53 ` [PATCH 6.8 224/493] scsi: hpsa: Fix allocation size for Scsi_Host private data Greg Kroah-Hartman
2024-05-27 18:53 ` [PATCH 6.8 225/493] x86/purgatory: Switch to the position-independent small code model Greg Kroah-Hartman
2024-05-27 18:53 ` [PATCH 6.8 226/493] wifi: ath12k: fix out-of-bound access of qmi_invoke_handler() Greg Kroah-Hartman
2024-05-27 18:53 ` [PATCH 6.8 227/493] thermal/drivers/mediatek/lvts_thermal: Add coeff for mt8192 Greg Kroah-Hartman
2024-05-27 18:53 ` [PATCH 6.8 228/493] thermal/drivers/tsens: Fix null pointer dereference Greg Kroah-Hartman
2024-05-27 18:53 ` [PATCH 6.8 229/493] dt-bindings: thermal: loongson,ls2k-thermal: Add Loongson-2K0500 compatible Greg Kroah-Hartman
2024-05-27 18:53 ` [PATCH 6.8 230/493] dt-bindings: thermal: loongson,ls2k-thermal: Fix incorrect compatible definition Greg Kroah-Hartman
2024-05-27 18:53 ` [PATCH 6.8 231/493] wifi: ath10k: Fix an error code problem in ath10k_dbg_sta_write_peer_debug_trigger() Greg Kroah-Hartman
2024-05-27 18:53 ` [PATCH 6.8 232/493] gfs2: Remove ill-placed consistency check Greg Kroah-Hartman
2024-05-27 18:53 ` [PATCH 6.8 233/493] gfs2: Fix potential glock use-after-free on unmount Greg Kroah-Hartman
2024-05-27 18:53 ` [PATCH 6.8 234/493] gfs2: finish_xmote cleanup Greg Kroah-Hartman
2024-05-27 18:53 ` [PATCH 6.8 235/493] gfs2: do_xmote fixes Greg Kroah-Hartman
2024-05-27 18:53 ` [PATCH 6.8 236/493] thermal/debugfs: Avoid excessive updates of trip point statistics Greg Kroah-Hartman
2024-05-27 18:53 ` [PATCH 6.8 237/493] selftests/bpf: Fix a fd leak in error paths in open_netns Greg Kroah-Hartman
2024-05-27 18:54 ` [PATCH 6.8 238/493] scsi: ufs: core: mcq: Fix ufshcd_mcq_sqe_search() Greg Kroah-Hartman
2024-05-27 18:54 ` [PATCH 6.8 239/493] cpufreq: brcmstb-avs-cpufreq: ISO C90 forbids mixed declarations Greg Kroah-Hartman
2024-05-27 18:54 ` [PATCH 6.8 240/493] wifi: ath10k: populate board data for WCN3990 Greg Kroah-Hartman
2024-05-27 18:54 ` [PATCH 6.8 241/493] net: dsa: mv88e6xxx: Add support for model-specific pre- and post-reset handlers Greg Kroah-Hartman
2024-05-27 18:54 ` [PATCH 6.8 242/493] net: dsa: mv88e6xxx: Avoid EEPROM timeout without EEPROM on 88E6250-family switches Greg Kroah-Hartman
2024-05-27 18:54 ` [PATCH 6.8 243/493] tcp: avoid premature drops in tcp_add_backlog() Greg Kroah-Hartman
2024-05-27 18:54 ` [PATCH 6.8 244/493] thermal/debugfs: Create records for cdev states as they get used Greg Kroah-Hartman
2024-05-27 18:54 ` [PATCH 6.8 245/493] thermal/debugfs: Pass cooling device state to thermal_debug_cdev_add() Greg Kroah-Hartman
2024-05-27 18:54 ` [PATCH 6.8 246/493] pwm: sti: Prepare removing pwm_chip from driver data Greg Kroah-Hartman
2024-05-27 18:54 ` [PATCH 6.8 247/493] pwm: sti: Simplify probe function using devm functions Greg Kroah-Hartman
2024-05-27 18:54 ` [PATCH 6.8 248/493] drivers/perf: hisi_pcie: Fix out-of-bound access when valid event group Greg Kroah-Hartman
2024-05-27 18:54 ` [PATCH 6.8 249/493] drivers/perf: hisi: hns3: " Greg Kroah-Hartman
2024-05-27 18:54 ` [PATCH 6.8 250/493] drivers/perf: hisi: hns3: Actually use devm_add_action_or_reset() Greg Kroah-Hartman
2024-05-27 18:54 ` [PATCH 6.8 251/493] net: give more chances to rcu in netdev_wait_allrefs_any() Greg Kroah-Hartman
2024-05-27 18:54 ` [PATCH 6.8 252/493] macintosh/via-macii: Fix "BUG: sleeping function called from invalid context" Greg Kroah-Hartman
2024-05-27 18:54 ` [PATCH 6.8 253/493] wifi: carl9170: add a proper sanity check for endpoints Greg Kroah-Hartman
2024-05-27 18:54 ` [PATCH 6.8 254/493] bpf: Fix verifier assumptions about socket->sk Greg Kroah-Hartman
2024-05-27 18:54 ` [PATCH 6.8 255/493] selftests/bpf: Run cgroup1_hierarchy test in own mount namespace Greg Kroah-Hartman
2024-05-27 18:54 ` [PATCH 6.8 256/493] wifi: ar5523: enable proper endpoint verification Greg Kroah-Hartman
2024-05-27 18:54 ` [PATCH 6.8 257/493] pwm: Drop useless member .of_pwm_n_cells of struct pwm_chip Greg Kroah-Hartman
2024-05-27 18:54 ` [PATCH 6.8 258/493] pwm: Let the of_xlate callbacks accept references without period Greg Kroah-Hartman
2024-05-27 18:54 ` [PATCH 6.8 259/493] pwm: Drop duplicate check against chip->npwm in of_pwm_xlate_with_flags() Greg Kroah-Hartman
2024-05-27 18:54 ` [PATCH 6.8 260/493] pwm: Reorder symbols in core.c Greg Kroah-Hartman
2024-05-27 18:54 ` [PATCH 6.8 261/493] pwm: Provide an inline function to get the parent device of a given chip Greg Kroah-Hartman
2024-05-27 18:54 ` [PATCH 6.8 262/493] pwm: meson: Change prototype of a few helpers to prepare further changes Greg Kroah-Hartman
2024-05-27 18:54 ` [PATCH 6.8 263/493] pwm: meson: Make use of pwmchip_parent() accessor Greg Kroah-Hartman
2024-05-27 18:54 ` [PATCH 6.8 264/493] pwm: meson: Add check for error from clk_round_rate() Greg Kroah-Hartman
2024-05-27 18:54 ` [PATCH 6.8 265/493] pwm: meson: Use mul_u64_u64_div_u64() for frequency calculating Greg Kroah-Hartman
2024-05-27 18:54 ` [PATCH 6.8 266/493] bpf: Add BPF_PROG_TYPE_CGROUP_SKB attach type enforcement in BPF_LINK_CREATE Greg Kroah-Hartman
2024-05-27 18:54 ` [PATCH 6.8 267/493] sh: kprobes: Merge arch_copy_kprobe() into arch_prepare_kprobe() Greg Kroah-Hartman
2024-05-27 18:54 ` [PATCH 6.8 268/493] Revert "sh: Handle calling csum_partial with misaligned data" Greg Kroah-Hartman
2024-05-27 18:54 ` [PATCH 6.8 269/493] wifi: mt76: mt7603: fix tx queue of loopback packets Greg Kroah-Hartman
2024-05-27 18:54 ` [PATCH 6.8 270/493] wifi: mt76: mt7603: add wpdma tx eof flag for PSE client reset Greg Kroah-Hartman
2024-05-27 18:54 ` [PATCH 6.8 271/493] wifi: mt76: mt7996: fix size of txpower MCU command Greg Kroah-Hartman
2024-05-27 18:54 ` [PATCH 6.8 272/493] wifi: mt76: mt7925: ensure 4-byte alignment for suspend & wow command Greg Kroah-Hartman
2024-05-27 18:54 ` [PATCH 6.8 273/493] wifi: mt76: mt7996: fix uninitialized variable in mt7996_irq_tasklet() Greg Kroah-Hartman
2024-05-27 18:54 ` [PATCH 6.8 274/493] wifi: mt76: mt7996: fix potential memory leakage when reading chip temperature Greg Kroah-Hartman
2024-05-27 18:54 ` [PATCH 6.8 275/493] libbpf: Fix error message in attach_kprobe_multi Greg Kroah-Hartman
2024-05-27 18:54 ` [PATCH 6.8 276/493] wifi: nl80211: Avoid address calculations via out of bounds array indexing Greg Kroah-Hartman
2024-05-27 18:54 ` [PATCH 6.8 277/493] wifi: rtw89: wow: refine WoWLAN flows of HCI interrupts and low power mode Greg Kroah-Hartman
2024-05-27 18:54 ` [PATCH 6.8 278/493] selftests/binderfs: use the Makefiles rules, not Makes implicit rules Greg Kroah-Hartman
2024-05-27 18:54 ` [PATCH 6.8 279/493] selftests/resctrl: fix clang build failure: use LOCAL_HDRS Greg Kroah-Hartman
2024-05-27 18:54 ` [PATCH 6.8 280/493] selftests: default to host arch for LLVM builds Greg Kroah-Hartman
2024-05-27 18:54 ` [PATCH 6.8 281/493] kunit: Fix kthread reference Greg Kroah-Hartman
2024-05-27 18:54 ` [PATCH 6.8 282/493] kunit: unregister the device on error Greg Kroah-Hartman
2024-05-27 18:54 ` [PATCH 6.8 283/493] kunit: bail out early in __kunit_test_suites_init() if there are no suites to test Greg Kroah-Hartman
2024-05-27 18:54 ` [PATCH 6.8 284/493] selftests/bpf: Fix pointer arithmetic in test_xdp_do_redirect Greg Kroah-Hartman
2024-05-27 18:54 ` [PATCH 6.8 285/493] HID: intel-ish-hid: ipc: Add check for pci_alloc_irq_vectors Greg Kroah-Hartman
2024-05-27 18:54 ` [PATCH 6.8 286/493] scsi: bfa: Ensure the copied buf is NUL terminated Greg Kroah-Hartman
2024-05-27 18:54 ` [PATCH 6.8 287/493] scsi: qedf: " Greg Kroah-Hartman
2024-05-27 18:54 ` [PATCH 6.8 288/493] scsi: qla2xxx: Fix debugfs output for fw_resource_count Greg Kroah-Hartman
2024-05-27 18:54 ` [PATCH 6.8 289/493] gpio: nuvoton: Fix sgpio irq handle error Greg Kroah-Hartman
2024-05-27 18:54 ` [PATCH 6.8 290/493] x86/numa: Fix SRAT lookup of CFMWS ranges with numa_fill_memblks() Greg Kroah-Hartman
2024-05-27 18:54 ` [PATCH 6.8 291/493] wifi: mwl8k: initialize cmd->addr[] properly Greg Kroah-Hartman
2024-05-27 18:54 ` [PATCH 6.8 292/493] HID: amd_sfh: Handle "no sensors" in PM operations Greg Kroah-Hartman
2024-05-27 18:54 ` [PATCH 6.8 293/493] usb: aqc111: stop lying about skb->truesize Greg Kroah-Hartman
2024-05-27 18:54 ` [PATCH 6.8 294/493] net: usb: sr9700: " Greg Kroah-Hartman
2024-05-27 18:54 ` [PATCH 6.8 295/493] m68k: Fix spinlock race in kernel thread creation Greg Kroah-Hartman
2024-05-27 18:54 ` [PATCH 6.8 296/493] m68k: mac: Fix reboot hang on Mac IIci Greg Kroah-Hartman
2024-05-27 18:54 ` [PATCH 6.8 297/493] dm-delay: fix workqueue delay_timer race Greg Kroah-Hartman
2024-05-27 18:55 ` [PATCH 6.8 298/493] dm-delay: fix hung task introduced by kthread mode Greg Kroah-Hartman
2024-05-27 18:55 ` [PATCH 6.8 299/493] dm-delay: fix max_delay calculations Greg Kroah-Hartman
2024-05-27 18:55 ` [PATCH 6.8 300/493] ptp: ocp: fix DPLL functions Greg Kroah-Hartman
2024-05-27 18:55 ` [PATCH 6.8 301/493] net: ipv6: fix wrong start position when receive hop-by-hop fragment Greg Kroah-Hartman
2024-05-27 18:55 ` [PATCH 6.8 302/493] eth: sungem: remove .ndo_poll_controller to avoid deadlocks Greg Kroah-Hartman
2024-05-27 18:55 ` [PATCH 6.8 303/493] selftests: net: add missing config for amt.sh Greg Kroah-Hartman
2024-05-27 18:55 ` [PATCH 6.8 304/493] selftests: net: move amt to socat for better compatibility Greg Kroah-Hartman
2024-05-27 18:55 ` [PATCH 6.8 305/493] net: ethernet: mediatek: split tx and rx fields in mtk_soc_data struct Greg Kroah-Hartman
2024-05-27 18:55 ` [PATCH 6.8 306/493] net: ethernet: mediatek: use ADMAv1 instead of ADMAv2.0 on MT7981 and MT7986 Greg Kroah-Hartman
2024-05-27 18:55 ` [PATCH 6.8 307/493] ice: Fix package download algorithm Greg Kroah-Hartman
2024-05-27 18:55 ` [PATCH 6.8 308/493] net: ethernet: cortina: Locking fixes Greg Kroah-Hartman
2024-05-27 18:55 ` [PATCH 6.8 309/493] af_unix: Fix data races in unix_release_sock/unix_stream_sendmsg Greg Kroah-Hartman
2024-05-27 18:55 ` [PATCH 6.8 310/493] net: usb: smsc95xx: stop lying about skb->truesize Greg Kroah-Hartman
2024-05-27 18:55 ` [PATCH 6.8 311/493] net: openvswitch: fix overwriting ct original tuple for ICMPv6 Greg Kroah-Hartman
2024-05-27 18:55 ` [PATCH 6.8 312/493] ipv6: sr: add missing seg6_local_exit Greg Kroah-Hartman
2024-05-27 18:55 ` [PATCH 6.8 313/493] ipv6: sr: fix incorrect unregister order Greg Kroah-Hartman
2024-05-27 18:55 ` [PATCH 6.8 314/493] ipv6: sr: fix invalid unregister error path Greg Kroah-Hartman
2024-05-27 18:55 ` [PATCH 6.8 315/493] net/mlx5: Fix peer devlink set for SF representor devlink port Greg Kroah-Hartman
2024-05-27 18:55 ` [PATCH 6.8 316/493] net/mlx5: Reload only IB representors upon lag disable/enable Greg Kroah-Hartman
2024-05-27 18:55 ` [PATCH 6.8 317/493] net/mlx5: Add a timeout to acquire the command queue semaphore Greg Kroah-Hartman
2024-05-27 18:55 ` [PATCH 6.8 318/493] net/mlx5: Discard command completions in internal error Greg Kroah-Hartman
2024-05-27 18:55 ` [PATCH 6.8 319/493] s390/bpf: Emit a barrier for BPF_FETCH instructions Greg Kroah-Hartman
2024-05-27 18:55 ` [PATCH 6.8 320/493] riscv, bpf: make some atomic operations fully ordered Greg Kroah-Hartman
2024-05-27 18:55 ` [PATCH 6.8 321/493] ax25: Use kernel universal linked list to implement ax25_dev_list Greg Kroah-Hartman
2024-05-27 18:55 ` [PATCH 6.8 322/493] ax25: Fix reference count leak issues of ax25_dev Greg Kroah-Hartman
2024-05-27 18:55 ` [PATCH 6.8 323/493] ax25: Fix reference count leak issue of net_device Greg Kroah-Hartman
2024-05-27 18:55 ` [PATCH 6.8 324/493] dpll: fix return value check for kmemdup Greg Kroah-Hartman
2024-05-27 18:55 ` [PATCH 6.8 325/493] net: fec: remove .ndo_poll_controller to avoid deadlocks Greg Kroah-Hartman
2024-05-27 18:55 ` [PATCH 6.8 326/493] mptcp: SO_KEEPALIVE: fix getsockopt support Greg Kroah-Hartman
2024-05-27 18:55 ` [PATCH 6.8 327/493] mptcp: cleanup writer wake-up Greg Kroah-Hartman
2024-05-27 18:55 ` [PATCH 6.8 328/493] mptcp: avoid some duplicate code in socket option handling Greg Kroah-Hartman
2024-05-27 18:55 ` [PATCH 6.8 329/493] mptcp: implement TCP_NOTSENT_LOWAT support Greg Kroah-Hartman
2024-05-27 18:55 ` [PATCH 6.8 330/493] mptcp: cleanup SOL_TCP handling Greg Kroah-Hartman
2024-05-27 18:55 ` [PATCH 6.8 331/493] mptcp: fix full TCP keep-alive support Greg Kroah-Hartman
2024-05-27 18:55 ` [PATCH 6.8 332/493] net: stmmac: Offload queueMaxSDU from tc-taprio Greg Kroah-Hartman
2024-05-27 18:55 ` [PATCH 6.8 333/493] net: stmmac: est: Per Tx-queue error count for HLBF Greg Kroah-Hartman
2024-05-27 18:55 ` [PATCH 6.8 334/493] net: stmmac: Report taprio offload status Greg Kroah-Hartman
2024-05-27 18:55 ` [PATCH 6.8 335/493] net: stmmac: move the EST lock to struct stmmac_priv Greg Kroah-Hartman
2024-05-27 18:55 ` [PATCH 6.8 336/493] net: micrel: Fix receiving the timestamp in the frame for lan8841 Greg Kroah-Hartman
2024-05-27 18:55 ` [PATCH 6.8 337/493] Bluetooth: compute LE flow credits based on recvbuf space Greg Kroah-Hartman
2024-05-27 18:55 ` [PATCH 6.8 338/493] Bluetooth: qca: Fix error code in qca_read_fw_build_info() Greg Kroah-Hartman
2024-05-27 18:55 ` [PATCH 6.8 339/493] Bluetooth: ISO: Add hcon for listening bis sk Greg Kroah-Hartman
2024-05-27 18:55 ` [PATCH 6.8 340/493] Bluetooth: ISO: Clean up returns values in iso_connect_ind() Greg Kroah-Hartman
2024-05-27 18:55 ` [PATCH 6.8 341/493] Bluetooth: ISO: Make iso_get_sock_listen generic Greg Kroah-Hartman
2024-05-27 18:55 ` [PATCH 6.8 342/493] Bluetooth: Remove usage of the deprecated ida_simple_xx() API Greg Kroah-Hartman
2024-05-27 18:55 ` [PATCH 6.8 343/493] Bluetooth: hci_event: Remove code to removed CONFIG_BT_HS Greg Kroah-Hartman
2024-05-27 18:55 ` [PATCH 6.8 344/493] Bluetooth: HCI: Remove HCI_AMP support Greg Kroah-Hartman
2024-05-27 18:55 ` [PATCH 6.8 345/493] ice: make ice_vsi_cfg_rxq() static Greg Kroah-Hartman
2024-05-27 18:55 ` [PATCH 6.8 346/493] ice: make ice_vsi_cfg_txq() static Greg Kroah-Hartman
2024-05-27 18:55 ` [PATCH 6.8 347/493] overflow: Change DEFINE_FLEX to take __counted_by member Greg Kroah-Hartman
2024-05-27 18:55 ` [PATCH 6.8 348/493] Bluetooth: hci_conn, hci_sync: Use __counted_by() to avoid -Wfamnae warnings Greg Kroah-Hartman
2024-05-27 18:55 ` [PATCH 6.8 349/493] Bluetooth: hci_core: Fix not handling hdev->le_num_of_adv_sets=1 Greg Kroah-Hartman
2024-05-27 18:55 ` [PATCH 6.8 350/493] drm/bridge: Fix improper bridge init order with pre_enable_prev_first Greg Kroah-Hartman
2024-05-27 18:55 ` [PATCH 6.8 351/493] drm/ci: update device type for volteer devices Greg Kroah-Hartman
2024-05-27 18:55 ` [PATCH 6.8 352/493] drm/nouveau/dp: Fix incorrect return code in r535_dp_aux_xfer() Greg Kroah-Hartman
2024-05-27 18:55 ` [PATCH 6.8 353/493] drm/omapdrm: Fix console by implementing fb_dirty Greg Kroah-Hartman
2024-05-27 18:55 ` [PATCH 6.8 354/493] drm/omapdrm: Fix console with deferred ops Greg Kroah-Hartman
2024-05-27 18:55 ` [PATCH 6.8 355/493] printk: Let no_printk() use _printk() Greg Kroah-Hartman
2024-05-27 18:55 ` [PATCH 6.8 356/493] dev_printk: Add and use dev_no_printk() Greg Kroah-Hartman
2024-05-27 18:55 ` [PATCH 6.8 357/493] drm/lcdif: Do not disable clocks on already suspended hardware Greg Kroah-Hartman
2024-05-27 18:56 ` [PATCH 6.8 358/493] drm/dp: Dont attempt AUX transfers when eDP panels are not powered Greg Kroah-Hartman
2024-05-27 18:56 ` [PATCH 6.8 359/493] drm/panel: atna33xc20: Fix unbalanced regulator in the case HPD doesnt assert Greg Kroah-Hartman
2024-05-27 18:56 ` [PATCH 6.8 360/493] drm/amd/display: Fix potential index out of bounds in color transformation function Greg Kroah-Hartman
2024-05-27 18:56 ` [PATCH 6.8 361/493] drm/amd/display: Remove redundant condition in dcn35_calc_blocks_to_gate() Greg Kroah-Hartman
2024-05-27 18:56 ` [PATCH 6.8 362/493] ASoC: Intel: Disable route checks for Skylake boards Greg Kroah-Hartman
2024-05-27 18:56 ` [PATCH 6.8 363/493] ASoC: Intel: avs: ssm4567: Do not ignore route checks Greg Kroah-Hartman
2024-05-27 18:56 ` [PATCH 6.8 364/493] mtd: core: Report error if first mtd_otp_size() call fails in mtd_otp_nvmem_add() Greg Kroah-Hartman
2024-05-27 18:56 ` [PATCH 6.8 365/493] mtd: rawnand: hynix: fixed typo Greg Kroah-Hartman
2024-05-27 18:56 ` [PATCH 6.8 366/493] drm/imagination: avoid -Woverflow warning Greg Kroah-Hartman
2024-05-27 18:56 ` [PATCH 6.8 367/493] ASoC: mediatek: Assign dummy when codec not specified for a DAI link Greg Kroah-Hartman
2024-05-27 18:56 ` [PATCH 6.8 368/493] drm/panel: ltk050h3146w: add MIPI_DSI_MODE_VIDEO to LTK050H3148W flags Greg Kroah-Hartman
2024-05-27 18:56 ` [PATCH 6.8 369/493] drm/panel: ltk050h3146w: drop duplicate commands from LTK050H3148W init Greg Kroah-Hartman
2024-05-27 18:56 ` [PATCH 6.8 370/493] fbdev: shmobile: fix snprintf truncation Greg Kroah-Hartman
2024-05-27 18:56 ` [PATCH 6.8 371/493] ASoC: kirkwood: Fix potential NULL dereference Greg Kroah-Hartman
2024-05-27 18:56 ` [PATCH 6.8 372/493] drm/meson: vclk: fix calculation of 59.94 fractional rates Greg Kroah-Hartman
2024-05-27 18:56 ` [PATCH 6.8 373/493] drm/mediatek: Add 0 size check to mtk_drm_gem_obj Greg Kroah-Hartman
2024-05-27 18:56 ` [PATCH 6.8 374/493] drm/mediatek: Init `ddp_comp` with devm_kcalloc() Greg Kroah-Hartman
2024-05-27 18:56 ` [PATCH 6.8 375/493] ASoC: SOF: Intel: hda-dai: fix channel map configuration for aggregated dailink Greg Kroah-Hartman
2024-05-27 18:56 ` [PATCH 6.8 376/493] powerpc/fsl-soc: hide unused const variable Greg Kroah-Hartman
2024-05-27 18:56 ` [PATCH 6.8 377/493] ASoC: SOF: Intel: mtl: Correct rom_status_reg Greg Kroah-Hartman
2024-05-27 18:56 ` [PATCH 6.8 378/493] ASoC: SOF: Intel: lnl: " Greg Kroah-Hartman
2024-05-27 18:56 ` [PATCH 6.8 379/493] ASoC: SOF: Intel: mtl: Disable interrupts when firmware boot failed Greg Kroah-Hartman
2024-05-27 18:56 ` [PATCH 6.8 380/493] ASoC: SOF: Intel: mtl: Implement firmware boot state check Greg Kroah-Hartman
2024-05-27 18:56 ` [PATCH 6.8 381/493] fbdev: sisfb: hide unused variables Greg Kroah-Hartman
2024-05-27 18:56 ` [PATCH 6.8 382/493] selftests: cgroup: skip test_cgcore_lesser_ns_open when cgroup2 mounted without nsdelegate Greg Kroah-Hartman
2024-05-27 18:56 ` [PATCH 6.8 383/493] ASoC: Intel: avs: Restore stream decoupling on prepare Greg Kroah-Hartman
2024-05-27 18:56 ` [PATCH 6.8 384/493] ASoC: Intel: avs: Fix ASRC module initialization Greg Kroah-Hartman
2024-05-27 18:56 ` [PATCH 6.8 385/493] ASoC: Intel: avs: Fix potential integer overflow Greg Kroah-Hartman
2024-05-27 18:56 ` [PATCH 6.8 386/493] ASoC: Intel: avs: Test result of avs_get_module_entry() Greg Kroah-Hartman
2024-05-27 18:56 ` [PATCH 6.8 387/493] media: ngene: Add dvb_ca_en50221_init return value check Greg Kroah-Hartman
2024-05-27 18:56 ` [PATCH 6.8 388/493] staging: media: starfive: Remove links when unregistering devices Greg Kroah-Hartman
2024-05-27 18:56 ` [PATCH 6.8 389/493] media: rcar-vin: work around -Wenum-compare-conditional warning Greg Kroah-Hartman
2024-05-27 18:56 ` [PATCH 6.8 390/493] media: radio-shark2: Avoid led_names truncations Greg Kroah-Hartman
2024-05-27 18:56 ` [PATCH 6.8 391/493] drm: bridge: cdns-mhdp8546: Fix possible null pointer dereference Greg Kroah-Hartman
2024-05-27 18:56 ` [PATCH 6.8 392/493] platform/x86: xiaomi-wmi: Fix race condition when reporting key events Greg Kroah-Hartman
2024-05-27 18:56 ` [PATCH 6.8 393/493] drm/msm/dp: allow voltage swing / pre emphasis of 3 Greg Kroah-Hartman
2024-05-27 18:56 ` [PATCH 6.8 394/493] drm/msm/dp: Avoid a long timeout for AUX transfer if nothing connected Greg Kroah-Hartman
2024-05-27 18:56 ` [PATCH 6.8 395/493] media: ipu3-cio2: Request IRQ earlier Greg Kroah-Hartman
2024-05-27 18:56 ` [PATCH 6.8 396/493] media: dt-bindings: ovti,ov2680: Fix the power supply names Greg Kroah-Hartman
2024-05-27 18:56 ` [PATCH 6.8 397/493] media: i2c: et8ek8: Dont strip remove function when driver is builtin Greg Kroah-Hartman
2024-05-27 18:56 ` [PATCH 6.8 398/493] media: v4l2-subdev: Fix stream handling for crop API Greg Kroah-Hartman
2024-05-27 18:56 ` [PATCH 6.8 399/493] fbdev: sh7760fb: allow modular build Greg Kroah-Hartman
2024-05-27 18:56 ` [PATCH 6.8 400/493] media: atomisp: ssh_css: Fix a null-pointer dereference in load_video_binaries Greg Kroah-Hartman
2024-05-27 18:56 ` [PATCH 6.8 401/493] drm/arm/malidp: fix a possible null pointer dereference Greg Kroah-Hartman
2024-05-27 18:56 ` [PATCH 6.8 402/493] drm: vc4: Fix " Greg Kroah-Hartman
2024-05-27 18:56 ` [PATCH 6.8 403/493] ASoC: tracing: Export SND_SOC_DAPM_DIR_OUT to its value Greg Kroah-Hartman
2024-05-27 18:56 ` [PATCH 6.8 404/493] drm/bridge: anx7625: Dont log an error when DSI host cant be found Greg Kroah-Hartman
2024-05-27 18:56 ` [PATCH 6.8 405/493] drm/bridge: icn6211: " Greg Kroah-Hartman
2024-05-27 18:56 ` [PATCH 6.8 406/493] drm/bridge: lt8912b: " Greg Kroah-Hartman
2024-05-27 18:56 ` [PATCH 6.8 407/493] drm/bridge: lt9611: " Greg Kroah-Hartman
2024-05-27 18:56 ` [PATCH 6.8 408/493] drm/bridge: lt9611uxc: " Greg Kroah-Hartman
2024-05-27 18:56 ` [PATCH 6.8 409/493] drm/bridge: tc358775: " Greg Kroah-Hartman
2024-05-27 18:56 ` [PATCH 6.8 410/493] drm/bridge: dpc3433: " Greg Kroah-Hartman
2024-05-27 18:56 ` [PATCH 6.8 411/493] drm/panel: novatek-nt35950: " Greg Kroah-Hartman
2024-05-27 18:56 ` [PATCH 6.8 412/493] drm/bridge: anx7625: Update audio status while detecting Greg Kroah-Hartman
2024-05-27 18:56 ` [PATCH 6.8 413/493] drm/panel: simple: Add missing Innolux G121X1-L03 format, flags, connector Greg Kroah-Hartman
2024-05-27 18:56 ` [PATCH 6.8 414/493] ALSA: hda: cs35l41: Remove Speaker ID for Lenovo Legion slim 7 16ARHA7 Greg Kroah-Hartman
2024-05-27 18:56 ` [PATCH 6.8 415/493] drm/mipi-dsi: use correct return type for the DSC functions Greg Kroah-Hartman
2024-05-27 18:56 ` [PATCH 6.8 416/493] media: uvcvideo: Add quirk for Logitech Rally Bar Greg Kroah-Hartman
2024-05-27 18:56 ` [PATCH 6.8 417/493] drm/rockchip: vop2: Do not divide height twice for YUV Greg Kroah-Hartman
2024-05-27 18:57 ` [PATCH 6.8 418/493] drm/edid: Parse topology block for all DispID structure v1.x Greg Kroah-Hartman
2024-05-27 18:57 ` [PATCH 6.8 419/493] media: cadence: csi2rx: configure DPHY before starting source stream Greg Kroah-Hartman
2024-05-27 18:57 ` [PATCH 6.8 420/493] clk: samsung: exynosautov9: fix wrong pll clock id value Greg Kroah-Hartman
2024-05-27 18:57 ` [PATCH 6.8 421/493] RDMA/mlx5: Uncacheable mkey has neither rb_key or cache_ent Greg Kroah-Hartman
2024-05-27 18:57 ` [PATCH 6.8 422/493] RDMA/mlx5: Change check for cacheable mkeys Greg Kroah-Hartman
2024-05-27 18:57 ` [PATCH 6.8 423/493] RDMA/mlx5: Adding remote atomic access flag to updatable flags Greg Kroah-Hartman
2024-05-27 18:57 ` [PATCH 6.8 424/493] clk: mediatek: pllfh: Dont log error for missing fhctl node Greg Kroah-Hartman
2024-05-27 18:57 ` [PATCH 6.8 425/493] iommu: Undo pasid attachment only for the devices that have succeeded Greg Kroah-Hartman
2024-05-27 18:57 ` [PATCH 6.8 426/493] RDMA/hns: Fix return value in hns_roce_map_mr_sg Greg Kroah-Hartman
2024-05-27 18:57 ` [PATCH 6.8 427/493] RDMA/hns: Fix deadlock on SRQ async events Greg Kroah-Hartman
2024-05-27 18:57 ` [PATCH 6.8 428/493] RDMA/hns: Fix UAF for cq async event Greg Kroah-Hartman
2024-05-27 18:57 ` [PATCH 6.8 429/493] RDMA/hns: Fix GMV table pagesize Greg Kroah-Hartman
2024-05-27 18:57 ` [PATCH 6.8 430/493] RDMA/hns: Use complete parentheses in macros Greg Kroah-Hartman
2024-05-27 18:57 ` [PATCH 6.8 431/493] RDMA/hns: Modify the print level of CQE error Greg Kroah-Hartman
2024-05-27 18:57 ` [PATCH 6.8 432/493] clk: mediatek: mt8365-mm: fix DPI0 parent Greg Kroah-Hartman
2024-05-27 18:57 ` [PATCH 6.8 433/493] clk: rs9: fix wrong default value for clock amplitude Greg Kroah-Hartman
2024-05-27 18:57 ` [PATCH 6.8 434/493] clk: qcom: clk-alpha-pll: remove invalid Stromer register offset Greg Kroah-Hartman
2024-05-27 18:57 ` [PATCH 6.8 435/493] RDMA/rxe: Fix seg fault in rxe_comp_queue_pkt Greg Kroah-Hartman
2024-05-27 18:57 ` [PATCH 6.8 436/493] RDMA/rxe: Allow good work requests to be executed Greg Kroah-Hartman
2024-05-27 18:57 ` [PATCH 6.8 437/493] RDMA/rxe: Fix incorrect rxe_put in error path Greg Kroah-Hartman
2024-05-27 18:57 ` [PATCH 6.8 438/493] IB/mlx5: Use __iowrite64_copy() for write combining stores Greg Kroah-Hartman
2024-05-27 18:57 ` [PATCH 6.8 439/493] clk: renesas: r8a779a0: Fix CANFD parent clock Greg Kroah-Hartman
2024-05-27 18:57 ` [PATCH 6.8 440/493] clk: renesas: r9a07g043: Add clock and reset entry for PLIC Greg Kroah-Hartman
2024-05-27 18:57 ` [PATCH 6.8 441/493] lib/test_hmm.c: handle src_pfns and dst_pfns allocation failure Greg Kroah-Hartman
2024-05-27 18:57 ` [PATCH 6.8 442/493] mm/ksm: fix ksm exec support for prctl Greg Kroah-Hartman
2024-05-27 18:57 ` [PATCH 6.8 443/493] clk: qcom: dispcc-sm8450: fix DisplayPort clocks Greg Kroah-Hartman
2024-05-27 18:57 ` [PATCH 6.8 444/493] clk: qcom: dispcc-sm6350: " Greg Kroah-Hartman
2024-05-27 18:57 ` [PATCH 6.8 445/493] clk: qcom: dispcc-sm8550: " Greg Kroah-Hartman
2024-05-27 18:57 ` [PATCH 6.8 446/493] clk: qcom: dispcc-sm8650: " Greg Kroah-Hartman
2024-05-27 18:57 ` [PATCH 6.8 447/493] clk: qcom: mmcc-msm8998: fix venus clock issue Greg Kroah-Hartman
2024-05-27 18:57 ` [PATCH 6.8 448/493] x86/insn: Fix PUSH instruction in x86 instruction decoder opcode map Greg Kroah-Hartman
2024-05-27 18:57 ` [PATCH 6.8 449/493] x86/insn: Add VEX versions of VPDPBUSD, VPDPBUSDS, VPDPWSSD and VPDPWSSDS Greg Kroah-Hartman
2024-05-27 18:57 ` [PATCH 6.8 450/493] ext4: avoid excessive credit estimate in ext4_tmpfile() Greg Kroah-Hartman
2024-05-27 18:57 ` [PATCH 6.8 451/493] RDMA/mana_ib: Introduce helpers to create and destroy mana queues Greg Kroah-Hartman
2024-05-27 18:57 ` [PATCH 6.8 452/493] RDMA/mana_ib: Use struct mana_ib_queue for CQs Greg Kroah-Hartman
2024-05-27 18:57 ` [PATCH 6.8 453/493] RDMA/mana_ib: boundary check before installing cq callbacks Greg Kroah-Hartman
2024-05-27 18:57 ` [PATCH 6.8 454/493] virt: acrn: stop using follow_pfn Greg Kroah-Hartman
2024-05-27 18:57 ` [PATCH 6.8 455/493] drivers/virt/acrn: fix PFNMAP PTE checks in acrn_vm_ram_map() Greg Kroah-Hartman
2024-05-27 18:57 ` [PATCH 6.8 456/493] sunrpc: removed redundant procp check Greg Kroah-Hartman
2024-05-27 18:57 ` [PATCH 6.8 457/493] nfsd: dont create nfsv4recoverydir in nfsdfs when not used Greg Kroah-Hartman
2024-05-27 18:57 ` [PATCH 6.8 458/493] ext4: fix potential unnitialized variable Greg Kroah-Hartman
2024-05-27 18:57 ` [PATCH 6.8 459/493] ext4: remove the redundant folio_wait_stable() Greg Kroah-Hartman
2024-05-27 18:57 ` [PATCH 6.8 460/493] clk: qcom: Fix SC_CAMCC_8280XP dependencies Greg Kroah-Hartman
2024-05-27 18:57 ` [PATCH 6.8 461/493] clk: qcom: Fix SM_GPUCC_8650 dependencies Greg Kroah-Hartman
2024-05-27 18:57 ` [PATCH 6.8 462/493] clk: qcom: apss-ipq-pll: fix PLL rate for IPQ5018 Greg Kroah-Hartman
2024-05-27 18:57 ` [PATCH 6.8 463/493] of: module: add buffer overflow check in of_modalias() Greg Kroah-Hartman
2024-05-27 18:57 ` [PATCH 6.8 464/493] bnxt_re: avoid shift undefined behavior in bnxt_qplib_alloc_init_hwq Greg Kroah-Hartman
2024-05-27 18:57 ` [PATCH 6.8 465/493] SUNRPC: Fix gss_free_in_token_pages() Greg Kroah-Hartman
2024-05-27 18:57 ` [PATCH 6.8 466/493] selftests/damon/_damon_sysfs: check errors from nr_schemes file reads Greg Kroah-Hartman
2024-05-27 18:57 ` [PATCH 6.8 467/493] selftests/kcmp: remove unused open mode Greg Kroah-Hartman
2024-05-27 18:57 ` [PATCH 6.8 468/493] RDMA/IPoIB: Fix format truncation compilation errors Greg Kroah-Hartman
2024-05-27 18:57 ` [PATCH 6.8 469/493] RDMA/cma: Fix kmemleak in rdma_core observed during blktests nvme/rdma use siw Greg Kroah-Hartman
2024-05-27 18:57 ` [PATCH 6.8 470/493] samples/landlock: Fix incorrect free in populate_ruleset_net Greg Kroah-Hartman
2024-05-27 18:57 ` [PATCH 6.8 471/493] tracing/user_events: Prepare find/delete for same name events Greg Kroah-Hartman
2024-05-27 18:57 ` [PATCH 6.8 472/493] tracing/user_events: Fix non-spaced field matching Greg Kroah-Hartman
2024-05-27 18:57 ` [PATCH 6.8 473/493] modules: Drop the .export_symbol section from the final modules Greg Kroah-Hartman
2024-05-27 18:57 ` [PATCH 6.8 474/493] net: bridge: xmit: make sure we have at least eth header len bytes Greg Kroah-Hartman
2024-05-27 18:57 ` [PATCH 6.8 475/493] selftests: net: bridge: increase IGMP/MLD exclude timeout membership interval Greg Kroah-Hartman
2024-05-27 18:57 ` [PATCH 6.8 476/493] net: bridge: mst: fix vlan use-after-free Greg Kroah-Hartman
2024-05-27 18:57 ` [PATCH 6.8 477/493] net: qrtr: ns: Fix module refcnt Greg Kroah-Hartman
2024-05-27 18:58 ` [PATCH 6.8 478/493] selftests/net/lib: no need to record ns name if it already exist Greg Kroah-Hartman
2024-05-27 18:58 ` [PATCH 6.8 479/493] idpf: dont skip over ethtool tcp-data-split setting Greg Kroah-Hartman
2024-05-27 18:58 ` [PATCH 6.8 480/493] netrom: fix possible dead-lock in nr_rt_ioctl() Greg Kroah-Hartman
2024-05-27 18:58 ` [PATCH 6.8 481/493] af_packet: do not call packet_read_pending() from tpacket_destruct_skb() Greg Kroah-Hartman
2024-05-27 18:58 ` [PATCH 6.8 482/493] sched/fair: Allow disabling sched_balance_newidle with sched_relax_domain_level Greg Kroah-Hartman
2024-05-27 18:58 ` [PATCH 6.8 483/493] sched/core: Fix incorrect initialization of the burst parameter in cpu_max_write() Greg Kroah-Hartman
2024-05-27 18:58 ` [PATCH 6.8 484/493] net: wangxun: fix to change Rx features Greg Kroah-Hartman
2024-05-27 18:58 ` [PATCH 6.8 485/493] net: wangxun: match VLAN CTAG and STAG features Greg Kroah-Hartman
2024-05-27 18:58 ` [PATCH 6.8 486/493] net: txgbe: move interrupt codes to a separate file Greg Kroah-Hartman
2024-05-27 18:58 ` [PATCH 6.8 487/493] net: txgbe: use irq_domain for interrupt controller Greg Kroah-Hartman
2024-05-27 18:58 ` [PATCH 6.8 488/493] net: txgbe: fix to control VLAN strip Greg Kroah-Hartman
2024-05-27 18:58 ` [PATCH 6.8 489/493] l2tp: fix ICMP error handling for UDP-encap sockets Greg Kroah-Hartman
2024-05-27 18:58 ` [PATCH 6.8 490/493] io_uring/net: ensure async prep handlers always initialize ->done_io Greg Kroah-Hartman
2024-05-27 18:58 ` [PATCH 6.8 491/493] pwm: Fix setting period with #pwm-cells = <1> and of_pwm_single_xlate() Greg Kroah-Hartman
2024-05-27 18:58 ` [PATCH 6.8 492/493] net: txgbe: fix to clear interrupt status after handling IRQ Greg Kroah-Hartman
2024-05-27 18:58 ` [PATCH 6.8 493/493] net: txgbe: fix GPIO interrupt blocking Greg Kroah-Hartman
2024-05-28  8:01 ` [PATCH 6.8 000/493] 6.8.12-rc1 review Bagas Sanjaya
2024-05-28 12:14 ` Jon Hunter
2024-05-28 14:02 ` Mark Brown
2024-05-28 16:07 ` SeongJae Park
2024-05-28 20:57 ` Florian Fainelli
2024-05-28 21:53 ` Shuah Khan
2024-05-28 22:29 ` Ron Economos
2024-05-29  3:30 ` Naresh Kamboju
2024-05-31 20:27 ` Guenter Roeck
2024-06-01  5:39   ` Greg Kroah-Hartman

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=20240527185634.973640317@linuxfoundation.org \
    --to=gregkh@linuxfoundation.org \
    --cc=agordeev@linux.ibm.com \
    --cc=borntraeger@linux.ibm.com \
    --cc=david@redhat.com \
    --cc=patches@lists.linux.dev \
    --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).