In case nvmf_add_ctrl() is called to add a well known discovery
controller we also need to verify if we should ignore it (see --context
command line argument of nvme-cli). Though we have to be careful not to
overmatch on the lookup.
That means the host_traddr and host_iface might be different for the
discovery controller than the normal controllers. For example this can
happen when the discovery controller is reached via different interface
than the data controllers.
Thus only consider the transport type, target address and trsvcid only
when looking up well known discovery controllers.
Signed-off-by: Daniel Wagner <dwagner@suse.de>
nvme_for_each_subsystem(h, s) {
fc = __nvme_lookup_ctrl(s, nvme_ctrl_get_transport(c),
nvme_ctrl_get_traddr(c),
- nvme_ctrl_get_host_traddr(c),
- nvme_ctrl_get_host_iface(c),
+ NULL,
+ NULL,
nvme_ctrl_get_trsvcid(c),
NULL);