linux-mm.kvack.org archive mirror
 help / color / mirror / Atom feed
From: "David Hildenbrand (Red Hat)" <david@kernel.org>
To: "Garg, Shivank" <shivankg@amd.com>,
	Andrew Morton <akpm@linux-foundation.org>,
	Lorenzo Stoakes <lorenzo.stoakes@oracle.com>
Cc: Zi Yan <ziy@nvidia.com>,
	Baolin Wang <baolin.wang@linux.alibaba.com>,
	"Liam R . Howlett" <Liam.Howlett@oracle.com>,
	Nico Pache <npache@redhat.com>,
	Ryan Roberts <ryan.roberts@arm.com>, Dev Jain <dev.jain@arm.com>,
	Barry Song <baohua@kernel.org>, Lance Yang <lance.yang@linux.dev>,
	Steven Rostedt <rostedt@goodmis.org>,
	Masami Hiramatsu <mhiramat@kernel.org>,
	Mathieu Desnoyers <mathieu.desnoyers@efficios.com>,
	Zach O'Keefe <zokeefe@google.com>,
	linux-mm@kvack.org, linux-kernel@vger.kernel.org,
	linux-trace-kernel@vger.kernel.org,
	Branden Moore <Branden.Moore@amd.com>
Subject: Re: [PATCH V4 2/2] mm/khugepaged: retry with sync writeback for MADV_COLLAPSE
Date: Wed, 14 Jan 2026 21:14:08 +0100	[thread overview]
Message-ID: <976561d0-0edb-4f09-8ed1-ab8f85c9aa87@kernel.org> (raw)
In-Reply-To: <7a42515f-ae57-4f4d-831c-87689930a797@amd.com>

On 1/14/26 20:47, Garg, Shivank wrote:
> 
> 
> On 1/11/2026 4:59 PM, David Hildenbrand (Red Hat) wrote:
>> On 1/10/26 19:20, Garg, Shivank wrote:
>>>
>>>
>>> On 1/9/2026 8:16 PM, David Hildenbrand (Red Hat) wrote:
>>>> On 12/15/25 09:46, Shivank Garg wrote:
> 
>>>>
>>>> This looks a bit complicated. Can't we move that handing up, where we have most of that
>>>> information already? Or am I missing something important?
>>>>
>>>> diff --git a/mm/khugepaged.c b/mm/khugepaged.c
>>>> index 97d1b2824386f..c7271877c5220 100644
>>>> --- a/mm/khugepaged.c
>>>> +++ b/mm/khugepaged.c
>>>> @@ -22,6 +22,7 @@
>>>>    #include <linux/dax.h>
>>>>    #include <linux/ksm.h>
>>>>    #include <linux/pgalloc.h>
>>>> +#include <linux/backing-dev.h>
>>>>      #include <asm/tlb.h>
>>>>    #include "internal.h"
>>>> @@ -2786,7 +2787,9 @@ int madvise_collapse(struct vm_area_struct *vma, unsigned long start,
>>>>             for (addr = hstart; addr < hend; addr += HPAGE_PMD_SIZE) {
>>>>                   int result = SCAN_FAIL;
>>>> +               bool triggered_wb = false;
>>>>    +retry:
>>>>                   if (!mmap_locked) {
>>>>                           cond_resched();
>>>>                           mmap_read_lock(mm);
>>>> @@ -2809,6 +2812,16 @@ int madvise_collapse(struct vm_area_struct *vma, unsigned long start,
>>>>                           mmap_locked = false;
>>>             
>>>                *lock_dropped = true;
>>>>                           result = hpage_collapse_scan_file(mm, addr, file, pgoff,
>>>>                                                             cc);
>>>> +
>>>> +                       if (result == SCAN_PAGE_DIRTY_OR_WRITEBACK && !triggered_wb &&
>>>> +                           mapping_can_writeback(file->f_mapping)) {
>>>> +                               loff_t lstart = (loff_t)pgoff << PAGE_SHIFT;
>>>> +                               loff_t lend = lstart + HPAGE_PMD_SIZE - 1;
>>>> +
>>>> +                               filemap_write_and_wait_range(file->f_mapping, lstart, lend);
>>>> +                               triggered_wb = true;
>>>
>>>                    fput(file);
>>>
>>>> +                               goto retry;
>>>> +                       }
>>>>                           fput(file);
>>>>                   } else {
>>>>                           result = hpage_collapse_scan_pmd(mm, vma, addr,
>>>>
>>>>
>>>
>>> Thank you for the suggestion, this approach looks much simpler.
>>>
>>> There are two small nits I observed:
>>
>> Yeah, was a quick untested hack to see if this can be simplified :)
>>
>>>
>>> 1. In the retry loop, it is possible that we reacquire the mmap_lock and set
>>>      mmap_locked to true. This can cause issues later when we do:
>>>
>>>          if (!mmap_locked)
>>>                  *lock_dropped = true;
>>
>> That whole logic of having two variables that express whether locks have been taken/dropped is just absolutely confusing. Any way we can clean that up?
>>
>>>
>>>      because the caller would no longer see that the lock was dropped earlier.
>>>
>>> 2. We need an fput() to balance the file reference taken at line 2795.
>>
>> Ah, yes, makes sense. Having a single fput() would be nicer, but that would require yet another temporary variable.
>>
> 
> I agree, that this interaction for lock taken/droped is confusing.
> However, a proper clean-up would require refactoring the locking logic across multiple functions in the collapse call-flow path.
> This seems significantly more invasive and risky.
> 
> I would like to handle this refactoring but in a separate TODO for later.
> Could we please proceed with these minimal changes for now?

Sure, fine with me.

> 
> Since, V4 has been in the linux-next/mm-unstable for a while, should I send a v5 or an incremental clean-up on top for this?

Just send a v4, unless Andrew tells you otherwise :)

-- 
Cheers

David


      reply	other threads:[~2026-01-14 20:14 UTC|newest]

Thread overview: 9+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2025-12-15  8:46 [PATCH V4 0/2] mm/khugepaged: fix dirty page handling " Shivank Garg
2025-12-15  8:46 ` [PATCH V4 1/2] mm/khugepaged: map dirty/writeback pages failures to EAGAIN Shivank Garg
2026-01-09 14:30   ` David Hildenbrand (Red Hat)
2025-12-15  8:46 ` [PATCH V4 2/2] mm/khugepaged: retry with sync writeback for MADV_COLLAPSE Shivank Garg
2026-01-09 14:46   ` David Hildenbrand (Red Hat)
2026-01-10 18:20     ` Garg, Shivank
2026-01-11 11:29       ` David Hildenbrand (Red Hat)
2026-01-14 19:47         ` Garg, Shivank
2026-01-14 20:14           ` David Hildenbrand (Red Hat) [this message]

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=976561d0-0edb-4f09-8ed1-ab8f85c9aa87@kernel.org \
    --to=david@kernel.org \
    --cc=Branden.Moore@amd.com \
    --cc=Liam.Howlett@oracle.com \
    --cc=akpm@linux-foundation.org \
    --cc=baohua@kernel.org \
    --cc=baolin.wang@linux.alibaba.com \
    --cc=dev.jain@arm.com \
    --cc=lance.yang@linux.dev \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-mm@kvack.org \
    --cc=linux-trace-kernel@vger.kernel.org \
    --cc=lorenzo.stoakes@oracle.com \
    --cc=mathieu.desnoyers@efficios.com \
    --cc=mhiramat@kernel.org \
    --cc=npache@redhat.com \
    --cc=rostedt@goodmis.org \
    --cc=ryan.roberts@arm.com \
    --cc=shivankg@amd.com \
    --cc=ziy@nvidia.com \
    --cc=zokeefe@google.com \
    /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