externunsignedint do_csum(constunsignedchar *buff, int len); #define do_csum do_csum
/* Default version is sufficient for 32 bit */ #ifndef CONFIG_32BIT #define _HAVE_ARCH_IPV6_CSUM
__sum16 csum_ipv6_magic(conststruct in6_addr *saddr, conststruct in6_addr *daddr,
__u32 len, __u8 proto, __wsum sum); #endif
/* Define riscv versions of functions before importing asm-generic/checksum.h */ #include <asm-generic/checksum.h>
/** * Quickly compute an IP checksum with the assumption that IPv4 headers will * always be in multiples of 32-bits, and have an ihl of at least 5. * * @ihl: the number of 32 bit segments and must be greater than or equal to 5. * @iph: assumed to be word aligned given that NET_IP_ALIGN is set to 2 on * riscv, defining IP headers to be aligned.
*/ staticinline __sum16 ip_fast_csum(constvoid *iph, unsignedint ihl)
{ unsignedlong csum = 0; int pos = 0;
do {
csum += ((constunsignedint *)iph)[pos]; if (IS_ENABLED(CONFIG_32BIT))
csum += csum < ((constunsignedint *)iph)[pos];
} while (++pos < ihl);
/* * ZBB only saves three instructions on 32-bit and five on 64-bit so not * worth checking if supported without Alternatives.
*/ if (IS_ENABLED(CONFIG_RISCV_ISA_ZBB) && IS_ENABLED(CONFIG_TOOLCHAIN_HAS_ZBB)) { unsignedlong fold_temp;
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.