From: kernel test robot <lkp@intel.com>
To: Shiji Yang <yangshiji66@outlook.com>, linux-mips@vger.kernel.org
Cc: oe-kbuild-all@lists.linux.dev,
Thomas Bogendoerfer <tsbogend@alpha.franken.de>,
Arnd Bergmann <arnd@arndb.de>,
Greg Kroah-Hartman <gregkh@linuxfoundation.org>,
Javier Martinez Canillas <javierm@redhat.com>,
Khalid Aziz <khalid@gonehiking.org>, Baoquan He <bhe@redhat.com>,
Jiaxun Yang <jiaxun.yang@flygoat.com>,
Serge Semin <fancer.lancer@gmail.com>,
linux-kernel@vger.kernel.org,
Shiji Yang <yangshiji66@outlook.com>,
Mieczyslaw Nalewaj <namiltd@yahoo.com>
Subject: Re: [PATCH V2] mips: kernel: fix detect_memory_region() function
Date: Sat, 29 Jun 2024 00:07:14 +0800 [thread overview]
Message-ID: <202406282354.0hGuOKo0-lkp@intel.com> (raw)
In-Reply-To: <TYCP286MB089598ABD1E2F66003D71EB8BCD52@TYCP286MB0895.JPNP286.PROD.OUTLOOK.COM>
Hi Shiji,
kernel test robot noticed the following build warnings:
[auto build test WARNING on soc/for-next]
[also build test WARNING on linus/master v6.10-rc5 next-20240627]
[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#_base_tree_information]
url: https://github.com/intel-lab-lkp/linux/commits/Shiji-Yang/mips-kernel-fix-detect_memory_region-function/20240626-070033
base: https://git.kernel.org/pub/scm/linux/kernel/git/soc/soc.git for-next
patch link: https://lore.kernel.org/r/TYCP286MB089598ABD1E2F66003D71EB8BCD52%40TYCP286MB0895.JPNP286.PROD.OUTLOOK.COM
patch subject: [PATCH V2] mips: kernel: fix detect_memory_region() function
config: mips-randconfig-r113-20240628 (https://download.01.org/0day-ci/archive/20240628/202406282354.0hGuOKo0-lkp@intel.com/config)
compiler: clang version 15.0.7 (https://github.com/llvm/llvm-project 8dfdcc7b7bf66834a761bd8de445840ef68e4d1a)
reproduce: (https://download.01.org/0day-ci/archive/20240628/202406282354.0hGuOKo0-lkp@intel.com/reproduce)
If you fix the issue in a separate patch/commit (i.e. not just a new version of
the same patch/commit), kindly add following tags
| Reported-by: kernel test robot <lkp@intel.com>
| Closes: https://lore.kernel.org/oe-kbuild-all/202406282354.0hGuOKo0-lkp@intel.com/
sparse warnings: (new ones prefixed by >>)
>> arch/mips/kernel/setup.c:104:53: sparse: sparse: incorrect type in argument 2 (different address spaces) @@ expected void volatile [noderef] __iomem *mem @@ got void *dm @@
arch/mips/kernel/setup.c:104:53: sparse: expected void volatile [noderef] __iomem *mem
arch/mips/kernel/setup.c:104:53: sparse: got void *dm
>> arch/mips/kernel/setup.c:105:33: sparse: sparse: incorrect type in argument 1 (different address spaces) @@ expected void const volatile [noderef] __iomem *mem @@ got void *dm @@
arch/mips/kernel/setup.c:105:33: sparse: expected void const volatile [noderef] __iomem *mem
arch/mips/kernel/setup.c:105:33: sparse: got void *dm
>> arch/mips/kernel/setup.c:105:55: sparse: sparse: incorrect type in argument 1 (different address spaces) @@ expected void const volatile [noderef] __iomem *mem @@ got void * @@
arch/mips/kernel/setup.c:105:55: sparse: expected void const volatile [noderef] __iomem *mem
arch/mips/kernel/setup.c:105:55: sparse: got void *
arch/mips/kernel/setup.c:106:62: sparse: sparse: incorrect type in argument 2 (different address spaces) @@ expected void volatile [noderef] __iomem *mem @@ got void *dm @@
arch/mips/kernel/setup.c:106:62: sparse: expected void volatile [noderef] __iomem *mem
arch/mips/kernel/setup.c:106:62: sparse: got void *dm
arch/mips/kernel/setup.c:107:41: sparse: sparse: incorrect type in argument 1 (different address spaces) @@ expected void const volatile [noderef] __iomem *mem @@ got void *dm @@
arch/mips/kernel/setup.c:107:41: sparse: expected void const volatile [noderef] __iomem *mem
arch/mips/kernel/setup.c:107:41: sparse: got void *dm
arch/mips/kernel/setup.c:107:63: sparse: sparse: incorrect type in argument 1 (different address spaces) @@ expected void const volatile [noderef] __iomem *mem @@ got void * @@
arch/mips/kernel/setup.c:107:63: sparse: expected void const volatile [noderef] __iomem *mem
arch/mips/kernel/setup.c:107:63: sparse: got void *
arch/mips/kernel/setup.c: note: in included file (through include/linux/mmzone.h, include/linux/gfp.h, include/linux/xarray.h, ...):
include/linux/page-flags.h:240:46: sparse: sparse: self-comparison always evaluates to false
include/linux/page-flags.h:240:46: sparse: sparse: self-comparison always evaluates to false
vim +104 arch/mips/kernel/setup.c
97
98 void __init detect_memory_region(phys_addr_t start, phys_addr_t sz_min, phys_addr_t sz_max)
99 {
100 void *dm = (void *)KSEG1ADDR(&detect_magic);
101 phys_addr_t size;
102
103 for (size = sz_min; size < sz_max; size <<= 1) {
> 104 __raw_writel(MIPS_MEM_TEST_PATTERN, dm);
> 105 if (__raw_readl(dm) == __raw_readl(dm + size)) {
106 __raw_writel(~MIPS_MEM_TEST_PATTERN, dm);
107 if (__raw_readl(dm) == __raw_readl(dm + size))
108 break;
109 }
110 }
111
112 pr_debug("Memory: %lluMB of RAM detected at 0x%llx (min: %lluMB, max: %lluMB)\n",
113 ((unsigned long long) size) / SZ_1M,
114 (unsigned long long) start,
115 ((unsigned long long) sz_min) / SZ_1M,
116 ((unsigned long long) sz_max) / SZ_1M);
117
118 memblock_add(start, size);
119 }
120 #endif /* CONFIG_64BIT */
121
--
0-DAY CI Kernel Test Service
https://github.com/intel/lkp-tests/wiki
prev parent reply other threads:[~2024-06-28 16:08 UTC|newest]
Thread overview: 7+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-06-25 1:44 [PATCH V2] mips: kernel: fix detect_memory_region() function Shiji Yang
2024-06-25 1:58 ` Jiaxun Yang
2024-06-29 4:56 ` Shiji Yang
2024-06-25 7:46 ` Thomas Bogendoerfer
2024-06-25 7:52 ` Thomas Bogendoerfer
2024-06-29 5:19 ` Shiji Yang
2024-06-28 16:07 ` kernel test robot [this message]
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=202406282354.0hGuOKo0-lkp@intel.com \
--to=lkp@intel.com \
--cc=arnd@arndb.de \
--cc=bhe@redhat.com \
--cc=fancer.lancer@gmail.com \
--cc=gregkh@linuxfoundation.org \
--cc=javierm@redhat.com \
--cc=jiaxun.yang@flygoat.com \
--cc=khalid@gonehiking.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-mips@vger.kernel.org \
--cc=namiltd@yahoo.com \
--cc=oe-kbuild-all@lists.linux.dev \
--cc=tsbogend@alpha.franken.de \
--cc=yangshiji66@outlook.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