linux-mm.kvack.org archive mirror
 help / color / mirror / Atom feed
* Re: [PATCH] LoongArch: Clear invalid tlb when set huge page PTE entry
       [not found] <20230905044828.1460721-1-maobibo@loongson.cn>
@ 2023-09-06 15:05 ` kernel test robot
  0 siblings, 0 replies; only message in thread
From: kernel test robot @ 2023-09-06 15:05 UTC (permalink / raw)
  To: Bibo Mao, Huacai Chen
  Cc: oe-kbuild-all, WANG Xuerui, Andrew Morton,
	Linux Memory Management List, loongarch, linux-kernel

Hi Bibo,

kernel test robot noticed the following build errors:

[auto build test ERROR on akpm-mm/mm-everything]
[also build test ERROR on linus/master v6.5 next-20230906]
[If your patch is applied to the wrong git tree, kindly drop us a note.
And when submitting patch, we suggest to use '--base' as documented in
https://git-scm.com/docs/git-format-patch#_base_tree_information]

url:    https://github.com/intel-lab-lkp/linux/commits/Bibo-Mao/LoongArch-Clear-invalid-tlb-when-set-huge-page-PTE-entry/20230906-013753
base:   https://git.kernel.org/pub/scm/linux/kernel/git/akpm/mm.git mm-everything
patch link:    https://lore.kernel.org/r/20230905044828.1460721-1-maobibo%40loongson.cn
patch subject: [PATCH] LoongArch: Clear invalid tlb when set huge page PTE entry
config: loongarch-allnoconfig (https://download.01.org/0day-ci/archive/20230906/202309062224.jKf5JY7H-lkp@intel.com/config)
compiler: loongarch64-linux-gcc (GCC) 13.2.0
reproduce (this is a W=1 build): (https://download.01.org/0day-ci/archive/20230906/202309062224.jKf5JY7H-lkp@intel.com/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@intel.com>
| Closes: https://lore.kernel.org/oe-kbuild-all/202309062224.jKf5JY7H-lkp@intel.com/

All errors (new ones prefixed by >>):

>> arch/loongarch/mm/tlb.c:204:6: error: redefinition of 'set_huge_pte_at'
     204 | void set_huge_pte_at(struct mm_struct *mm, unsigned long addr,
         |      ^~~~~~~~~~~~~~~
   In file included from arch/loongarch/mm/tlb.c:9:
   include/linux/hugetlb.h:1175:20: note: previous definition of 'set_huge_pte_at' with type 'void(struct mm_struct *, long unsigned int,  pte_t *, pte_t)'
    1175 | static inline void set_huge_pte_at(struct mm_struct *mm, unsigned long addr,
         |                    ^~~~~~~~~~~~~~~
   arch/loongarch/mm/tlb.c: In function 'set_huge_pte_at':
>> arch/loongarch/mm/tlb.c:215:29: error: implicit declaration of function 'huge_pte_none'; did you mean 'huge_pte_lock'? [-Werror=implicit-function-declaration]
     215 |         if (!cpu_has_ptw && huge_pte_none(*ptep))
         |                             ^~~~~~~~~~~~~
         |                             huge_pte_lock
   arch/loongarch/mm/tlb.c: At top level:
   arch/loongarch/mm/tlb.c:281:6: warning: no previous prototype for 'setup_tlb_handler' [-Wmissing-prototypes]
     281 | void setup_tlb_handler(int cpu)
         |      ^~~~~~~~~~~~~~~~~
   cc1: some warnings being treated as errors


vim +/set_huge_pte_at +204 arch/loongarch/mm/tlb.c

   203	
 > 204	void set_huge_pte_at(struct mm_struct *mm, unsigned long addr,
   205			pte_t *ptep, pte_t pte)
   206	{
   207		/*
   208		 * If huge pte entry is none, tlb entry with normal page size is filled
   209		 * for machines which does not support hardware page walking.
   210		 *
   211		 * Thread maybe migrates to other CPUs after page fault happends and
   212		 * migrates back again after hugepage pte is set, tlbs with normal page
   213		 * about invalid_pte_table need be flushed
   214		 */
 > 215		if (!cpu_has_ptw && huge_pte_none(*ptep))
   216			flush_tlb_mm(mm);
   217	
   218		set_pte_at(mm, addr, ptep, pte);
   219	}
   220	

-- 
0-DAY CI Kernel Test Service
https://github.com/intel/lkp-tests/wiki


^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2023-09-06 15:06 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
     [not found] <20230905044828.1460721-1-maobibo@loongson.cn>
2023-09-06 15:05 ` [PATCH] LoongArch: Clear invalid tlb when set huge page PTE entry kernel test robot

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox