Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
crypto: padlock-sha - Fix stack alignment
The PadLock hardware requires the output buffer for SHA to be 128-bit aligned. We currentply place the buffer on the stack, and ask gcc to align it to 128 bits. That doesn't work on i386 because the kernel stack is only aligned to 32 bits. This patch changes the code to align the buffer by hand so that the hardware doesn't fault on unaligned buffers. Reported-by: Séguier Régis <[email protected]> Tested-by: Séguier Régis <[email protected]> Signed-off-by: Herbert Xu <[email protected]>
- Loading branch information