linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: David Hildenbrand <david@redhat.com>
To: Baolin Wang <baolin.wang@linux.alibaba.com>,
	akpm@linux-foundation.org, hughd@google.com
Cc: linux-mm@kvack.org, linux-kernel@vger.kernel.org
Subject: Re: [PATCH 2/2] mm: shmem: fix the update of 'shmem_falloc->nr_unswapped'
Date: Thu, 19 Dec 2024 16:36:46 +0100	[thread overview]
Message-ID: <7d087c20-91f2-4c38-9ad8-7cd45a0906b6@redhat.com> (raw)
In-Reply-To: <f66a0119d0564c2c37c84f045835b870d1b2196f.1734593154.git.baolin.wang@linux.alibaba.com>

On 19.12.24 08:30, Baolin Wang wrote:
> The 'shmem_falloc->nr_unswapped' is used to record how many writepage
> refused to swap out because fallocate() is allocating, but after shmem
> supports large folio swap out, the update of 'shmem_falloc->nr_unswapped'
> does not use the correct number of pages in the large folio, which may
> lead to fallocate() not exiting as soon as possible.
> 
> Anyway, this is found through code inspection, and I am not sure whether
> it would actually cause serious issues.
> 
> Fixes: 809bc86517cc ("mm: shmem: support large folio swap out")
> Signed-off-by: Baolin Wang <baolin.wang@linux.alibaba.com>
> ---
>   mm/shmem.c | 2 +-
>   1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/mm/shmem.c b/mm/shmem.c
> index dec659e84562..ac58d4fb2e6f 100644
> --- a/mm/shmem.c
> +++ b/mm/shmem.c
> @@ -1535,7 +1535,7 @@ static int shmem_writepage(struct page *page, struct writeback_control *wbc)
>   			    !shmem_falloc->waitq &&
>   			    index >= shmem_falloc->start &&
>   			    index < shmem_falloc->next)
> -				shmem_falloc->nr_unswapped++;
> +				shmem_falloc->nr_unswapped += nr_pages;
>   			else
>   				shmem_falloc = NULL;
>   			spin_unlock(&inode->i_lock);

Acked-by: David Hildenbrand <david@redhat.com>


-- 
Cheers,

David / dhildenb


  reply	other threads:[~2024-12-19 15:36 UTC|newest]

Thread overview: 5+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-12-19  7:30 [PATCH 1/2] mm: shmem: fix incorrect index alignment for within_size policy Baolin Wang
2024-12-19  7:30 ` [PATCH 2/2] mm: shmem: fix the update of 'shmem_falloc->nr_unswapped' Baolin Wang
2024-12-19 15:36   ` David Hildenbrand [this message]
2024-12-19 15:35 ` [PATCH 1/2] mm: shmem: fix incorrect index alignment for within_size policy David Hildenbrand
2024-12-20  1:26   ` Baolin Wang

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=7d087c20-91f2-4c38-9ad8-7cd45a0906b6@redhat.com \
    --to=david@redhat.com \
    --cc=akpm@linux-foundation.org \
    --cc=baolin.wang@linux.alibaba.com \
    --cc=hughd@google.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-mm@kvack.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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).