lkml.org 
[lkml]   [2022]   [Feb]   [22]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
/
Date
From
Subject[mingo-tip:sched/headers 2209/2324] include/linux/huge_mm.h:208:10: error: implicit declaration of function 'pmd_none'; did you mean 'pud_none'?
tree:   git://git.kernel.org/pub/scm/linux/kernel/git/mingo/tip.git sched/headers
head: 7d9efc989eceed6a8fa475a186880ec4a1ad54a3
commit: a1e4ecc8c4751b5f8a83c7afcbc7ca526ab6a2e1 [2209/2324] headers/deps: mm: Optimize <linux/mm_api.h> dependencies, remove <linux/mmzone_api.h> dependency
config: i386-randconfig-a002-20220221 (https://download.01.org/0day-ci/archive/20220223/202202230512.v6BWu9rE-lkp@intel.com/config)
compiler: gcc-9 (Debian 9.3.0-22) 9.3.0
reproduce (this is a W=1 build):
# https://git.kernel.org/pub/scm/linux/kernel/git/mingo/tip.git/commit/?id=a1e4ecc8c4751b5f8a83c7afcbc7ca526ab6a2e1
git remote add mingo-tip git://git.kernel.org/pub/scm/linux/kernel/git/mingo/tip.git
git fetch --no-tags mingo-tip sched/headers
git checkout a1e4ecc8c4751b5f8a83c7afcbc7ca526ab6a2e1
# save the config file to linux build tree
mkdir build_dir
make W=1 O=build_dir ARCH=i386 SHELL=/bin/bash drivers/usb/host/

If you fix the issue, kindly add following tag as appropriate
Reported-by: kernel test robot <lkp@intel.com>

All errors (new ones prefixed by >>):

In file included from include/linux/mm_api.h:388,
from arch/x86/include/asm/tlbflush.h:5,
from arch/x86/include/asm/highmem.h:26,
from include/linux/mmzone_api.h:33,
from include/linux/pgtable_api.h:15,
from drivers/usb/host/r8a66597-hcd.c:16:
include/linux/huge_mm.h: In function 'is_swap_pmd':
>> include/linux/huge_mm.h:208:10: error: implicit declaration of function 'pmd_none'; did you mean 'pud_none'? [-Werror=implicit-function-declaration]
208 | return !pmd_none(pmd) && !pmd_present(pmd);
| ^~~~~~~~
| pud_none
>> include/linux/huge_mm.h:208:28: error: implicit declaration of function 'pmd_present'; did you mean 'pud_present'? [-Werror=implicit-function-declaration]
208 | return !pmd_none(pmd) && !pmd_present(pmd);
| ^~~~~~~~~~~
| pud_present
include/linux/huge_mm.h: In function 'pmd_trans_huge_lock':
>> include/linux/huge_mm.h:215:27: error: implicit declaration of function 'pmd_trans_huge'; did you mean 'pmd_trans_huge_lock'? [-Werror=implicit-function-declaration]
215 | if (is_swap_pmd(*pmd) || pmd_trans_huge(*pmd) || pmd_devmap(*pmd))
| ^~~~~~~~~~~~~~
| pmd_trans_huge_lock
>> include/linux/huge_mm.h:215:51: error: implicit declaration of function 'pmd_devmap'; did you mean 'pmd_val'? [-Werror=implicit-function-declaration]
215 | if (is_swap_pmd(*pmd) || pmd_trans_huge(*pmd) || pmd_devmap(*pmd))
| ^~~~~~~~~~
| pmd_val
include/linux/huge_mm.h: In function 'pud_trans_huge_lock':
>> include/linux/huge_mm.h:223:6: error: implicit declaration of function 'pud_trans_huge'; did you mean 'pud_trans_huge_lock'? [-Werror=implicit-function-declaration]
223 | if (pud_trans_huge(*pud) || pud_devmap(*pud))
| ^~~~~~~~~~~~~~
| pud_trans_huge_lock
>> include/linux/huge_mm.h:223:30: error: implicit declaration of function 'pud_devmap'; did you mean 'pud_val'? [-Werror=implicit-function-declaration]
223 | if (pud_trans_huge(*pud) || pud_devmap(*pud))
| ^~~~~~~~~~
| pud_val
include/linux/huge_mm.h: In function 'is_huge_zero_pmd':
>> include/linux/huge_mm.h:279:37: error: implicit declaration of function 'pmd_pfn' [-Werror=implicit-function-declaration]
279 | return READ_ONCE(huge_zero_pfn) == pmd_pfn(pmd) && pmd_present(pmd);
| ^~~~~~~
In file included from include/linux/pgtable_api.h:19,
from drivers/usb/host/r8a66597-hcd.c:16:
arch/x86/include/asm/pgtable.h: At top level:
>> arch/x86/include/asm/pgtable.h:208:29: error: conflicting types for 'pmd_pfn'
208 | static inline unsigned long pmd_pfn(pmd_t pmd)
| ^~~~~~~
In file included from include/linux/mm_api.h:388,
from arch/x86/include/asm/tlbflush.h:5,
from arch/x86/include/asm/highmem.h:26,
from include/linux/mmzone_api.h:33,
from include/linux/pgtable_api.h:15,
from drivers/usb/host/r8a66597-hcd.c:16:
include/linux/huge_mm.h:279:37: note: previous implicit declaration of 'pmd_pfn' was here
279 | return READ_ONCE(huge_zero_pfn) == pmd_pfn(pmd) && pmd_present(pmd);
| ^~~~~~~
In file included from include/linux/pgtable_api.h:19,
from drivers/usb/host/r8a66597-hcd.c:16:
>> arch/x86/include/asm/pgtable.h:249:19: error: static declaration of 'pmd_trans_huge' follows non-static declaration
249 | static inline int pmd_trans_huge(pmd_t pmd)
| ^~~~~~~~~~~~~~
In file included from include/linux/mm_api.h:388,
from arch/x86/include/asm/tlbflush.h:5,
from arch/x86/include/asm/highmem.h:26,
from include/linux/mmzone_api.h:33,
from include/linux/pgtable_api.h:15,
from drivers/usb/host/r8a66597-hcd.c:16:
include/linux/huge_mm.h:215:27: note: previous implicit declaration of 'pmd_trans_huge' was here
215 | if (is_swap_pmd(*pmd) || pmd_trans_huge(*pmd) || pmd_devmap(*pmd))
| ^~~~~~~~~~~~~~
In file included from include/linux/pgtable_api.h:19,
from drivers/usb/host/r8a66597-hcd.c:16:
>> arch/x86/include/asm/pgtable.h:743:19: error: static declaration of 'pmd_present' follows non-static declaration
743 | static inline int pmd_present(pmd_t pmd)
| ^~~~~~~~~~~
In file included from include/linux/mm_api.h:388,
from arch/x86/include/asm/tlbflush.h:5,
from arch/x86/include/asm/highmem.h:26,
from include/linux/mmzone_api.h:33,
from include/linux/pgtable_api.h:15,
from drivers/usb/host/r8a66597-hcd.c:16:
include/linux/huge_mm.h:208:28: note: previous implicit declaration of 'pmd_present' was here
208 | return !pmd_none(pmd) && !pmd_present(pmd);
| ^~~~~~~~~~~
In file included from include/linux/pgtable_api.h:19,
from drivers/usb/host/r8a66597-hcd.c:16:
>> arch/x86/include/asm/pgtable.h:772:19: error: static declaration of 'pmd_none' follows non-static declaration
772 | static inline int pmd_none(pmd_t pmd)
| ^~~~~~~~
In file included from include/linux/mm_api.h:388,
from arch/x86/include/asm/tlbflush.h:5,
from arch/x86/include/asm/highmem.h:26,
from include/linux/mmzone_api.h:33,
from include/linux/pgtable_api.h:15,
from drivers/usb/host/r8a66597-hcd.c:16:
include/linux/huge_mm.h:208:10: note: previous implicit declaration of 'pmd_none' was here
208 | return !pmd_none(pmd) && !pmd_present(pmd);
| ^~~~~~~~
In file included from drivers/usb/host/r8a66597-hcd.c:16:
>> include/linux/pgtable_api.h:1200:19: error: static declaration of 'pmd_devmap' follows non-static declaration
1200 | static inline int pmd_devmap(pmd_t pmd)
| ^~~~~~~~~~
In file included from include/linux/mm_api.h:388,
from arch/x86/include/asm/tlbflush.h:5,
from arch/x86/include/asm/highmem.h:26,
from include/linux/mmzone_api.h:33,
from include/linux/pgtable_api.h:15,
from drivers/usb/host/r8a66597-hcd.c:16:
include/linux/huge_mm.h:215:51: note: previous implicit declaration of 'pmd_devmap' was here
215 | if (is_swap_pmd(*pmd) || pmd_trans_huge(*pmd) || pmd_devmap(*pmd))
| ^~~~~~~~~~
In file included from drivers/usb/host/r8a66597-hcd.c:16:
>> include/linux/pgtable_api.h:1204:19: error: static declaration of 'pud_devmap' follows non-static declaration
1204 | static inline int pud_devmap(pud_t pud)
| ^~~~~~~~~~
In file included from include/linux/mm_api.h:388,
from arch/x86/include/asm/tlbflush.h:5,
from arch/x86/include/asm/highmem.h:26,
from include/linux/mmzone_api.h:33,
from include/linux/pgtable_api.h:15,
from drivers/usb/host/r8a66597-hcd.c:16:
include/linux/huge_mm.h:223:30: note: previous implicit declaration of 'pud_devmap' was here
223 | if (pud_trans_huge(*pud) || pud_devmap(*pud))
| ^~~~~~~~~~
In file included from drivers/usb/host/r8a66597-hcd.c:16:
>> include/linux/pgtable_api.h:1217:19: error: static declaration of 'pud_trans_huge' follows non-static declaration
1217 | static inline int pud_trans_huge(pud_t pud)
| ^~~~~~~~~~~~~~
In file included from include/linux/mm_api.h:388,
from arch/x86/include/asm/tlbflush.h:5,
from arch/x86/include/asm/highmem.h:26,
from include/linux/mmzone_api.h:33,
from include/linux/pgtable_api.h:15,
from drivers/usb/host/r8a66597-hcd.c:16:
include/linux/huge_mm.h:223:6: note: previous implicit declaration of 'pud_trans_huge' was here
223 | if (pud_trans_huge(*pud) || pud_devmap(*pud))
| ^~~~~~~~~~~~~~
cc1: some warnings being treated as errors


vim +208 include/linux/huge_mm.h

84c3fc4e9c563d Zi Yan 2017-09-08 205
84c3fc4e9c563d Zi Yan 2017-09-08 206 static inline int is_swap_pmd(pmd_t pmd)
84c3fc4e9c563d Zi Yan 2017-09-08 207 {
84c3fc4e9c563d Zi Yan 2017-09-08 @208 return !pmd_none(pmd) && !pmd_present(pmd);
84c3fc4e9c563d Zi Yan 2017-09-08 209 }
84c3fc4e9c563d Zi Yan 2017-09-08 210
c1e8d7c6a7a682 Michel Lespinasse 2020-06-08 211 /* mmap_lock must be held on entry */
b6ec57f4b92e9b Kirill A. Shutemov 2016-01-21 212 static inline spinlock_t *pmd_trans_huge_lock(pmd_t *pmd,
b6ec57f4b92e9b Kirill A. Shutemov 2016-01-21 213 struct vm_area_struct *vma)
025c5b2451e42c Naoya Horiguchi 2012-03-21 214 {
84c3fc4e9c563d Zi Yan 2017-09-08 @215 if (is_swap_pmd(*pmd) || pmd_trans_huge(*pmd) || pmd_devmap(*pmd))
b6ec57f4b92e9b Kirill A. Shutemov 2016-01-21 216 return __pmd_trans_huge_lock(pmd, vma);
025c5b2451e42c Naoya Horiguchi 2012-03-21 217 else
969e8d7e47f93e Chen Gang 2016-04-01 218 return NULL;
025c5b2451e42c Naoya Horiguchi 2012-03-21 219 }
a00cc7d9dd93d6 Matthew Wilcox 2017-02-24 220 static inline spinlock_t *pud_trans_huge_lock(pud_t *pud,
a00cc7d9dd93d6 Matthew Wilcox 2017-02-24 221 struct vm_area_struct *vma)
a00cc7d9dd93d6 Matthew Wilcox 2017-02-24 222 {
a00cc7d9dd93d6 Matthew Wilcox 2017-02-24 @223 if (pud_trans_huge(*pud) || pud_devmap(*pud))
a00cc7d9dd93d6 Matthew Wilcox 2017-02-24 224 return __pud_trans_huge_lock(pud, vma);
a00cc7d9dd93d6 Matthew Wilcox 2017-02-24 225 else
a00cc7d9dd93d6 Matthew Wilcox 2017-02-24 226 return NULL;
a00cc7d9dd93d6 Matthew Wilcox 2017-02-24 227 }
6ffbb45826f5d9 Matthew Wilcox (Oracle 2020-08-14 228)
6ffbb45826f5d9 Matthew Wilcox (Oracle 2020-08-14 229) /**
6ffbb45826f5d9 Matthew Wilcox (Oracle 2020-08-14 230) * thp_order - Order of a transparent huge page.
6ffbb45826f5d9 Matthew Wilcox (Oracle 2020-08-14 231) * @page: Head page of a transparent huge page.
6ffbb45826f5d9 Matthew Wilcox (Oracle 2020-08-14 232) */
6ffbb45826f5d9 Matthew Wilcox (Oracle 2020-08-14 233) static inline unsigned int thp_order(struct page *page)
6ffbb45826f5d9 Matthew Wilcox (Oracle 2020-08-14 234) {
6ffbb45826f5d9 Matthew Wilcox (Oracle 2020-08-14 235) VM_BUG_ON_PGFLAGS(PageTail(page), page);
6ffbb45826f5d9 Matthew Wilcox (Oracle 2020-08-14 236) if (PageHead(page))
6ffbb45826f5d9 Matthew Wilcox (Oracle 2020-08-14 237) return HPAGE_PMD_ORDER;
6ffbb45826f5d9 Matthew Wilcox (Oracle 2020-08-14 238) return 0;
6ffbb45826f5d9 Matthew Wilcox (Oracle 2020-08-14 239) }
6ffbb45826f5d9 Matthew Wilcox (Oracle 2020-08-14 240)
6c357848b44b40 Matthew Wilcox (Oracle 2020-08-14 241) /**
6c357848b44b40 Matthew Wilcox (Oracle 2020-08-14 242) * thp_nr_pages - The number of regular pages in this huge page.
6c357848b44b40 Matthew Wilcox (Oracle 2020-08-14 243) * @page: The head page of a huge page.
6c357848b44b40 Matthew Wilcox (Oracle 2020-08-14 244) */
6c357848b44b40 Matthew Wilcox (Oracle 2020-08-14 245) static inline int thp_nr_pages(struct page *page)
2c888cfbc1b455 Rik van Riel 2011-01-13 246 {
6c357848b44b40 Matthew Wilcox (Oracle 2020-08-14 247) VM_BUG_ON_PGFLAGS(PageTail(page), page);
6c357848b44b40 Matthew Wilcox (Oracle 2020-08-14 248) if (PageHead(page))
2c888cfbc1b455 Rik van Riel 2011-01-13 249 return HPAGE_PMD_NR;
2c888cfbc1b455 Rik van Riel 2011-01-13 250 return 1;
2c888cfbc1b455 Rik van Riel 2011-01-13 251 }
d10e63f29488b0 Mel Gorman 2012-10-25 252
5bf34d7c7ffe77 Matthew Wilcox (Oracle 2021-11-28 253) /**
5bf34d7c7ffe77 Matthew Wilcox (Oracle 2021-11-28 254) * folio_test_pmd_mappable - Can we map this folio with a PMD?
5bf34d7c7ffe77 Matthew Wilcox (Oracle 2021-11-28 255) * @folio: The folio to test
5bf34d7c7ffe77 Matthew Wilcox (Oracle 2021-11-28 256) */
5bf34d7c7ffe77 Matthew Wilcox (Oracle 2021-11-28 257) static inline bool folio_test_pmd_mappable(struct folio *folio)
5bf34d7c7ffe77 Matthew Wilcox (Oracle 2021-11-28 258) {
5bf34d7c7ffe77 Matthew Wilcox (Oracle 2021-11-28 259) return folio_order(folio) >= HPAGE_PMD_ORDER;
5bf34d7c7ffe77 Matthew Wilcox (Oracle 2021-11-28 260) }
5bf34d7c7ffe77 Matthew Wilcox (Oracle 2021-11-28 261)
a00cc7d9dd93d6 Matthew Wilcox 2017-02-24 262 struct page *follow_devmap_pmd(struct vm_area_struct *vma, unsigned long addr,
df06b37ffe5a44 Keith Busch 2018-10-26 263 pmd_t *pmd, int flags, struct dev_pagemap **pgmap);
a00cc7d9dd93d6 Matthew Wilcox 2017-02-24 264 struct page *follow_devmap_pud(struct vm_area_struct *vma, unsigned long addr,
df06b37ffe5a44 Keith Busch 2018-10-26 265 pud_t *pud, int flags, struct dev_pagemap **pgmap);
a00cc7d9dd93d6 Matthew Wilcox 2017-02-24 266
5db4f15c4fd7ae Yang Shi 2021-06-30 267 vm_fault_t do_huge_pmd_numa_page(struct vm_fault *vmf);
d10e63f29488b0 Mel Gorman 2012-10-25 268
56873f43abdcd5 Wang, Yalin 2015-02-11 269 extern struct page *huge_zero_page;
3b77e8c8cde581 Hugh Dickins 2021-06-15 270 extern unsigned long huge_zero_pfn;
56873f43abdcd5 Wang, Yalin 2015-02-11 271
56873f43abdcd5 Wang, Yalin 2015-02-11 272 static inline bool is_huge_zero_page(struct page *page)
56873f43abdcd5 Wang, Yalin 2015-02-11 273 {
6aa7de059173a9 Mark Rutland 2017-10-23 274 return READ_ONCE(huge_zero_page) == page;
56873f43abdcd5 Wang, Yalin 2015-02-11 275 }
56873f43abdcd5 Wang, Yalin 2015-02-11 276
fc43704437ebe4 Matthew Wilcox 2015-09-08 277 static inline bool is_huge_zero_pmd(pmd_t pmd)
fc43704437ebe4 Matthew Wilcox 2015-09-08 278 {
3b77e8c8cde581 Hugh Dickins 2021-06-15 @279 return READ_ONCE(huge_zero_pfn) == pmd_pfn(pmd) && pmd_present(pmd);
fc43704437ebe4 Matthew Wilcox 2015-09-08 280 }
fc43704437ebe4 Matthew Wilcox 2015-09-08 281

:::::: The code at line 208 was first introduced by commit
:::::: 84c3fc4e9c563d8fb91cfdf5948da48fe1af34d3 mm: thp: check pmd migration entry in common path

:::::: TO: Zi Yan <zi.yan@cs.rutgers.edu>
:::::: CC: Linus Torvalds <torvalds@linux-foundation.org>

---
0-DAY CI Kernel Test Service, Intel Corporation
https://lists.01.org/hyperkitty/list/kbuild-all@lists.01.org

\
 
 \ /
  Last update: 2022-02-22 22:08    [W:0.037 / U:3.740 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site