net: hns3: modify base parameter of kstrtouint in hclge_dbg_dump_tm_map
This patch replaces kstrtouint()'s patameter base with 0 in the hclge_dbg_dump_tm_mac(), which makes it more flexible. Also uses a macro to replace string "dump tm map", since it has been used multiple times. Signed-off-by: Huazhong Tan <tanhuazhong@huawei.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
6f92bfd70a
commit
6125b52d26
|
@ -564,7 +564,7 @@ static void hclge_dbg_dump_tm_map(struct hclge_dev *hdev,
|
|||
int pri_id, ret;
|
||||
u32 i;
|
||||
|
||||
ret = kstrtouint(&cmd_buf[12], 10, &queue_id);
|
||||
ret = kstrtouint(cmd_buf, 0, &queue_id);
|
||||
queue_id = (ret != 0) ? 0 : queue_id;
|
||||
|
||||
cmd = HCLGE_OPC_TM_NQ_TO_QS_LINK;
|
||||
|
@ -1099,6 +1099,7 @@ static void hclge_dbg_dump_mac_tnl_status(struct hclge_dev *hdev)
|
|||
int hclge_dbg_run_cmd(struct hnae3_handle *handle, const char *cmd_buf)
|
||||
{
|
||||
#define DUMP_REG "dump reg"
|
||||
#define DUMP_TM_MAP "dump tm map"
|
||||
|
||||
struct hclge_vport *vport = hclge_get_vport(handle);
|
||||
struct hclge_dev *hdev = vport->back;
|
||||
|
@ -1107,8 +1108,8 @@ int hclge_dbg_run_cmd(struct hnae3_handle *handle, const char *cmd_buf)
|
|||
hclge_dbg_fd_tcam(hdev);
|
||||
} else if (strncmp(cmd_buf, "dump tc", 7) == 0) {
|
||||
hclge_dbg_dump_tc(hdev);
|
||||
} else if (strncmp(cmd_buf, "dump tm map", 11) == 0) {
|
||||
hclge_dbg_dump_tm_map(hdev, cmd_buf);
|
||||
} else if (strncmp(cmd_buf, DUMP_TM_MAP, strlen(DUMP_TM_MAP)) == 0) {
|
||||
hclge_dbg_dump_tm_map(hdev, &cmd_buf[sizeof(DUMP_TM_MAP)]);
|
||||
} else if (strncmp(cmd_buf, "dump tm", 7) == 0) {
|
||||
hclge_dbg_dump_tm(hdev);
|
||||
} else if (strncmp(cmd_buf, "dump qos pause cfg", 18) == 0) {
|
||||
|
|
Loading…
Reference in New Issue