[ovs-dev] [PATCH] datapath: Add net/ip6_checksum.h to stt.c

2015-09-02 Thread Jason Kölker
`csum_ipv6_magic` is an asm inline on most platforms. However if it is not defined (like on ppc64le) including will fall back to the c implementation by wrapping it in an `#ifndef _HAVE_ARCH_IPV6_CSUM`. Signed-off-by: Jason Kölker --- datapath/linux/compat/stt.c | 1 + 1

Re: [ovs-dev] [PATCH] datapath: Add net/ip6_checksum.h to stt.c

2015-09-02 Thread Jesse Gross
On Wed, Sep 2, 2015 at 3:40 PM, Jason Kölker wrote: > `csum_ipv6_magic` is an asm inline on most platforms. However if it is > not defined (like on ppc64le) including will fall > back to the c implementation by wrapping it in an > `#ifndef _HAVE_ARCH_IPV6_CSUM`. > >