All of lore.kernel.org
 help / color / mirror / Atom feed
From: kernel test robot <lkp@intel.com>
To: kbuild-all@lists.01.org
Subject: Re: [RFC/RFT PATCH v2 2/5] arm64, numa: Change the numa init function name to be generic
Date: Tue, 15 Sep 2020 12:11:23 +0800	[thread overview]
Message-ID: <202009151225.KcStrtVl%lkp@intel.com> (raw)
In-Reply-To: <20200912013441.9730-3-atish.patra@wdc.com>

[-- Attachment #1: Type: text/plain, Size: 2810 bytes --]

Hi Atish,

[FYI, it's a private test report for your RFC patch.]
[auto build test WARNING on driver-core/driver-core-testing]
[also build test WARNING on linux/master linus/master v5.9-rc5 next-20200914]
[cannot apply to arm64/for-next/core asm-generic/master]
[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/Atish-Patra/Unify-NUMA-implementation-between-ARM64-RISC-V/20200912-093951
base:   https://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git 0de7511695680425aa1e6e1e1c7a7c24e6250491
config: arm64-randconfig-r032-20200913 (attached as .config)
compiler: clang version 12.0.0 (https://github.com/llvm/llvm-project b2c32c90bab09a6e2c1f370429db26017a182143)
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 arm64 cross compiling tool for clang build
        # apt-get install binutils-aarch64-linux-gnu
        # save the attached .config to linux build tree
        COMPILER_INSTALL_PATH=$HOME/0day COMPILER=clang make.cross ARCH=arm64 

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 >>):

>> drivers/base/arch_numa.c:463:12: warning: no previous prototype for function 'arch_acpi_numa_init' [-Wmissing-prototypes]
   int __init arch_acpi_numa_init(void)
              ^
   drivers/base/arch_numa.c:463:1: note: declare 'static' if the function is not intended to be used outside of this translation unit
   int __init arch_acpi_numa_init(void)
   ^
   static 
   1 warning generated.

# https://github.com/0day-ci/linux/commit/6862a785b7ab5092f214251c211893cb92aa9769
git remote add linux-review https://github.com/0day-ci/linux
git fetch --no-tags linux-review Atish-Patra/Unify-NUMA-implementation-between-ARM64-RISC-V/20200912-093951
git checkout 6862a785b7ab5092f214251c211893cb92aa9769
vim +/arch_acpi_numa_init +463 drivers/base/arch_numa.c

   448	
   449	#ifdef CONFIG_ACPI_NUMA
   450	int __init arch_acpi_numa_init(void)
   451	{
   452		int ret;
   453	
   454		ret = acpi_numa_init();
   455		if (ret) {
   456			pr_info("Failed to initialise from firmware\n");
   457			return ret;
   458		}
   459	
   460		return srat_disabled() ? -EINVAL : 0;
   461	}
   462	#else
 > 463	int __init arch_acpi_numa_init(void)
   464	{
   465		return -EOPNOTSUPP;
   466	}
   467	

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

[-- Attachment #2: config.gz --]
[-- Type: application/gzip, Size: 38199 bytes --]

  parent reply	other threads:[~2020-09-15  4:11 UTC|newest]

Thread overview: 32+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-09-12  1:34 [RFC/RFT PATCH v2 0/5] Unify NUMA implementation between ARM64 & RISC-V Atish Patra
2020-09-12  1:34 ` Atish Patra
2020-09-12  1:34 ` [RFC/RFT PATCH v2 1/5] numa: Move numa implementation to common code Atish Patra
2020-09-12  1:34   ` Atish Patra
2020-09-14 14:21   ` Jonathan Cameron
2020-09-14 14:21     ` Jonathan Cameron
2020-09-12  1:34 ` [RFC/RFT PATCH v2 2/5] arm64, numa: Change the numa init function name to be generic Atish Patra
2020-09-12  1:34   ` Atish Patra
2020-09-14 14:30   ` Jonathan Cameron
2020-09-14 14:30     ` Jonathan Cameron
2020-09-14 19:32     ` Atish Patra
2020-09-14 19:32       ` Atish Patra
2020-09-15  8:27       ` Jonathan Cameron
2020-09-15  8:27         ` Jonathan Cameron
2020-09-15  4:11   ` kernel test robot [this message]
2020-09-12  1:34 ` [RFC/RFT PATCH v2 3/5] riscv: Separate memory init from paging init Atish Patra
2020-09-12  1:34   ` Atish Patra
2020-09-12  2:10   ` Greentime Hu
2020-09-12  2:10     ` Greentime Hu
2020-09-12  1:34 ` [RFC/RFT PATCH v2 4/5] riscv: Add support pte_protnone and pmd_protnone if CONFIG_NUMA_BALANCING Atish Patra
2020-09-12  1:34   ` Atish Patra
2020-09-12  1:34 ` [RFC/RFT PATCH v2 5/5] riscv: Add numa support for riscv64 platform Atish Patra
2020-09-12  1:34   ` Atish Patra
2020-09-16 22:19   ` kernel test robot
2020-09-14  8:04 ` [RFC/RFT PATCH v2 0/5] Unify NUMA implementation between ARM64 & RISC-V Jonathan Cameron
2020-09-14  8:04   ` Jonathan Cameron
2020-09-14 19:33   ` Atish Patra
2020-09-14 19:33     ` Atish Patra
2020-09-18 16:05     ` Jonathan Cameron
2020-09-18 16:05       ` Jonathan Cameron
2020-09-18 19:18       ` Atish Patra
2020-09-18 19:18         ` Atish Patra

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=202009151225.KcStrtVl%lkp@intel.com \
    --to=lkp@intel.com \
    --cc=kbuild-all@lists.01.org \
    /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.