The quilt patch titled Subject: mm: filemap: remove unnecessary iitialization of ret has been removed from the -mm tree. Its filename was mm-filemap-remove-unnecessary-iitialization-of-ret.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: Li zeming <zeming@xxxxxxxxxxxx> Subject: mm: filemap: remove unnecessary iitialization of ret Date: Tue, 5 Dec 2023 10:29:54 +0800 The ret variable can be defined without assigning a value, as it is assigned before use. Link: https://lkml.kernel.org/r/20231205022954.101045-1-zeming@xxxxxxxxxxxx Signed-off-by: Li zeming <zeming@xxxxxxxxxxxx> Cc: Matthew Wilcox (Oracle) <willy@xxxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- mm/filemap.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- a/mm/filemap.c~mm-filemap-remove-unnecessary-iitialization-of-ret +++ a/mm/filemap.c @@ -1623,7 +1623,7 @@ EXPORT_SYMBOL_GPL(__folio_lock_killable) static int __folio_lock_async(struct folio *folio, struct wait_page_queue *wait) { struct wait_queue_head *q = folio_waitqueue(folio); - int ret = 0; + int ret; wait->folio = folio; wait->bit_nr = PG_locked; _ Patches currently in -mm which might be from zeming@xxxxxxxxxxxx are