From: kernel test robot <lkp@intel.com>
To: Jisheng Zhang <jszhang@kernel.org>,
Paul Walmsley <paul.walmsley@sifive.com>,
Palmer Dabbelt <palmer@dabbelt.com>,
Albert Ou <aou@eecs.berkeley.edu>,
Andrey Ryabinin <ryabinin.a.a@gmail.com>,
Alexander Potapenko <glider@google.com>,
Andrey Konovalov <andreyknvl@gmail.com>,
Dmitry Vyukov <dvyukov@google.com>,
Alexandre Ghiti <alexandre.ghiti@canonical.com>
Cc: llvm@lists.linux.dev, kbuild-all@lists.01.org,
linux-riscv@lists.infradead.org, linux-kernel@vger.kernel.org
Subject: Re: [PATCH 3/3] riscv: convert pgtable_l4_enabled to static key
Date: Wed, 26 Jan 2022 05:30:17 +0800 [thread overview]
Message-ID: <202201260555.SwYGWcoq-lkp@intel.com> (raw)
In-Reply-To: <20220125165036.987-4-jszhang@kernel.org>
Hi Jisheng,
I love your patch! Yet something to improve:
[auto build test ERROR on linus/master]
[also build test ERROR on v5.17-rc1 next-20220125]
[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]
url: https://github.com/0day-ci/linux/commits/Jisheng-Zhang/unified-way-to-use-static-key-and-optimize-pgtable_l4_enabled/20220126-010230
base: https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git a08b41ab9e2e468647f78eb17c28e29b93006394
config: riscv-randconfig-r012-20220124 (https://download.01.org/0day-ci/archive/20220126/202201260555.SwYGWcoq-lkp@intel.com/config)
compiler: clang version 14.0.0 (https://github.com/llvm/llvm-project 997e128e2a78f5a5434fc75997441ae1ee76f8a4)
reproduce (this is a W=1 build):
wget https://raw.githubusercontent.com/intel/lkp-tests/master/sbin/make.cross -O ~/bin/make.cross
chmod +x ~/bin/make.cross
# install riscv cross compiling tool for clang build
# apt-get install binutils-riscv64-linux-gnu
# https://github.com/0day-ci/linux/commit/6822380e5bcac6d3edfa5d0723d829db8ec28405
git remote add linux-review https://github.com/0day-ci/linux
git fetch --no-tags linux-review Jisheng-Zhang/unified-way-to-use-static-key-and-optimize-pgtable_l4_enabled/20220126-010230
git checkout 6822380e5bcac6d3edfa5d0723d829db8ec28405
# save the config file to linux build tree
mkdir build_dir
COMPILER_INSTALL_PATH=$HOME/0day COMPILER=clang make.cross W=1 O=build_dir ARCH=riscv SHELL=/bin/bash arch/riscv/mm/
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 >>):
>> arch/riscv/mm/init.c:691:6: error: implicit declaration of function 'system_supports_sv48' [-Werror,-Wimplicit-function-declaration]
if (system_supports_sv48()) {
^
arch/riscv/mm/init.c:721:13: warning: no previous prototype for function 'pt_ops_set_early' [-Wmissing-prototypes]
void __init pt_ops_set_early(void)
^
arch/riscv/mm/init.c:721:1: note: declare 'static' if the function is not intended to be used outside of this translation unit
void __init pt_ops_set_early(void)
^
static
arch/riscv/mm/init.c:741:13: warning: no previous prototype for function 'pt_ops_set_fixmap' [-Wmissing-prototypes]
void __init pt_ops_set_fixmap(void)
^
arch/riscv/mm/init.c:741:1: note: declare 'static' if the function is not intended to be used outside of this translation unit
void __init pt_ops_set_fixmap(void)
^
static
arch/riscv/mm/init.c:757:13: warning: no previous prototype for function 'pt_ops_set_late' [-Wmissing-prototypes]
void __init pt_ops_set_late(void)
^
arch/riscv/mm/init.c:757:1: note: declare 'static' if the function is not intended to be used outside of this translation unit
void __init pt_ops_set_late(void)
^
static
3 warnings and 1 error generated.
vim +/system_supports_sv48 +691 arch/riscv/mm/init.c
675
676 /*
677 * Setup a 4MB mapping that encompasses the device tree: for 64-bit kernel,
678 * this means 2 PMD entries whereas for 32-bit kernel, this is only 1 PGDIR
679 * entry.
680 */
681 static void __init create_fdt_early_page_table(pgd_t *pgdir, uintptr_t dtb_pa)
682 {
683 #ifndef CONFIG_BUILTIN_DTB
684 uintptr_t pa = dtb_pa & ~(PMD_SIZE - 1);
685
686 create_pgd_mapping(early_pg_dir, DTB_EARLY_BASE_VA,
687 IS_ENABLED(CONFIG_64BIT) ? early_dtb_pgd_next : pa,
688 PGDIR_SIZE,
689 IS_ENABLED(CONFIG_64BIT) ? PAGE_TABLE : PAGE_KERNEL);
690
> 691 if (system_supports_sv48()) {
692 create_pud_mapping(early_dtb_pud, DTB_EARLY_BASE_VA,
693 (uintptr_t)early_dtb_pmd, PUD_SIZE, PAGE_TABLE);
694 }
695
696 if (IS_ENABLED(CONFIG_64BIT)) {
697 create_pmd_mapping(early_dtb_pmd, DTB_EARLY_BASE_VA,
698 pa, PMD_SIZE, PAGE_KERNEL);
699 create_pmd_mapping(early_dtb_pmd, DTB_EARLY_BASE_VA + PMD_SIZE,
700 pa + PMD_SIZE, PMD_SIZE, PAGE_KERNEL);
701 }
702
703 dtb_early_va = (void *)DTB_EARLY_BASE_VA + (dtb_pa & (PMD_SIZE - 1));
704 #else
705 /*
706 * For 64-bit kernel, __va can't be used since it would return a linear
707 * mapping address whereas dtb_early_va will be used before
708 * setup_vm_final installs the linear mapping. For 32-bit kernel, as the
709 * kernel is mapped in the linear mapping, that makes no difference.
710 */
711 dtb_early_va = kernel_mapping_pa_to_va(XIP_FIXUP(dtb_pa));
712 #endif
713
714 dtb_early_pa = dtb_pa;
715 }
716
---
0-DAY CI Kernel Test Service, Intel Corporation
https://lists.01.org/hyperkitty/list/kbuild-all@lists.01.org
_______________________________________________
linux-riscv mailing list
linux-riscv@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-riscv
WARNING: multiple messages have this Message-ID (diff)
From: kernel test robot <lkp@intel.com>
To: Jisheng Zhang <jszhang@kernel.org>,
Paul Walmsley <paul.walmsley@sifive.com>,
Palmer Dabbelt <palmer@dabbelt.com>,
Albert Ou <aou@eecs.berkeley.edu>,
Andrey Ryabinin <ryabinin.a.a@gmail.com>,
Alexander Potapenko <glider@google.com>,
Andrey Konovalov <andreyknvl@gmail.com>,
Dmitry Vyukov <dvyukov@google.com>,
Alexandre Ghiti <alexandre.ghiti@canonical.com>
Cc: llvm@lists.linux.dev, kbuild-all@lists.01.org,
linux-riscv@lists.infradead.org, linux-kernel@vger.kernel.org
Subject: Re: [PATCH 3/3] riscv: convert pgtable_l4_enabled to static key
Date: Wed, 26 Jan 2022 05:30:17 +0800 [thread overview]
Message-ID: <202201260555.SwYGWcoq-lkp@intel.com> (raw)
In-Reply-To: <20220125165036.987-4-jszhang@kernel.org>
Hi Jisheng,
I love your patch! Yet something to improve:
[auto build test ERROR on linus/master]
[also build test ERROR on v5.17-rc1 next-20220125]
[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]
url: https://github.com/0day-ci/linux/commits/Jisheng-Zhang/unified-way-to-use-static-key-and-optimize-pgtable_l4_enabled/20220126-010230
base: https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git a08b41ab9e2e468647f78eb17c28e29b93006394
config: riscv-randconfig-r012-20220124 (https://download.01.org/0day-ci/archive/20220126/202201260555.SwYGWcoq-lkp@intel.com/config)
compiler: clang version 14.0.0 (https://github.com/llvm/llvm-project 997e128e2a78f5a5434fc75997441ae1ee76f8a4)
reproduce (this is a W=1 build):
wget https://raw.githubusercontent.com/intel/lkp-tests/master/sbin/make.cross -O ~/bin/make.cross
chmod +x ~/bin/make.cross
# install riscv cross compiling tool for clang build
# apt-get install binutils-riscv64-linux-gnu
# https://github.com/0day-ci/linux/commit/6822380e5bcac6d3edfa5d0723d829db8ec28405
git remote add linux-review https://github.com/0day-ci/linux
git fetch --no-tags linux-review Jisheng-Zhang/unified-way-to-use-static-key-and-optimize-pgtable_l4_enabled/20220126-010230
git checkout 6822380e5bcac6d3edfa5d0723d829db8ec28405
# save the config file to linux build tree
mkdir build_dir
COMPILER_INSTALL_PATH=$HOME/0day COMPILER=clang make.cross W=1 O=build_dir ARCH=riscv SHELL=/bin/bash arch/riscv/mm/
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 >>):
>> arch/riscv/mm/init.c:691:6: error: implicit declaration of function 'system_supports_sv48' [-Werror,-Wimplicit-function-declaration]
if (system_supports_sv48()) {
^
arch/riscv/mm/init.c:721:13: warning: no previous prototype for function 'pt_ops_set_early' [-Wmissing-prototypes]
void __init pt_ops_set_early(void)
^
arch/riscv/mm/init.c:721:1: note: declare 'static' if the function is not intended to be used outside of this translation unit
void __init pt_ops_set_early(void)
^
static
arch/riscv/mm/init.c:741:13: warning: no previous prototype for function 'pt_ops_set_fixmap' [-Wmissing-prototypes]
void __init pt_ops_set_fixmap(void)
^
arch/riscv/mm/init.c:741:1: note: declare 'static' if the function is not intended to be used outside of this translation unit
void __init pt_ops_set_fixmap(void)
^
static
arch/riscv/mm/init.c:757:13: warning: no previous prototype for function 'pt_ops_set_late' [-Wmissing-prototypes]
void __init pt_ops_set_late(void)
^
arch/riscv/mm/init.c:757:1: note: declare 'static' if the function is not intended to be used outside of this translation unit
void __init pt_ops_set_late(void)
^
static
3 warnings and 1 error generated.
vim +/system_supports_sv48 +691 arch/riscv/mm/init.c
675
676 /*
677 * Setup a 4MB mapping that encompasses the device tree: for 64-bit kernel,
678 * this means 2 PMD entries whereas for 32-bit kernel, this is only 1 PGDIR
679 * entry.
680 */
681 static void __init create_fdt_early_page_table(pgd_t *pgdir, uintptr_t dtb_pa)
682 {
683 #ifndef CONFIG_BUILTIN_DTB
684 uintptr_t pa = dtb_pa & ~(PMD_SIZE - 1);
685
686 create_pgd_mapping(early_pg_dir, DTB_EARLY_BASE_VA,
687 IS_ENABLED(CONFIG_64BIT) ? early_dtb_pgd_next : pa,
688 PGDIR_SIZE,
689 IS_ENABLED(CONFIG_64BIT) ? PAGE_TABLE : PAGE_KERNEL);
690
> 691 if (system_supports_sv48()) {
692 create_pud_mapping(early_dtb_pud, DTB_EARLY_BASE_VA,
693 (uintptr_t)early_dtb_pmd, PUD_SIZE, PAGE_TABLE);
694 }
695
696 if (IS_ENABLED(CONFIG_64BIT)) {
697 create_pmd_mapping(early_dtb_pmd, DTB_EARLY_BASE_VA,
698 pa, PMD_SIZE, PAGE_KERNEL);
699 create_pmd_mapping(early_dtb_pmd, DTB_EARLY_BASE_VA + PMD_SIZE,
700 pa + PMD_SIZE, PMD_SIZE, PAGE_KERNEL);
701 }
702
703 dtb_early_va = (void *)DTB_EARLY_BASE_VA + (dtb_pa & (PMD_SIZE - 1));
704 #else
705 /*
706 * For 64-bit kernel, __va can't be used since it would return a linear
707 * mapping address whereas dtb_early_va will be used before
708 * setup_vm_final installs the linear mapping. For 32-bit kernel, as the
709 * kernel is mapped in the linear mapping, that makes no difference.
710 */
711 dtb_early_va = kernel_mapping_pa_to_va(XIP_FIXUP(dtb_pa));
712 #endif
713
714 dtb_early_pa = dtb_pa;
715 }
716
---
0-DAY CI Kernel Test Service, Intel Corporation
https://lists.01.org/hyperkitty/list/kbuild-all@lists.01.org
WARNING: multiple messages have this Message-ID (diff)
From: kernel test robot <lkp@intel.com>
To: kbuild-all@lists.01.org
Subject: Re: [PATCH 3/3] riscv: convert pgtable_l4_enabled to static key
Date: Wed, 26 Jan 2022 05:30:17 +0800 [thread overview]
Message-ID: <202201260555.SwYGWcoq-lkp@intel.com> (raw)
In-Reply-To: <20220125165036.987-4-jszhang@kernel.org>
[-- Attachment #1: Type: text/plain, Size: 5060 bytes --]
Hi Jisheng,
I love your patch! Yet something to improve:
[auto build test ERROR on linus/master]
[also build test ERROR on v5.17-rc1 next-20220125]
[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]
url: https://github.com/0day-ci/linux/commits/Jisheng-Zhang/unified-way-to-use-static-key-and-optimize-pgtable_l4_enabled/20220126-010230
base: https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git a08b41ab9e2e468647f78eb17c28e29b93006394
config: riscv-randconfig-r012-20220124 (https://download.01.org/0day-ci/archive/20220126/202201260555.SwYGWcoq-lkp(a)intel.com/config)
compiler: clang version 14.0.0 (https://github.com/llvm/llvm-project 997e128e2a78f5a5434fc75997441ae1ee76f8a4)
reproduce (this is a W=1 build):
wget https://raw.githubusercontent.com/intel/lkp-tests/master/sbin/make.cross -O ~/bin/make.cross
chmod +x ~/bin/make.cross
# install riscv cross compiling tool for clang build
# apt-get install binutils-riscv64-linux-gnu
# https://github.com/0day-ci/linux/commit/6822380e5bcac6d3edfa5d0723d829db8ec28405
git remote add linux-review https://github.com/0day-ci/linux
git fetch --no-tags linux-review Jisheng-Zhang/unified-way-to-use-static-key-and-optimize-pgtable_l4_enabled/20220126-010230
git checkout 6822380e5bcac6d3edfa5d0723d829db8ec28405
# save the config file to linux build tree
mkdir build_dir
COMPILER_INSTALL_PATH=$HOME/0day COMPILER=clang make.cross W=1 O=build_dir ARCH=riscv SHELL=/bin/bash arch/riscv/mm/
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 >>):
>> arch/riscv/mm/init.c:691:6: error: implicit declaration of function 'system_supports_sv48' [-Werror,-Wimplicit-function-declaration]
if (system_supports_sv48()) {
^
arch/riscv/mm/init.c:721:13: warning: no previous prototype for function 'pt_ops_set_early' [-Wmissing-prototypes]
void __init pt_ops_set_early(void)
^
arch/riscv/mm/init.c:721:1: note: declare 'static' if the function is not intended to be used outside of this translation unit
void __init pt_ops_set_early(void)
^
static
arch/riscv/mm/init.c:741:13: warning: no previous prototype for function 'pt_ops_set_fixmap' [-Wmissing-prototypes]
void __init pt_ops_set_fixmap(void)
^
arch/riscv/mm/init.c:741:1: note: declare 'static' if the function is not intended to be used outside of this translation unit
void __init pt_ops_set_fixmap(void)
^
static
arch/riscv/mm/init.c:757:13: warning: no previous prototype for function 'pt_ops_set_late' [-Wmissing-prototypes]
void __init pt_ops_set_late(void)
^
arch/riscv/mm/init.c:757:1: note: declare 'static' if the function is not intended to be used outside of this translation unit
void __init pt_ops_set_late(void)
^
static
3 warnings and 1 error generated.
vim +/system_supports_sv48 +691 arch/riscv/mm/init.c
675
676 /*
677 * Setup a 4MB mapping that encompasses the device tree: for 64-bit kernel,
678 * this means 2 PMD entries whereas for 32-bit kernel, this is only 1 PGDIR
679 * entry.
680 */
681 static void __init create_fdt_early_page_table(pgd_t *pgdir, uintptr_t dtb_pa)
682 {
683 #ifndef CONFIG_BUILTIN_DTB
684 uintptr_t pa = dtb_pa & ~(PMD_SIZE - 1);
685
686 create_pgd_mapping(early_pg_dir, DTB_EARLY_BASE_VA,
687 IS_ENABLED(CONFIG_64BIT) ? early_dtb_pgd_next : pa,
688 PGDIR_SIZE,
689 IS_ENABLED(CONFIG_64BIT) ? PAGE_TABLE : PAGE_KERNEL);
690
> 691 if (system_supports_sv48()) {
692 create_pud_mapping(early_dtb_pud, DTB_EARLY_BASE_VA,
693 (uintptr_t)early_dtb_pmd, PUD_SIZE, PAGE_TABLE);
694 }
695
696 if (IS_ENABLED(CONFIG_64BIT)) {
697 create_pmd_mapping(early_dtb_pmd, DTB_EARLY_BASE_VA,
698 pa, PMD_SIZE, PAGE_KERNEL);
699 create_pmd_mapping(early_dtb_pmd, DTB_EARLY_BASE_VA + PMD_SIZE,
700 pa + PMD_SIZE, PMD_SIZE, PAGE_KERNEL);
701 }
702
703 dtb_early_va = (void *)DTB_EARLY_BASE_VA + (dtb_pa & (PMD_SIZE - 1));
704 #else
705 /*
706 * For 64-bit kernel, __va can't be used since it would return a linear
707 * mapping address whereas dtb_early_va will be used before
708 * setup_vm_final installs the linear mapping. For 32-bit kernel, as the
709 * kernel is mapped in the linear mapping, that makes no difference.
710 */
711 dtb_early_va = kernel_mapping_pa_to_va(XIP_FIXUP(dtb_pa));
712 #endif
713
714 dtb_early_pa = dtb_pa;
715 }
716
---
0-DAY CI Kernel Test Service, Intel Corporation
https://lists.01.org/hyperkitty/list/kbuild-all(a)lists.01.org
next prev parent reply other threads:[~2022-01-25 21:31 UTC|newest]
Thread overview: 11+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-01-25 16:50 [PATCH 0/3] unified way to use static key and optimize pgtable_l4_enabled Jisheng Zhang
2022-01-25 16:50 ` [PATCH 1/3] riscv: introduce unified static key mechanism for CPU features Jisheng Zhang
2022-01-25 16:50 ` [PATCH 2/3] riscv: replace has_fpu() with system_supports_fpu() Jisheng Zhang
2022-01-25 16:50 ` [PATCH 3/3] riscv: convert pgtable_l4_enabled to static key Jisheng Zhang
2022-01-25 21:30 ` kernel test robot [this message]
2022-01-25 21:30 ` kernel test robot
2022-01-25 21:30 ` kernel test robot
2022-01-26 2:42 ` kernel test robot
2022-01-26 2:42 ` kernel test robot
2022-02-14 23:52 ` [PATCH 0/3] unified way to use static key and optimize pgtable_l4_enabled Palmer Dabbelt
2022-02-15 15:34 ` Jisheng Zhang
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=202201260555.SwYGWcoq-lkp@intel.com \
--to=lkp@intel.com \
--cc=alexandre.ghiti@canonical.com \
--cc=andreyknvl@gmail.com \
--cc=aou@eecs.berkeley.edu \
--cc=dvyukov@google.com \
--cc=glider@google.com \
--cc=jszhang@kernel.org \
--cc=kbuild-all@lists.01.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-riscv@lists.infradead.org \
--cc=llvm@lists.linux.dev \
--cc=palmer@dabbelt.com \
--cc=paul.walmsley@sifive.com \
--cc=ryabinin.a.a@gmail.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 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.