aboutsummaryrefslogtreecommitdiffstats
path: root/arch/x86/crypto/twofish_glue.c
diff options
context:
space:
mode:
authorJussi Kivilinna <jussi.kivilinna@mbnet.fi>2012-02-17 22:49:03 +0200
committerHerbert Xu <herbert@gondor.apana.org.au>2012-02-25 17:20:24 +0800
commit894042648902d11d579af2a936a5a9a43cd5f1e4 (patch)
tree1a2bb99c14f2fb69c4d622fbfdfd528a136f6d9a /arch/x86/crypto/twofish_glue.c
parentcrypto: blowfish-x86_64 - set alignmask to zero (diff)
downloadlinux-dev-894042648902d11d579af2a936a5a9a43cd5f1e4.tar.xz
linux-dev-894042648902d11d579af2a936a5a9a43cd5f1e4.zip
crypto: twofish-x86_64/i586 - set alignmask to zero
x86 has fast unaligned accesses, so twofish-x86_64/i586 does not need to enforce alignment. Signed-off-by: Jussi Kivilinna <jussi.kivilinna@mbnet.fi> Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
Diffstat (limited to 'arch/x86/crypto/twofish_glue.c')
-rw-r--r--arch/x86/crypto/twofish_glue.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/x86/crypto/twofish_glue.c b/arch/x86/crypto/twofish_glue.c
index dc6b3fb817fc..359ae084275c 100644
--- a/arch/x86/crypto/twofish_glue.c
+++ b/arch/x86/crypto/twofish_glue.c
@@ -68,7 +68,7 @@ static struct crypto_alg alg = {
.cra_flags = CRYPTO_ALG_TYPE_CIPHER,
.cra_blocksize = TF_BLOCK_SIZE,
.cra_ctxsize = sizeof(struct twofish_ctx),
- .cra_alignmask = 3,
+ .cra_alignmask = 0,
.cra_module = THIS_MODULE,
.cra_list = LIST_HEAD_INIT(alg.cra_list),
.cra_u = {