Re: [PATCH v3 3/4] nvme: move ns id info to struct nvme_ns_head

From: kernel test robot
Date: Wed Dec 06 2023 - 12:39:43 EST


Hi Daniel,

kernel test robot noticed the following build errors:

[auto build test ERROR on v6.7-rc4]
[also build test ERROR on linus/master next-20231206]
[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/Daniel-Wagner/nvme-lookup-ctrl-from-request-instead-from-namespace/20231206-161455
base: v6.7-rc4
patch link: https://lore.kernel.org/r/20231206081244.32733-4-dwagner%40suse.de
patch subject: [PATCH v3 3/4] nvme: move ns id info to struct nvme_ns_head
config: arm64-defconfig (https://download.01.org/0day-ci/archive/20231207/202312070134.P5lZMJCN-lkp@xxxxxxxxx/config)
compiler: aarch64-linux-gcc (GCC) 13.2.0
reproduce (this is a W=1 build): (https://download.01.org/0day-ci/archive/20231207/202312070134.P5lZMJCN-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/202312070134.P5lZMJCN-lkp@xxxxxxxxx/

All errors (new ones prefixed by >>):

drivers/nvme/host/core.c: In function 'nvme_update_ns_info_generic':
>> drivers/nvme/host/core.c:2034:47: error: passing argument 1 of 'nvme_mpath_revalidate_paths' from incompatible pointer type [-Werror=incompatible-pointer-types]
2034 | nvme_mpath_revalidate_paths(ns->head);
| ~~^~~~~~
| |
| struct nvme_ns_head *
In file included from drivers/nvme/host/core.c:25:
drivers/nvme/host/nvme.h:945:64: note: expected 'struct nvme_ns *' but argument is of type 'struct nvme_ns_head *'
945 | static inline void nvme_mpath_revalidate_paths(struct nvme_ns *ns)
| ~~~~~~~~~~~~~~~~^~
drivers/nvme/host/core.c: In function 'nvme_update_ns_info_block':
drivers/nvme/host/core.c:2109:47: error: passing argument 1 of 'nvme_mpath_revalidate_paths' from incompatible pointer type [-Werror=incompatible-pointer-types]
2109 | nvme_mpath_revalidate_paths(ns->head);
| ~~^~~~~~
| |
| struct nvme_ns_head *
drivers/nvme/host/nvme.h:945:64: note: expected 'struct nvme_ns *' but argument is of type 'struct nvme_ns_head *'
945 | static inline void nvme_mpath_revalidate_paths(struct nvme_ns *ns)
| ~~~~~~~~~~~~~~~~^~
cc1: some warnings being treated as errors


vim +/nvme_mpath_revalidate_paths +2034 drivers/nvme/host/core.c

2022
2023 static int nvme_update_ns_info_generic(struct nvme_ns *ns,
2024 struct nvme_ns_info *info)
2025 {
2026 blk_mq_freeze_queue(ns->disk->queue);
2027 nvme_set_queue_limits(ns->ctrl, ns->queue);
2028 set_disk_ro(ns->disk, nvme_ns_is_readonly(ns, info));
2029 blk_mq_unfreeze_queue(ns->disk->queue);
2030
2031 if (nvme_ns_head_multipath(ns->head)) {
2032 blk_mq_freeze_queue(ns->head->disk->queue);
2033 set_disk_ro(ns->head->disk, nvme_ns_is_readonly(ns, info));
> 2034 nvme_mpath_revalidate_paths(ns->head);
2035 blk_stack_limits(&ns->head->disk->queue->limits,
2036 &ns->queue->limits, 0);
2037 ns->head->disk->flags |= GENHD_FL_HIDDEN;
2038 blk_mq_unfreeze_queue(ns->head->disk->queue);
2039 }
2040
2041 /* Hide the block-interface for these devices */
2042 ns->disk->flags |= GENHD_FL_HIDDEN;
2043 set_bit(NVME_NS_READY, &ns->flags);
2044
2045 return 0;
2046 }
2047

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