[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Message-ID: <20240425162609.63388-1-kuniyu@amazon.com>
Date: Thu, 25 Apr 2024 09:26:09 -0700
From: Kuniyuki Iwashima <kuniyu@...zon.com>
To: <dan.carpenter@...aro.org>
CC: <davem@...emloft.net>, <dsahern@...nel.org>, <edumazet@...gle.com>,
<kuba@...nel.org>, <kuniyu@...zon.com>, <lkp@...el.com>,
<netdev@...r.kernel.org>, <oe-kbuild-all@...ts.linux.dev>,
<oe-kbuild@...ts.linux.dev>, <pabeni@...hat.com>
Subject: Re: [PATCH v1 net-next 5/6] arp: Get dev after calling arp_req_(delete|set|get)().
From: Dan Carpenter <dan.carpenter@...aro.org>
Date: Thu, 25 Apr 2024 08:32:22 +0300
> Hi Kuniyuki,
>
> kernel test robot noticed the following build warnings:
>
> url: https://github.com/intel-lab-lkp/linux/commits/Kuniyuki-Iwashima/arp-Move-ATF_COM-setting-in-arp_req_set/20240423-035458
> base: net-next/main
> patch link: https://lore.kernel.org/r/20240422194755.4221-6-kuniyu%40amazon.com
> patch subject: [PATCH v1 net-next 5/6] arp: Get dev after calling arp_req_(delete|set|get)().
> config: i386-randconfig-141-20240424 (https://download.01.org/0day-ci/archive/20240425/202404251215.QHgck00A-lkp@intel.com/config)
> compiler: gcc-10 (Ubuntu 10.5.0-1ubuntu1) 10.5.0
>
> 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@...el.com>
> | Reported-by: Dan Carpenter <dan.carpenter@...aro.org>
> | Closes: https://lore.kernel.org/r/202404251215.QHgck00A-lkp@intel.com/
>
> smatch warnings:
> net/ipv4/arp.c:1242 arp_req_delete() warn: passing zero to 'PTR_ERR'
>
> vim +/PTR_ERR +1242 net/ipv4/arp.c
>
> 8f4429edb1b716 Kuniyuki Iwashima 2024-04-22 1235 static int arp_req_delete(struct net *net, struct arpreq *r)
> 46479b432989d6 Pavel Emelyanov 2007-12-05 1236 {
> 8f4429edb1b716 Kuniyuki Iwashima 2024-04-22 1237 struct net_device *dev;
> 46479b432989d6 Pavel Emelyanov 2007-12-05 1238 __be32 ip;
> 46479b432989d6 Pavel Emelyanov 2007-12-05 1239
> 8f4429edb1b716 Kuniyuki Iwashima 2024-04-22 1240 dev = arp_req_dev(net, r);
> 8f4429edb1b716 Kuniyuki Iwashima 2024-04-22 1241 if (!IS_ERR(dev))
>
> The ! is not supposed to be there.
Oh, I don't know why I added it :S
Will fix it, thank you!
>
> 8f4429edb1b716 Kuniyuki Iwashima 2024-04-22 @1242 return PTR_ERR(dev);
> 8f4429edb1b716 Kuniyuki Iwashima 2024-04-22 1243
> 46479b432989d6 Pavel Emelyanov 2007-12-05 1244 if (r->arp_flags & ATF_PUBL)
> 32e569b7277f13 Pavel Emelyanov 2007-12-16 1245 return arp_req_delete_public(net, r, dev);
> 46479b432989d6 Pavel Emelyanov 2007-12-05 1246
> 46479b432989d6 Pavel Emelyanov 2007-12-05 1247 ip = ((struct sockaddr_in *)&r->arp_pa)->sin_addr.s_addr;
> 8f4429edb1b716 Kuniyuki Iwashima 2024-04-22 1248
> 0c51e12e218f20 Ido Schimmel 2022-02-19 1249 return arp_invalidate(dev, ip, true);
> ^1da177e4c3f41 Linus Torvalds 2005-04-16 1250 }
>
> --
> 0-DAY CI Kernel Test Service
> https://github.com/intel/lkp-tests/wiki
Powered by blists - more mailing lists