]> git.ipfire.org Git - thirdparty/kernel/stable-queue.git/commitdiff
fix up 5 hugetlb/rmap patches in queue-5.10: add missing commit upstream lines
authorSasha Levin <sashal@kernel.org>
Mon, 13 Apr 2026 22:22:12 +0000 (18:22 -0400)
committerSasha Levin <sashal@kernel.org>
Mon, 13 Apr 2026 22:31:02 +0000 (18:31 -0400)
Added "commit XXX upstream." annotations to:

- mm-hugetlb-fix-copy_hugetlb_page_range-to-use-pt_sha.patch
  (commit 14967a9c7d247841b0312c48dcf8cd29e55a4cc8 upstream)
- mm-hugetlb-fix-hugetlb_pmd_shared.patch
  (commit ca1a47cd3f5f4c46ca188b1c9a27af87d1ab2216 upstream - fixed capitalization)
- mm-hugetlb-fix-two-comments-related-to-huge_pmd_unsh.patch
  (commit 3937027caecb4f8251e82dd857ba1d749bb5a428 upstream)
- mm-hugetlb-make-detecting-shared-pte-more-reliable.patch
  (commit 3aa4ed8040e1535d95c03cef8b52cf11bf0d8546 upstream)
- mm-rmap-fix-two-comments-related-to-huge_pmd_unshare.patch
  (commit a8682d500f691b6dfaa16ae1502d990aeb86e8be upstream)

These patches were identified by Ben Hutchings as missing the standard
upstream commit reference annotation.

queue-5.10/mm-hugetlb-fix-copy_hugetlb_page_range-to-use-pt_sha.patch
queue-5.10/mm-hugetlb-fix-hugetlb_pmd_shared.patch
queue-5.10/mm-hugetlb-fix-two-comments-related-to-huge_pmd_unsh.patch
queue-5.10/mm-hugetlb-make-detecting-shared-pte-more-reliable.patch
queue-5.10/mm-rmap-fix-two-comments-related-to-huge_pmd_unshare.patch

index 230e1e4aba164665a3229eb812e8cf63a9ff41b9..e964fb90a3e01381b781e14562c984086d18eeee 100644 (file)
@@ -5,6 +5,8 @@ Subject: mm/hugetlb: fix copy_hugetlb_page_range() to use ->pt_share_count
 
 From: Jane Chu <jane.chu@oracle.com>
 
+commit 14967a9c7d247841b0312c48dcf8cd29e55a4cc8 upstream.
+
 commit 59d9094df3d79 ("mm: hugetlb: independent PMD page table shared
 count") introduced ->pt_share_count dedicated to hugetlb PMD share count
 tracking, but omitted fixing copy_hugetlb_page_range(), leaving the
index 56143fd61e4f7fa93cdc40bd5e7ebd73f16654e9..f47755861f433bebda345e34d6a67c489890147f 100644 (file)
@@ -5,7 +5,7 @@ Subject: mm/hugetlb: fix hugetlb_pmd_shared()
 
 From: David Hildenbrand (Red Hat) <david@kernel.org>
 
-Commit ca1a47cd3f5f4c46ca188b1c9a27af87d1ab2216 upstream.
+commit ca1a47cd3f5f4c46ca188b1c9a27af87d1ab2216 upstream.
 
 Patch series "mm/hugetlb: fixes for PMD table sharing (incl.  using
 mmu_gather)", v3.
index 604632eeae0c9f5fa8d5550f22c257a13eea57dc..b709e604984a776a18b8983b1d57cf28017e9464 100644 (file)
@@ -5,6 +5,8 @@ Subject: mm/hugetlb: fix two comments related to huge_pmd_unshare()
 
 From: David Hildenbrand (Red Hat) <david@kernel.org>
 
+commit 3937027caecb4f8251e82dd857ba1d749bb5a428 upstream.
+
 Ever since we stopped using the page count to detect shared PMD page
 tables, these comments are outdated.
 
index ed81b64b577ca3f9a95bfa8311037396437e0d0b..7131891e6d46034bb25c6fffb23c30a2a6f86715 100644 (file)
@@ -5,6 +5,8 @@ Subject: mm/hugetlb: make detecting shared pte more reliable
 
 From: Miaohe Lin <linmiaohe@huawei.com>
 
+commit 3aa4ed8040e1535d95c03cef8b52cf11bf0d8546 upstream.
+
 If the pagetables are shared, we shouldn't copy or take references.  Since
 src could have unshared and dst shares with another vma, huge_pte_none()
 is thus used to determine whether dst_pte is shared.  But this check isn't
index 3f84ed80951b2581bf3c80866bc4065f2c2d0bcf..93e3e771f431d4271e1f8320fa5aadda254ff30f 100644 (file)
@@ -5,6 +5,8 @@ Subject: mm/rmap: fix two comments related to huge_pmd_unshare()
 
 From: David Hildenbrand (Red Hat) <david@kernel.org>
 
+commit a8682d500f691b6dfaa16ae1502d990aeb86e8be upstream.
+
 PMD page table unsharing no longer touches the refcount of a PMD page
 table.  Also, it is not about dropping the refcount of a "PMD page" but
 the "PMD page table".