Re: [PATCH] MPI: Endianness fix

2016-02-27 Thread Herbert Xu
On Wed, Feb 17, 2016 at 02:46:59PM +0100, Michal Marek wrote: > The limbs are integers in the host endianness, so we can't simply > iterate over the individual bytes. The current code happens to work on > little-endian, because the order of the limbs in the MPI array is the > same as the order of t

[PATCH] MPI: Endianness fix

2016-02-17 Thread Michal Marek
The limbs are integers in the host endianness, so we can't simply iterate over the individual bytes. The current code happens to work on little-endian, because the order of the limbs in the MPI array is the same as the order of the bytes in each limb, but it breaks on big-endian. Fixes: 0f74fbf77d