提交 996695de 编写于 作者: A Auke Kok 提交者: Jeff Garzik

e1000: simplify skb_put call.

Simplify two calls to skb_put by removing one call to it.
Signed-off-by: NAuke Kok <auke-jan.h.kok@intel.com>
上级 2bc35c10
......@@ -3842,12 +3842,11 @@ e1000_clean_rx_irq(struct e1000_adapter *adapter,
/* save the skb in buffer_info as good */
buffer_info->skb = skb;
skb = new_skb;
skb_put(skb, length);
}
} else
skb_put(skb, length);
/* else just continue with the old one */
}
/* end copybreak code */
skb_put(skb, length);
/* Receive Checksum Offload */
e1000_rx_checksum(adapter,
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册