diff options
author | Marek Vasut <marex@denx.de> | 2014-05-26 12:51:48 -0400 |
---|---|---|
committer | Herbert Xu <herbert@gondor.apana.org.au> | 2014-06-20 09:26:05 -0400 |
commit | d656c180de4d3eacd610c414fbcfe2509cf64a99 (patch) | |
tree | 1d81e9039df71035030007149c2e157ac0572194 /include/crypto | |
parent | bb55a4c100abbb8d2a41e732f6362c575a7094e6 (diff) |
crypto: skcipher - Don't use __crypto_dequeue_request()
Use skcipher_givcrypt_cast(crypto_dequeue_request(queue)) instead, which
does the same thing in much cleaner way. The skcipher_givcrypt_cast()
actually uses container_of() instead of messing around with offsetof()
too.
Signed-off-by: Marek Vasut <marex@denx.de>
Reported-by: Arnd Bergmann <arnd@arndb.de>
Cc: Pantelis Antoniou <panto@antoniou-consulting.com>
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
Diffstat (limited to 'include/crypto')
-rw-r--r-- | include/crypto/internal/skcipher.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/include/crypto/internal/skcipher.h b/include/crypto/internal/skcipher.h index 06e8b32d541c..b3a46c515d1b 100644 --- a/include/crypto/internal/skcipher.h +++ b/include/crypto/internal/skcipher.h | |||
@@ -81,8 +81,7 @@ static inline int skcipher_enqueue_givcrypt( | |||
81 | static inline struct skcipher_givcrypt_request *skcipher_dequeue_givcrypt( | 81 | static inline struct skcipher_givcrypt_request *skcipher_dequeue_givcrypt( |
82 | struct crypto_queue *queue) | 82 | struct crypto_queue *queue) |
83 | { | 83 | { |
84 | return __crypto_dequeue_request( | 84 | return skcipher_givcrypt_cast(crypto_dequeue_request(queue)); |
85 | queue, offsetof(struct skcipher_givcrypt_request, creq.base)); | ||
86 | } | 85 | } |
87 | 86 | ||
88 | static inline void *skcipher_givcrypt_reqctx( | 87 | static inline void *skcipher_givcrypt_reqctx( |