ice: Introduce and use ice_vsi_type_str
ice_vsi_type_str converts an ice_vsi_type enum value to its string equivalent. This is expected to help easily identify VSI types from module print statements. Signed-off-by: Anirudh Venkataramanan <anirudh.venkataramanan@intel.com> Tested-by: Andrew Bowers <andrewx.bowers@intel.com> Signed-off-by: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
This commit is contained in:
parent
87a2e49889
commit
964674f1dd
@ -6,6 +6,24 @@
|
|||||||
#include "ice_lib.h"
|
#include "ice_lib.h"
|
||||||
#include "ice_dcb_lib.h"
|
#include "ice_dcb_lib.h"
|
||||||
|
|
||||||
|
/**
|
||||||
|
* ice_vsi_type_str - maps VSI type enum to string equivalents
|
||||||
|
* @type: VSI type enum
|
||||||
|
*/
|
||||||
|
const char *ice_vsi_type_str(enum ice_vsi_type type)
|
||||||
|
{
|
||||||
|
switch (type) {
|
||||||
|
case ICE_VSI_PF:
|
||||||
|
return "ICE_VSI_PF";
|
||||||
|
case ICE_VSI_VF:
|
||||||
|
return "ICE_VSI_VF";
|
||||||
|
case ICE_VSI_LB:
|
||||||
|
return "ICE_VSI_LB";
|
||||||
|
default:
|
||||||
|
return "unknown";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* ice_vsi_ctrl_rx_rings - Start or stop a VSI's Rx rings
|
* ice_vsi_ctrl_rx_rings - Start or stop a VSI's Rx rings
|
||||||
* @vsi: the VSI being configured
|
* @vsi: the VSI being configured
|
||||||
@ -700,7 +718,8 @@ static void ice_set_rss_vsi_ctx(struct ice_vsi_ctx *ctxt, struct ice_vsi *vsi)
|
|||||||
hash_type = ICE_AQ_VSI_Q_OPT_RSS_TPLZ;
|
hash_type = ICE_AQ_VSI_Q_OPT_RSS_TPLZ;
|
||||||
break;
|
break;
|
||||||
case ICE_VSI_LB:
|
case ICE_VSI_LB:
|
||||||
dev_dbg(&pf->pdev->dev, "Unsupported VSI type %d\n", vsi->type);
|
dev_dbg(&pf->pdev->dev, "Unsupported VSI type %s\n",
|
||||||
|
ice_vsi_type_str(vsi->type));
|
||||||
return;
|
return;
|
||||||
default:
|
default:
|
||||||
dev_warn(&pf->pdev->dev, "Unknown VSI type %d\n", vsi->type);
|
dev_warn(&pf->pdev->dev, "Unknown VSI type %d\n", vsi->type);
|
||||||
|
@ -6,6 +6,8 @@
|
|||||||
|
|
||||||
#include "ice.h"
|
#include "ice.h"
|
||||||
|
|
||||||
|
const char *ice_vsi_type_str(enum ice_vsi_type type);
|
||||||
|
|
||||||
int
|
int
|
||||||
ice_add_mac_to_list(struct ice_vsi *vsi, struct list_head *add_list,
|
ice_add_mac_to_list(struct ice_vsi *vsi, struct list_head *add_list,
|
||||||
const u8 *macaddr);
|
const u8 *macaddr);
|
||||||
|
@ -4487,8 +4487,8 @@ static int ice_vsi_rebuild_by_type(struct ice_pf *pf, enum ice_vsi_type type)
|
|||||||
err = ice_vsi_rebuild(vsi);
|
err = ice_vsi_rebuild(vsi);
|
||||||
if (err) {
|
if (err) {
|
||||||
dev_err(&pf->pdev->dev,
|
dev_err(&pf->pdev->dev,
|
||||||
"rebuild VSI failed, err %d, VSI index %d, type %d\n",
|
"rebuild VSI failed, err %d, VSI index %d, type %s\n",
|
||||||
err, vsi->idx, type);
|
err, vsi->idx, ice_vsi_type_str(type));
|
||||||
return err;
|
return err;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -4496,8 +4496,8 @@ static int ice_vsi_rebuild_by_type(struct ice_pf *pf, enum ice_vsi_type type)
|
|||||||
status = ice_replay_vsi(&pf->hw, vsi->idx);
|
status = ice_replay_vsi(&pf->hw, vsi->idx);
|
||||||
if (status) {
|
if (status) {
|
||||||
dev_err(&pf->pdev->dev,
|
dev_err(&pf->pdev->dev,
|
||||||
"replay VSI failed, status %d, VSI index %d, type %d\n",
|
"replay VSI failed, status %d, VSI index %d, type %s\n",
|
||||||
status, vsi->idx, type);
|
status, vsi->idx, ice_vsi_type_str(type));
|
||||||
return -EIO;
|
return -EIO;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -4510,13 +4510,13 @@ static int ice_vsi_rebuild_by_type(struct ice_pf *pf, enum ice_vsi_type type)
|
|||||||
err = ice_ena_vsi(vsi, false);
|
err = ice_ena_vsi(vsi, false);
|
||||||
if (err) {
|
if (err) {
|
||||||
dev_err(&pf->pdev->dev,
|
dev_err(&pf->pdev->dev,
|
||||||
"enable VSI failed, err %d, VSI index %d, type %d\n",
|
"enable VSI failed, err %d, VSI index %d, type %s\n",
|
||||||
err, vsi->idx, type);
|
err, vsi->idx, ice_vsi_type_str(type));
|
||||||
return err;
|
return err;
|
||||||
}
|
}
|
||||||
|
|
||||||
dev_info(&pf->pdev->dev, "VSI rebuilt. VSI index %d, type %d\n",
|
dev_info(&pf->pdev->dev, "VSI rebuilt. VSI index %d, type %s\n",
|
||||||
vsi->idx, type);
|
vsi->idx, ice_vsi_type_str(type));
|
||||||
}
|
}
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user