Commit 6ad595bc authored by Huazhong Tan's avatar Huazhong Tan Committed by David S. Miller

net: hns3: rename trace event hns3_over_8bd

Since the maximun BD number may not be 8 now, so rename
hns3_over_8bd() to hns3_over_max_bd().
Signed-off-by: default avatarHuazhong Tan <tanhuazhong@huawei.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent fd665b3d
...@@ -1283,7 +1283,7 @@ static int hns3_nic_maybe_stop_tx(struct hns3_enet_ring *ring, ...@@ -1283,7 +1283,7 @@ static int hns3_nic_maybe_stop_tx(struct hns3_enet_ring *ring,
if (bd_num <= HNS3_MAX_TSO_BD_NUM && skb_is_gso(skb) && if (bd_num <= HNS3_MAX_TSO_BD_NUM && skb_is_gso(skb) &&
!hns3_skb_need_linearized(skb, bd_size, bd_num, !hns3_skb_need_linearized(skb, bd_size, bd_num,
max_non_tso_bd_num)) { max_non_tso_bd_num)) {
trace_hns3_over_8bd(skb); trace_hns3_over_max_bd(skb);
goto out; goto out;
} }
...@@ -1294,7 +1294,7 @@ static int hns3_nic_maybe_stop_tx(struct hns3_enet_ring *ring, ...@@ -1294,7 +1294,7 @@ static int hns3_nic_maybe_stop_tx(struct hns3_enet_ring *ring,
if ((skb_is_gso(skb) && bd_num > HNS3_MAX_TSO_BD_NUM) || if ((skb_is_gso(skb) && bd_num > HNS3_MAX_TSO_BD_NUM) ||
(!skb_is_gso(skb) && (!skb_is_gso(skb) &&
bd_num > max_non_tso_bd_num)) { bd_num > max_non_tso_bd_num)) {
trace_hns3_over_8bd(skb); trace_hns3_over_max_bd(skb);
return -ENOMEM; return -ENOMEM;
} }
......
...@@ -53,7 +53,7 @@ DECLARE_EVENT_CLASS(hns3_skb_template, ...@@ -53,7 +53,7 @@ DECLARE_EVENT_CLASS(hns3_skb_template,
) )
); );
DEFINE_EVENT(hns3_skb_template, hns3_over_8bd, DEFINE_EVENT(hns3_skb_template, hns3_over_max_bd,
TP_PROTO(struct sk_buff *skb), TP_PROTO(struct sk_buff *skb),
TP_ARGS(skb)); TP_ARGS(skb));
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment