Commit 4a758346 authored by Auke Kok's avatar Auke Kok Committed by Jeff Garzik

ixgbe: remove accidentally added #ifdef

Let's not add these #ifdef NETIF_F_TSO's back.
Signed-off-by: default avatarAuke Kok <auke-jan.h.kok@intel.com>
Signed-off-by: default avatarJeff Garzik <jeff@garzik.org>
parent 4bebfaa5
...@@ -220,7 +220,6 @@ static bool ixgbe_clean_tx_irq(struct ixgbe_adapter *adapter, ...@@ -220,7 +220,6 @@ static bool ixgbe_clean_tx_irq(struct ixgbe_adapter *adapter,
tx_ring->stats.bytes += tx_buffer_info->length; tx_ring->stats.bytes += tx_buffer_info->length;
if (cleaned) { if (cleaned) {
struct sk_buff *skb = tx_buffer_info->skb; struct sk_buff *skb = tx_buffer_info->skb;
#ifdef NETIF_F_TSO
unsigned int segs, bytecount; unsigned int segs, bytecount;
segs = skb_shinfo(skb)->gso_segs ?: 1; segs = skb_shinfo(skb)->gso_segs ?: 1;
/* multiply data chunks by size of headers */ /* multiply data chunks by size of headers */
...@@ -228,10 +227,6 @@ static bool ixgbe_clean_tx_irq(struct ixgbe_adapter *adapter, ...@@ -228,10 +227,6 @@ static bool ixgbe_clean_tx_irq(struct ixgbe_adapter *adapter,
skb->len; skb->len;
total_tx_packets += segs; total_tx_packets += segs;
total_tx_bytes += bytecount; total_tx_bytes += bytecount;
#else
total_tx_packets++;
total_tx_bytes += skb->len;
#endif
} }
ixgbe_unmap_and_free_tx_resource(adapter, ixgbe_unmap_and_free_tx_resource(adapter,
tx_buffer_info); tx_buffer_info);
......
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