Gitweb:     
http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=e196d6259141eda47aeafd88514aae652bfbfc7f
Commit:     e196d6259141eda47aeafd88514aae652bfbfc7f
Parent:     124b53d020622ffa24e27406f2373d5a3debd0d3
Author:     Herbert Xu <[EMAIL PROTECTED]>
AuthorDate: Sat Apr 14 16:09:14 2007 +1000
Committer:  Herbert Xu <[EMAIL PROTECTED]>
CommitDate: Wed May 2 14:38:33 2007 +1000

    [CRYPTO] api: Add ablkcipher_request_set_tfm
    
    This patch adds ablkcipher_request_set_tfm for those users that need
    to manage the memory for ablkcipher requests directly.
    
    Signed-off-by: Herbert Xu <[EMAIL PROTECTED]>
---
 include/linux/crypto.h |    8 +++++++-
 1 files changed, 7 insertions(+), 1 deletions(-)

diff --git a/include/linux/crypto.h b/include/linux/crypto.h
index 0ec2467..0de7e2a 100644
--- a/include/linux/crypto.h
+++ b/include/linux/crypto.h
@@ -588,6 +588,12 @@ static inline int crypto_ablkcipher_reqsize(struct 
crypto_ablkcipher *tfm)
        return crypto_ablkcipher_crt(tfm)->reqsize;
 }
 
+static inline void ablkcipher_request_set_tfm(
+       struct ablkcipher_request *req, struct crypto_ablkcipher *tfm)
+{
+       req->base.tfm = crypto_ablkcipher_tfm(tfm);
+}
+
 static inline struct ablkcipher_request *ablkcipher_request_cast(
        struct crypto_async_request *req)
 {
@@ -603,7 +609,7 @@ static inline struct ablkcipher_request 
*ablkcipher_request_alloc(
                      crypto_ablkcipher_reqsize(tfm), gfp);
 
        if (likely(req))
-               req->base.tfm = crypto_ablkcipher_tfm(tfm);
+               ablkcipher_request_set_tfm(req, tfm);
 
        return req;
 }
-
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