From: Byungchul Park <byungchul@sk.com>
To: Andrew Morton <akpm@linux-foundation.org>
Cc: Gavin Guo <gavinguo@igalia.com>,
linux-mm@kvack.org, linux-kernel@vger.kernel.org,
muchun.song@linux.dev, osalvador@suse.de, kernel-dev@igalia.com,
stable@vger.kernel.org, Hugh Dickins <hughd@google.com>,
Florent Revest <revest@google.com>, Gavin Shan <gshan@redhat.com>,
kernel_team@skhynix.com
Subject: Re: [PATCH] mm/hugetlb: fix a deadlock with pagecache_folio and hugetlb_fault_mutex_table
Date: Wed, 14 May 2025 13:33:27 +0900 [thread overview]
Message-ID: <20250514043326.GA4318@system.software.com> (raw)
In-Reply-To: <20250513175633.85f4e19f4232a68ab04c8e41@linux-foundation.org>
On Tue, May 13, 2025 at 05:56:33PM -0700, Andrew Morton wrote:
> On Tue, 13 May 2025 17:34:48 +0800 Gavin Guo <gavinguo@igalia.com> wrote:
>
> > The patch fixes a deadlock which can be triggered by an internal
> > syzkaller [1] reproducer and captured by bpftrace script [2] and its log
> > [3] in this scenario:
> >
> > Process 1 Process 2
> > --- ---
> > hugetlb_fault
> > mutex_lock(B) // take B
> > filemap_lock_hugetlb_folio
> > filemap_lock_folio
> > __filemap_get_folio
> > folio_lock(A) // take A
> > hugetlb_wp
> > mutex_unlock(B) // release B
> > ... hugetlb_fault
> > ... mutex_lock(B) // take B
> > filemap_lock_hugetlb_folio
> > filemap_lock_folio
> > __filemap_get_folio
> > folio_lock(A) // blocked
> > unmap_ref_private
> > ...
> > mutex_lock(B) // retake and blocked
> >
> > This is a ABBA deadlock involving two locks:
> > - Lock A: pagecache_folio lock
> > - Lock B: hugetlb_fault_mutex_table lock
>
> Nostalgia. A decade or three ago many of us spent much of our lives
> staring at ABBA deadlocks. Then came lockdep and after a few more
> years, it all stopped. I've long hoped that lockdep would gain a
> solution to custom locks such as folio_wait_bit_common(), but not yet.
>
> Byungchul, please take a look. Would DEPT
> (https://lkml.kernel.org/r/20250513100730.12664-1-byungchul@sk.com)
> have warned us about this?
Sure, I will check it. I think this type of deadlock is what DEPT can do
the best.
Byungchul
> >
> > ...
> >
> > The deadlock occurs between two processes as follows:
> >
> > ...
> >
> > Fixes: 40549ba8f8e0 ("hugetlb: use new vma_lock for pmd sharing synchronization")
> > Cc: <stable@vger.kernel.org>
>
> It's been there for three years so I assume we aren't in a hurry.
>
> The fix looks a bit nasty, sorry. Perhaps designed for a minimal patch
> footprint? That's good for a backportable fixup, but a more broadly
> architected solution may be needed going forward.
>
> I'll queue it for 6.16-rc1 with a cc:stable, so this should be
> presented to the -stable trees 3-4 weeks from now.
next prev parent reply other threads:[~2025-05-14 4:33 UTC|newest]
Thread overview: 14+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-05-13 9:34 [PATCH] mm/hugetlb: fix a deadlock with pagecache_folio and hugetlb_fault_mutex_table Gavin Guo
2025-05-14 0:56 ` Andrew Morton
2025-05-14 4:33 ` Byungchul Park [this message]
2025-05-14 6:47 ` Byungchul Park
2025-05-14 8:10 ` Gavin Guo
2025-05-15 2:22 ` Byungchul Park
2025-05-16 6:03 ` Byungchul Park
2025-05-16 7:32 ` Gavin Guo
2025-05-16 7:43 ` Byungchul Park
2025-05-20 19:53 ` Oscar Salvador
2025-05-21 11:12 ` Gavin Guo
2025-05-26 4:41 ` Gavin Shan
2025-05-27 9:59 ` Gavin Guo
2025-05-27 10:59 ` Gavin Shan
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=20250514043326.GA4318@system.software.com \
--to=byungchul@sk.com \
--cc=akpm@linux-foundation.org \
--cc=gavinguo@igalia.com \
--cc=gshan@redhat.com \
--cc=hughd@google.com \
--cc=kernel-dev@igalia.com \
--cc=kernel_team@skhynix.com \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-mm@kvack.org \
--cc=muchun.song@linux.dev \
--cc=osalvador@suse.de \
--cc=revest@google.com \
--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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.