Skip to content

Commit

Permalink
net: hns3: rename trace event hns3_over_8bd
Browse files Browse the repository at this point in the history
Since the maximun BD number may not be 8 now, so rename
hns3_over_8bd() to hns3_over_max_bd().

Signed-off-by: Huazhong Tan <tanhuazhong@huawei.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
  • Loading branch information
Huazhong Tan authored and David S. Miller committed Sep 29, 2020
1 parent fd665b3 commit 6ad595b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions drivers/net/ethernet/hisilicon/hns3/hns3_enet.c
Original file line number Diff line number Diff line change
Expand Up @@ -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) &&
!hns3_skb_need_linearized(skb, bd_size, bd_num,
max_non_tso_bd_num)) {
trace_hns3_over_8bd(skb);
trace_hns3_over_max_bd(skb);
goto out;
}

Expand All @@ -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) ||
(!skb_is_gso(skb) &&
bd_num > max_non_tso_bd_num)) {
trace_hns3_over_8bd(skb);
trace_hns3_over_max_bd(skb);
return -ENOMEM;
}

Expand Down
2 changes: 1 addition & 1 deletion drivers/net/ethernet/hisilicon/hns3/hns3_trace.h
Original file line number Diff line number Diff line change
Expand Up @@ -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_ARGS(skb));

Expand Down

0 comments on commit 6ad595b

Please sign in to comment.