OSDN Git Service

net: hns3: modify some unmacthed types print parameter
authorJiaran Zhang <zhangjiaran@huawei.com>
Tue, 9 Feb 2021 02:41:55 +0000 (10:41 +0800)
committerDavid S. Miller <davem@davemloft.net>
Tue, 9 Feb 2021 23:34:07 +0000 (15:34 -0800)
Fix an issue where the formatting symbol of the formatting input and
output function does not match the actual type.

Signed-off-by: Jiaran Zhang <zhangjiaran@huawei.com>
Signed-off-by: Huazhong Tan <tanhuazhong@huawei.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/ethernet/hisilicon/hns3/hns3_debugfs.c
drivers/net/ethernet/hisilicon/hns3/hns3_enet.c
drivers/net/ethernet/hisilicon/hns3/hns3_ethtool.c
drivers/net/ethernet/hisilicon/hns3/hns3pf/hclge_main.c
drivers/net/ethernet/hisilicon/hns3/hns3pf/hclge_mbx.c
drivers/net/ethernet/hisilicon/hns3/hns3vf/hclgevf_main.c

index 36c7813..818ac2c 100644 (file)
@@ -162,7 +162,7 @@ static int hns3_dbg_queue_map(struct hnae3_handle *h)
                        continue;
 
                dev_info(&h->pdev->dev,
-                        "      %4d            %4d            %4d\n",
+                        "      %4d            %4u            %4d\n",
                         i, global_qid, priv->ring[i].tqp_vector->vector_irq);
        }
 
index e544fe3..474b082 100644 (file)
@@ -2329,7 +2329,7 @@ static pci_ers_result_t hns3_error_detected(struct pci_dev *pdev,
        struct hnae3_ae_dev *ae_dev = pci_get_drvdata(pdev);
        pci_ers_result_t ret;
 
-       dev_info(&pdev->dev, "PCI error detected, state(=%d)!!\n", state);
+       dev_info(&pdev->dev, "PCI error detected, state(=%u)!!\n", state);
 
        if (state == pci_channel_io_perm_failure)
                return PCI_ERS_RESULT_DISCONNECT;
index 79e0a9b..adcec4e 100644 (file)
@@ -456,7 +456,7 @@ static void *hns3_update_strings(u8 *data, const struct hns3_stats *stats,
                        data[ETH_GSTRING_LEN - 1] = '\0';
 
                        /* first, prepend the prefix string */
-                       n1 = scnprintf(data, MAX_PREFIX_SIZE, "%s%d_",
+                       n1 = scnprintf(data, MAX_PREFIX_SIZE, "%s%u_",
                                       prefix, i);
                        size_left = (ETH_GSTRING_LEN - 1) - n1;
 
index 81c0fe4..74522a3 100644 (file)
@@ -626,7 +626,7 @@ static u8 *hclge_tqps_get_strings(struct hnae3_handle *handle, u8 *data)
        for (i = 0; i < kinfo->num_tqps; i++) {
                struct hclge_tqp *tqp = container_of(handle->kinfo.tqp[i],
                        struct hclge_tqp, q);
-               snprintf(buff, ETH_GSTRING_LEN, "txq%d_pktnum_rcd",
+               snprintf(buff, ETH_GSTRING_LEN, "txq%u_pktnum_rcd",
                         tqp->index);
                buff = buff + ETH_GSTRING_LEN;
        }
@@ -634,7 +634,7 @@ static u8 *hclge_tqps_get_strings(struct hnae3_handle *handle, u8 *data)
        for (i = 0; i < kinfo->num_tqps; i++) {
                struct hclge_tqp *tqp = container_of(kinfo->tqp[i],
                        struct hclge_tqp, q);
-               snprintf(buff, ETH_GSTRING_LEN, "rxq%d_pktnum_rcd",
+               snprintf(buff, ETH_GSTRING_LEN, "rxq%u_pktnum_rcd",
                         tqp->index);
                buff = buff + ETH_GSTRING_LEN;
        }
@@ -5595,7 +5595,7 @@ static int hclge_fd_check_ext_tuple(struct hclge_dev *hdev,
                if (fs->m_ext.vlan_tci &&
                    be16_to_cpu(fs->h_ext.vlan_tci) >= VLAN_N_VID) {
                        dev_err(&hdev->pdev->dev,
-                               "failed to config vlan_tci, invalid vlan_tci: %u, max is %u.\n",
+                               "failed to config vlan_tci, invalid vlan_tci: %u, max is %d.\n",
                                ntohs(fs->h_ext.vlan_tci), VLAN_N_VID - 1);
                        return -EINVAL;
                }
index 754c09a..52a3737 100644 (file)
@@ -56,7 +56,7 @@ static int hclge_gen_resp_to_vf(struct hclge_vport *vport,
                resp_pf_to_vf->msg.resp_status = resp;
        } else {
                dev_warn(&hdev->pdev->dev,
-                        "failed to send response to VF, response status %d is out-of-bound\n",
+                        "failed to send response to VF, response status %u is out-of-bound\n",
                         resp);
                resp_pf_to_vf->msg.resp_status = EIO;
        }
index cdb1131..ab213ad 100644 (file)
@@ -180,7 +180,7 @@ static u8 *hclgevf_tqps_get_strings(struct hnae3_handle *handle, u8 *data)
        for (i = 0; i < kinfo->num_tqps; i++) {
                struct hclgevf_tqp *tqp = container_of(kinfo->tqp[i],
                                                       struct hclgevf_tqp, q);
-               snprintf(buff, ETH_GSTRING_LEN, "txq%d_pktnum_rcd",
+               snprintf(buff, ETH_GSTRING_LEN, "txq%u_pktnum_rcd",
                         tqp->index);
                buff += ETH_GSTRING_LEN;
        }
@@ -188,7 +188,7 @@ static u8 *hclgevf_tqps_get_strings(struct hnae3_handle *handle, u8 *data)
        for (i = 0; i < kinfo->num_tqps; i++) {
                struct hclgevf_tqp *tqp = container_of(kinfo->tqp[i],
                                                       struct hclgevf_tqp, q);
-               snprintf(buff, ETH_GSTRING_LEN, "rxq%d_pktnum_rcd",
+               snprintf(buff, ETH_GSTRING_LEN, "rxq%u_pktnum_rcd",
                         tqp->index);
                buff += ETH_GSTRING_LEN;
        }