[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <047e4452-c694-4dea-9273-74ebc3a2892c@moroto.mountain>
Date: Thu, 25 Apr 2024 08:32:22 +0300
From: Dan Carpenter <dan.carpenter@...aro.org>
To: oe-kbuild@...ts.linux.dev, Kuniyuki Iwashima <kuniyu@...zon.com>,
"David S. Miller" <davem@...emloft.net>,
David Ahern <dsahern@...nel.org>,
Eric Dumazet <edumazet@...gle.com>,
Jakub Kicinski <kuba@...nel.org>, Paolo Abeni <pabeni@...hat.com>
Cc: lkp@...el.com, oe-kbuild-all@...ts.linux.dev, netdev@...r.kernel.org,
Kuniyuki Iwashima <kuniyu@...zon.com>
Subject: Re: [PATCH v1 net-next 5/6] arp: Get dev after calling
arp_req_(delete|set|get)().
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.
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