Re: [PATCH 04/10] btrfs-progs: Implement find_*_bit_le operations

2018-10-04 Thread Nikolay Borisov
On 4.10.2018 21:08, Omar Sandoval wrote: > On Mon, Oct 01, 2018 at 05:46:15PM +0300, Nikolay Borisov wrote: >> This commit introduces explicit little endian bit operations. The only >> difference with the existing bitops implementation is that bswap(32|64) >> is called when the _le versions

Re: [PATCH 04/10] btrfs-progs: Implement find_*_bit_le operations

2018-10-04 Thread Omar Sandoval
On Mon, Oct 01, 2018 at 05:46:15PM +0300, Nikolay Borisov wrote: > This commit introduces explicit little endian bit operations. The only > difference with the existing bitops implementation is that bswap(32|64) > is called when the _le versions are invoked on a big-endian machine. > This is in

[PATCH 04/10] btrfs-progs: Implement find_*_bit_le operations

2018-10-01 Thread Nikolay Borisov
This commit introduces explicit little endian bit operations. The only difference with the existing bitops implementation is that bswap(32|64) is called when the _le versions are invoked on a big-endian machine. This is in preparation for adding free space tree conversion support. Signed-off-by: