aboutsummaryrefslogtreecommitdiffstats
path: root/arch/x86/crypto/blowfish_glue.c
diff options
context:
space:
mode:
authorJussi Kivilinna <jussi.kivilinna@mbnet.fi>2012-02-17 22:48:58 +0200
committerHerbert Xu <herbert@gondor.apana.org.au>2012-02-25 17:20:24 +0800
commit919e2c32496aec4170bd67e64efd526dd0a9bbdc (patch)
treee72e44b6c826349edcc700751b1f570e2a6ac938 /arch/x86/crypto/blowfish_glue.c
parentcrypto: serpent-sse2 - combine ablk_*_init functions (diff)
downloadlinux-dev-919e2c32496aec4170bd67e64efd526dd0a9bbdc.tar.xz
linux-dev-919e2c32496aec4170bd67e64efd526dd0a9bbdc.zip
crypto: blowfish-x86_64 - set alignmask to zero
x86 has fast unaligned accesses, so blowfish-x86_64 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/blowfish_glue.c')
-rw-r--r--arch/x86/crypto/blowfish_glue.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/x86/crypto/blowfish_glue.c b/arch/x86/crypto/blowfish_glue.c
index 73bc8a93f0ce..7967474de8f7 100644
--- a/arch/x86/crypto/blowfish_glue.c
+++ b/arch/x86/crypto/blowfish_glue.c
@@ -365,7 +365,7 @@ static struct crypto_alg bf_algs[4] = { {
.cra_flags = CRYPTO_ALG_TYPE_CIPHER,
.cra_blocksize = BF_BLOCK_SIZE,
.cra_ctxsize = sizeof(struct bf_ctx),
- .cra_alignmask = 3,
+ .cra_alignmask = 0,
.cra_module = THIS_MODULE,
.cra_list = LIST_HEAD_INIT(bf_algs[0].cra_list),
.cra_u = {