[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Message-ID: <Zry2WL9JFtz4Q-N1@nanopsycho.orion>
Date: Wed, 14 Aug 2024 15:51:20 +0200
From: Jiri Pirko <jiri@...nulli.us>
To: Michal Swiatkowski <michal.swiatkowski@...ux.intel.com>
Cc: intel-wired-lan@...ts.osuosl.org, netdev@...r.kernel.org,
wojciech.drewek@...el.com
Subject: Re: [iwl-next v1] ice: use internal pf id instead of function number
Tue, Aug 13, 2024 at 09:16:10AM CEST, michal.swiatkowski@...ux.intel.com wrote:
>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.
>From the patch subject I'm not sure which tree you target, but since
this is a bugfix of something not recent, you should target -net.
Also, please provide "Fixes" tag blaming the commit(s) that introduced
the issue.
>
>Reviewed-by: Wojciech Drewek <wojciech.drewek@...el.com>
>Suggested-by: Jiri Pirko <jiri@...nulli.us>
>Signed-off-by: Michal Swiatkowski <michal.swiatkowski@...ux.intel.com>
>---
> drivers/net/ethernet/intel/ice/devlink/devlink_port.c | 4 ++--
> 1 file changed, 2 insertions(+), 2 deletions(-)
>
>diff --git a/drivers/net/ethernet/intel/ice/devlink/devlink_port.c b/drivers/net/ethernet/intel/ice/devlink/devlink_port.c
>index 4abdc40d345e..1fe441bfa0ca 100644
>--- a/drivers/net/ethernet/intel/ice/devlink/devlink_port.c
>+++ b/drivers/net/ethernet/intel/ice/devlink/devlink_port.c
>@@ -340,7 +340,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.
>@@ -458,7 +458,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);
>--
>2.42.0
>
Powered by blists - more mailing lists