]> git.proxmox.com Git - mirror_ubuntu-kernels.git/commitdiff
ice: Introduce and use ice_vsi_type_str
authorAnirudh Venkataramanan <anirudh.venkataramanan@intel.com>
Wed, 6 Nov 2019 10:05:39 +0000 (02:05 -0800)
committerJeff Kirsher <jeffrey.t.kirsher@intel.com>
Fri, 8 Nov 2019 20:03:12 +0000 (12:03 -0800)
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>
drivers/net/ethernet/intel/ice/ice_lib.c
drivers/net/ethernet/intel/ice/ice_lib.h
drivers/net/ethernet/intel/ice/ice_main.c

index ebcf81edcb19a6c5c63506f922d20103a2b63989..d71f7ce0a265dadb5655a59c3bc62691da97f4d1 100644 (file)
@@ -6,6 +6,24 @@
 #include "ice_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
  * @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;
                break;
        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;
        default:
                dev_warn(&pf->pdev->dev, "Unknown VSI type %d\n", vsi->type);
index 2c5c01b7a582ac2b2e70ce5269231a010c8f2f7e..e86aa60c02543c7825512c0ea032f698f01c11b3 100644 (file)
@@ -6,6 +6,8 @@
 
 #include "ice.h"
 
+const char *ice_vsi_type_str(enum ice_vsi_type type);
+
 int
 ice_add_mac_to_list(struct ice_vsi *vsi, struct list_head *add_list,
                    const u8 *macaddr);
index 4f4ebb4995591fbba5a057b558ce7362dcb38ea4..5681e3be81f2d010f43cf0c66ac05b3868df5254 100644 (file)
@@ -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);
                if (err) {
                        dev_err(&pf->pdev->dev,
-                               "rebuild VSI failed, err %d, VSI index %d, type %d\n",
-                               err, vsi->idx, type);
+                               "rebuild VSI failed, err %d, VSI index %d, type %s\n",
+                               err, vsi->idx, ice_vsi_type_str(type));
                        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);
                if (status) {
                        dev_err(&pf->pdev->dev,
-                               "replay VSI failed, status %d, VSI index %d, type %d\n",
-                               status, vsi->idx, type);
+                               "replay VSI failed, status %d, VSI index %d, type %s\n",
+                               status, vsi->idx, ice_vsi_type_str(type));
                        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);
                if (err) {
                        dev_err(&pf->pdev->dev,
-                               "enable VSI failed, err %d, VSI index %d, type %d\n",
-                               err, vsi->idx, type);
+                               "enable VSI failed, err %d, VSI index %d, type %s\n",
+                               err, vsi->idx, ice_vsi_type_str(type));
                        return err;
                }
 
-               dev_info(&pf->pdev->dev, "VSI rebuilt. VSI index %d, type %d\n",
-                        vsi->idx, type);
+               dev_info(&pf->pdev->dev, "VSI rebuilt. VSI index %d, type %s\n",
+                        vsi->idx, ice_vsi_type_str(type));
        }
 
        return 0;