All of lore.kernel.org
 help / color / mirror / Atom feed
From: kernel test robot <lkp@intel.com>
To: Harry Yoo <harry.yoo@oracle.com>
Cc: oe-kbuild-all@lists.linux.dev
Subject: Re: [RFC V1 PATCH mm-hotfixes 2/3] x86/mm: define p*d_populate_kernel() and top-level page table sync
Date: Thu, 10 Jul 2025 16:10:18 +0800	[thread overview]
Message-ID: <202507101530.PwamBJGe-lkp@intel.com> (raw)
In-Reply-To: <20250709131657.5660-3-harry.yoo@oracle.com>

Hi Harry,

[This is a private test report for your RFC patch.]
kernel test robot noticed the following build errors:

[auto build test ERROR on akpm-mm/mm-everything]

url:    https://github.com/intel-lab-lkp/linux/commits/Harry-Yoo/mm-introduce-and-use-pgd-p4d-_populate_kernel/20250709-211850
base:   https://git.kernel.org/pub/scm/linux/kernel/git/akpm/mm.git mm-everything
patch link:    https://lore.kernel.org/r/20250709131657.5660-3-harry.yoo%40oracle.com
patch subject: [RFC V1 PATCH mm-hotfixes 2/3] x86/mm: define p*d_populate_kernel() and top-level page table sync
config: i386-buildonly-randconfig-001-20250710 (https://download.01.org/0day-ci/archive/20250710/202507101530.PwamBJGe-lkp@intel.com/config)
compiler: gcc-12 (Debian 12.2.0-14+deb12u1) 12.2.0
reproduce (this is a W=1 build): (https://download.01.org/0day-ci/archive/20250710/202507101530.PwamBJGe-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/202507101530.PwamBJGe-lkp@intel.com/

All errors (new ones prefixed by >>):

   mm/percpu.c: In function 'pcpu_populate_pte':
>> mm/percpu.c:3137:17: error: implicit declaration of function 'pgd_populate_kernel'; did you mean 'pmd_populate_kernel'? [-Werror=implicit-function-declaration]
    3137 |                 pgd_populate_kernel(addr, pgd, p4d);
         |                 ^~~~~~~~~~~~~~~~~~~
         |                 pmd_populate_kernel
>> mm/percpu.c:3143:17: error: implicit declaration of function 'p4d_populate_kernel'; did you mean 'pmd_populate_kernel'? [-Werror=implicit-function-declaration]
    3143 |                 p4d_populate_kernel(addr, p4d, pud);
         |                 ^~~~~~~~~~~~~~~~~~~
         |                 pmd_populate_kernel
   cc1: some warnings being treated as errors


vim +3137 mm/percpu.c

20c035764626c5 Kefeng Wang 2022-01-19  3124  
20c035764626c5 Kefeng Wang 2022-01-19  3125  #ifndef PTE_TABLE_SIZE
20c035764626c5 Kefeng Wang 2022-01-19  3126  #define PTE_TABLE_SIZE PAGE_SIZE
20c035764626c5 Kefeng Wang 2022-01-19  3127  #endif
20c035764626c5 Kefeng Wang 2022-01-19  3128  void __init __weak pcpu_populate_pte(unsigned long addr)
20c035764626c5 Kefeng Wang 2022-01-19  3129  {
20c035764626c5 Kefeng Wang 2022-01-19  3130  	pgd_t *pgd = pgd_offset_k(addr);
20c035764626c5 Kefeng Wang 2022-01-19  3131  	p4d_t *p4d;
20c035764626c5 Kefeng Wang 2022-01-19  3132  	pud_t *pud;
20c035764626c5 Kefeng Wang 2022-01-19  3133  	pmd_t *pmd;
20c035764626c5 Kefeng Wang 2022-01-19  3134  
20c035764626c5 Kefeng Wang 2022-01-19  3135  	if (pgd_none(*pgd)) {
c6f239796b55db Guo Weikang 2025-01-02  3136  		p4d = memblock_alloc_or_panic(P4D_TABLE_SIZE, P4D_TABLE_SIZE);
eb1f92deca7a01 Harry Yoo   2025-07-09 @3137  		pgd_populate_kernel(addr, pgd, p4d);
20c035764626c5 Kefeng Wang 2022-01-19  3138  	}
20c035764626c5 Kefeng Wang 2022-01-19  3139  
20c035764626c5 Kefeng Wang 2022-01-19  3140  	p4d = p4d_offset(pgd, addr);
20c035764626c5 Kefeng Wang 2022-01-19  3141  	if (p4d_none(*p4d)) {
c6f239796b55db Guo Weikang 2025-01-02  3142  		pud = memblock_alloc_or_panic(PUD_TABLE_SIZE, PUD_TABLE_SIZE);
eb1f92deca7a01 Harry Yoo   2025-07-09 @3143  		p4d_populate_kernel(addr, p4d, pud);
20c035764626c5 Kefeng Wang 2022-01-19  3144  	}
20c035764626c5 Kefeng Wang 2022-01-19  3145  
20c035764626c5 Kefeng Wang 2022-01-19  3146  	pud = pud_offset(p4d, addr);
20c035764626c5 Kefeng Wang 2022-01-19  3147  	if (pud_none(*pud)) {
c6f239796b55db Guo Weikang 2025-01-02  3148  		pmd = memblock_alloc_or_panic(PMD_TABLE_SIZE, PMD_TABLE_SIZE);
41fd59b7f9bdde Bibo Mao    2023-07-12  3149  		pud_populate(&init_mm, pud, pmd);
20c035764626c5 Kefeng Wang 2022-01-19  3150  	}
20c035764626c5 Kefeng Wang 2022-01-19  3151  
20c035764626c5 Kefeng Wang 2022-01-19  3152  	pmd = pmd_offset(pud, addr);
20c035764626c5 Kefeng Wang 2022-01-19  3153  	if (!pmd_present(*pmd)) {
20c035764626c5 Kefeng Wang 2022-01-19  3154  		pte_t *new;
20c035764626c5 Kefeng Wang 2022-01-19  3155  
c6f239796b55db Guo Weikang 2025-01-02  3156  		new = memblock_alloc_or_panic(PTE_TABLE_SIZE, PTE_TABLE_SIZE);
20c035764626c5 Kefeng Wang 2022-01-19  3157  		pmd_populate_kernel(&init_mm, pmd, new);
20c035764626c5 Kefeng Wang 2022-01-19  3158  	}
20c035764626c5 Kefeng Wang 2022-01-19  3159  
20c035764626c5 Kefeng Wang 2022-01-19  3160  	return;
20c035764626c5 Kefeng Wang 2022-01-19  3161  }
20c035764626c5 Kefeng Wang 2022-01-19  3162  

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

  parent reply	other threads:[~2025-07-10  8:10 UTC|newest]

Thread overview: 16+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2025-07-09 13:16 [RFC V1 PATCH mm-hotfixes 0/3] mm, arch: A more robust approach to sync top level kernel page tables Harry Yoo
2025-07-09 13:16 ` [RFC V1 PATCH mm-hotfixes 1/3] mm: introduce and use {pgd,p4d}_populate_kernel() Harry Yoo
2025-07-11 16:18   ` David Hildenbrand
2025-07-13 11:39     ` Harry Yoo
2025-07-13 17:56       ` Mike Rapoport
2025-07-14  8:10         ` Harry Yoo
2025-07-14 15:32           ` Harry Yoo
2025-07-09 13:16 ` [RFC V1 PATCH mm-hotfixes 2/3] x86/mm: define p*d_populate_kernel() and top-level page table sync Harry Yoo
2025-07-09 21:13   ` Andrew Morton
2025-07-10  8:27     ` Harry Yoo
2025-07-11  4:02       ` Harry Yoo
2025-07-11  4:16         ` Harry Yoo
2025-07-10  8:10   ` kernel test robot [this message]
2025-07-09 13:16 ` [RFC V1 PATCH mm-hotfixes 3/3] x86/mm: convert {pgd,p4d}_populate{,_init} to _kernel variant Harry Yoo
2025-07-10 10:46   ` kernel test robot
2025-07-09 13:24 ` [RFC V1 PATCH mm-hotfixes 0/3] mm, arch: A more robust approach to sync top level kernel page tables Harry Yoo

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=202507101530.PwamBJGe-lkp@intel.com \
    --to=lkp@intel.com \
    --cc=harry.yoo@oracle.com \
    --cc=oe-kbuild-all@lists.linux.dev \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.