Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1375506 > unrolled thread
| Started by | Anshuman Khandual <khandual@linux.vnet.ibm.com> |
|---|---|
| First post | 2016-04-11 08:10 +0200 |
| Last post | 2016-04-11 08:10 +0200 |
| Articles | 1 — 1 participant |
Back to article view | Back to linux.kernel
This discussion starts older than the indexed window; earlier articles aren't shown. The article labeled Started by
below is the oldest one visible, not the original post.
Re: [PATCH 03/10] mm/hugetlb: Protect follow_huge_(pud|pgd) functions from race Anshuman Khandual <khandual@linux.vnet.ibm.com> - 2016-04-11 08:10 +0200
| From | Anshuman Khandual <khandual@linux.vnet.ibm.com> |
|---|---|
| Date | 2016-04-11 08:10 +0200 |
| Subject | Re: [PATCH 03/10] mm/hugetlb: Protect follow_huge_(pud|pgd) functions from race |
| Message-ID | <rmDcS-1bH-13@gated-at.bofh.it> |
On 04/07/2016 03:04 PM, kbuild test robot wrote: > All errors (new ones prefixed by >>): > > mm/hugetlb.c: In function 'follow_huge_pud': >>> >> mm/hugetlb.c:4360:3: error: implicit declaration of function 'pud_page' [-Werror=implicit-function-declaration] > page = pud_page(*pud) + ((address & ~PUD_MASK) >> PAGE_SHIFT); > ^ > mm/hugetlb.c:4360:8: warning: assignment makes pointer from integer without a cast > page = pud_page(*pud) + ((address & ~PUD_MASK) >> PAGE_SHIFT); > ^ > mm/hugetlb.c: In function 'follow_huge_pgd': > mm/hugetlb.c:4395:3: error: implicit declaration of function 'pgd_page' [-Werror=implicit-function-declaration] > page = pgd_page(*pgd) + ((address & ~PGDIR_MASK) >> PAGE_SHIFT); Both the build errors here are because of the fact that pgd_page() is not available for some platforms and config options. It got missed as I ran only powerpc config options for build test purpose. My bad, will fix it.
Back to top | Article view | linux.kernel
csiph-web