File diff d0a14f973771 → 1efda0e3054b
vmkdrivers/src_9/drivers/net/e1000e/netdev.c
Show inline comments
...
 
@@ -959,8 +959,11 @@ static bool e1000_clean_tx_irq(struct e1000_adapter *adapter)
 
			tx_desc = E1000_TX_DESC(*tx_ring, i);
 
			buffer_info = &tx_ring->buffer_info[i];
 
			cleaned = (i == eop);
 

	
 
#ifdef __VMKLNX__
 
			if (cleaned && (buffer_info->skb != NULL)) {
 
#else //!__VMKLNX__
 
			if (cleaned) {
 
#endif //__VMKLNX__
 
				struct sk_buff *skb = buffer_info->skb;
 
#ifdef NETIF_F_TSO
 
				unsigned int segs, bytecount;