Hi ycaibb, Thank you for the patch! Perhaps something to improve: [auto build test WARNING on net-next/master] [also build test WARNING on net/master linus/master v5.16 next-20220121] [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/ycaibb/ipv4-fix-lock-leaks/20220121-111241 base: https://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next.git 8aaaf2f3af2ae212428f4db1af34214225f5cec3 config: powerpc-warp_defconfig (https://download.01.org/0day-ci/archive/20220121/202201211710.SKAxSkq3-lkp(a)intel.com/config) compiler: powerpc-linux-gcc (GCC) 11.2.0 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 # https://github.com/0day-ci/linux/commit/604258c8f5a9792828f54e55769ca1673c4a34ee git remote add linux-review https://github.com/0day-ci/linux git fetch --no-tags linux-review ycaibb/ipv4-fix-lock-leaks/20220121-111241 git checkout 604258c8f5a9792828f54e55769ca1673c4a34ee # save the config file to linux build tree mkdir build_dir COMPILER_INSTALL_PATH=$HOME/0day COMPILER=gcc-11.2.0 make.cross O=build_dir ARCH=powerpc SHELL=/bin/bash net/ipv4/ If you fix the issue, kindly add following tag as appropriate Reported-by: kernel test robot All warnings (new ones prefixed by >>): net/ipv4/tcp_ipv4.c: In function 'listening_get_first': >> net/ipv4/tcp_ipv4.c:2342:25: warning: this 'if' clause does not guard... [-Wmisleading-indentation] 2342 | if (seq_sk_match(seq, sk)) | ^~ net/ipv4/tcp_ipv4.c:2344:33: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the 'if' 2344 | return sk; | ^~~~~~ net/ipv4/tcp_ipv4.c: In function 'established_get_first': net/ipv4/tcp_ipv4.c:2421:25: warning: this 'if' clause does not guard... [-Wmisleading-indentation] 2421 | if (seq_sk_match(seq, sk)) | ^~ net/ipv4/tcp_ipv4.c:2423:33: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the 'if' 2423 | return sk; | ^~~~~~ vim +/if +2342 net/ipv4/tcp_ipv4.c ad2d61376a0517 Martin KaFai Lau 2021-07-01 2321 b72acf4501d7c3 Martin KaFai Lau 2021-07-01 2322 /* Find a non empty bucket (starting from st->bucket) b72acf4501d7c3 Martin KaFai Lau 2021-07-01 2323 * and return the first sk from it. a8b690f98baf9f Tom Herbert 2010-06-07 2324 */ b72acf4501d7c3 Martin KaFai Lau 2021-07-01 2325 static void *listening_get_first(struct seq_file *seq) ^1da177e4c3f41 Linus Torvalds 2005-04-16 2326 { ^1da177e4c3f41 Linus Torvalds 2005-04-16 2327 struct tcp_iter_state *st = seq->private; b08d4d3b6c0460 Yonghong Song 2020-06-23 2328 a8b690f98baf9f Tom Herbert 2010-06-07 2329 st->offset = 0; 05c0b35709c58b Martin KaFai Lau 2021-07-01 2330 for (; st->bucket <= tcp_hashinfo.lhash2_mask; st->bucket++) { 05c0b35709c58b Martin KaFai Lau 2021-07-01 2331 struct inet_listen_hashbucket *ilb2; 05c0b35709c58b Martin KaFai Lau 2021-07-01 2332 struct inet_connection_sock *icsk; b72acf4501d7c3 Martin KaFai Lau 2021-07-01 2333 struct sock *sk; ^1da177e4c3f41 Linus Torvalds 2005-04-16 2334 05c0b35709c58b Martin KaFai Lau 2021-07-01 2335 ilb2 = &tcp_hashinfo.lhash2[st->bucket]; 05c0b35709c58b Martin KaFai Lau 2021-07-01 2336 if (hlist_empty(&ilb2->head)) b72acf4501d7c3 Martin KaFai Lau 2021-07-01 2337 continue; b72acf4501d7c3 Martin KaFai Lau 2021-07-01 2338 05c0b35709c58b Martin KaFai Lau 2021-07-01 2339 spin_lock(&ilb2->lock); 05c0b35709c58b Martin KaFai Lau 2021-07-01 2340 inet_lhash2_for_each_icsk(icsk, &ilb2->head) { 05c0b35709c58b Martin KaFai Lau 2021-07-01 2341 sk = (struct sock *)icsk; b72acf4501d7c3 Martin KaFai Lau 2021-07-01 @2342 if (seq_sk_match(seq, sk)) 604258c8f5a979 Ryan Cai 2022-01-21 2343 spin_unlock(&ilb2->lock); b72acf4501d7c3 Martin KaFai Lau 2021-07-01 2344 return sk; ^1da177e4c3f41 Linus Torvalds 2005-04-16 2345 } 05c0b35709c58b Martin KaFai Lau 2021-07-01 2346 spin_unlock(&ilb2->lock); b72acf4501d7c3 Martin KaFai Lau 2021-07-01 2347 } b72acf4501d7c3 Martin KaFai Lau 2021-07-01 2348 b72acf4501d7c3 Martin KaFai Lau 2021-07-01 2349 return NULL; ^1da177e4c3f41 Linus Torvalds 2005-04-16 2350 } b72acf4501d7c3 Martin KaFai Lau 2021-07-01 2351 --- 0-DAY CI Kernel Test Service, Intel Corporation https://lists.01.org/hyperkitty/list/kbuild-all(a)lists.01.org