From: kernel test robot <lkp@intel.com>
To: Dongliang Mu <mudongliangabcd@gmail.com>,
Samuel Iglesias Gonsalvez <siglesias@igalia.com>,
Jens Taprogge <jens.taprogge@taprogge.org>,
Greg Kroah-Hartman <gregkh@linuxfoundation.org>,
Randy Dunlap <rdunlap@infradead.org>,
Lv Yunlong <lyl2019@mail.ustc.edu.cn>,
Aditya Srivastava <yashsri421@gmail.com>
Cc: kbuild-all@lists.01.org,
industrypack-devel@lists.sourceforge.net,
linux-kernel@vger.kernel.org
Subject: Re: [PATCH v2 3/4] ipack: tpci200: change pci_iounmap to iounmap
Date: Tue, 10 Aug 2021 05:23:52 +0800 [thread overview]
Message-ID: <202108100545.jyd1a4nb-lkp@intel.com> (raw)
In-Reply-To: <20210809143049.3531188-3-mudongliangabcd@gmail.com>
[-- Attachment #1: Type: text/plain, Size: 4177 bytes --]
Hi Dongliang,
Thank you for the patch! Yet something to improve:
[auto build test ERROR on linus/master]
[also build test ERROR on v5.14-rc5 next-20210809]
[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/Dongliang-Mu/ipack-tpci200-fix-many-double-free-issues-in-tpci200_pci_probe/20210809-223416
base: https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git 36a21d51725af2ce0700c6ebcb6b9594aac658a6
config: ia64-allmodconfig (attached as .config)
compiler: ia64-linux-gcc (GCC) 10.3.0
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
# https://github.com/0day-ci/linux/commit/aab1c45ab3f37910ebb6f00f951c74ee88e25094
git remote add linux-review https://github.com/0day-ci/linux
git fetch --no-tags linux-review Dongliang-Mu/ipack-tpci200-fix-many-double-free-issues-in-tpci200_pci_probe/20210809-223416
git checkout aab1c45ab3f37910ebb6f00f951c74ee88e25094
# save the attached .config to linux build tree
mkdir build_dir
COMPILER_INSTALL_PATH=$HOME/0day COMPILER=gcc-10.3.0 make.cross O=build_dir ARCH=ia64 SHELL=/bin/bash drivers/ipack/carriers/
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 >>):
In file included from include/linux/io.h:13,
from include/linux/irq.h:20,
from arch/ia64/include/asm/hardirq.h:19,
from include/linux/hardirq.h:11,
from include/linux/interrupt.h:11,
from include/linux/pci.h:38,
from drivers/ipack/carriers/tpci200.h:14,
from drivers/ipack/carriers/tpci200.c:12:
drivers/ipack/carriers/tpci200.c: In function 'tpci200_unregister':
>> arch/ia64/include/asm/io.h:268:17: error: too many arguments to function 'iounmap'
268 | #define iounmap iounmap
| ^~~~~~~
drivers/ipack/carriers/tpci200.c:91:2: note: in expansion of macro 'iounmap'
91 | iounmap(tpci200->info->pdev, tpci200->info->interface_regs);
| ^~~~~~~
arch/ia64/include/asm/io.h:260:13: note: declared here
260 | extern void iounmap (volatile void __iomem *addr);
| ^~~~~~~
vim +/iounmap +268 arch/ia64/include/asm/io.h
ffc45571dfb4b7 include/asm-ia64/io.h Aron Griffis 2006-10-17 257
e9b0a0712148ab include/asm-ia64/io.h Bjorn Helgaas 2006-03-26 258 extern void __iomem * ioremap(unsigned long offset, unsigned long size);
fded1829a24b34 arch/ia64/include/asm/io.h Christoph Hellwig 2019-08-11 259 extern void __iomem * ioremap_uc(unsigned long offset, unsigned long size);
9b50ffb0c0281b include/asm-ia64/io.h Bjorn Helgaas 2007-03-30 260 extern void iounmap (volatile void __iomem *addr);
6d5bbf00d251cc arch/ia64/include/asm/io.h Len Brown 2011-01-07 261 static inline void __iomem * ioremap_cache (unsigned long phys_addr, unsigned long size)
6d5bbf00d251cc arch/ia64/include/asm/io.h Len Brown 2011-01-07 262 {
6d5bbf00d251cc arch/ia64/include/asm/io.h Len Brown 2011-01-07 263 return ioremap(phys_addr, size);
6d5bbf00d251cc arch/ia64/include/asm/io.h Len Brown 2011-01-07 264 }
0bbf47eab46975 arch/ia64/include/asm/io.h Arnd Bergmann 2018-07-25 265 #define ioremap ioremap
92281dee825f6d arch/ia64/include/asm/io.h Dan Williams 2015-08-10 266 #define ioremap_cache ioremap_cache
fded1829a24b34 arch/ia64/include/asm/io.h Christoph Hellwig 2019-08-11 267 #define ioremap_uc ioremap_uc
0bbf47eab46975 arch/ia64/include/asm/io.h Arnd Bergmann 2018-07-25 @268 #define iounmap iounmap
^1da177e4c3f41 include/asm-ia64/io.h Linus Torvalds 2005-04-16 269
---
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: 64473 bytes --]
next prev parent reply other threads:[~2021-08-09 21:24 UTC|newest]
Thread overview: 18+ messages / expand[flat|nested] mbox.gz Atom feed top
2021-08-09 14:30 [PATCH v2 1/4] ipack: tpci200: fix many double free issues in tpci200_pci_probe Dongliang Mu
2021-08-09 14:30 ` [PATCH v2 2/4] ipack: tpci200: fix memory leak in the tpci200_register Dongliang Mu
2021-08-09 15:32 ` Greg Kroah-Hartman
2021-08-09 23:09 ` Dongliang Mu
2021-08-10 6:09 ` Greg Kroah-Hartman
2021-08-09 14:30 ` [PATCH v2 3/4] ipack: tpci200: change pci_iounmap to iounmap Dongliang Mu
2021-08-09 15:33 ` Greg Kroah-Hartman
2021-08-09 18:22 ` kernel test robot
2021-08-09 18:29 ` Andy Shevchenko
2021-08-09 21:23 ` kernel test robot [this message]
2021-08-09 14:30 ` [PATCH v2 4/4] ipack: tpci200: move tpci200_unregister close to tpci200_register Dongliang Mu
2021-08-09 15:33 ` Greg Kroah-Hartman
2021-08-09 23:54 ` Dongliang Mu
2021-08-09 15:32 ` [PATCH v2 1/4] ipack: tpci200: fix many double free issues in tpci200_pci_probe Greg Kroah-Hartman
2021-08-09 23:08 ` Dongliang Mu
2021-08-09 23:41 ` Dongliang Mu
2021-08-10 6:12 ` Greg Kroah-Hartman
2021-08-10 6:27 ` Dongliang Mu
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=202108100545.jyd1a4nb-lkp@intel.com \
--to=lkp@intel.com \
--cc=gregkh@linuxfoundation.org \
--cc=industrypack-devel@lists.sourceforge.net \
--cc=jens.taprogge@taprogge.org \
--cc=kbuild-all@lists.01.org \
--cc=linux-kernel@vger.kernel.org \
--cc=lyl2019@mail.ustc.edu.cn \
--cc=mudongliangabcd@gmail.com \
--cc=rdunlap@infradead.org \
--cc=siglesias@igalia.com \
--cc=yashsri421@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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox