net/bnxt: fix Rx rings in RSS redirection table
[dpdk.git] / drivers / net / hns3 / hns3_mbx.c
index 305007a..d2a5db8 100644 (file)
@@ -2,22 +2,8 @@
  * Copyright(c) 2018-2019 Hisilicon Limited.
  */
 
-#include <errno.h>
-#include <stdbool.h>
-#include <stdint.h>
-#include <stdio.h>
-#include <string.h>
-#include <inttypes.h>
-#include <unistd.h>
-#include <rte_byteorder.h>
-#include <rte_common.h>
-#include <rte_cycles.h>
-#include <rte_dev.h>
 #include <rte_ethdev_driver.h>
 #include <rte_io.h>
-#include <rte_spinlock.h>
-#include <rte_pci.h>
-#include <rte_bus_pci.h>
 
 #include "hns3_ethdev.h"
 #include "hns3_regs.h"
@@ -88,7 +74,7 @@ hns3_get_mbx_resp(struct hns3_hw *hw, uint16_t code0, uint16_t code1,
        uint64_t end;
 
        if (resp_len > HNS3_MBX_MAX_RESP_DATA_SIZE) {
-               hns3_err(hw, "VF mbx response len(=%d) exceeds maximum(=%d)",
+               hns3_err(hw, "VF mbx response len(=%u) exceeds maximum(=%d)",
                         resp_len, HNS3_MBX_MAX_RESP_DATA_SIZE);
                return -EINVAL;
        }
@@ -127,7 +113,7 @@ hns3_get_mbx_resp(struct hns3_hw *hw, uint16_t code0, uint16_t code1,
        if (now >= end) {
                hw->mbx_resp.lost++;
                hns3_err(hw,
-                        "VF could not get mbx(%d,%d) head(%d) tail(%d) lost(%d) from PF in_irq:%d",
+                        "VF could not get mbx(%u,%u) head(%u) tail(%u) lost(%u) from PF in_irq:%d",
                         code0, code1, hw->mbx_resp.head, hw->mbx_resp.tail,
                         hw->mbx_resp.lost, in_irq);
                return -ETIME;
@@ -160,7 +146,7 @@ hns3_send_mbx_msg(struct hns3_hw *hw, uint16_t code, uint16_t subcode,
        /* first two bytes are reserved for code & subcode */
        if (msg_len > (HNS3_MBX_MAX_MSG_SIZE - HNS3_CMD_CODE_OFFSET)) {
                hns3_err(hw,
-                        "VF send mbx msg fail, msg len %d exceeds max payload len %d",
+                        "VF send mbx msg fail, msg len %u exceeds max payload len %d",
                         msg_len, HNS3_MBX_MAX_MSG_SIZE - HNS3_CMD_CODE_OFFSET);
                return -EINVAL;
        }
@@ -251,7 +237,7 @@ hns3_mbx_handler(struct hns3_hw *hw)
                        hns3_schedule_reset(HNS3_DEV_HW_TO_ADAPTER(hw));
                        break;
                default:
-                       hns3_err(hw, "Fetched unsupported(%d) message from arq",
+                       hns3_err(hw, "Fetched unsupported(%u) message from arq",
                                 opcode);
                        break;
                }
@@ -280,13 +266,13 @@ hns3_update_resp_position(struct hns3_hw *hw, uint32_t resp_msg)
                if (resp->lost)
                        resp->lost--;
                hns3_warn(hw, "Received a mismatched response req_msg(%x) "
-                         "resp_msg(%x) head(%d) tail(%d) lost(%d)",
+                         "resp_msg(%x) head(%u) tail(%u) lost(%u)",
                          resp->req_msg_data, resp_msg, resp->head, tail,
                          resp->lost);
        } else if (tail + resp->lost > resp->head) {
                resp->lost--;
                hns3_warn(hw, "Received a new response again resp_msg(%x) "
-                         "head(%d) tail(%d) lost(%d)", resp_msg,
+                         "head(%u) tail(%u) lost(%u)", resp_msg,
                          resp->head, tail, resp->lost);
        }
        rte_io_wmb();
@@ -391,7 +377,7 @@ hns3_dev_handle_mbx_msg(struct hns3_hw *hw)
                flag = rte_le_to_cpu_16(crq->desc[crq->next_to_use].flag);
                if (unlikely(!hns3_get_bit(flag, HNS3_CMDQ_RX_OUTVLD_B))) {
                        hns3_warn(hw,
-                                 "dropped invalid mailbox message, code = %d",
+                                 "dropped invalid mailbox message, code = %u",
                                  opcode);
 
                        /* dropping/not processing this invalid message */
@@ -442,7 +428,7 @@ hns3_dev_handle_mbx_msg(struct hns3_hw *hw)
                        break;
                default:
                        hns3_err(hw,
-                                "VF received unsupported(%d) mbx msg from PF",
+                                "VF received unsupported(%u) mbx msg from PF",
                                 req->msg[0]);
                        break;
                }