net: rename vlan_tx_* helpers since "tx" is misleading there

The same macros are used for rx as well. So rename it.

Signed-off-by: Jiri Pirko <jiri@resnulli.us>
Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
Jiri Pirko
2015-01-13 17:13:44 +01:00
کامیت شده توسط David S. Miller
والد d8b9605d26
کامیت df8a39defa
77فایلهای تغییر یافته به همراه195 افزوده شده و 190 حذف شده

مشاهده پرونده

@@ -469,7 +469,7 @@ static int peek_head_len(struct sock *sk)
head = skb_peek(&sk->sk_receive_queue);
if (likely(head)) {
len = head->len;
if (vlan_tx_tag_present(head))
if (skb_vlan_tag_present(head))
len += VLAN_HLEN;
}