47 lines
1.7 KiB
Diff
47 lines
1.7 KiB
Diff
From 74a9e760c255fdfc577b7d5020b88d91628ce178 Mon Sep 17 00:00:00 2001
|
|
From: Yonglong Liu <liuyonglong@huawei.com>
|
|
Date: Sat, 4 Jan 2020 10:49:27 +0800
|
|
Subject: [PATCH 012/283] net: hns3: modify an unsuitable log in
|
|
hclge_map_ring_to_vector()
|
|
|
|
mainline inclusion
|
|
from mainline-v5.6-rc1
|
|
commit 7ab2b53e4657ee0289878b09f9748a35b0e6010b
|
|
category: cleanup
|
|
bugzilla: https://gitee.com/src-openeuler/kernel/issues/I8EJ0A
|
|
|
|
Reference: https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/commit/?id=7ab2b53e4657ee0289878b09f9748a35b0e6010b
|
|
|
|
--------------------------------
|
|
|
|
When the returned vector_id less than 0, the message should print
|
|
out the vector who is getting vector index fail.
|
|
|
|
So this patch replaces vector_id with vector, and re-format the
|
|
message.
|
|
|
|
Signed-off-by: Yonglong Liu <liuyonglong@huawei.com>
|
|
Signed-off-by: Huazhong Tan <tanhuazhong@huawei.com>
|
|
Signed-off-by: David S. Miller <davem@davemloft.net>
|
|
Signed-off-by: Xiaodong Li <lixiaodong67@huawei.com>
|
|
---
|
|
drivers/net/ethernet/hisilicon/hns3/hns3pf/hclge_main.c | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/drivers/net/ethernet/hisilicon/hns3/hns3pf/hclge_main.c b/drivers/net/ethernet/hisilicon/hns3/hns3pf/hclge_main.c
|
|
index 35a08f8b97ed..7b60829d8bba 100644
|
|
--- a/drivers/net/ethernet/hisilicon/hns3/hns3pf/hclge_main.c
|
|
+++ b/drivers/net/ethernet/hisilicon/hns3/hns3pf/hclge_main.c
|
|
@@ -4791,7 +4791,7 @@ static int hclge_map_ring_to_vector(struct hnae3_handle *handle, int vector,
|
|
vector_id = hclge_get_vector_index(hdev, vector);
|
|
if (vector_id < 0) {
|
|
dev_err(&hdev->pdev->dev,
|
|
- "Get vector index fail. vector_id =%d\n", vector_id);
|
|
+ "failed to get vector index. vector=%d\n", vector);
|
|
return vector_id;
|
|
}
|
|
|
|
--
|
|
2.34.1
|
|
|