forked from Minki/linux
igb: misc cleanup to combine one if statement
This patch combines a pair of if statements into one. Signed-off-by: Alexander Duyck <alexander.h.duyck@intel.com> Signed-off-by: Jeff Kirsher <jeffrey.t.kirsher@intel.com> CC: Ben Hutchings <bhutchings@solarflare.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
56fbbb4e61
commit
bc1cbd3493
@ -3133,9 +3133,9 @@ static int igb_xmit_frame_ring_adv(struct sk_buff *skb,
|
||||
|
||||
if (tso)
|
||||
tx_flags |= IGB_TX_FLAGS_TSO;
|
||||
else if (igb_tx_csum_adv(adapter, tx_ring, skb, tx_flags))
|
||||
if (skb->ip_summed == CHECKSUM_PARTIAL)
|
||||
tx_flags |= IGB_TX_FLAGS_CSUM;
|
||||
else if (igb_tx_csum_adv(adapter, tx_ring, skb, tx_flags) &&
|
||||
(skb->ip_summed == CHECKSUM_PARTIAL))
|
||||
tx_flags |= IGB_TX_FLAGS_CSUM;
|
||||
|
||||
igb_tx_queue_adv(adapter, tx_ring, tx_flags,
|
||||
igb_tx_map_adv(adapter, tx_ring, skb, first),
|
||||
|
Loading…
Reference in New Issue
Block a user