Re: [PATCH 07/19] compat: add endianness helpers

2013-10-30 Thread Jeff King
On Sat, Oct 26, 2013 at 09:55:36AM +0200, Thomas Rast wrote: The POSIX standard doesn't currently define a `nothll`/`htonll` typo: ntohll Thanks. function pair to perform network-to-host and host-to-network swaps of 64-bit data. These 64-bit swaps are necessary for the on-disk

Re: [PATCH 07/19] compat: add endianness helpers

2013-10-30 Thread Vicent Martí
On Oct 30, 2013, at 9:25 AM, Jeff King p...@peff.net wrote: On Sat, Oct 26, 2013 at 09:55:36AM +0200, Thomas Rast wrote: The POSIX standard doesn't currently define a `nothll`/`htonll` typo: ntohll Thanks. function pair to perform network-to-host and host-to-network swaps of 64-bit

Re: [PATCH 07/19] compat: add endianness helpers

2013-10-26 Thread Thomas Rast
Jeff King p...@peff.net writes: From: Vicent Marti tan...@gmail.com The POSIX standard doesn't currently define a `nothll`/`htonll` typo: ntohll function pair to perform network-to-host and host-to-network swaps of 64-bit data. These 64-bit swaps are necessary for the on-disk storage of

[PATCH 07/19] compat: add endianness helpers

2013-10-24 Thread Jeff King
From: Vicent Marti tan...@gmail.com The POSIX standard doesn't currently define a `nothll`/`htonll` function pair to perform network-to-host and host-to-network swaps of 64-bit data. These 64-bit swaps are necessary for the on-disk storage of EWAH bitmaps if they are not in native byte order.