tree: https://git.kernel.org/pub/scm/linux/kernel/git/akpm/mm.git mm-unstable head: df52e0b5933bff55db448d594446534118a72266 commit: ab08e986a45a66d3590a97c89132e6bbd3710cfd [11/41] sparc64: add missing initialization of folio in tlb_batch_add() config: sparc64-defconfig (https://download.01.org/0day-ci/archive/20230905/202309051336.IkWoM0J5-lkp@xxxxxxxxx/config) compiler: sparc64-linux-gcc (GCC) 13.2.0 reproduce (this is a W=1 build): (https://download.01.org/0day-ci/archive/20230905/202309051336.IkWoM0J5-lkp@xxxxxxxxx/reproduce) If you fix the issue in a separate patch/commit (i.e. not just a new version of the same patch/commit), kindly add following tags | Reported-by: kernel test robot <lkp@xxxxxxxxx> | Closes: https://lore.kernel.org/oe-kbuild-all/202309051336.IkWoM0J5-lkp@xxxxxxxxx/ All errors (new ones prefixed by >>): >> arch/sparc/mm/tlb.c:304:1: error: unknown type name 'Mon' 304 | Mon Sep 4 12:33:06 PM PDT 2023 | ^~~ >> arch/sparc/mm/tlb.c:304:10: error: expected '=', ',', ';', 'asm' or '__attribute__' before numeric constant 304 | Mon Sep 4 12:33:06 PM PDT 2023 | ^ vim +/Mon +304 arch/sparc/mm/tlb.c 281 282 pgtable_t pgtable_trans_huge_withdraw(struct mm_struct *mm, pmd_t *pmdp) 283 { 284 struct list_head *lh; 285 pgtable_t pgtable; 286 287 assert_spin_locked(&mm->page_table_lock); 288 289 /* FIFO */ 290 pgtable = pmd_huge_pte(mm, pmdp); 291 lh = (struct list_head *) pgtable; 292 if (list_empty(lh)) 293 pmd_huge_pte(mm, pmdp) = NULL; 294 else { 295 pmd_huge_pte(mm, pmdp) = (pgtable_t) lh->next; 296 list_del(lh); 297 } 298 pte_val(pgtable[0]) = 0; 299 pte_val(pgtable[1]) = 0; 300 301 return pgtable; 302 } 303 #endif /* CONFIG_TRANSPARENT_HUGEPAGE */ > 304 Mon Sep 4 12:33:06 PM PDT 2023 -- 0-DAY CI Kernel Test Service https://github.com/intel/lkp-tests/wiki