linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH v2 1/2] crypto: aead - move aead_request_cast helper to aead.h
@ 2016-02-01 19:17 Tadeusz Struk
  2016-02-01 19:17 ` [PATCH v2 2/2] crypto: af_alg - add async support to algif_aead Tadeusz Struk
  2016-02-06  7:46 ` [PATCH v2 1/2] crypto: aead - move aead_request_cast helper to aead.h Herbert Xu
  0 siblings, 2 replies; 4+ messages in thread
From: Tadeusz Struk @ 2016-02-01 19:17 UTC (permalink / raw)
  To: herbert; +Cc: smueller, linux-kernel, linux-crypto, tadeusz.struk

Move the helper function to common header for everybody to use.

changes in v2:
- move the helper to crypto/internal/aead.h
  instead of crypto/aead.h

Signed-off-by: Tadeusz Struk <tadeusz.struk@intel.com>
---
 drivers/crypto/atmel-aes.c     |    6 ------
 include/crypto/internal/aead.h |    6 ++++++
 2 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/drivers/crypto/atmel-aes.c b/drivers/crypto/atmel-aes.c
index 6dd3317..949af89 100644
--- a/drivers/crypto/atmel-aes.c
+++ b/drivers/crypto/atmel-aes.c
@@ -369,12 +369,6 @@ static inline size_t atmel_aes_padlen(size_t len, size_t block_size)
 	return len ? block_size - len : 0;
 }
 
-static inline struct aead_request *
-aead_request_cast(struct crypto_async_request *req)
-{
-	return container_of(req, struct aead_request, base);
-}
-
 static struct atmel_aes_dev *atmel_aes_find_dev(struct atmel_aes_base_ctx *ctx)
 {
 	struct atmel_aes_dev *aes_dd = NULL;
diff --git a/include/crypto/internal/aead.h b/include/crypto/internal/aead.h
index 5554cdd..da38649 100644
--- a/include/crypto/internal/aead.h
+++ b/include/crypto/internal/aead.h
@@ -80,6 +80,12 @@ static inline u32 aead_request_flags(struct aead_request *req)
 	return req->base.flags;
 }
 
+static inline struct aead_request *aead_request_cast(
+	struct crypto_async_request *req)
+{
+	return container_of(req, struct aead_request, base);
+}
+
 static inline void crypto_set_aead_spawn(
 	struct crypto_aead_spawn *spawn, struct crypto_instance *inst)
 {

^ permalink raw reply related	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2016-03-10 10:54 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-02-01 19:17 [PATCH v2 1/2] crypto: aead - move aead_request_cast helper to aead.h Tadeusz Struk
2016-02-01 19:17 ` [PATCH v2 2/2] crypto: af_alg - add async support to algif_aead Tadeusz Struk
2016-03-10 10:53   ` Herbert Xu
2016-02-06  7:46 ` [PATCH v2 1/2] crypto: aead - move aead_request_cast helper to aead.h Herbert Xu

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).