diff options
author | Herbert Xu <herbert@gondor.apana.org.au> | 2006-01-07 00:38:15 -0500 |
---|---|---|
committer | David S. Miller <davem@sunset.davemloft.net> | 2006-01-09 17:16:00 -0500 |
commit | a429d2609c153882c421b067ad5ae5a38851459e (patch) | |
tree | 896934bd313ef565011f09b13d0dc0ae3b043641 /crypto/des.c | |
parent | 7302533aac2df321b76e8a113e5cfa529c825b09 (diff) |
[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/des.c')
-rw-r--r-- | crypto/des.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/crypto/des.c b/crypto/des.c index dae42981012c..7bb548653dc6 100644 --- a/crypto/des.c +++ b/crypto/des.c | |||
@@ -949,6 +949,7 @@ static struct crypto_alg des_alg = { | |||
949 | .cra_blocksize = DES_BLOCK_SIZE, | 949 | .cra_blocksize = DES_BLOCK_SIZE, |
950 | .cra_ctxsize = sizeof(struct des_ctx), | 950 | .cra_ctxsize = sizeof(struct des_ctx), |
951 | .cra_module = THIS_MODULE, | 951 | .cra_module = THIS_MODULE, |
952 | .cra_alignmask = 3, | ||
952 | .cra_list = LIST_HEAD_INIT(des_alg.cra_list), | 953 | .cra_list = LIST_HEAD_INIT(des_alg.cra_list), |
953 | .cra_u = { .cipher = { | 954 | .cra_u = { .cipher = { |
954 | .cia_min_keysize = DES_KEY_SIZE, | 955 | .cia_min_keysize = DES_KEY_SIZE, |