From: Zhou Wang <wangzhou1@hisilicon.com>
To: kbuild test robot <lkp@intel.com>
Cc: <kbuild-all@lists.01.org>,
Dan Williams <dan.j.williams@intel.com>,
"Vinod Koul" <vkoul@kernel.org>, <dmaengine@vger.kernel.org>,
<linuxarm@huawei.com>, Zhenfa Qiu <qiuzhenfa@hisilicon.com>
Subject: Re: [PATCH v3] dmaengine: hisilicon: Add Kunpeng DMA engine support
Date: Mon, 30 Dec 2019 11:39:29 +0800 [thread overview]
Message-ID: <5E097171.1090608@hisilicon.com> (raw)
In-Reply-To: <201912290029.kc8oo1h9%lkp@intel.com>
On 2019/12/29 0:54, kbuild test robot wrote:
> Hi Zhou,
>
> I love your patch! Yet something to improve:
>
> [auto build test ERROR on slave-dma/next]
> [also build test ERROR on linus/master v5.5-rc3 next-20191220]
> [if your patch is applied to the wrong git tree, please drop us a note to help
> improve the system. BTW, we also suggest to use '--base' option to specify the
> base tree in git format-patch, please see https://stackoverflow.com/a/37406982]
>
> url: https://github.com/0day-ci/linux/commits/Zhou-Wang/dmaengine-hisilicon-Add-Kunpeng-DMA-engine-support/20191228-195257
> base: https://git.kernel.org/pub/scm/linux/kernel/git/vkoul/slave-dma.git next
> config: sh-allmodconfig (attached as .config)
> compiler: sh4-linux-gcc (GCC) 7.5.0
> reproduce:
> wget https://raw.githubusercontent.com/intel/lkp-tests/master/sbin/make.cross -O ~/bin/make.cross
> chmod +x ~/bin/make.cross
> # save the attached .config to linux build tree
> GCC_VERSION=7.5.0 make.cross ARCH=sh
>
> If you fix the issue, kindly add following tag
> Reported-by: kbuild test robot <lkp@intel.com>
>
> All error/warnings (new ones prefixed by >>):
>
> drivers//dma/hisi_dma.c: In function 'hisi_dma_free_irq_vectors':
>>> drivers//dma/hisi_dma.c:132:2: error: implicit declaration of function 'pci_free_irq_vectors'; did you mean 'pci_alloc_irq_vectors'? [-Werror=implicit-function-declaration]
> pci_free_irq_vectors(data);
> ^~~~~~~~~~~~~~~~~~~~
> pci_alloc_irq_vectors
> drivers//dma/hisi_dma.c: At top level:
>>> drivers//dma/hisi_dma.c:593:1: warning: data definition has no type or storage class
> module_pci_driver(hisi_dma_pci_driver);
> ^~~~~~~~~~~~~~~~~
>>> drivers//dma/hisi_dma.c:593:1: error: type defaults to 'int' in declaration of 'module_pci_driver' [-Werror=implicit-int]
>>> drivers//dma/hisi_dma.c:593:1: warning: parameter names (without types) in function declaration
> drivers//dma/hisi_dma.c:587:26: warning: 'hisi_dma_pci_driver' defined but not used [-Wunused-variable]
> static struct pci_driver hisi_dma_pci_driver = {
> ^~~~~~~~~~~~~~~~~~~
> cc1: some warnings being treated as errors
>
> vim +132 drivers//dma/hisi_dma.c
>
> 129
> 130 static void hisi_dma_free_irq_vectors(void *data)
> 131 {
> > 132 pci_free_irq_vectors(data);
> 133 }
> 134
>
Will add PCI_MSI dependency in Kconfig, like: depends on ARM64 || (COMPILE_TEST && PCI_MSI)
Thanks,
Zhou
> ---
> 0-DAY kernel test infrastructure Open Source Technology Center
> https://lists.01.org/hyperkitty/list/kbuild-all@lists.01.org Intel Corporation
>
WARNING: multiple messages have this Message-ID (diff)
From: Zhou Wang <wangzhou1@hisilicon.com>
To: kbuild-all@lists.01.org
Subject: Re: [PATCH v3] dmaengine: hisilicon: Add Kunpeng DMA engine support
Date: Mon, 30 Dec 2019 11:39:29 +0800 [thread overview]
Message-ID: <5E097171.1090608@hisilicon.com> (raw)
In-Reply-To: <201912290029.kc8oo1h9%lkp@intel.com>
[-- Attachment #1: Type: text/plain, Size: 2737 bytes --]
On 2019/12/29 0:54, kbuild test robot wrote:
> Hi Zhou,
>
> I love your patch! Yet something to improve:
>
> [auto build test ERROR on slave-dma/next]
> [also build test ERROR on linus/master v5.5-rc3 next-20191220]
> [if your patch is applied to the wrong git tree, please drop us a note to help
> improve the system. BTW, we also suggest to use '--base' option to specify the
> base tree in git format-patch, please see https://stackoverflow.com/a/37406982]
>
> url: https://github.com/0day-ci/linux/commits/Zhou-Wang/dmaengine-hisilicon-Add-Kunpeng-DMA-engine-support/20191228-195257
> base: https://git.kernel.org/pub/scm/linux/kernel/git/vkoul/slave-dma.git next
> config: sh-allmodconfig (attached as .config)
> compiler: sh4-linux-gcc (GCC) 7.5.0
> reproduce:
> wget https://raw.githubusercontent.com/intel/lkp-tests/master/sbin/make.cross -O ~/bin/make.cross
> chmod +x ~/bin/make.cross
> # save the attached .config to linux build tree
> GCC_VERSION=7.5.0 make.cross ARCH=sh
>
> If you fix the issue, kindly add following tag
> Reported-by: kbuild test robot <lkp@intel.com>
>
> All error/warnings (new ones prefixed by >>):
>
> drivers//dma/hisi_dma.c: In function 'hisi_dma_free_irq_vectors':
>>> drivers//dma/hisi_dma.c:132:2: error: implicit declaration of function 'pci_free_irq_vectors'; did you mean 'pci_alloc_irq_vectors'? [-Werror=implicit-function-declaration]
> pci_free_irq_vectors(data);
> ^~~~~~~~~~~~~~~~~~~~
> pci_alloc_irq_vectors
> drivers//dma/hisi_dma.c: At top level:
>>> drivers//dma/hisi_dma.c:593:1: warning: data definition has no type or storage class
> module_pci_driver(hisi_dma_pci_driver);
> ^~~~~~~~~~~~~~~~~
>>> drivers//dma/hisi_dma.c:593:1: error: type defaults to 'int' in declaration of 'module_pci_driver' [-Werror=implicit-int]
>>> drivers//dma/hisi_dma.c:593:1: warning: parameter names (without types) in function declaration
> drivers//dma/hisi_dma.c:587:26: warning: 'hisi_dma_pci_driver' defined but not used [-Wunused-variable]
> static struct pci_driver hisi_dma_pci_driver = {
> ^~~~~~~~~~~~~~~~~~~
> cc1: some warnings being treated as errors
>
> vim +132 drivers//dma/hisi_dma.c
>
> 129
> 130 static void hisi_dma_free_irq_vectors(void *data)
> 131 {
> > 132 pci_free_irq_vectors(data);
> 133 }
> 134
>
Will add PCI_MSI dependency in Kconfig, like: depends on ARM64 || (COMPILE_TEST && PCI_MSI)
Thanks,
Zhou
> ---
> 0-DAY kernel test infrastructure Open Source Technology Center
> https://lists.01.org/hyperkitty/list/kbuild-all(a)lists.01.org Intel Corporation
>
next prev parent reply other threads:[~2019-12-30 3:39 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2019-12-28 11:48 [PATCH v3] dmaengine: hisilicon: Add Kunpeng DMA engine support Zhou Wang
2019-12-28 16:54 ` kbuild test robot
2019-12-28 16:54 ` kbuild test robot
2019-12-30 3:39 ` Zhou Wang [this message]
2019-12-30 3:39 ` Zhou Wang
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=5E097171.1090608@hisilicon.com \
--to=wangzhou1@hisilicon.com \
--cc=dan.j.williams@intel.com \
--cc=dmaengine@vger.kernel.org \
--cc=kbuild-all@lists.01.org \
--cc=linuxarm@huawei.com \
--cc=lkp@intel.com \
--cc=qiuzhenfa@hisilicon.com \
--cc=vkoul@kernel.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.