mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
From: Hongling Zeng <zhongling0719@126.com>
To: Namjae Jeon <linkinjeon@kernel.org>,
	 Hongling Zeng <zenghongling@kylinos.cn>
Cc: hyc.lee@gmail.com, ntfs@lists.linux.dev,
	 linux-kernel@vger.kernel.org, stable@vger.kernel.org
Subject: Re: [PATCH 2/2] ntfs: take invalidate_lock in ntfs_filemap_page_mkwrite()
Date: Mon, 31 Aug 2026 16:21:44 +0800	[thread overview]
Message-ID: <6A953998.9050802@126.com> (raw)
In-Reply-To: <CAKYAXd_v3iw1N9PxDznpGRu4yE2atNG=7WPYM4Z2xNFq2tMx2g@mail.gmail.com>


在 2026年08月31日 15:24, Namjae Jeon 写道:
>>          if (NInoWofCompressed(NTFS_I(inode)))
>> @@ -684,7 +685,14 @@ static vm_fault_t ntfs_filemap_page_mkwrite(struct vm_fault *vmf)
>>          sb_start_pagefault(inode->i_sb);
>>          file_update_time(vmf->vma->vm_file);
>>
>> +       /*
>> +        * Serialize against truncate/fallocate which hold the lock
>> +        * exclusively while invalidating pagecache and changing extents.
>> +        */
>> +       filemap_invalidate_lock_shared(mapping);
>>          ret = iomap_page_mkwrite(vmf, &ntfs_page_mkwrite_iomap_ops, NULL);
>> +       filemap_invalidate_unlock_shared(mapping);
>> +
> Please move filemap_invalidate_unlock() after truncate_pagecache() and
> pagecache_isize_extended(). Otherwise, ntfs_filemap_page_mkwrite() can
> race with the page-cache cleanup after fallocate extends the file.
>
> diff --git a/fs/ntfs/file.c b/fs/ntfs/file.c
> index 1969e4f444f7..a266105180a9 100644
> --- a/fs/ntfs/file.c
> +++ b/fs/ntfs/file.c
> @@ -1178,13 +1178,15 @@ static long ntfs_fallocate(struct file *file,
> int mode, loff_t offset, loff_t le
>
>          err = file_modified(file);
>   out:
> +       if (!err && mode == 0 && NInoNonResident(ni) &&
> +           offset > old_size) {
> +               truncate_pagecache(vi, old_size);
> +               pagecache_isize_extended(vi, old_size, offset);
> +       }
> +
>          filemap_invalidate_unlock(vi->i_mapping);
> +
>          if (!err) {
> -               if (mode == 0 && NInoNonResident(ni) &&
> -                   offset > old_size) {
> -                       truncate_pagecache(vi, old_size);
> -                       pagecache_isize_extended(vi, old_size, offset);
> -               }
>                  NInoSetFileNameDirty(ni);
>                  inode_set_mtime_to_ts(vi, inode_set_ctime_current(vi));
>                  mark_inode_dirty(vi);
>
   Thanks for the review!

   You're right. ntfs_fallocate() dropped invalidate_lock before calling
   truncate_pagecache() and pagecache_isize_extended(), so a write fault
   holding the lock shared could interleave with the page-cache cleanup
   and have its folio discarded by truncate_inode_pages(), losing the
   mmap write. Moving both calls inside the lock hold range fixes it.

   I've posted v2 and addresses your comment.


  reply	other threads:[~2026-08-31  8:22 UTC|newest]

Thread overview: 8+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2026-08-28  6:16 [PATCH 1/2] ntfs: take invalidate_lock in ntfs_setattr_size() Hongling Zeng
2026-08-28  6:16 ` [PATCH 2/2] ntfs: take invalidate_lock in ntfs_filemap_page_mkwrite() Hongling Zeng
2026-08-28  6:53   ` liubaolin
2026-08-31  5:56   ` Hyunchul Lee
2026-08-31  7:24   ` Namjae Jeon
2026-08-31  8:21     ` Hongling Zeng [this message]
2026-08-28  6:47 ` [PATCH 1/2] ntfs: take invalidate_lock in ntfs_setattr_size() liubaolin
2026-08-31  5:54 ` Hyunchul Lee

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=6A953998.9050802@126.com \
    --to=zhongling0719@126.com \
    --cc=hyc.lee@gmail.com \
    --cc=linkinjeon@kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=ntfs@lists.linux.dev \
    --cc=stable@vger.kernel.org \
    --cc=zenghongling@kylinos.cn \
    /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

all inboxes | Powered by JetHome®