From: Barry Song <21cnbao@gmail.com>
To: peterx@redhat.com, akpm@linux-foundation.org
Cc: 21cnbao@gmail.com, Liam.Howlett@oracle.com, aarcange@redhat.com,
axelrasmussen@google.com, bgeffon@google.com, brauner@kernel.org,
david@redhat.com, hughd@google.com, jannh@google.com,
kaleshsingh@google.com, linux-kernel@vger.kernel.org,
linux-mm@kvack.org, lokeshgidra@google.com, mhocko@suse.com,
ngeoffray@google.com, rppt@kernel.org, ryan.roberts@arm.com,
shuah@kernel.org, stable@vger.kernel.org, surenb@google.com,
v-songbaohua@oppo.com, viro@zeniv.linux.org.uk,
willy@infradead.org, zhangpeng362@huawei.com,
zhengtangquan@oppo.com
Subject: Re: [PATCH v2] mm: Fix kernel BUG when userfaultfd_move encounters swapcache
Date: Wed, 26 Feb 2025 15:44:11 +1300 [thread overview]
Message-ID: <20250226024411.47092-1-21cnbao@gmail.com> (raw)
In-Reply-To: <Z75nokRl5Bp0ywiX@x1.local>
On Wed, Feb 26, 2025 at 2:00 PM Peter Xu <peterx@redhat.com> wrote:
>
> Acked-by: Peter Xu <peterx@redhat.com>
>
Thanks!
> Some nitpicks below, maybe no worth for a repost..
Hi Andrew,
Could you please help squash the below change?
From 42273506ba00723151e3a08b4ffd3f2c303e7ccc Mon Sep 17 00:00:00 2001
From: Barry Song <v-songbaohua@oppo.com>
Date: Wed, 26 Feb 2025 15:22:17 +1300
Subject: [PATCH] minor cleanup according to Peter Xu
According to Peter Xu:
1. Unnecessary line move.
2. Can drop this folio check as it just did check
"!IS_ERR_OR_NULL(folio)"
3. Not sure if it can do any harm, but maybe still nicer
to put swap before locking folio.
Signed-off-by: Barry Song <v-songbaohua@oppo.com>
---
mm/userfaultfd.c | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/mm/userfaultfd.c b/mm/userfaultfd.c
index 2df5d100e76d..2955e20f86bf 100644
--- a/mm/userfaultfd.c
+++ b/mm/userfaultfd.c
@@ -1101,8 +1101,8 @@ static int move_swap_pte(struct mm_struct *mm, struct vm_area_struct *dst_vma,
orig_src_pte = ptep_get_and_clear(mm, src_addr, src_pte);
set_pte_at(mm, dst_addr, dst_pte, orig_src_pte);
-
double_pt_unlock(dst_ptl, src_ptl);
+
return 0;
}
@@ -1369,7 +1369,7 @@ static int move_pages_pte(struct mm_struct *mm, pmd_t *dst_pmd, pmd_t *src_pmd,
folio = filemap_get_folio(swap_address_space(entry),
swap_cache_index(entry));
if (!IS_ERR_OR_NULL(folio)) {
- if (folio && folio_test_large(folio)) {
+ if (folio_test_large(folio)) {
err = -EBUSY;
folio_put(folio);
goto out;
@@ -1380,10 +1380,10 @@ static int move_pages_pte(struct mm_struct *mm, pmd_t *dst_pmd, pmd_t *src_pmd,
pte_unmap(&orig_src_pte);
pte_unmap(&orig_dst_pte);
src_pte = dst_pte = NULL;
- /* now we can block and wait */
- folio_lock(src_folio);
put_swap_device(si);
si = NULL;
+ /* now we can block and wait */
+ folio_lock(src_folio);
goto retry;
}
}
--
2.39.3 (Apple Git-146)
> Peter Xu
>
Thanks
Barry
next prev parent reply other threads:[~2025-02-26 2:44 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-02-26 0:14 Barry Song
2025-02-26 1:00 ` Peter Xu
2025-02-26 2:44 ` Barry Song [this message]
2025-02-26 3:38 ` Suren Baghdasaryan
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=20250226024411.47092-1-21cnbao@gmail.com \
--to=21cnbao@gmail.com \
--cc=Liam.Howlett@oracle.com \
--cc=aarcange@redhat.com \
--cc=akpm@linux-foundation.org \
--cc=axelrasmussen@google.com \
--cc=bgeffon@google.com \
--cc=brauner@kernel.org \
--cc=david@redhat.com \
--cc=hughd@google.com \
--cc=jannh@google.com \
--cc=kaleshsingh@google.com \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-mm@kvack.org \
--cc=lokeshgidra@google.com \
--cc=mhocko@suse.com \
--cc=ngeoffray@google.com \
--cc=peterx@redhat.com \
--cc=rppt@kernel.org \
--cc=ryan.roberts@arm.com \
--cc=shuah@kernel.org \
--cc=stable@vger.kernel.org \
--cc=surenb@google.com \
--cc=v-songbaohua@oppo.com \
--cc=viro@zeniv.linux.org.uk \
--cc=willy@infradead.org \
--cc=zhangpeng362@huawei.com \
--cc=zhengtangquan@oppo.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