Gitweb:     
http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=2614de1b9af5a9e49cda64b394e1348159565bd5
Commit:     2614de1b9af5a9e49cda64b394e1348159565bd5
Parent:     d8058480b35dbc3d1e6085b3f13b80af27def09e
Author:     Herbert Xu <[EMAIL PROTECTED]>
AuthorDate: Thu Oct 4 14:49:00 2007 +0800
Committer:  David S. Miller <[EMAIL PROTECTED]>
CommitDate: Wed Oct 10 16:55:48 2007 -0700

    [CRYPTO] blkcipher: Increase kmalloc amount to aligned block size
    
    Now that the block size is no longer a multiple of the alignment, we need to
    increase the kmalloc amount in blkcipher_next_slow to use the aligned block
    size.
    
    Signed-off-by: Herbert Xu <[EMAIL PROTECTED]>
---
 crypto/blkcipher.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/crypto/blkcipher.c b/crypto/blkcipher.c
index a3c87da..3d05586 100644
--- a/crypto/blkcipher.c
+++ b/crypto/blkcipher.c
@@ -158,7 +158,7 @@ static inline int blkcipher_next_slow(struct blkcipher_desc 
*desc,
        if (walk->buffer)
                goto ok;
 
-       n = bsize * 3 - (alignmask + 1) +
+       n = aligned_bsize * 3 - (alignmask + 1) +
            (alignmask & ~(crypto_tfm_ctx_alignment() - 1));
        walk->buffer = kmalloc(n, GFP_ATOMIC);
        if (!walk->buffer)
-
To unsubscribe from this list: send the line "unsubscribe git-commits-head" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to