From: kernel test robot <lkp@intel.com>
To: Jakub Sitnicki <jakub@cloudflare.com>,
Eric Dumazet <edumazet@google.com>,
Paolo Abeni <pabeni@redhat.com>,
"David S. Miller" <davem@davemloft.net>,
Jakub Kicinski <kuba@kernel.org>,
Neal Cardwell <ncardwell@google.com>,
Kuniyuki Iwashima <kuniyu@google.com>
Cc: oe-kbuild-all@lists.linux.dev, netdev@vger.kernel.org,
kernel-team@cloudflare.com,
Lee Valentine <lvalentine@cloudflare.com>
Subject: Re: [PATCH net-next 1/2] tcp: Consider every port when connecting with IP_LOCAL_PORT_RANGE
Date: Fri, 27 Jun 2025 19:19:59 +0800 [thread overview]
Message-ID: <202506271810.8Sd035zs-lkp@intel.com> (raw)
In-Reply-To: <20250626120247.1255223-1-jakub@cloudflare.com>
Hi Jakub,
kernel test robot noticed the following build warnings:
[auto build test WARNING on net-next/main]
url: https://github.com/intel-lab-lkp/linux/commits/Jakub-Sitnicki/selftests-net-Cover-port-sharing-scenarios-with-IP_LOCAL_PORT_RANGE/20250626-200955
base: net-next/main
patch link: https://lore.kernel.org/r/20250626120247.1255223-1-jakub%40cloudflare.com
patch subject: [PATCH net-next 1/2] tcp: Consider every port when connecting with IP_LOCAL_PORT_RANGE
config: sparc64-randconfig-r123-20250627 (https://download.01.org/0day-ci/archive/20250627/202506271810.8Sd035zs-lkp@intel.com/config)
compiler: sparc64-linux-gcc (GCC) 8.5.0
reproduce: (https://download.01.org/0day-ci/archive/20250627/202506271810.8Sd035zs-lkp@intel.com/reproduce)
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@intel.com>
| Closes: https://lore.kernel.org/oe-kbuild-all/202506271810.8Sd035zs-lkp@intel.com/
sparse warnings: (new ones prefixed by >>)
>> net/ipv4/inet_hashtables.c:1036:26: sparse: sparse: restricted __be32 degrades to integer
vim +1036 net/ipv4/inet_hashtables.c
1007
1008 /* True on source address conflict with another socket. False otherwise.
1009 * Caller must hold hashbucket lock for this tb.
1010 */
1011 static inline bool check_bound(const struct sock *sk,
1012 const struct inet_bind_bucket *tb)
1013 {
1014 const struct inet_bind2_bucket *tb2;
1015 const struct sock *sk2;
1016
1017 hlist_for_each_entry(tb2, &tb->bhash2, bhash_node) {
1018 #if IS_ENABLED(CONFIG_IPV6)
1019 if (sk->sk_family == AF_INET6) {
1020 if (tb2->addr_type == IPV6_ADDR_ANY ||
1021 ipv6_addr_equal(&tb2->v6_rcv_saddr,
1022 &sk->sk_v6_rcv_saddr))
1023 return true;
1024 continue;
1025 }
1026
1027 /* Check for ipv6 non-v6only wildcard sockets */
1028 if (tb2->addr_type == IPV6_ADDR_ANY)
1029 sk_for_each_bound(sk2, &tb2->owners)
1030 if (!sk2->sk_ipv6only)
1031 return true;
1032
1033 if (tb2->addr_type != IPV6_ADDR_MAPPED)
1034 continue;
1035 #endif
> 1036 if (tb2->rcv_saddr == INADDR_ANY ||
1037 tb2->rcv_saddr == sk->sk_rcv_saddr)
1038 return true;
1039 }
1040
1041 return false;
1042 }
1043
--
0-DAY CI Kernel Test Service
https://github.com/intel/lkp-tests/wiki
prev parent reply other threads:[~2025-06-27 11:20 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-06-26 12:02 [PATCH net-next 1/2] tcp: Consider every port when connecting with IP_LOCAL_PORT_RANGE Jakub Sitnicki
2025-06-26 12:02 ` [PATCH net-next 2/2] selftests/net: Cover port sharing scenarios " Jakub Sitnicki
2025-06-26 23:00 ` [PATCH net-next 1/2] tcp: Consider every port when connecting " kernel test robot
2025-06-27 9:58 ` Jakub Sitnicki
2025-06-27 11:19 ` kernel test robot [this message]
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=202506271810.8Sd035zs-lkp@intel.com \
--to=lkp@intel.com \
--cc=davem@davemloft.net \
--cc=edumazet@google.com \
--cc=jakub@cloudflare.com \
--cc=kernel-team@cloudflare.com \
--cc=kuba@kernel.org \
--cc=kuniyu@google.com \
--cc=lvalentine@cloudflare.com \
--cc=ncardwell@google.com \
--cc=netdev@vger.kernel.org \
--cc=oe-kbuild-all@lists.linux.dev \
--cc=pabeni@redhat.com \
/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.