The quilt patch titled Subject: mm/rmap: change the type of we_locked from int to bool has been removed from the -mm tree. Its filename was mm-rmap-change-the-type-of-we_locked-from-int-to-bool.patch This patch was dropped because it was merged into the mm-stable branch of git://git.kernel.org/pub/scm/linux/kernel/git/akpm/mm ------------------------------------------------------ From: Hao Ge <gehao@xxxxxxxxxx> 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@xxxxxxxxxx Signed-off-by: Hao Ge <gehao@xxxxxxxxxx> Cc: Matthew Wilcox (Oracle) <willy@xxxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- 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@xxxxxxxxxx are