commit | 799111020c66c41aef621a3b53ad112543754124 | [log] [tgz] |
---|---|---|
author | Herbert Xu <herbert@gondor.apana.org.au> | Mon Aug 21 21:03:52 2006 +1000 |
committer | Herbert Xu <herbert@gondor.apana.org.au> | Thu Sep 21 11:16:27 2006 +1000 |
tree | da9fc944ada8607cf534a2d0b0774ba8e0549fcc | |
parent | e478bec0ba0a83a48a0f6982934b6de079e7e6b3 [diff] |
[CRYPTO] api: Fixed crypto_tfm context alignment Previously the __aligned__ attribute was added to the crypto_tfm context member to ensure it is alinged correctly on architectures such as arm. Unfortunately kmalloc does not use the same minimum alignment rules as gcc so this is useless. This patch changes it to use kmalloc's minimum alignment. Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>