[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Message-ID: <20210205165113.GV4247@nvidia.com>
Date: Fri, 5 Feb 2021 12:51:13 -0400
From: Jason Gunthorpe <jgg@...dia.com>
To: kernel test robot <lkp@...el.com>
CC: Avihai Horon <avihaih@...dia.com>, <kbuild-all@...ts.01.org>,
<linux-kernel@...r.kernel.org>,
Leon Romanovsky <leonro@...dia.com>,
Yoshinori Sato <ysato@...rs.sourceforge.jp>,
Rich Felker <dalias@...c.org>, <linux-sh@...r.kernel.org>
Subject: Re: drivers/infiniband/core/uverbs_std_types_device.c:299:29:
sparse: sparse: incorrect type in argument 1 (different address spaces)
On Tue, Feb 02, 2021 at 01:40:33AM +0800, kernel test robot wrote:
> tree: https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git master
> head: 1048ba83fb1c00cd24172e23e8263972f6b5d9ac
> commit: 9f85cbe50aa044a46f0a22fda323fa27b80c82da RDMA/uverbs: Expose the new GID query API to user space
> date: 4 months ago
> config: sh-randconfig-s031-20210201 (attached as .config)
> compiler: sh4-linux-gcc (GCC) 9.3.0
> reproduce:
> wget https://raw.githubusercontent.com/intel/lkp-tests/master/sbin/make.cross -O ~/bin/make.cross
> chmod +x ~/bin/make.cross
> # apt-get install sparse
> # sparse version: v0.6.3-215-g0fb77bb6-dirty
> # https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/commit/?id=9f85cbe50aa044a46f0a22fda323fa27b80c82da
> git remote add linus https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
> git fetch --no-tags linus master
> git checkout 9f85cbe50aa044a46f0a22fda323fa27b80c82da
> # save the attached .config to linux build tree
> COMPILER_INSTALL_PATH=$HOME/0day COMPILER=gcc-9.3.0 make.cross C=1 CF='-fdiagnostic-prefix -D__CHECK_ENDIAN__' ARCH=sh
>
> If you fix the issue, kindly add following tag as appropriate
> Reported-by: kernel test robot <lkp@...el.com>
>
>
> "sparse warnings: (new ones prefixed by >>)"
> >> drivers/infiniband/core/uverbs_std_types_device.c:299:29: sparse: sparse: incorrect type in argument 1 (different address spaces) @@ expected void *addr @@ got void [noderef] __user *__cl_addr @@
> drivers/infiniband/core/uverbs_std_types_device.c:299:29: sparse: expected void *addr
> drivers/infiniband/core/uverbs_std_types_device.c:299:29: sparse: got void [noderef] __user *__cl_addr
> drivers/infiniband/core/uverbs_std_types_device.c:115:15: sparse: sparse: cast truncates bits from constant value (ffff0001 becomes 1)
> drivers/infiniband/core/uverbs_std_types_device.c:195:15: sparse: sparse: cast truncates bits from constant value (ffffff01 becomes 1)
This is a bug in arch/sh/include/asm/page.h:
__kernel_size_t __clear_user(void *addr, __kernel_size_t size);
#define clear_user(addr,n) \
...
__cl_size = __clear_user(__cl_addr, __cl_size); \
__clear_user() needs to take a void __user *addr
Jason
Powered by blists - more mailing lists