diff options
author | Herbert Xu <herbert@gondor.apana.org.au> | 2006-01-07 16:38:15 +1100 |
---|---|---|
committer | David S. Miller <davem@sunset.davemloft.net> | 2006-01-09 14:16:00 -0800 |
commit | a429d2609c153882c421b067ad5ae5a38851459e (patch) | |
tree | 896934bd313ef565011f09b13d0dc0ae3b043641 /crypto/cast6.c | |
parent | 7302533aac2df321b76e8a113e5cfa529c825b09 (diff) | |
download | linux-3.10-a429d2609c153882c421b067ad5ae5a38851459e.tar.gz linux-3.10-a429d2609c153882c421b067ad5ae5a38851459e.tar.bz2 linux-3.10-a429d2609c153882c421b067ad5ae5a38851459e.zip |
[CRYPTO] cipher: Set alignmask for multi-byte loads
Many cipher implementations use 4-byte/8-byte loads/stores which require
alignment on some architectures. This patch explicitly sets the alignment
requirements for them.
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
Diffstat (limited to 'crypto/cast6.c')
-rw-r--r-- | crypto/cast6.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/crypto/cast6.c b/crypto/cast6.c index d317fff6ea1..9e28740ba77 100644 --- a/crypto/cast6.c +++ b/crypto/cast6.c @@ -513,6 +513,7 @@ static struct crypto_alg alg = { .cra_flags = CRYPTO_ALG_TYPE_CIPHER, .cra_blocksize = CAST6_BLOCK_SIZE, .cra_ctxsize = sizeof(struct cast6_ctx), + .cra_alignmask = 3, .cra_module = THIS_MODULE, .cra_list = LIST_HEAD_INIT(alg.cra_list), .cra_u = { |