OSDN Git Service

sparc64: add missing initialization of folio in tlb_batch_add()
authorMike Rapoport (IBM) <rppt@kernel.org>
Mon, 4 Sep 2023 17:37:59 +0000 (20:37 +0300)
committerAndrew Morton <akpm@linux-foundation.org>
Tue, 5 Sep 2023 18:11:52 +0000 (11:11 -0700)
Commit 1a10a44dfc1d ("sparc64: implement the new page table range API")
missed initialization of folio variable in tlb_batch_add() which causes
boot tests to crash.

Add missing initialization.

Link: https://lkml.kernel.org/r/20230904174350.GF3223@kernel.org
Fixes: 1a10a44dfc1d ("sparc64: implement the new page table range API")
Signed-off-by: Mike Rapoport (IBM) <rppt@kernel.org>
Reported-by: Guenter Roeck <linux@roeck-us.net>
Tested-by: Guenter Roeck <linux@roeck-us.net>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
arch/sparc/mm/tlb.c

index 0d41c94..b44d79d 100644 (file)
@@ -128,6 +128,7 @@ void tlb_batch_add(struct mm_struct *mm, unsigned long vaddr,
                        goto no_cache_flush;
 
                /* A real file page? */
+               folio = page_folio(page);
                mapping = folio_flush_mapping(folio);
                if (!mapping)
                        goto no_cache_flush;