net: checksum: Add IP header checksum calculation
commitd97f11590a0f60cd911ace8bb68180b5a09a068d
authorGuishan Qin <guishan.qin@windriver.com>
Fri, 11 Dec 2020 09:35:11 +0000 (11 17:35 +0800)
committerJason Wang <jasowang@redhat.com>
Mon, 25 Jan 2021 09:04:56 +0000 (25 17:04 +0800)
treed0a26af268b2758793c5ec8eec0050771a9f591c
parent0dcf0c0aeefd2bc1023c9fe7ab0f1b6bc993c360
net: checksum: Add IP header checksum calculation

At present net_checksum_calculate() only calculates TCP/UDP checksum
in an IP packet, but assumes the IP header checksum to be provided
by the software, e.g.: Linux kernel always calculates the IP header
checksum. However this might not always be the case, e.g.: for an IP
checksum offload enabled stack like VxWorks, the IP header checksum
can be zero.

This adds the checksum calculation of the IP header.

Signed-off-by: Guishan Qin <guishan.qin@windriver.com>
Signed-off-by: Yabing Liu <yabing.liu@windriver.com>
Signed-off-by: Bin Meng <bin.meng@windriver.com>
Reviewed-by: Cédric Le Goater <clg@kaod.org>
Signed-off-by: Jason Wang <jasowang@redhat.com>
net/checksum.c