ice: use internal pf id instead of function number
authorMichal Swiatkowski <michal.swiatkowski@linux.intel.com>
Mon, 19 Aug 2024 07:17:42 +0000 (09:17 +0200)
committerTony Nguyen <anthony.l.nguyen@intel.com>
Tue, 20 Aug 2024 20:23:01 +0000 (13:23 -0700)
Use always the same pf id in devlink port number. When doing
pass-through the PF to VM bus info func number can be any value.

Fixes: 2ae0aa4758b0 ("ice: Move devlink port to PF/VF struct")
Reviewed-by: Wojciech Drewek <wojciech.drewek@intel.com>
Suggested-by: Jiri Pirko <jiri@resnulli.us>
Signed-off-by: Michal Swiatkowski <michal.swiatkowski@linux.intel.com>
Signed-off-by: Tony Nguyen <anthony.l.nguyen@intel.com>
drivers/net/ethernet/intel/ice/devlink/devlink_port.c

index 00fed5a61d62a98ace67b62aa3806d7f0356b00d..62ef8e2fb5f1ba378472f3958b56d9c386976545 100644 (file)
@@ -337,7 +337,7 @@ int ice_devlink_create_pf_port(struct ice_pf *pf)
                return -EIO;
 
        attrs.flavour = DEVLINK_PORT_FLAVOUR_PHYSICAL;
-       attrs.phys.port_number = pf->hw.bus.func;
+       attrs.phys.port_number = pf->hw.pf_id;
 
        /* As FW supports only port split options for whole device,
         * set port split options only for first PF.
@@ -455,7 +455,7 @@ int ice_devlink_create_vf_port(struct ice_vf *vf)
                return -EINVAL;
 
        attrs.flavour = DEVLINK_PORT_FLAVOUR_PCI_VF;
-       attrs.pci_vf.pf = pf->hw.bus.func;
+       attrs.pci_vf.pf = pf->hw.pf_id;
        attrs.pci_vf.vf = vf->vf_id;
 
        ice_devlink_set_switch_id(pf, &attrs.switch_id);