* + mm-rmap-change-the-type-of-we_locked-from-int-to-bool.patch added to mm-unstable branch
@ 2024-04-29 16:41 Andrew Morton
0 siblings, 0 replies; only message in thread
From: Andrew Morton @ 2024-04-29 16:41 UTC (permalink / raw)
To: mm-commits, willy, gehao, akpm
The patch titled
Subject: mm/rmap: change the type of we_locked from int to bool
has been added to the -mm mm-unstable branch. Its filename is
mm-rmap-change-the-type-of-we_locked-from-int-to-bool.patch
This patch will shortly appear at
https://git.kernel.org/pub/scm/linux/kernel/git/akpm/25-new.git/tree/patches/mm-rmap-change-the-type-of-we_locked-from-int-to-bool.patch
This patch will later appear in the mm-unstable branch at
git://git.kernel.org/pub/scm/linux/kernel/git/akpm/mm
Before you just go and hit "reply", please:
a) Consider who else should be cc'ed
b) Prefer to cc a suitable mailing list as well
c) Ideally: find the original patch on the mailing list and do a
reply-to-all to that, adding suitable additional cc's
*** Remember to use Documentation/process/submit-checklist.rst when testing your code ***
The -mm tree is included into linux-next via the mm-everything
branch at git://git.kernel.org/pub/scm/linux/kernel/git/akpm/mm
and is updated there every 2-3 working days
------------------------------------------------------
From: Hao Ge <gehao@kylinos.cn>
Subject: mm/rmap: change the type of we_locked from int to bool
Date: Sun, 28 Apr 2024 09:20:48 +0800
Change the type of we_locked from int to bool because folio_trylock return
bool
Link: https://lkml.kernel.org/r/20240428012049.8182-1-gehao@kylinos.cn
Signed-off-by: Hao Ge <gehao@kylinos.cn>
Cc: Matthew Wilcox (Oracle) <willy@infradead.org>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
---
mm/rmap.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
--- a/mm/rmap.c~mm-rmap-change-the-type-of-we_locked-from-int-to-bool
+++ a/mm/rmap.c
@@ -964,7 +964,7 @@ static bool invalid_folio_referenced_vma
int folio_referenced(struct folio *folio, int is_locked,
struct mem_cgroup *memcg, unsigned long *vm_flags)
{
- int we_locked = 0;
+ bool we_locked = false;
struct folio_referenced_arg pra = {
.mapcount = folio_mapcount(folio),
.memcg = memcg,
_
Patches currently in -mm which might be from gehao@kylinos.cn are
mm-mmap-make-vma_wants_writenotify-return-bool.patch
mm-mmap-make-accountable_mapping-return-bool.patch
mm-page-flags-make-pageuptodate-return-bool.patch
mm-pagemap-make-trylock_page-return-bool.patch
mm-rmap-change-the-type-of-we_locked-from-int-to-bool.patch
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2024-04-29 16:41 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-04-29 16:41 + mm-rmap-change-the-type-of-we_locked-from-int-to-bool.patch added to mm-unstable branch Andrew Morton
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.