Archive-only list for patches
 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.9 066/427] s390/mm: Re-enable the shared zeropage for !PV and !skeys KVM guests
Date: Mon, 27 May 2024 20:51:53 +0200	[thread overview]
Message-ID: <20240527185608.023711076@linuxfoundation.org> (raw)
In-Reply-To: <20240527185601.713589927@linuxfoundation.org>

6.9-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 60950e7a25f58..259c2439c2517 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 7721eb522f43d..82e9631cd9efb 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 12d22a7fa32fd..474a25ca5c48f 100644
--- a/arch/s390/mm/gmap.c
+++ b/arch/s390/mm/gmap.c
@@ -2549,41 +2549,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)
  */
@@ -2601,22 +2566,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
@@ -2685,7 +2770,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:01 UTC|newest]

Thread overview: 438+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-05-27 18:50 [PATCH 6.9 000/427] 6.9.3-rc1 review Greg Kroah-Hartman
2024-05-27 18:50 ` [PATCH 6.9 001/427] x86/tsc: Trust initial offset in architectural TSC-adjust MSRs Greg Kroah-Hartman
2024-05-27 18:50 ` [PATCH 6.9 002/427] selftests/ftrace: Fix BTFARG testcase to check fprobe is enabled correctly Greg Kroah-Hartman
2024-05-27 18:50 ` [PATCH 6.9 003/427] selftests/ftrace: Fix checkbashisms errors Greg Kroah-Hartman
2024-05-27 18:50 ` [PATCH 6.9 004/427] ftrace: Fix possible use-after-free issue in ftrace_location() Greg Kroah-Hartman
2024-05-27 18:50 ` [PATCH 6.9 005/427] Revert "arm64: fpsimd: Implement lazy restore for kernel mode FPSIMD" Greg Kroah-Hartman
2024-05-27 18:50 ` [PATCH 6.9 006/427] arm64/fpsimd: Avoid erroneous elide of user state reload Greg Kroah-Hartman
2024-05-27 18:50 ` [PATCH 6.9 007/427] Reapply "arm64: fpsimd: Implement lazy restore for kernel mode FPSIMD" Greg Kroah-Hartman
2024-05-27 18:50 ` [PATCH 6.9 008/427] tty: n_gsm: fix possible out-of-bounds in gsm0_receive() Greg Kroah-Hartman
2024-05-27 18:50 ` [PATCH 6.9 009/427] tty: n_gsm: fix missing receive state reset after mode switch Greg Kroah-Hartman
2024-05-27 18:50 ` [PATCH 6.9 010/427] speakup: Fix sizeof() vs ARRAY_SIZE() bug Greg Kroah-Hartman
2024-05-27 18:50 ` [PATCH 6.9 011/427] serial: sc16is7xx: fix bug in sc16is7xx_set_baud() when using prescaler Greg Kroah-Hartman
2024-05-27 18:50 ` [PATCH 6.9 012/427] serial: 8250_bcm7271: use default_mux_rate if possible Greg Kroah-Hartman
2024-05-27 18:51 ` [PATCH 6.9 013/427] serial: 8520_mtk: Set RTS on shutdown for Rx in-band wakeup Greg Kroah-Hartman
2024-05-27 18:51 ` [PATCH 6.9 014/427] Input: try trimming too long modalias strings Greg Kroah-Hartman
2024-05-27 18:51 ` [PATCH 6.9 015/427] io_uring: fail NOP if non-zero op flags is passed in Greg Kroah-Hartman
2024-05-27 18:51 ` [PATCH 6.9 016/427] io_uring/sqpoll: ensure that normal task_work is also run timely Greg Kroah-Hartman
2024-05-27 18:51 ` [PATCH 6.9 017/427] Revert "r8169: dont try to disable interrupts if NAPI is, scheduled already" Greg Kroah-Hartman
2024-05-27 18:51 ` [PATCH 6.9 018/427] r8169: Fix possible ring buffer corruption on fragmented Tx packets Greg Kroah-Hartman
2024-05-27 18:51 ` [PATCH 6.9 019/427] ring-buffer: Fix a race between readers and resize checks Greg Kroah-Hartman
2024-05-27 18:51 ` [PATCH 6.9 020/427] net: mana: Fix the extra HZ in mana_hwc_send_request Greg Kroah-Hartman
2024-05-27 18:51 ` [PATCH 6.9 021/427] tools/latency-collector: Fix -Wformat-security compile warns Greg Kroah-Hartman
2024-05-27 18:51 ` [PATCH 6.9 022/427] tools/nolibc/stdlib: fix memory error in realloc() Greg Kroah-Hartman
2024-05-27 18:51 ` [PATCH 6.9 023/427] net: ti: icssg_prueth: Fix NULL pointer dereference in prueth_probe() Greg Kroah-Hartman
2024-05-27 18:51 ` [PATCH 6.9 024/427] net: lan966x: remove debugfs directory in probe() error path Greg Kroah-Hartman
2024-05-27 18:51 ` [PATCH 6.9 025/427] net: smc91x: Fix m68k kernel compilation for ColdFire CPU Greg Kroah-Hartman
2024-05-27 18:51 ` [PATCH 6.9 026/427] f2fs: fix false alarm on invalid block address Greg Kroah-Hartman
2024-05-27 18:51 ` [PATCH 6.9 027/427] dt-bindings: adc: axi-adc: add clocks property Greg Kroah-Hartman
2024-05-27 18:51 ` [PATCH 6.9 028/427] nilfs2: fix use-after-free of timer for log writer thread Greg Kroah-Hartman
2024-05-27 18:51 ` [PATCH 6.9 029/427] nilfs2: fix unexpected freezing of nilfs_segctor_sync() Greg Kroah-Hartman
2024-05-27 18:51 ` [PATCH 6.9 030/427] nilfs2: fix potential hang in nilfs_detach_log_writer() Greg Kroah-Hartman
2024-05-27 18:51 ` [PATCH 6.9 031/427] fs/ntfs3: Remove max link count info display during driver init Greg Kroah-Hartman
2024-05-27 18:51 ` [PATCH 6.9 032/427] fs/ntfs3: Taking DOS names into account during link counting Greg Kroah-Hartman
2024-05-27 18:51 ` [PATCH 6.9 033/427] fs/ntfs3: Fix case when index is reused during tree transformation Greg Kroah-Hartman
2024-05-27 18:51 ` [PATCH 6.9 034/427] fs/ntfs3: Break dir enumeration if directory contents error Greg Kroah-Hartman
2024-05-27 18:51 ` [PATCH 6.9 035/427] ksmbd: avoid to send duplicate oplock break notifications Greg Kroah-Hartman
2024-05-27 18:51 ` [PATCH 6.9 036/427] ksmbd: ignore trailing slashes in share paths Greg Kroah-Hartman
2024-05-27 18:51 ` [PATCH 6.9 037/427] ALSA: hda/realtek: fix mute/micmute LEDs dont work for ProBook 440/460 G11 Greg Kroah-Hartman
2024-05-27 18:51 ` [PATCH 6.9 038/427] ALSA: core: Fix NULL module pointer assignment at card init Greg Kroah-Hartman
2024-05-27 18:51 ` [PATCH 6.9 039/427] ALSA: timer: Set lower bound of start tick time Greg Kroah-Hartman
2024-05-27 18:51 ` [PATCH 6.9 040/427] ALSA: Fix deadlocks with kctl removals at disconnection Greg Kroah-Hartman
2024-05-27 18:51 ` [PATCH 6.9 041/427] KEYS: asymmetric: Add missing dependency on CRYPTO_SIG Greg Kroah-Hartman
2024-05-27 18:51 ` [PATCH 6.9 042/427] KEYS: asymmetric: Add missing dependencies of FIPS_SIGNATURE_SELFTEST Greg Kroah-Hartman
2024-05-27 18:51 ` [PATCH 6.9 043/427] openpromfs: finish conversion to the new mount API Greg Kroah-Hartman
2024-05-27 18:51 ` [PATCH 6.9 044/427] crypto: bcm - Fix pointer arithmetic Greg Kroah-Hartman
2024-05-27 18:51 ` [PATCH 6.9 045/427] firmware: qcom: qcm: fix unused qcom_scm_qseecom_allowlist Greg Kroah-Hartman
2024-05-27 18:51 ` [PATCH 6.9 046/427] mm/slub, kunit: Use inverted data to corrupt kmem cache Greg Kroah-Hartman
2024-05-27 18:51 ` [PATCH 6.9 047/427] firmware: raspberrypi: Use correct device for DMA mappings Greg Kroah-Hartman
2024-05-27 18:51 ` [PATCH 6.9 048/427] ecryptfs: Fix buffer size for tag 66 packet Greg Kroah-Hartman
2024-05-27 18:51 ` [PATCH 6.9 049/427] nilfs2: fix out-of-range warning Greg Kroah-Hartman
2024-05-27 18:51 ` [PATCH 6.9 050/427] parisc: add missing export of __cmpxchg_u8() Greg Kroah-Hartman
2024-05-27 18:51 ` [PATCH 6.9 051/427] crypto: ccp - drop platform ifdef checks Greg Kroah-Hartman
2024-05-27 18:51 ` [PATCH 6.9 052/427] crypto: x86/nh-avx2 - add missing vzeroupper Greg Kroah-Hartman
2024-05-27 18:51 ` [PATCH 6.9 053/427] crypto: x86/sha256-avx2 " Greg Kroah-Hartman
2024-05-27 18:51 ` [PATCH 6.9 054/427] crypto: x86/sha512-avx2 " Greg Kroah-Hartman
2024-05-27 18:51 ` [PATCH 6.9 055/427] s390/cio: fix tracepoint subchannel type field Greg Kroah-Hartman
2024-05-27 18:51 ` [PATCH 6.9 056/427] io_uring: use the right type for work_llist empty check Greg Kroah-Hartman
2024-05-27 18:51 ` [PATCH 6.9 057/427] rcu-tasks: Fix show_rcu_tasks_trace_gp_kthread buffer overflow Greg Kroah-Hartman
2024-05-27 18:51 ` [PATCH 6.9 058/427] rcu: Fix buffer overflow in print_cpu_stall_info() Greg Kroah-Hartman
2024-05-27 18:51 ` [PATCH 6.9 059/427] ARM: configs: sunxi: Enable DRM_DW_HDMI Greg Kroah-Hartman
2024-05-27 18:51 ` [PATCH 6.9 060/427] jffs2: prevent xattr node from overflowing the eraseblock Greg Kroah-Hartman
2024-05-27 18:51 ` [PATCH 6.9 061/427] libfs: Fix simple_offset_rename_exchange() Greg Kroah-Hartman
2024-05-27 18:51 ` [PATCH 6.9 062/427] libfs: Add simple_offset_rename() API Greg Kroah-Hartman
2024-05-27 18:51 ` [PATCH 6.9 063/427] shmem: Fix shmem_rename2() Greg Kroah-Hartman
2024-05-27 18:51 ` [PATCH 6.9 064/427] io-wq: write next_work before dropping acct_lock Greg Kroah-Hartman
2024-05-27 18:51 ` [PATCH 6.9 065/427] mm/userfaultfd: Do not place zeropages when zeropages are disallowed Greg Kroah-Hartman
2024-05-27 18:51 ` Greg Kroah-Hartman [this message]
2024-05-27 18:51 ` [PATCH 6.9 067/427] crypto: octeontx2 - add missing check for dma_map_single Greg Kroah-Hartman
2024-05-27 18:51 ` [PATCH 6.9 068/427] crypto: qat - improve error message in adf_get_arbiter_mapping() Greg Kroah-Hartman
2024-05-27 18:51 ` [PATCH 6.9 069/427] crypto: qat - improve error logging to be consistent across features Greg Kroah-Hartman
2024-05-27 18:51 ` [PATCH 6.9 070/427] soc: qcom: pmic_glink: dont traverse clients list without a lock Greg Kroah-Hartman
2024-05-27 18:51 ` [PATCH 6.9 071/427] soc: qcom: pmic_glink: notify clients about the current state Greg Kroah-Hartman
2024-05-27 18:51 ` [PATCH 6.9 072/427] firmware: qcom: scm: Fix __scm and waitq completion variable initialization Greg Kroah-Hartman
2024-05-27 18:52 ` [PATCH 6.9 073/427] soc: mediatek: cmdq: Fix typo of CMDQ_JUMP_RELATIVE Greg Kroah-Hartman
2024-05-27 18:52 ` [PATCH 6.9 074/427] null_blk: Fix missing mutex_destroy() at module removal Greg Kroah-Hartman
2024-05-27 18:52 ` [PATCH 6.9 075/427] crypto: qat - validate slices count returned by FW Greg Kroah-Hartman
2024-05-27 18:52 ` [PATCH 6.9 076/427] hwrng: stm32 - use logical OR in conditional Greg Kroah-Hartman
2024-05-27 18:52 ` [PATCH 6.9 077/427] hwrng: stm32 - put IP into RPM suspend on failure Greg Kroah-Hartman
2024-05-27 18:52 ` [PATCH 6.9 078/427] hwrng: stm32 - repair clock handling Greg Kroah-Hartman
2024-05-27 18:52 ` [PATCH 6.9 079/427] kunit/fortify: Fix mismatched kvalloc()/vfree() usage Greg Kroah-Hartman
2024-05-27 18:52 ` [PATCH 6.9 080/427] s390: vmlinux.lds.S: Drop .hash and .gnu.hash for !CONFIG_PIE_BUILD Greg Kroah-Hartman
2024-05-27 18:52 ` [PATCH 6.9 081/427] io_uring/net: fix sendzc lazy wake polling Greg Kroah-Hartman
2024-05-27 18:52 ` [PATCH 6.9 082/427] soc: qcom: pmic_glink: Make client-lock non-sleeping Greg Kroah-Hartman
2024-05-27 18:52 ` [PATCH 6.9 083/427] lkdtm: Disable CFI checking for perms functions Greg Kroah-Hartman
2024-05-27 18:52 ` [PATCH 6.9 084/427] kunit/fortify: Fix replaced failure path to unbreak __alloc_size Greg Kroah-Hartman
2024-05-27 18:52 ` [PATCH 6.9 085/427] md: fix resync softlockup when bitmap size is less than array size Greg Kroah-Hartman
2024-05-27 18:52 ` [PATCH 6.9 086/427] crypto: qat - specify firmware files for 402xx Greg Kroah-Hartman
2024-05-27 18:52 ` [PATCH 6.9 087/427] block: refine the EOF check in blkdev_iomap_begin Greg Kroah-Hartman
2024-05-27 18:52 ` [PATCH 6.9 088/427] block: fix and simplify blkdevparts= cmdline parsing Greg Kroah-Hartman
2024-05-27 18:52 ` [PATCH 6.9 089/427] block: support to account io_ticks precisely Greg Kroah-Hartman
2024-05-27 18:52 ` [PATCH 6.9 090/427] wifi: ath10k: poll service ready message before failing Greg Kroah-Hartman
2024-05-27 18:52 ` [PATCH 6.9 091/427] wifi: brcmfmac: pcie: handle randbuf allocation failure Greg Kroah-Hartman
2024-05-27 18:52 ` [PATCH 6.9 092/427] wifi: ath11k: dont force enable power save on non-running vdevs Greg Kroah-Hartman
2024-05-27 18:52 ` [PATCH 6.9 093/427] bpftool: Fix missing pids during link show Greg Kroah-Hartman
2024-05-27 18:52 ` [PATCH 6.9 094/427] libbpf: Prevent null-pointer dereference when prog to load has no BTF Greg Kroah-Hartman
2024-05-27 18:52 ` [PATCH 6.9 095/427] wifi: ath12k: use correct flag field for 320 MHz channels Greg Kroah-Hartman
2024-05-27 18:52 ` [PATCH 6.9 096/427] wifi: mt76: mt7915: workaround too long expansion sparse warnings Greg Kroah-Hartman
2024-05-27 18:52 ` [PATCH 6.9 097/427] x86/boot: Ignore relocations in .notes sections in walk_relocs() too Greg Kroah-Hartman
2024-05-27 18:52 ` [PATCH 6.9 098/427] x86/fred: Fix typo in Kconfig description Greg Kroah-Hartman
2024-05-27 18:52 ` [PATCH 6.9 099/427] wifi: ieee80211: fix ieee80211_mle_basic_sta_prof_size_ok() Greg Kroah-Hartman
2024-05-27 18:52 ` [PATCH 6.9 100/427] wifi: cfg80211: ignore non-TX BSSs in per-STA profile Greg Kroah-Hartman
2024-05-27 18:52 ` [PATCH 6.9 101/427] wifi: iwlwifi: mvm: Do not warn on invalid link on scan complete Greg Kroah-Hartman
2024-05-27 18:52 ` [PATCH 6.9 102/427] wifi: iwlwifi: mvm: allocate STA links only for active links Greg Kroah-Hartman
2024-05-27 18:52 ` [PATCH 6.9 103/427] wifi: mac80211: dont select link ID if not provided in scan request Greg Kroah-Hartman
2024-05-27 18:52 ` [PATCH 6.9 104/427] wifi: iwlwifi: mvm: fix active link counting during recovery Greg Kroah-Hartman
2024-05-27 18:52 ` [PATCH 6.9 105/427] wifi: iwlwifi: mvm: set wider BW OFDMA ignore correctly Greg Kroah-Hartman
2024-05-27 18:52 ` [PATCH 6.9 106/427] wifi: iwlwifi: mvm: select STA mask only for active links Greg Kroah-Hartman
2024-05-27 18:52 ` [PATCH 6.9 107/427] wifi: iwlwifi: reconfigure TLC during HW restart Greg Kroah-Hartman
2024-05-27 18:52 ` [PATCH 6.9 108/427] wifi: iwlwifi: mvm: fix check in iwl_mvm_sta_fw_id_mask Greg Kroah-Hartman
2024-05-27 18:52 ` [PATCH 6.9 109/427] sched/fair: Add EAS checks before updating root_domain::overutilized Greg Kroah-Hartman
2024-05-27 18:52 ` [PATCH 6.9 110/427] ACPI: bus: Indicate support for _TFP thru _OSC Greg Kroah-Hartman
2024-05-27 18:52 ` [PATCH 6.9 111/427] ACPI: bus: Indicate support for more than 16 p-states " Greg Kroah-Hartman
2024-05-27 18:52 ` [PATCH 6.9 112/427] ACPI: bus: Indicate support for the Generic Event Device " Greg Kroah-Hartman
2024-05-27 18:52 ` [PATCH 6.9 113/427] ACPI: Fix Generic Initiator Affinity _OSC bit Greg Kroah-Hartman
2024-05-27 18:52 ` [PATCH 6.9 114/427] ACPI: bus: Indicate support for IRQ ResourceSource thru _OSC Greg Kroah-Hartman
2024-05-27 18:52 ` [PATCH 6.9 115/427] enetc: avoid truncating error message Greg Kroah-Hartman
2024-05-27 18:52 ` [PATCH 6.9 116/427] qed: avoid truncating work queue length Greg Kroah-Hartman
2024-05-27 18:52 ` [PATCH 6.9 117/427] mlx5: avoid truncating error message Greg Kroah-Hartman
2024-05-27 18:52 ` [PATCH 6.9 118/427] mlx5: stop warning for 64KB pages Greg Kroah-Hartman
2024-05-27 18:52 ` [PATCH 6.9 119/427] bitops: add missing prototype check Greg Kroah-Hartman
2024-05-27 18:52 ` [PATCH 6.9 120/427] dlm: fix user space lock decision to copy lvb Greg Kroah-Hartman
2024-05-27 18:52 ` [PATCH 6.9 121/427] wifi: carl9170: re-fix fortified-memset warning Greg Kroah-Hartman
2024-05-27 18:52 ` [PATCH 6.9 122/427] bpftool: Mount bpffs on provided dir instead of parent dir Greg Kroah-Hartman
2024-05-27 18:52 ` [PATCH 6.9 123/427] bpf: Pack struct bpf_fib_lookup Greg Kroah-Hartman
2024-05-27 18:52 ` [PATCH 6.9 124/427] bpf: prevent r10 register from being marked as precise Greg Kroah-Hartman
2024-05-27 18:52 ` [PATCH 6.9 125/427] x86/microcode/AMD: Avoid -Wformat warning with clang-15 Greg Kroah-Hartman
2024-05-27 18:52 ` [PATCH 6.9 126/427] scsi: ufs: qcom: Perform read back after writing reset bit Greg Kroah-Hartman
2024-05-27 18:52 ` [PATCH 6.9 127/427] scsi: ufs: qcom: Perform read back after writing REG_UFS_SYS1CLK_1US Greg Kroah-Hartman
2024-05-27 18:52 ` [PATCH 6.9 128/427] scsi: ufs: qcom: Perform read back after writing unipro mode Greg Kroah-Hartman
2024-05-27 18:52 ` [PATCH 6.9 129/427] scsi: ufs: qcom: Perform read back after writing CGC enable Greg Kroah-Hartman
2024-05-27 18:52 ` [PATCH 6.9 130/427] scsi: ufs: cdns-pltfrm: Perform read back after writing HCLKDIV Greg Kroah-Hartman
2024-05-27 18:52 ` [PATCH 6.9 131/427] scsi: ufs: core: Perform read back after writing UTP_TASK_REQ_LIST_BASE_H Greg Kroah-Hartman
2024-05-27 18:52 ` [PATCH 6.9 132/427] scsi: ufs: core: Perform read back after disabling interrupts Greg Kroah-Hartman
2024-05-27 18:53 ` [PATCH 6.9 133/427] scsi: ufs: core: Perform read back after disabling UIC_COMMAND_COMPL Greg Kroah-Hartman
2024-05-27 18:53 ` [PATCH 6.9 134/427] ACPI: LPSS: Advertise number of chip selects via property Greg Kroah-Hartman
2024-05-27 18:53 ` [PATCH 6.9 135/427] EDAC/skx_common: Allow decoding of SGX addresses Greg Kroah-Hartman
2024-05-27 18:53 ` [PATCH 6.9 136/427] locking/atomic/x86: Correct the definition of __arch_try_cmpxchg128() Greg Kroah-Hartman
2024-05-27 18:53 ` [PATCH 6.9 137/427] irqchip/alpine-msi: Fix off-by-one in allocation error path Greg Kroah-Hartman
2024-05-27 18:53 ` [PATCH 6.9 138/427] irqchip/loongson-pch-msi: Fix off-by-one on " Greg Kroah-Hartman
2024-05-27 18:53 ` [PATCH 6.9 139/427] ACPI: disable -Wstringop-truncation Greg Kroah-Hartman
2024-05-27 18:53 ` [PATCH 6.9 140/427] gfs2: Dont forget to complete delayed withdraw Greg Kroah-Hartman
2024-05-27 18:53 ` [PATCH 6.9 141/427] gfs2: Fix "ignore unlock failures after withdraw" Greg Kroah-Hartman
2024-05-27 18:53 ` [PATCH 6.9 142/427] arm64: Remove unnecessary irqflags alternative.h include Greg Kroah-Hartman
2024-05-27 18:53 ` [PATCH 6.9 143/427] 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.9 144/427] selftests/bpf: Fix umount cgroup2 error in test_sockmap Greg Kroah-Hartman
2024-05-27 18:53 ` [PATCH 6.9 145/427] tcp: increase the default TCP scaling ratio Greg Kroah-Hartman
2024-05-27 18:53 ` [PATCH 6.9 146/427] cpufreq: exit() callback is optional Greg Kroah-Hartman
2024-05-27 18:53 ` [PATCH 6.9 147/427] x86/pat: Introduce lookup_address_in_pgd_attr() Greg Kroah-Hartman
2024-05-27 18:53 ` [PATCH 6.9 148/427] x86/pat: Restructure _lookup_address_cpa() Greg Kroah-Hartman
2024-05-27 18:53 ` [PATCH 6.9 149/427] x86/pat: Fix W^X violation false-positives when running as Xen PV guest Greg Kroah-Hartman
2024-05-27 18:53 ` [PATCH 6.9 150/427] udp: Avoid call to compute_score on multiple sites Greg Kroah-Hartman
2024-05-27 18:53 ` [PATCH 6.9 151/427] openrisc: Use do_kernel_power_off() Greg Kroah-Hartman
2024-05-27 18:53 ` [PATCH 6.9 152/427] openrisc: traps: Dont send signals to kernel mode threads Greg Kroah-Hartman
2024-05-27 18:53 ` [PATCH 6.9 153/427] cppc_cpufreq: Fix possible null pointer dereference Greg Kroah-Hartman
2024-05-27 18:53 ` [PATCH 6.9 154/427] wifi: mac80211: transmit deauth only if link is available Greg Kroah-Hartman
2024-05-27 18:53 ` [PATCH 6.9 155/427] wifi: iwlwifi: mvm: introduce esr_disable_reason Greg Kroah-Hartman
2024-05-27 18:53 ` [PATCH 6.9 156/427] wifi: iwlwifi: mvm: calculate EMLSR mode after connection Greg Kroah-Hartman
2024-05-27 18:53 ` [PATCH 6.9 157/427] wifi: iwlwifi: mvm: dont always disable EMLSR due to BT coex Greg Kroah-Hartman
2024-05-27 18:53 ` [PATCH 6.9 158/427] wifi: iwlwifi: mvm: init vif works only once Greg Kroah-Hartman
2024-05-27 18:53 ` [PATCH 6.9 159/427] scsi: libsas: Fix the failure of adding phy with zero-address to port Greg Kroah-Hartman
2024-05-27 18:53 ` [PATCH 6.9 160/427] scsi: hpsa: Fix allocation size for Scsi_Host private data Greg Kroah-Hartman
2024-05-27 18:53 ` [PATCH 6.9 161/427] x86/purgatory: Switch to the position-independent small code model Greg Kroah-Hartman
2024-05-27 18:53 ` [PATCH 6.9 162/427] wifi: ath12k: fix out-of-bound access of qmi_invoke_handler() Greg Kroah-Hartman
2024-05-27 18:53 ` [PATCH 6.9 163/427] thermal/drivers/mediatek/lvts_thermal: Add coeff for mt8192 Greg Kroah-Hartman
2024-05-27 18:53 ` [PATCH 6.9 164/427] thermal/drivers/tsens: Fix null pointer dereference Greg Kroah-Hartman
2024-05-27 18:53 ` [PATCH 6.9 165/427] dt-bindings: thermal: loongson,ls2k-thermal: Add Loongson-2K0500 compatible Greg Kroah-Hartman
2024-05-27 18:53 ` [PATCH 6.9 166/427] dt-bindings: thermal: loongson,ls2k-thermal: Fix incorrect compatible definition Greg Kroah-Hartman
2024-05-27 18:53 ` [PATCH 6.9 167/427] 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.9 168/427] gfs2: Remove ill-placed consistency check Greg Kroah-Hartman
2024-05-27 18:53 ` [PATCH 6.9 169/427] gfs2: Fix potential glock use-after-free on unmount Greg Kroah-Hartman
2024-05-27 18:53 ` [PATCH 6.9 170/427] gfs2: finish_xmote cleanup Greg Kroah-Hartman
2024-05-27 18:53 ` [PATCH 6.9 171/427] gfs2: do_xmote fixes Greg Kroah-Hartman
2024-05-27 18:53 ` [PATCH 6.9 172/427] thermal/debugfs: Avoid excessive updates of trip point statistics Greg Kroah-Hartman
2024-05-27 18:53 ` [PATCH 6.9 173/427] selftests/bpf: Fix a fd leak in error paths in open_netns Greg Kroah-Hartman
2024-05-27 18:53 ` [PATCH 6.9 174/427] scsi: ufs: core: mcq: Fix ufshcd_mcq_sqe_search() Greg Kroah-Hartman
2024-05-27 18:53 ` [PATCH 6.9 175/427] cpufreq: brcmstb-avs-cpufreq: ISO C90 forbids mixed declarations Greg Kroah-Hartman
2024-05-27 18:53 ` [PATCH 6.9 176/427] wifi: ath10k: populate board data for WCN3990 Greg Kroah-Hartman
2024-05-27 18:53 ` [PATCH 6.9 177/427] net: dsa: mv88e6xxx: Add support for model-specific pre- and post-reset handlers Greg Kroah-Hartman
2024-05-27 18:53 ` [PATCH 6.9 178/427] net: dsa: mv88e6xxx: Avoid EEPROM timeout without EEPROM on 88E6250-family switches Greg Kroah-Hartman
2024-05-27 18:53 ` [PATCH 6.9 179/427] tcp: avoid premature drops in tcp_add_backlog() Greg Kroah-Hartman
2024-05-27 18:53 ` [PATCH 6.9 180/427] thermal/debugfs: Create records for cdev states as they get used Greg Kroah-Hartman
2024-05-27 18:53 ` [PATCH 6.9 181/427] thermal/debugfs: Pass cooling device state to thermal_debug_cdev_add() Greg Kroah-Hartman
2024-05-27 18:53 ` [PATCH 6.9 182/427] pwm: sti: Simplify probe function using devm functions Greg Kroah-Hartman
2024-05-27 18:53 ` [PATCH 6.9 183/427] drivers/perf: hisi_pcie: Fix out-of-bound access when valid event group Greg Kroah-Hartman
2024-05-27 18:53 ` [PATCH 6.9 184/427] drivers/perf: hisi: hns3: " Greg Kroah-Hartman
2024-05-27 18:53 ` [PATCH 6.9 185/427] drivers/perf: hisi: hns3: Actually use devm_add_action_or_reset() Greg Kroah-Hartman
2024-05-27 18:53 ` [PATCH 6.9 186/427] net: give more chances to rcu in netdev_wait_allrefs_any() Greg Kroah-Hartman
2024-05-27 18:53 ` [PATCH 6.9 187/427] macintosh/via-macii: Fix "BUG: sleeping function called from invalid context" Greg Kroah-Hartman
2024-05-27 18:53 ` [PATCH 6.9 188/427] wifi: carl9170: add a proper sanity check for endpoints Greg Kroah-Hartman
2024-05-27 18:53 ` [PATCH 6.9 189/427] bpf: Fix verifier assumptions about socket->sk Greg Kroah-Hartman
2024-05-27 18:53 ` [PATCH 6.9 190/427] selftests/bpf: Run cgroup1_hierarchy test in own mount namespace Greg Kroah-Hartman
2024-05-27 18:53 ` [PATCH 6.9 191/427] wifi: ar5523: enable proper endpoint verification Greg Kroah-Hartman
2024-05-27 18:53 ` [PATCH 6.9 192/427] pwm: meson: Add check for error from clk_round_rate() Greg Kroah-Hartman
2024-05-27 18:54 ` [PATCH 6.9 193/427] pwm: meson: Use mul_u64_u64_div_u64() for frequency calculating Greg Kroah-Hartman
2024-05-27 18:54 ` [PATCH 6.9 194/427] bpf: Add BPF_PROG_TYPE_CGROUP_SKB attach type enforcement in BPF_LINK_CREATE Greg Kroah-Hartman
2024-05-27 18:54 ` [PATCH 6.9 195/427] sh: kprobes: Merge arch_copy_kprobe() into arch_prepare_kprobe() Greg Kroah-Hartman
2024-05-27 18:54 ` [PATCH 6.9 196/427] Revert "sh: Handle calling csum_partial with misaligned data" Greg Kroah-Hartman
2024-05-27 18:54 ` [PATCH 6.9 197/427] wifi: mt76: mt7603: fix tx queue of loopback packets Greg Kroah-Hartman
2024-05-27 18:54 ` [PATCH 6.9 198/427] wifi: mt76: mt7603: add wpdma tx eof flag for PSE client reset Greg Kroah-Hartman
2024-05-27 18:54 ` [PATCH 6.9 199/427] wifi: mt76: connac: check for null before dereferencing Greg Kroah-Hartman
2024-05-27 18:54 ` [PATCH 6.9 200/427] wifi: mt76: mt7996: fix size of txpower MCU command Greg Kroah-Hartman
2024-05-27 18:54 ` [PATCH 6.9 201/427] wifi: mt76: mt7925: ensure 4-byte alignment for suspend & wow command Greg Kroah-Hartman
2024-05-27 18:54 ` [PATCH 6.9 202/427] wifi: mt76: mt7996: fix uninitialized variable in mt7996_irq_tasklet() Greg Kroah-Hartman
2024-05-27 18:54 ` [PATCH 6.9 203/427] wifi: mt76: mt7996: fix potential memory leakage when reading chip temperature Greg Kroah-Hartman
2024-05-27 18:54 ` [PATCH 6.9 204/427] wifi: mt76: connac: use muar idx 0xe for non-mt799x as well Greg Kroah-Hartman
2024-05-27 18:54 ` [PATCH 6.9 205/427] libbpf: Fix error message in attach_kprobe_multi Greg Kroah-Hartman
2024-05-27 18:54 ` [PATCH 6.9 206/427] wifi: nl80211: Avoid address calculations via out of bounds array indexing Greg Kroah-Hartman
2024-05-27 18:54 ` [PATCH 6.9 207/427] wifi: rtw89: wow: refine WoWLAN flows of HCI interrupts and low power mode Greg Kroah-Hartman
2024-05-27 18:54 ` [PATCH 6.9 208/427] selftests: ktap_helpers: Make it POSIX-compliant Greg Kroah-Hartman
2024-05-27 18:54 ` [PATCH 6.9 209/427] selftests: power_supply: " Greg Kroah-Hartman
2024-05-27 18:54 ` [PATCH 6.9 210/427] selftests/binderfs: use the Makefiles rules, not Makes implicit rules Greg Kroah-Hartman
2024-05-27 18:54 ` [PATCH 6.9 211/427] selftests/resctrl: fix clang build failure: use LOCAL_HDRS Greg Kroah-Hartman
2024-05-27 18:54 ` [PATCH 6.9 212/427] selftests: default to host arch for LLVM builds Greg Kroah-Hartman
2024-05-27 18:54 ` [PATCH 6.9 213/427] kunit: Fix kthread reference Greg Kroah-Hartman
2024-05-27 18:54 ` [PATCH 6.9 214/427] kunit: unregister the device on error Greg Kroah-Hartman
2024-05-27 18:54 ` [PATCH 6.9 215/427] 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.9 216/427] selftests/bpf: Fix pointer arithmetic in test_xdp_do_redirect Greg Kroah-Hartman
2024-05-27 18:54 ` [PATCH 6.9 217/427] HID: intel-ish-hid: ipc: Add check for pci_alloc_irq_vectors Greg Kroah-Hartman
2024-05-27 18:54 ` [PATCH 6.9 218/427] scsi: bfa: Ensure the copied buf is NUL terminated Greg Kroah-Hartman
2024-05-27 18:54 ` [PATCH 6.9 219/427] scsi: qedf: " Greg Kroah-Hartman
2024-05-27 18:54 ` [PATCH 6.9 220/427] scsi: qla2xxx: Fix debugfs output for fw_resource_count Greg Kroah-Hartman
2024-05-27 18:54 ` [PATCH 6.9 221/427] gpio: nuvoton: Fix sgpio irq handle error Greg Kroah-Hartman
2024-05-27 18:54 ` [PATCH 6.9 222/427] x86/numa: Fix SRAT lookup of CFMWS ranges with numa_fill_memblks() Greg Kroah-Hartman
2024-05-27 18:54 ` [PATCH 6.9 223/427] wifi: mwl8k: initialize cmd->addr[] properly Greg Kroah-Hartman
2024-05-27 18:54 ` [PATCH 6.9 224/427] HID: amd_sfh: Handle "no sensors" in PM operations Greg Kroah-Hartman
2024-05-27 18:54 ` [PATCH 6.9 225/427] btrfs: set start on clone before calling copy_extent_buffer_full Greg Kroah-Hartman
2024-05-27 18:54 ` [PATCH 6.9 226/427] usb: aqc111: stop lying about skb->truesize Greg Kroah-Hartman
2024-05-27 18:54 ` [PATCH 6.9 227/427] net: usb: sr9700: " Greg Kroah-Hartman
2024-05-27 18:54 ` [PATCH 6.9 228/427] m68k: Fix spinlock race in kernel thread creation Greg Kroah-Hartman
2024-05-27 18:54 ` [PATCH 6.9 229/427] m68k: mac: Fix reboot hang on Mac IIci Greg Kroah-Hartman
2024-05-27 18:54 ` [PATCH 6.9 230/427] m68k: Move ARCH_HAS_CPU_CACHE_ALIASING Greg Kroah-Hartman
2024-05-27 18:54 ` [PATCH 6.9 231/427] selftests: Compile kselftest headers with -D_GNU_SOURCE Greg Kroah-Hartman
2024-05-27 18:54 ` [PATCH 6.9 232/427] selftests/sgx: Include KHDR_INCLUDES in Makefile Greg Kroah-Hartman
2024-05-27 18:54 ` [PATCH 6.9 233/427] dm-delay: fix workqueue delay_timer race Greg Kroah-Hartman
2024-05-27 18:54 ` [PATCH 6.9 234/427] dm-delay: fix hung task introduced by kthread mode Greg Kroah-Hartman
2024-05-27 18:54 ` [PATCH 6.9 235/427] dm-delay: fix max_delay calculations Greg Kroah-Hartman
2024-05-27 18:54 ` [PATCH 6.9 236/427] ptp: ocp: fix DPLL functions Greg Kroah-Hartman
2024-05-27 18:54 ` [PATCH 6.9 237/427] net: ipv6: fix wrong start position when receive hop-by-hop fragment Greg Kroah-Hartman
2024-05-27 18:54 ` [PATCH 6.9 238/427] eth: sungem: remove .ndo_poll_controller to avoid deadlocks Greg Kroah-Hartman
2024-05-27 18:54 ` [PATCH 6.9 239/427] selftests: net: add missing config for amt.sh Greg Kroah-Hartman
2024-05-27 18:54 ` [PATCH 6.9 240/427] selftests: net: move amt to socat for better compatibility Greg Kroah-Hartman
2024-05-27 18:54 ` [PATCH 6.9 241/427] net: ethernet: mediatek: split tx and rx fields in mtk_soc_data struct Greg Kroah-Hartman
2024-05-27 18:54 ` [PATCH 6.9 242/427] net: ethernet: mediatek: use ADMAv1 instead of ADMAv2.0 on MT7981 and MT7986 Greg Kroah-Hartman
2024-05-27 18:54 ` [PATCH 6.9 243/427] ice: Fix package download algorithm Greg Kroah-Hartman
2024-05-27 18:54 ` [PATCH 6.9 244/427] net: ethernet: cortina: Locking fixes Greg Kroah-Hartman
2024-05-27 18:54 ` [PATCH 6.9 245/427] af_unix: Fix data races in unix_release_sock/unix_stream_sendmsg Greg Kroah-Hartman
2024-05-27 18:54 ` [PATCH 6.9 246/427] net: usb: smsc95xx: stop lying about skb->truesize Greg Kroah-Hartman
2024-05-27 18:54 ` [PATCH 6.9 247/427] net: openvswitch: fix overwriting ct original tuple for ICMPv6 Greg Kroah-Hartman
2024-05-27 18:54 ` [PATCH 6.9 248/427] ipv6: sr: add missing seg6_local_exit Greg Kroah-Hartman
2024-05-27 18:54 ` [PATCH 6.9 249/427] ipv6: sr: fix incorrect unregister order Greg Kroah-Hartman
2024-05-27 18:54 ` [PATCH 6.9 250/427] ipv6: sr: fix invalid unregister error path Greg Kroah-Hartman
2024-05-27 18:54 ` [PATCH 6.9 251/427] net/mlx5e: Fix netif state handling Greg Kroah-Hartman
2024-05-27 18:54 ` [PATCH 6.9 252/427] net/mlx5: Fix peer devlink set for SF representor devlink port Greg Kroah-Hartman
2024-05-27 18:55 ` [PATCH 6.9 253/427] net/mlx5: Reload only IB representors upon lag disable/enable Greg Kroah-Hartman
2024-05-27 18:55 ` [PATCH 6.9 254/427] net/mlx5: Add a timeout to acquire the command queue semaphore Greg Kroah-Hartman
2024-05-27 18:55 ` [PATCH 6.9 255/427] net/mlx5: Discard command completions in internal error Greg Kroah-Hartman
2024-05-27 18:55 ` [PATCH 6.9 256/427] s390/bpf: Emit a barrier for BPF_FETCH instructions Greg Kroah-Hartman
2024-05-27 18:55 ` [PATCH 6.9 257/427] riscv, bpf: make some atomic operations fully ordered Greg Kroah-Hartman
2024-05-27 18:55 ` [PATCH 6.9 258/427] inet: fix inet_fill_ifaddr() flags truncation Greg Kroah-Hartman
2024-05-27 18:55 ` [PATCH 6.9 259/427] ax25: Use kernel universal linked list to implement ax25_dev_list Greg Kroah-Hartman
2024-05-27 18:55 ` [PATCH 6.9 260/427] ax25: Fix reference count leak issues of ax25_dev Greg Kroah-Hartman
2024-05-27 18:55 ` [PATCH 6.9 261/427] ax25: Fix reference count leak issue of net_device Greg Kroah-Hartman
2024-05-27 18:55 ` [PATCH 6.9 262/427] dpll: fix return value check for kmemdup Greg Kroah-Hartman
2024-05-27 18:55 ` [PATCH 6.9 263/427] net: fec: remove .ndo_poll_controller to avoid deadlocks Greg Kroah-Hartman
2024-05-27 18:55 ` [PATCH 6.9 264/427] mptcp: SO_KEEPALIVE: fix getsockopt support Greg Kroah-Hartman
2024-05-27 18:55 ` [PATCH 6.9 265/427] mptcp: fix full TCP keep-alive support Greg Kroah-Hartman
2024-05-27 18:55 ` [PATCH 6.9 266/427] net: stmmac: move the EST lock to struct stmmac_priv Greg Kroah-Hartman
2024-05-27 18:55 ` [PATCH 6.9 267/427] net: micrel: Fix receiving the timestamp in the frame for lan8841 Greg Kroah-Hartman
2024-05-27 18:55 ` [PATCH 6.9 268/427] Bluetooth: compute LE flow credits based on recvbuf space Greg Kroah-Hartman
2024-05-27 18:55 ` [PATCH 6.9 269/427] Bluetooth: qca: Fix error code in qca_read_fw_build_info() Greg Kroah-Hartman
2024-05-27 18:55 ` [PATCH 6.9 270/427] Bluetooth: ISO: Make iso_get_sock_listen generic Greg Kroah-Hartman
2024-05-27 18:55 ` [PATCH 6.9 271/427] Bluetooth: HCI: Remove HCI_AMP support Greg Kroah-Hartman
2024-05-27 18:55 ` [PATCH 6.9 272/427] Bluetooth: hci_conn, hci_sync: Use __counted_by() to avoid -Wfamnae warnings Greg Kroah-Hartman
2024-05-27 18:55 ` [PATCH 6.9 273/427] Bluetooth: hci_core: Fix not handling hdev->le_num_of_adv_sets=1 Greg Kroah-Hartman
2024-05-27 18:55 ` [PATCH 6.9 274/427] drm/panel-edp: Add prepare_to_enable to 200ms for MNC207QS1-1 Greg Kroah-Hartman
2024-05-27 18:55 ` [PATCH 6.9 275/427] drm/bridge: Fix improper bridge init order with pre_enable_prev_first Greg Kroah-Hartman
2024-05-27 18:55 ` [PATCH 6.9 276/427] drm/ci: update device type for volteer devices Greg Kroah-Hartman
2024-05-27 18:55 ` [PATCH 6.9 277/427] drm/nouveau/dp: Fix incorrect return code in r535_dp_aux_xfer() Greg Kroah-Hartman
2024-05-27 18:55 ` [PATCH 6.9 278/427] drm/omapdrm: Fix console by implementing fb_dirty Greg Kroah-Hartman
2024-05-27 18:55 ` [PATCH 6.9 279/427] drm/omapdrm: Fix console with deferred ops Greg Kroah-Hartman
2024-05-27 18:55 ` [PATCH 6.9 280/427] printk: Let no_printk() use _printk() Greg Kroah-Hartman
2024-05-27 18:55 ` [PATCH 6.9 281/427] dev_printk: Add and use dev_no_printk() Greg Kroah-Hartman
2024-05-27 18:55 ` [PATCH 6.9 282/427] drm/lcdif: Do not disable clocks on already suspended hardware Greg Kroah-Hartman
2024-05-27 18:55 ` [PATCH 6.9 283/427] drm/panel: atna33xc20: Fix unbalanced regulator in the case HPD doesnt assert Greg Kroah-Hartman
2024-05-27 18:55 ` [PATCH 6.9 284/427] drm/amd/display: Fix potential index out of bounds in color transformation function Greg Kroah-Hartman
2024-05-27 18:55 ` [PATCH 6.9 285/427] drm/amd/display: Remove redundant condition in dcn35_calc_blocks_to_gate() Greg Kroah-Hartman
2024-05-27 18:55 ` [PATCH 6.9 286/427] ASoC: Intel: Disable route checks for Skylake boards Greg Kroah-Hartman
2024-05-27 18:55 ` [PATCH 6.9 287/427] ASoC: Intel: avs: ssm4567: Do not ignore route checks Greg Kroah-Hartman
2024-05-27 18:55 ` [PATCH 6.9 288/427] mtd: core: Report error if first mtd_otp_size() call fails in mtd_otp_nvmem_add() Greg Kroah-Hartman
2024-05-27 18:55 ` [PATCH 6.9 289/427] mtd: rawnand: hynix: fixed typo Greg Kroah-Hartman
2024-05-27 18:55 ` [PATCH 6.9 290/427] drm/imagination: avoid -Woverflow warning Greg Kroah-Hartman
2024-05-27 18:55 ` [PATCH 6.9 291/427] ASoC: mediatek: Assign dummy when codec not specified for a DAI link Greg Kroah-Hartman
2024-05-27 18:55 ` [PATCH 6.9 292/427] drm/panel: ltk050h3146w: add MIPI_DSI_MODE_VIDEO to LTK050H3148W flags Greg Kroah-Hartman
2024-05-27 18:55 ` [PATCH 6.9 293/427] drm/panel: ltk050h3146w: drop duplicate commands from LTK050H3148W init Greg Kroah-Hartman
2024-05-27 18:55 ` [PATCH 6.9 294/427] fbdev: shmobile: fix snprintf truncation Greg Kroah-Hartman
2024-05-27 18:55 ` [PATCH 6.9 295/427] ASoC: kirkwood: Fix potential NULL dereference Greg Kroah-Hartman
2024-05-27 18:55 ` [PATCH 6.9 296/427] drm/meson: vclk: fix calculation of 59.94 fractional rates Greg Kroah-Hartman
2024-05-27 18:55 ` [PATCH 6.9 297/427] drm/mediatek: Add 0 size check to mtk_drm_gem_obj Greg Kroah-Hartman
2024-05-27 18:55 ` [PATCH 6.9 298/427] drm/mediatek: Init `ddp_comp` with devm_kcalloc() Greg Kroah-Hartman
2024-05-27 18:55 ` [PATCH 6.9 299/427] ASoC: SOF: Intel: hda-dai: fix channel map configuration for aggregated dailink Greg Kroah-Hartman
2024-05-27 18:55 ` [PATCH 6.9 300/427] powerpc/fsl-soc: hide unused const variable Greg Kroah-Hartman
2024-05-27 18:55 ` [PATCH 6.9 301/427] ASoC: SOF: Intel: mtl: Correct rom_status_reg Greg Kroah-Hartman
2024-05-27 18:55 ` [PATCH 6.9 302/427] ASoC: SOF: Intel: lnl: " Greg Kroah-Hartman
2024-05-27 18:55 ` [PATCH 6.9 303/427] ASoC: SOF: Intel: mtl: Disable interrupts when firmware boot failed Greg Kroah-Hartman
2024-05-27 18:55 ` [PATCH 6.9 304/427] ASoC: SOF: Intel: mtl: Implement firmware boot state check Greg Kroah-Hartman
2024-05-27 18:55 ` [PATCH 6.9 305/427] fbdev: sisfb: hide unused variables Greg Kroah-Hartman
2024-05-27 18:55 ` [PATCH 6.9 306/427] selftests: cgroup: skip test_cgcore_lesser_ns_open when cgroup2 mounted without nsdelegate Greg Kroah-Hartman
2024-05-27 18:55 ` [PATCH 6.9 307/427] ASoC: Intel: avs: Restore stream decoupling on prepare Greg Kroah-Hartman
2024-05-27 18:55 ` [PATCH 6.9 308/427] ASoC: Intel: avs: Fix debug-slot offset calculation Greg Kroah-Hartman
2024-05-27 18:55 ` [PATCH 6.9 309/427] ASoC: Intel: avs: Fix ASRC module initialization Greg Kroah-Hartman
2024-05-27 18:55 ` [PATCH 6.9 310/427] ASoC: Intel: avs: Fix potential integer overflow Greg Kroah-Hartman
2024-05-27 18:55 ` [PATCH 6.9 311/427] ASoC: Intel: avs: Test result of avs_get_module_entry() Greg Kroah-Hartman
2024-05-27 18:55 ` [PATCH 6.9 312/427] media: ngene: Add dvb_ca_en50221_init return value check Greg Kroah-Hartman
2024-05-27 18:56 ` [PATCH 6.9 313/427] staging: media: starfive: Remove links when unregistering devices Greg Kroah-Hartman
2024-05-27 18:56 ` [PATCH 6.9 314/427] media: rcar-vin: work around -Wenum-compare-conditional warning Greg Kroah-Hartman
2024-05-27 18:56 ` [PATCH 6.9 315/427] media: radio-shark2: Avoid led_names truncations Greg Kroah-Hartman
2024-05-27 18:56 ` [PATCH 6.9 316/427] drm: bridge: cdns-mhdp8546: Fix possible null pointer dereference Greg Kroah-Hartman
2024-05-27 18:56 ` [PATCH 6.9 317/427] platform/x86: xiaomi-wmi: Fix race condition when reporting key events Greg Kroah-Hartman
2024-05-27 18:56 ` [PATCH 6.9 318/427] drm/msm/dp: allow voltage swing / pre emphasis of 3 Greg Kroah-Hartman
2024-05-27 18:56 ` [PATCH 6.9 319/427] drm/msm/dp: Avoid a long timeout for AUX transfer if nothing connected Greg Kroah-Hartman
2024-05-27 18:56 ` [PATCH 6.9 320/427] drm/msm/dp: Account for the timeout in wait_hpd_asserted() callback Greg Kroah-Hartman
2024-05-27 18:56 ` [PATCH 6.9 321/427] media: ipu3-cio2: Request IRQ earlier Greg Kroah-Hartman
2024-05-27 18:56 ` [PATCH 6.9 322/427] media: dt-bindings: ovti,ov2680: Fix the power supply names Greg Kroah-Hartman
2024-05-27 18:56 ` [PATCH 6.9 323/427] media: i2c: et8ek8: Dont strip remove function when driver is builtin Greg Kroah-Hartman
2024-05-27 18:56 ` [PATCH 6.9 324/427] media: v4l2-subdev: Fix stream handling for crop API Greg Kroah-Hartman
2024-05-27 18:56 ` [PATCH 6.9 325/427] fbdev: sh7760fb: allow modular build Greg Kroah-Hartman
2024-05-27 18:56 ` [PATCH 6.9 326/427] media: atomisp: ssh_css: Fix a null-pointer dereference in load_video_binaries Greg Kroah-Hartman
2024-05-27 18:56 ` [PATCH 6.9 327/427] drm/arm/malidp: fix a possible null pointer dereference Greg Kroah-Hartman
2024-05-27 18:56 ` [PATCH 6.9 328/427] drm: vc4: Fix " Greg Kroah-Hartman
2024-05-27 18:56 ` [PATCH 6.9 329/427] ASoC: tracing: Export SND_SOC_DAPM_DIR_OUT to its value Greg Kroah-Hartman
2024-05-27 18:56 ` [PATCH 6.9 330/427] drm/bridge: anx7625: Dont log an error when DSI host cant be found Greg Kroah-Hartman
2024-05-27 18:56 ` [PATCH 6.9 331/427] drm/bridge: icn6211: " Greg Kroah-Hartman
2024-05-27 18:56 ` [PATCH 6.9 332/427] drm/bridge: lt8912b: " Greg Kroah-Hartman
2024-05-27 18:56 ` [PATCH 6.9 333/427] drm/bridge: lt9611: " Greg Kroah-Hartman
2024-05-27 18:56 ` [PATCH 6.9 334/427] drm/bridge: lt9611uxc: " Greg Kroah-Hartman
2024-05-27 18:56 ` [PATCH 6.9 335/427] drm/bridge: tc358775: " Greg Kroah-Hartman
2024-05-27 18:56 ` [PATCH 6.9 336/427] drm/bridge: dpc3433: " Greg Kroah-Hartman
2024-05-27 18:56 ` [PATCH 6.9 337/427] drm/panel: novatek-nt35950: " Greg Kroah-Hartman
2024-05-27 18:56 ` [PATCH 6.9 338/427] drm/bridge: anx7625: Update audio status while detecting Greg Kroah-Hartman
2024-05-27 18:56 ` [PATCH 6.9 339/427] drm/panel: simple: Add missing Innolux G121X1-L03 format, flags, connector Greg Kroah-Hartman
2024-05-27 18:56 ` [PATCH 6.9 340/427] ALSA: hda: cs35l41: Remove Speaker ID for Lenovo Legion slim 7 16ARHA7 Greg Kroah-Hartman
2024-05-27 18:56 ` [PATCH 6.9 341/427] drm/mipi-dsi: use correct return type for the DSC functions Greg Kroah-Hartman
2024-05-27 18:56 ` [PATCH 6.9 342/427] media: uvcvideo: Add quirk for Logitech Rally Bar Greg Kroah-Hartman
2024-05-27 18:56 ` [PATCH 6.9 343/427] drm/rockchip: vop2: Do not divide height twice for YUV Greg Kroah-Hartman
2024-05-27 18:56 ` [PATCH 6.9 344/427] RISC-V: Fix the typo in Scountovf CSR name Greg Kroah-Hartman
2024-05-27 18:56 ` [PATCH 6.9 345/427] drm/edid: Parse topology block for all DispID structure v1.x Greg Kroah-Hartman
2024-05-27 18:56 ` [PATCH 6.9 346/427] media: cadence: csi2rx: configure DPHY before starting source stream Greg Kroah-Hartman
2024-05-27 18:56 ` [PATCH 6.9 347/427] power: supply: core: simplify charge_behaviour formatting Greg Kroah-Hartman
2024-05-27 18:56 ` [PATCH 6.9 348/427] clk: samsung: exynosautov9: fix wrong pll clock id value Greg Kroah-Hartman
2024-05-27 18:56 ` [PATCH 6.9 349/427] RDMA/mlx5: Uncacheable mkey has neither rb_key or cache_ent Greg Kroah-Hartman
2024-05-27 18:56 ` [PATCH 6.9 350/427] RDMA/mlx5: Change check for cacheable mkeys Greg Kroah-Hartman
2024-05-27 18:56 ` [PATCH 6.9 351/427] RDMA/mlx5: Adding remote atomic access flag to updatable flags Greg Kroah-Hartman
2024-05-27 18:56 ` [PATCH 6.9 352/427] clk: mediatek: pllfh: Dont log error for missing fhctl node Greg Kroah-Hartman
2024-05-27 18:56 ` [PATCH 6.9 353/427] iommu: Undo pasid attachment only for the devices that have succeeded Greg Kroah-Hartman
2024-05-27 18:56 ` [PATCH 6.9 354/427] RDMA/hns: Fix return value in hns_roce_map_mr_sg Greg Kroah-Hartman
2024-05-27 18:56 ` [PATCH 6.9 355/427] RDMA/hns: Add max_ah and cq moderation capacities in query_device() Greg Kroah-Hartman
2024-05-27 18:56 ` [PATCH 6.9 356/427] RDMA/hns: Fix deadlock on SRQ async events Greg Kroah-Hartman
2024-05-27 18:56 ` [PATCH 6.9 357/427] RDMA/hns: Fix UAF for cq async event Greg Kroah-Hartman
2024-05-27 18:56 ` [PATCH 6.9 358/427] RDMA/hns: Fix mismatch exception rollback Greg Kroah-Hartman
2024-05-27 18:56 ` [PATCH 6.9 359/427] RDMA/hns: Fix GMV table pagesize Greg Kroah-Hartman
2024-05-27 18:56 ` [PATCH 6.9 360/427] RDMA/hns: Use complete parentheses in macros Greg Kroah-Hartman
2024-05-27 18:56 ` [PATCH 6.9 361/427] RDMA/hns: Modify the print level of CQE error Greg Kroah-Hartman
2024-05-27 18:56 ` [PATCH 6.9 362/427] clk: mediatek: mt8365-mm: fix DPI0 parent Greg Kroah-Hartman
2024-05-27 18:56 ` [PATCH 6.9 363/427] clk: rs9: fix wrong default value for clock amplitude Greg Kroah-Hartman
2024-05-27 18:56 ` [PATCH 6.9 364/427] clk: qcom: clk-alpha-pll: remove invalid Stromer register offset Greg Kroah-Hartman
2024-05-27 18:56 ` [PATCH 6.9 365/427] clk: samsung: gs101: propagate PERIC0 USI SPI clock rate Greg Kroah-Hartman
2024-05-27 18:56 ` [PATCH 6.9 366/427] clk: samsung: gs101: propagate PERIC1 " Greg Kroah-Hartman
2024-05-27 18:56 ` [PATCH 6.9 367/427] RDMA/rxe: Fix seg fault in rxe_comp_queue_pkt Greg Kroah-Hartman
2024-05-27 18:56 ` [PATCH 6.9 368/427] RDMA/rxe: Allow good work requests to be executed Greg Kroah-Hartman
2024-05-27 18:56 ` [PATCH 6.9 369/427] RDMA/rxe: Fix incorrect rxe_put in error path Greg Kroah-Hartman
2024-05-27 18:56 ` [PATCH 6.9 370/427] IB/mlx5: Use __iowrite64_copy() for write combining stores Greg Kroah-Hartman
2024-05-27 18:56 ` [PATCH 6.9 371/427] clk: renesas: r8a779a0: Fix CANFD parent clock Greg Kroah-Hartman
2024-05-27 18:56 ` [PATCH 6.9 372/427] clk: renesas: r9a07g043: Add clock and reset entry for PLIC Greg Kroah-Hartman
2024-05-27 18:57 ` [PATCH 6.9 373/427] lib/test_hmm.c: handle src_pfns and dst_pfns allocation failure Greg Kroah-Hartman
2024-05-27 18:57 ` [PATCH 6.9 374/427] mm/ksm: fix ksm exec support for prctl Greg Kroah-Hartman
2024-05-27 18:57 ` [PATCH 6.9 375/427] clk: qcom: dispcc-sm8450: fix DisplayPort clocks Greg Kroah-Hartman
2024-05-27 18:57 ` [PATCH 6.9 376/427] clk: qcom: dispcc-sm6350: " Greg Kroah-Hartman
2024-05-27 18:57 ` [PATCH 6.9 377/427] clk: qcom: dispcc-sm8550: " Greg Kroah-Hartman
2024-05-27 18:57 ` [PATCH 6.9 378/427] clk: qcom: dispcc-sm8650: " Greg Kroah-Hartman
2024-05-27 18:57 ` [PATCH 6.9 379/427] clk: qcom: mmcc-msm8998: fix venus clock issue Greg Kroah-Hartman
2024-05-27 18:57 ` [PATCH 6.9 380/427] x86/insn: Fix PUSH instruction in x86 instruction decoder opcode map Greg Kroah-Hartman
2024-05-27 18:57 ` [PATCH 6.9 381/427] x86/insn: Add VEX versions of VPDPBUSD, VPDPBUSDS, VPDPWSSD and VPDPWSSDS Greg Kroah-Hartman
2024-05-27 18:57 ` [PATCH 6.9 382/427] ext4: avoid excessive credit estimate in ext4_tmpfile() Greg Kroah-Hartman
2024-05-27 18:57 ` [PATCH 6.9 383/427] RDMA/mana_ib: Introduce helpers to create and destroy mana queues Greg Kroah-Hartman
2024-05-27 18:57 ` [PATCH 6.9 384/427] RDMA/mana_ib: Use struct mana_ib_queue for CQs Greg Kroah-Hartman
2024-05-27 18:57 ` [PATCH 6.9 385/427] RDMA/mana_ib: boundary check before installing cq callbacks Greg Kroah-Hartman
2024-05-27 18:57 ` [PATCH 6.9 386/427] virt: acrn: stop using follow_pfn Greg Kroah-Hartman
2024-05-27 18:57 ` [PATCH 6.9 387/427] drivers/virt/acrn: fix PFNMAP PTE checks in acrn_vm_ram_map() Greg Kroah-Hartman
2024-05-27 18:57 ` [PATCH 6.9 388/427] iommu/vt-d: Decouple igfx_off from graphic identity mapping Greg Kroah-Hartman
2024-05-27 18:57 ` [PATCH 6.9 389/427] iommu/amd: Enable Guest Translation after reading IOMMU feature register Greg Kroah-Hartman
2024-05-27 18:57 ` [PATCH 6.9 390/427] sunrpc: removed redundant procp check Greg Kroah-Hartman
2024-05-27 18:57 ` [PATCH 6.9 391/427] nfsd: dont create nfsv4recoverydir in nfsdfs when not used Greg Kroah-Hartman
2024-05-27 18:57 ` [PATCH 6.9 392/427] dax/bus.c: replace WARN_ON_ONCE() with lockdep asserts Greg Kroah-Hartman
2024-05-27 18:57 ` [PATCH 6.9 393/427] dax/bus.c: fix locking for unregister_dax_dev / unregister_dax_mapping paths Greg Kroah-Hartman
2024-05-27 18:57 ` [PATCH 6.9 394/427] dax/bus.c: dont use down_write_killable for non-user processes Greg Kroah-Hartman
2024-05-27 18:57 ` [PATCH 6.9 395/427] dax/bus.c: use the right locking mode (read vs write) in size_show Greg Kroah-Hartman
2024-05-27 18:57 ` [PATCH 6.9 396/427] ext4: fix potential unnitialized variable Greg Kroah-Hartman
2024-05-27 18:57 ` [PATCH 6.9 397/427] ext4: remove the redundant folio_wait_stable() Greg Kroah-Hartman
2024-05-27 18:57 ` [PATCH 6.9 398/427] clk: qcom: Fix SC_CAMCC_8280XP dependencies Greg Kroah-Hartman
2024-05-27 18:57 ` [PATCH 6.9 399/427] clk: qcom: Fix SM_GPUCC_8650 dependencies Greg Kroah-Hartman
2024-05-27 18:57 ` [PATCH 6.9 400/427] clk: qcom: apss-ipq-pll: fix PLL rate for IPQ5018 Greg Kroah-Hartman
2024-05-27 18:57 ` [PATCH 6.9 401/427] of: module: add buffer overflow check in of_modalias() Greg Kroah-Hartman
2024-05-27 18:57 ` [PATCH 6.9 402/427] bnxt_re: avoid shift undefined behavior in bnxt_qplib_alloc_init_hwq Greg Kroah-Hartman
2024-05-27 18:57 ` [PATCH 6.9 403/427] SUNRPC: Fix gss_free_in_token_pages() Greg Kroah-Hartman
2024-05-27 18:57 ` [PATCH 6.9 404/427] selftests/damon/_damon_sysfs: check errors from nr_schemes file reads Greg Kroah-Hartman
2024-05-27 18:57 ` [PATCH 6.9 405/427] selftests/kcmp: remove unused open mode Greg Kroah-Hartman
2024-05-27 18:57 ` [PATCH 6.9 406/427] RDMA/IPoIB: Fix format truncation compilation errors Greg Kroah-Hartman
2024-05-27 18:57 ` [PATCH 6.9 407/427] RDMA/cma: Fix kmemleak in rdma_core observed during blktests nvme/rdma use siw Greg Kroah-Hartman
2024-05-27 18:57 ` [PATCH 6.9 408/427] samples/landlock: Fix incorrect free in populate_ruleset_net Greg Kroah-Hartman
2024-05-27 18:57 ` [PATCH 6.9 409/427] tracing/user_events: Fix non-spaced field matching Greg Kroah-Hartman
2024-05-27 18:57 ` [PATCH 6.9 410/427] modules: Drop the .export_symbol section from the final modules Greg Kroah-Hartman
2024-05-27 18:57 ` [PATCH 6.9 411/427] net: bridge: xmit: make sure we have at least eth header len bytes Greg Kroah-Hartman
2024-05-27 18:57 ` [PATCH 6.9 412/427] selftests: net: bridge: increase IGMP/MLD exclude timeout membership interval Greg Kroah-Hartman
2024-05-27 18:57 ` [PATCH 6.9 413/427] net: bridge: mst: fix vlan use-after-free Greg Kroah-Hartman
2024-05-27 18:57 ` [PATCH 6.9 414/427] libbpf: fix feature detectors when using token_fd Greg Kroah-Hartman
2024-05-27 18:57 ` [PATCH 6.9 415/427] net: qrtr: ns: Fix module refcnt Greg Kroah-Hartman
2024-05-27 18:57 ` [PATCH 6.9 416/427] selftests/net/lib: no need to record ns name if it already exist Greg Kroah-Hartman
2024-05-27 18:57 ` [PATCH 6.9 417/427] idpf: dont skip over ethtool tcp-data-split setting Greg Kroah-Hartman
2024-05-27 18:57 ` [PATCH 6.9 418/427] netrom: fix possible dead-lock in nr_rt_ioctl() Greg Kroah-Hartman
2024-05-27 18:57 ` [PATCH 6.9 419/427] af_packet: do not call packet_read_pending() from tpacket_destruct_skb() Greg Kroah-Hartman
2024-05-27 18:57 ` [PATCH 6.9 420/427] sched/fair: Allow disabling sched_balance_newidle with sched_relax_domain_level Greg Kroah-Hartman
2024-05-27 18:57 ` [PATCH 6.9 421/427] sched/core: Fix incorrect initialization of the burst parameter in cpu_max_write() Greg Kroah-Hartman
2024-05-27 18:57 ` [PATCH 6.9 422/427] net: wangxun: fix to change Rx features Greg Kroah-Hartman
2024-05-27 18:57 ` [PATCH 6.9 423/427] net: wangxun: match VLAN CTAG and STAG features Greg Kroah-Hartman
2024-05-27 18:57 ` [PATCH 6.9 424/427] net: txgbe: fix to control VLAN strip Greg Kroah-Hartman
2024-05-27 18:57 ` [PATCH 6.9 425/427] l2tp: fix ICMP error handling for UDP-encap sockets Greg Kroah-Hartman
2024-05-27 18:57 ` [PATCH 6.9 426/427] Revert "selftests: Compile kselftest headers with -D_GNU_SOURCE" Greg Kroah-Hartman
2024-05-27 18:57 ` [PATCH 6.9 427/427] Revert "selftests/sgx: Include KHDR_INCLUDES in Makefile" Greg Kroah-Hartman
2024-05-27 21:23 ` [PATCH 6.9 000/427] 6.9.3-rc1 review Pavel Machek
2024-05-28  8:28 ` Bagas Sanjaya
2024-05-28 12:14 ` Jon Hunter
2024-05-28 16:08 ` SeongJae Park
2024-05-28 18:20 ` Mark Brown
2024-05-28 19:33 ` Pascal Ernster
2024-05-28 21:25 ` Florian Fainelli
2024-05-28 21:52 ` Shuah Khan
2024-05-28 22:26 ` Ron Economos
2024-05-29  3:28 ` Naresh Kamboju

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=20240527185608.023711076@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