From: kernel test robot <lkp@intel.com>
To: Mike Rapoport <rppt@linux.ibm.com>
Cc: kbuild-all@lists.01.org, Mike Rapoport <rppt@kernel.org>,
linux-kernel@vger.kernel.org
Subject: [rppt:pks/v0.0 27/27] arch/x86/mm/pgtable.c:493:23: warning: initialization of 'struct page *' from 'int' makes pointer from integer without a cast
Date: Thu, 4 Nov 2021 10:25:39 +0800 [thread overview]
Message-ID: <202111041035.5AybfoX5-lkp@intel.com> (raw)
[-- Attachment #1: Type: text/plain, Size: 2479 bytes --]
tree: https://git.kernel.org/pub/scm/linux/kernel/git/rppt/linux.git pks/v0.0
head: b1ddb6750818e99c719da2f60b21e5752f43f0e7
commit: b1ddb6750818e99c719da2f60b21e5752f43f0e7 [27/27] x86/pks: allow PKS with PTI with __GFP_PTE_MAPPED_2
config: x86_64-randconfig-r014-20211103 (attached as .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/rppt/linux.git/commit/?id=b1ddb6750818e99c719da2f60b21e5752f43f0e7
git remote add rppt https://git.kernel.org/pub/scm/linux/kernel/git/rppt/linux.git
git fetch --no-tags rppt pks/v0.0
git checkout b1ddb6750818e99c719da2f60b21e5752f43f0e7
# save the attached .config to linux build tree
make W=1 ARCH=x86_64
If you fix the issue, kindly add following tag as appropriate
Reported-by: kernel test robot <lkp@intel.com>
All warnings (new ones prefixed by >>):
arch/x86/mm/pgtable.c: In function '_pgd_alloc':
arch/x86/mm/pgtable.c:493:23: error: implicit declaration of function '__alloc_table'; did you mean 'sg_alloc_table'? [-Werror=implicit-function-declaration]
493 | struct page *page = __alloc_table(GFP_PGTABLE_USER,
| ^~~~~~~~~~~~~
| sg_alloc_table
>> arch/x86/mm/pgtable.c:493:23: warning: initialization of 'struct page *' from 'int' makes pointer from integer without a cast [-Wint-conversion]
arch/x86/mm/pgtable.c: At top level:
arch/x86/mm/pgtable.c:20:12: warning: '_pks_unprotect' used but never defined
20 | static int _pks_unprotect(struct page *page, unsigned int cnt);
| ^~~~~~~~~~~~~~
arch/x86/mm/pgtable.c:18:34: warning: 'gpc_pks' defined but not used [-Wunused-variable]
18 | static struct grouped_page_cache gpc_pks;
| ^~~~~~~
cc1: some warnings being treated as errors
vim +493 arch/x86/mm/pgtable.c
489
490 static inline pgd_t *_pgd_alloc(void)
491 {
492 if (pks_page_en) {
> 493 struct page *page = __alloc_table(GFP_PGTABLE_USER,
494 PGD_ALLOCATION_ORDER);
495
496 if (!page)
497 return NULL;
498 return page_address(page);
499 }
500
501 return (pgd_t *)__get_free_pages(GFP_PGTABLE_USER,
502 PGD_ALLOCATION_ORDER);
503 }
504
---
0-DAY CI Kernel Test Service, Intel Corporation
https://lists.01.org/hyperkitty/list/kbuild-all@lists.01.org
[-- Attachment #2: .config.gz --]
[-- Type: application/gzip, Size: 38419 bytes --]
reply other threads:[~2021-11-04 2:26 UTC|newest]
Thread overview: [no followups] expand[flat|nested] mbox.gz Atom feed
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=202111041035.5AybfoX5-lkp@intel.com \
--to=lkp@intel.com \
--cc=kbuild-all@lists.01.org \
--cc=linux-kernel@vger.kernel.org \
--cc=rppt@kernel.org \
--cc=rppt@linux.ibm.com \
/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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox