X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=lib%2Fbyte-order.h;h=e5ea8db5df9279614984ca8c00f569c3d524d8c3;hb=698ffe3623f1b630ae;hp=993137fb71f6a8d1605db75738bd5a0b69a21d9e;hpb=b2fda3effc787f265b5ad5dfa967ac00627bd075;p=sliver-openvswitch.git diff --git a/lib/byte-order.h b/lib/byte-order.h index 993137fb7..e5ea8db5d 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, 2013 Nicira, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -22,6 +22,7 @@ #include "openvswitch/types.h" #ifndef __CHECKER__ +#ifndef _WIN32 static inline ovs_be64 htonll(uint64_t n) { @@ -33,6 +34,7 @@ ntohll(ovs_be64 n) { return htonl(1) == 1 ? n : ((uint64_t) ntohl(n) << 32) | ntohl(n >> 32); } +#endif /* _WIN32 */ #else /* Making sparse happy with these functions also makes them unreadable, so * don't bother to show it their implementations. */ @@ -40,6 +42,14 @@ ovs_be64 htonll(uint64_t); uint64_t ntohll(ovs_be64); #endif +static inline uint32_t +uint32_byteswap(uint32_t crc) { + return (((crc & 0x000000ff) << 24) | + ((crc & 0x0000ff00) << 8) | + ((crc & 0x00ff0000) >> 8) | + ((crc & 0xff000000) >> 24)); +} + /* 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. */