]> git.proxmox.com Git - mirror_ubuntu-focal-kernel.git/commit
mm: hugetlb: remove VM_BUG_ON_PAGE from page_huge_active
authorMuchun Song <songmuchun@bytedance.com>
Fri, 5 Feb 2021 02:32:13 +0000 (18:32 -0800)
committerKleber Sacilotto de Souza <kleber.souza@canonical.com>
Wed, 24 Mar 2021 10:11:44 +0000 (11:11 +0100)
commit08f3c9c110c1db54414148f3d913a54890efd572
treecbc1b31ae27512ee3f42d936bdda80f3f2d93f3b
parent9b7a670c56a0d5003d9f6ae1b1d5a72ea16db9c6
mm: hugetlb: remove VM_BUG_ON_PAGE from page_huge_active

BugLink: https://bugs.launchpad.net/bugs/1916066
commit ecbf4724e6061b4b01be20f6d797d64d462b2bc8 upstream.

The page_huge_active() can be called from scan_movable_pages() which do
not hold a reference count to the HugeTLB page.  So when we call
page_huge_active() from scan_movable_pages(), the HugeTLB page can be
freed parallel.  Then we will trigger a BUG_ON which is in the
page_huge_active() when CONFIG_DEBUG_VM is enabled.  Just remove the
VM_BUG_ON_PAGE.

Link: https://lkml.kernel.org/r/20210115124942.46403-6-songmuchun@bytedance.com
Fixes: 7e1f049efb86 ("mm: hugetlb: cleanup using paeg_huge_active()")
Signed-off-by: Muchun Song <songmuchun@bytedance.com>
Reviewed-by: Mike Kravetz <mike.kravetz@oracle.com>
Acked-by: Michal Hocko <mhocko@suse.com>
Reviewed-by: Oscar Salvador <osalvador@suse.de>
Cc: David Hildenbrand <david@redhat.com>
Cc: Yang Shi <shy828301@gmail.com>
Cc: <stable@vger.kernel.org>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Signed-off-by: Kamal Mostafa <kamal@canonical.com>
Signed-off-by: Stefan Bader <stefan.bader@canonical.com>
mm/hugetlb.c