···1639 * if skb->ip_summed is CHECKSUM_UNNECESSARY which indicates that the1640 * hardware has already verified the correctness of the checksum.1641 */1642-static inline unsigned int skb_checksum_complete(struct sk_buff *skb)1643{1644 return skb_csum_unnecessary(skb) ?1645 0 : __skb_checksum_complete(skb);
···1639 * if skb->ip_summed is CHECKSUM_UNNECESSARY which indicates that the1640 * hardware has already verified the correctness of the checksum.1641 */1642+static inline __sum16 skb_checksum_complete(struct sk_buff *skb)1643{1644 return skb_csum_unnecessary(skb) ?1645 0 : __skb_checksum_complete(skb);