diff options
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/net/bnx2x_main.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/drivers/net/bnx2x_main.c b/drivers/net/bnx2x_main.c index ca5090c3341e..2e00da6ab172 100644 --- a/drivers/net/bnx2x_main.c +++ b/drivers/net/bnx2x_main.c | |||
@@ -9427,6 +9427,7 @@ static inline u32 bnx2x_xmit_type(struct bnx2x *bp, struct sk_buff *skb) | |||
9427 | return rc; | 9427 | return rc; |
9428 | } | 9428 | } |
9429 | 9429 | ||
9430 | #if (MAX_SKB_FRAGS >= MAX_FETCH_BD - 3) | ||
9430 | /* check if packet requires linearization (packet is too fragmented) */ | 9431 | /* check if packet requires linearization (packet is too fragmented) */ |
9431 | static int bnx2x_pkt_req_lin(struct bnx2x *bp, struct sk_buff *skb, | 9432 | static int bnx2x_pkt_req_lin(struct bnx2x *bp, struct sk_buff *skb, |
9432 | u32 xmit_type) | 9433 | u32 xmit_type) |
@@ -9504,6 +9505,7 @@ exit_lbl: | |||
9504 | 9505 | ||
9505 | return to_copy; | 9506 | return to_copy; |
9506 | } | 9507 | } |
9508 | #endif | ||
9507 | 9509 | ||
9508 | /* called with netif_tx_lock | 9510 | /* called with netif_tx_lock |
9509 | * bnx2x_tx_int() runs without netif_tx_lock unless it needs to call | 9511 | * bnx2x_tx_int() runs without netif_tx_lock unless it needs to call |
@@ -9544,6 +9546,7 @@ static int bnx2x_start_xmit(struct sk_buff *skb, struct net_device *dev) | |||
9544 | skb->ip_summed, skb->protocol, ipv6_hdr(skb)->nexthdr, | 9546 | skb->ip_summed, skb->protocol, ipv6_hdr(skb)->nexthdr, |
9545 | ip_hdr(skb)->protocol, skb_shinfo(skb)->gso_type, xmit_type); | 9547 | ip_hdr(skb)->protocol, skb_shinfo(skb)->gso_type, xmit_type); |
9546 | 9548 | ||
9549 | #if (MAX_SKB_FRAGS >= MAX_FETCH_BD - 3) | ||
9547 | /* First, check if we need to linearize the skb | 9550 | /* First, check if we need to linearize the skb |
9548 | (due to FW restrictions) */ | 9551 | (due to FW restrictions) */ |
9549 | if (bnx2x_pkt_req_lin(bp, skb, xmit_type)) { | 9552 | if (bnx2x_pkt_req_lin(bp, skb, xmit_type)) { |
@@ -9556,6 +9559,7 @@ static int bnx2x_start_xmit(struct sk_buff *skb, struct net_device *dev) | |||
9556 | return NETDEV_TX_OK; | 9559 | return NETDEV_TX_OK; |
9557 | } | 9560 | } |
9558 | } | 9561 | } |
9562 | #endif | ||
9559 | 9563 | ||
9560 | /* | 9564 | /* |
9561 | Please read carefully. First we use one BD which we mark as start, | 9565 | Please read carefully. First we use one BD which we mark as start, |