be2net: remove unnecessary usage of unlikely()
Signed-off-by: Sathya Perla <sathya.perla@emulex.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
7f64006266
commit
421737bdd5
1 changed files with 2 additions and 2 deletions
|
@ -719,8 +719,8 @@ static netdev_tx_t be_xmit(struct sk_buff *skb,
|
||||||
* 60 bytes long.
|
* 60 bytes long.
|
||||||
* As a workaround disable TX vlan offloading in such cases.
|
* As a workaround disable TX vlan offloading in such cases.
|
||||||
*/
|
*/
|
||||||
if (unlikely(vlan_tx_tag_present(skb) &&
|
if (vlan_tx_tag_present(skb) &&
|
||||||
(skb->ip_summed != CHECKSUM_PARTIAL || skb->len <= 60))) {
|
(skb->ip_summed != CHECKSUM_PARTIAL || skb->len <= 60)) {
|
||||||
skb = skb_share_check(skb, GFP_ATOMIC);
|
skb = skb_share_check(skb, GFP_ATOMIC);
|
||||||
if (unlikely(!skb))
|
if (unlikely(!skb))
|
||||||
goto tx_drop;
|
goto tx_drop;
|
||||||
|
|
Loading…
Reference in a new issue