X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=lib%2Fbyte-order.h;h=f9be78be12268e9318b90ad9adf04640ec0e3e19;hb=015ac88281952a1b43ad46e9e6300db1c6e3647b;hp=d2bc8db72c3f4e148e9f426d91d883eb6c8fa277;hpb=dbba996be2f0d96f4d2999d51c4ef1d16809bad9;p=sliver-openvswitch.git diff --git a/lib/byte-order.h b/lib/byte-order.h index d2bc8db72..f9be78be1 100644 --- a/lib/byte-order.h +++ b/lib/byte-order.h @@ -1,5 +1,5 @@ /* - * Copyright (c) 2008, 2010, 2011 Nicira Networks. + * Copyright (c) 2008, 2010, 2011 Nicira, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -21,6 +21,7 @@ #include #include "openvswitch/types.h" +#ifndef __CHECKER__ static inline ovs_be64 htonll(uint64_t n) { @@ -32,14 +33,31 @@ ntohll(ovs_be64 n) { return htonl(1) == 1 ? n : ((uint64_t) ntohl(n) << 32) | ntohl(n >> 32); } +#else +/* Making sparse happy with these functions also makes them unreadable, so + * don't bother to show it their implementations. */ +ovs_be64 htonll(uint64_t); +uint64_t ntohll(ovs_be64); +#endif + +#if defined(WORDS_BIGENDIAN) +static inline uint32_t +uint32_byteswap(uint32_t crc) { + return (((crc & 0x000000ff) << 24) | + ((crc & 0x0000ff00) << 8) | + ((crc & 0x00ff0000) >> 8) | + ((crc & 0xff000000) >> 24)); +} +#endif /* These macros may substitute for htons(), htonl(), and htonll() in contexts * where function calls are not allowed, such as case labels. They should not * be used elsewhere because all of them evaluate their argument many times. */ -#ifdef WORDS_BIGENDIAN -#define CONSTANT_HTONS(VALUE) ((ovs_be16) (VALUE)) -#define CONSTANT_HTONL(VALUE) ((ovs_be32) (VALUE)) -#define CONSTANT_HTONLL(VALUE) ((ovs_be64) (VALUE)) +#if defined(WORDS_BIGENDIAN) || __CHECKER__ +#define CONSTANT_HTONS(VALUE) ((OVS_FORCE ovs_be16) ((VALUE) & 0xffff)) +#define CONSTANT_HTONL(VALUE) ((OVS_FORCE ovs_be32) ((VALUE) & 0xffffffff)) +#define CONSTANT_HTONLL(VALUE) \ + ((OVS_FORCE ovs_be64) ((VALUE) & UINT64_C(0xffffffffffffffff))) #else #define CONSTANT_HTONS(VALUE) \ (((((ovs_be16) (VALUE)) & 0xff00) >> 8) | \