From: kernel test robot <lkp@intel.com>
To: qiang.zhang@windriver.com, gregkh@linuxfoundation.org
Cc: kbuild-all@lists.01.org, clang-built-linux@googlegroups.com,
stern@rowland.harvard.edu, linux-usb@vger.kernel.org
Subject: Re: [PATCH] USB: add __get_free_pages() in hcd_buffer_alloc function
Date: Sun, 3 Jan 2021 18:52:21 +0800 [thread overview]
Message-ID: <202101031812.9739OkCo-lkp@intel.com> (raw)
In-Reply-To: <20210103081902.2381-1-qiang.zhang@windriver.com>
[-- Attachment #1: Type: text/plain, Size: 4234 bytes --]
Hi,
Thank you for the patch! Perhaps something to improve:
[auto build test WARNING on usb/usb-testing]
[also build test WARNING on v5.11-rc1 next-20201223]
[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/qiang-zhang-windriver-com/USB-add-__get_free_pages-in-hcd_buffer_alloc-function/20210103-162325
base: https://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb.git usb-testing
config: x86_64-randconfig-a006-20210103 (attached as .config)
compiler: clang version 12.0.0 (https://github.com/llvm/llvm-project 7af6a134508cd1c7f75c6e3441ce436f220f30a4)
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 x86_64 cross compiling tool for clang build
# apt-get install binutils-x86-64-linux-gnu
# https://github.com/0day-ci/linux/commit/904936636c0b20b1d9b2be051502c6d80c5fa1ee
git remote add linux-review https://github.com/0day-ci/linux
git fetch --no-tags linux-review qiang-zhang-windriver-com/USB-add-__get_free_pages-in-hcd_buffer_alloc-function/20210103-162325
git checkout 904936636c0b20b1d9b2be051502c6d80c5fa1ee
# save the attached .config to linux build tree
COMPILER_INSTALL_PATH=$HOME/0day COMPILER=clang make.cross ARCH=x86_64
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/usb/core/buffer.c:134:27: warning: pointer/integer type mismatch in conditional expression ('void *' and 'unsigned long') [-Wconditional-type-mismatch]
return size < PAGE_SIZE ? kmalloc(size, mem_flags)
^ ~~~~~~~~~~~~~~~~~~~~~~~~
>> drivers/usb/core/buffer.c:165:19: warning: incompatible pointer to integer conversion passing 'void *' to parameter of type 'unsigned long' [-Wint-conversion]
: free_pages(addr, get_order(size));
^~~~
include/linux/gfp.h:582:38: note: passing argument to parameter 'addr' here
extern void free_pages(unsigned long addr, unsigned int order);
^
2 warnings generated.
vim +134 drivers/usb/core/buffer.c
109
110
111 /* sometimes alloc/free could use kmalloc with GFP_DMA, for
112 * better sharing and to leverage mm/slab.c intelligence.
113 */
114
115 void *hcd_buffer_alloc(
116 struct usb_bus *bus,
117 size_t size,
118 gfp_t mem_flags,
119 dma_addr_t *dma
120 )
121 {
122 struct usb_hcd *hcd = bus_to_hcd(bus);
123 int i;
124
125 if (size == 0)
126 return NULL;
127
128 if (hcd->localmem_pool)
129 return gen_pool_dma_alloc(hcd->localmem_pool, size, dma);
130
131 /* some USB hosts just use PIO */
132 if (!hcd_uses_dma(hcd)) {
133 *dma = ~(dma_addr_t) 0;
> 134 return size < PAGE_SIZE ? kmalloc(size, mem_flags)
135 : __get_free_pages(mem_flags, get_order(size));
136 }
137
138 for (i = 0; i < HCD_BUFFER_POOLS; i++) {
139 if (size <= pool_max[i])
140 return dma_pool_alloc(hcd->pool[i], mem_flags, dma);
141 }
142 return dma_alloc_coherent(hcd->self.sysdev, size, dma, mem_flags);
143 }
144
145 void hcd_buffer_free(
146 struct usb_bus *bus,
147 size_t size,
148 void *addr,
149 dma_addr_t dma
150 )
151 {
152 struct usb_hcd *hcd = bus_to_hcd(bus);
153 int i;
154
155 if (!addr)
156 return;
157
158 if (hcd->localmem_pool) {
159 gen_pool_free(hcd->localmem_pool, (unsigned long)addr, size);
160 return;
161 }
162
163 if (!hcd_uses_dma(hcd)) {
164 return size < PAGE_SIZE ? kfree(addr)
> 165 : free_pages(addr, get_order(size));
---
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: 45088 bytes --]
next prev parent reply other threads:[~2021-01-03 10:54 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2021-01-03 8:19 [PATCH] USB: add __get_free_pages() in hcd_buffer_alloc function qiang.zhang
2021-01-03 10:52 ` kernel test robot [this message]
2021-01-03 10:54 ` kernel test robot
2021-01-03 11:03 ` Greg KH
2021-01-03 12:21 ` 回复: " Zhang, Qiang
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=202101031812.9739OkCo-lkp@intel.com \
--to=lkp@intel.com \
--cc=clang-built-linux@googlegroups.com \
--cc=gregkh@linuxfoundation.org \
--cc=kbuild-all@lists.01.org \
--cc=linux-usb@vger.kernel.org \
--cc=qiang.zhang@windriver.com \
--cc=stern@rowland.harvard.edu \
/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;
as well as URLs for NNTP newsgroup(s).