Re: [PATCH v7 4/5] nvme-tcp: Support KeyUpdate

From: kernel test robot

Date: Thu Mar 05 2026 - 05:15:00 EST


Hi,

kernel test robot noticed the following build errors:

[auto build test ERROR on trondmy-nfs/linux-next]
[also build test ERROR on net/main net-next/main linus/master v7.0-rc2 next-20260304]
[cannot apply to linux-nvme/for-next horms-ipvs/master]
[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#_base_tree_information]

url: https://github.com/intel-lab-lkp/linux/commits/alistair23-gmail-com/net-handshake-Store-the-key-serial-number-on-completion/20260304-134148
base: git://git.linux-nfs.org/projects/trondmy/linux-nfs.git linux-next
patch link: https://lore.kernel.org/r/20260304053500.590630-5-alistair.francis%40wdc.com
patch subject: [PATCH v7 4/5] nvme-tcp: Support KeyUpdate
config: sh-allmodconfig (https://download.01.org/0day-ci/archive/20260305/202603051846.RCN7R5uj-lkp@xxxxxxxxx/config)
compiler: sh4-linux-gcc (GCC) 15.2.0
reproduce (this is a W=1 build): (https://download.01.org/0day-ci/archive/20260305/202603051846.RCN7R5uj-lkp@xxxxxxxxx/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@xxxxxxxxx>
| Closes: https://lore.kernel.org/oe-kbuild-all/202603051846.RCN7R5uj-lkp@xxxxxxxxx/

All errors (new ones prefixed by >>):

drivers/nvme/host/tcp.c: In function 'nvme_tcp_try_recv':
>> drivers/nvme/host/tcp.c:1429:31: error: 'const struct proto_ops' has no member named 'read_sock_cmsg'; did you mean 'read_sock'?
1429 | consumed = sock->ops->read_sock_cmsg(sk, &rd_desc, nvme_tcp_recv_skb,
| ^~~~~~~~~~~~~~
| read_sock


vim +1429 drivers/nvme/host/tcp.c

1417
1418 static int nvme_tcp_try_recv(struct nvme_tcp_queue *queue)
1419 {
1420 struct socket *sock = queue->sock;
1421 struct sock *sk = sock->sk;
1422 read_descriptor_t rd_desc;
1423 int consumed;
1424
1425 rd_desc.arg.data = queue;
1426 rd_desc.count = 1;
1427 lock_sock(sk);
1428 queue->nr_cqe = 0;
> 1429 consumed = sock->ops->read_sock_cmsg(sk, &rd_desc, nvme_tcp_recv_skb,
1430 nvme_tcp_recv_cmsg);
1431 release_sock(sk);
1432 return consumed == -EAGAIN ? 0 : consumed;
1433 }
1434

--
0-DAY CI Kernel Test Service
https://github.com/intel/lkp-tests/wiki