All of lore.kernel.org
 help / color / mirror / Atom feed
From: Gilad Ben-Yossef <gilad-6S/DczAoZh3WXxRugSxzZg@public.gmane.org>
To: Herbert Xu
	<herbert-lOAM2aK0SrRLBo1qDEOMRrpzq4S04n8Q@public.gmane.org>,
	"David S. Miller" <davem-fT/PcQaiUtIeIZ0/mPfg9Q@public.gmane.org>,
	Jonathan Corbet <corbet-T1hC0tSOHrs@public.gmane.org>,
	David Howells <dhowells-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org>,
	Tom Lendacky <thomas.lendacky-5C7GfCeVMHo@public.gmane.org>,
	Gary Hook <gary.hook-5C7GfCeVMHo@public.gmane.org>,
	Boris Brezillon
	<boris.brezillon-wi1+55ScJUtKEb57/3fJTNBPR1lH4CV8@public.gmane.org>,
	Arnaud Ebalard <arno-LkuqDEemtHBg9hUCZPvPmw@public.gmane.org>,
	Matthias Brugger
	<matthias.bgg-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>,
	Alasdair Kergon <agk-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org>,
	Mike Snitzer <snitzer-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org>,
	dm-devel-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org,
	Shaohua Li <shli-DgEjT+Ai2ygdnm+yROfE0A@public.gmane.org>,
	Steve French <sfrench-eUNUBHrolfbYtjvyW6yDsg@public.gmane.org>,
	"Theodore Y. Ts'o" <tytso-3s7WtUTddSA@public.gmane.org>,
	Jaegeuk Kim <jaegeuk-DgEjT+Ai2ygdnm+yROfE0A@public.gmane.org>,
	Mimi Zohar
	<zohar-23VcF4HTsmIX0ybBhKVfKdBPR1lH4CV8@public.gmane.org>,
	Dmitry Kasatkin
	<dmitry.kasatkin-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>,
	James Morris
	<james.l.morris-QHcLZuEGTsvQT0dZR+AlfA@public.gmane.org>,
	"Serge E. Hallyn" <serge-A9i7LUbDfNHQT0dZR+AlfA@public.gmane.org>,
	linux-crypto-u79uwXL29TY76Z2rM5mHXA@public.gmane.org,
	linux-doc-u79uwXL29TY76Z2rM5mHXA@public.gmane.org,
	linux-kernel-u79uwXL29TY76Z2rM5mHXA@public.gmane.org,
	keyrings-u79uwXL29TY76Z2rM5mHXA@public.gmane.org,
	linux-arm-kernel@lists
Cc: Ofir Drang <ofir.drang-5wv7dgnIgG8@public.gmane.org>
Subject: [PATCH v5 03/19] crypto: remove redundant backlog checks on EBUSY
Date: Mon, 14 Aug 2017 18:21:13 +0300	[thread overview]
Message-ID: <1502724094-23305-4-git-send-email-gilad__16675.1267192469$1502724222$gmane$org@benyossef.com> (raw)
In-Reply-To: <1502724094-23305-1-git-send-email-gilad-6S/DczAoZh3WXxRugSxzZg@public.gmane.org>

Now that -EBUSY return code only indicates backlog queueing
we can safely remove the now redundant check for the
CRYPTO_TFM_REQ_MAY_BACKLOG flag when -EBUSY is returned.

Signed-off-by: Gilad Ben-Yossef <gilad-6S/DczAoZh3WXxRugSxzZg@public.gmane.org>
---
 crypto/ahash.c        | 12 +++---------
 crypto/cts.c          |  6 ++----
 crypto/lrw.c          |  8 ++------
 crypto/rsa-pkcs1pad.c | 16 ++++------------
 crypto/xts.c          |  8 ++------
 5 files changed, 13 insertions(+), 37 deletions(-)

diff --git a/crypto/ahash.c b/crypto/ahash.c
index 826cd7a..d63eeef 100644
--- a/crypto/ahash.c
+++ b/crypto/ahash.c
@@ -334,9 +334,7 @@ static int ahash_op_unaligned(struct ahash_request *req,
 		return err;
 
 	err = op(req);
-	if (err == -EINPROGRESS ||
-	    (err == -EBUSY && (ahash_request_flags(req) &
-			       CRYPTO_TFM_REQ_MAY_BACKLOG)))
+	if (err == -EINPROGRESS || err == -EBUSY)
 		return err;
 
 	ahash_restore_req(req, err);
@@ -394,9 +392,7 @@ static int ahash_def_finup_finish1(struct ahash_request *req, int err)
 	req->base.complete = ahash_def_finup_done2;
 
 	err = crypto_ahash_reqtfm(req)->final(req);
-	if (err == -EINPROGRESS ||
-	    (err == -EBUSY && (ahash_request_flags(req) &
-			       CRYPTO_TFM_REQ_MAY_BACKLOG)))
+	if (err == -EINPROGRESS || err == -EBUSY)
 		return err;
 
 out:
@@ -432,9 +428,7 @@ static int ahash_def_finup(struct ahash_request *req)
 		return err;
 
 	err = tfm->update(req);
-	if (err == -EINPROGRESS ||
-	    (err == -EBUSY && (ahash_request_flags(req) &
-			       CRYPTO_TFM_REQ_MAY_BACKLOG)))
+	if (err == -EINPROGRESS || err == -EBUSY)
 		return err;
 
 	return ahash_def_finup_finish1(req, err);
diff --git a/crypto/cts.c b/crypto/cts.c
index 243f591..4773c18 100644
--- a/crypto/cts.c
+++ b/crypto/cts.c
@@ -136,8 +136,7 @@ static void crypto_cts_encrypt_done(struct crypto_async_request *areq, int err)
 		goto out;
 
 	err = cts_cbc_encrypt(req);
-	if (err == -EINPROGRESS ||
-	    (err == -EBUSY && req->base.flags & CRYPTO_TFM_REQ_MAY_BACKLOG))
+	if (err == -EINPROGRESS || err == -EBUSY)
 		return;
 
 out:
@@ -229,8 +228,7 @@ static void crypto_cts_decrypt_done(struct crypto_async_request *areq, int err)
 		goto out;
 
 	err = cts_cbc_decrypt(req);
-	if (err == -EINPROGRESS ||
-	    (err == -EBUSY && req->base.flags & CRYPTO_TFM_REQ_MAY_BACKLOG))
+	if (err == -EINPROGRESS || err == -EBUSY)
 		return;
 
 out:
diff --git a/crypto/lrw.c b/crypto/lrw.c
index a8bfae4..695cea9 100644
--- a/crypto/lrw.c
+++ b/crypto/lrw.c
@@ -328,9 +328,7 @@ static int do_encrypt(struct skcipher_request *req, int err)
 		      crypto_skcipher_encrypt(subreq) ?:
 		      post_crypt(req);
 
-		if (err == -EINPROGRESS ||
-		    (err == -EBUSY &&
-		     req->base.flags & CRYPTO_TFM_REQ_MAY_BACKLOG))
+		if (err == -EINPROGRESS || err == -EBUSY)
 			return err;
 	}
 
@@ -380,9 +378,7 @@ static int do_decrypt(struct skcipher_request *req, int err)
 		      crypto_skcipher_decrypt(subreq) ?:
 		      post_crypt(req);
 
-		if (err == -EINPROGRESS ||
-		    (err == -EBUSY &&
-		     req->base.flags & CRYPTO_TFM_REQ_MAY_BACKLOG))
+		if (err == -EINPROGRESS || err == -EBUSY)
 			return err;
 	}
 
diff --git a/crypto/rsa-pkcs1pad.c b/crypto/rsa-pkcs1pad.c
index 407c64b..2908f93 100644
--- a/crypto/rsa-pkcs1pad.c
+++ b/crypto/rsa-pkcs1pad.c
@@ -279,9 +279,7 @@ static int pkcs1pad_encrypt(struct akcipher_request *req)
 				   req->dst, ctx->key_size - 1, req->dst_len);
 
 	err = crypto_akcipher_encrypt(&req_ctx->child_req);
-	if (err != -EINPROGRESS &&
-			(err != -EBUSY ||
-			 !(req->base.flags & CRYPTO_TFM_REQ_MAY_BACKLOG)))
+	if (err != -EINPROGRESS && err != -EBUSY)
 		return pkcs1pad_encrypt_sign_complete(req, err);
 
 	return err;
@@ -383,9 +381,7 @@ static int pkcs1pad_decrypt(struct akcipher_request *req)
 				   ctx->key_size);
 
 	err = crypto_akcipher_decrypt(&req_ctx->child_req);
-	if (err != -EINPROGRESS &&
-			(err != -EBUSY ||
-			 !(req->base.flags & CRYPTO_TFM_REQ_MAY_BACKLOG)))
+	if (err != -EINPROGRESS && err != -EBUSY)
 		return pkcs1pad_decrypt_complete(req, err);
 
 	return err;
@@ -440,9 +436,7 @@ static int pkcs1pad_sign(struct akcipher_request *req)
 				   req->dst, ctx->key_size - 1, req->dst_len);
 
 	err = crypto_akcipher_sign(&req_ctx->child_req);
-	if (err != -EINPROGRESS &&
-			(err != -EBUSY ||
-			 !(req->base.flags & CRYPTO_TFM_REQ_MAY_BACKLOG)))
+	if (err != -EINPROGRESS && err != -EBUSY)
 		return pkcs1pad_encrypt_sign_complete(req, err);
 
 	return err;
@@ -561,9 +555,7 @@ static int pkcs1pad_verify(struct akcipher_request *req)
 				   ctx->key_size);
 
 	err = crypto_akcipher_verify(&req_ctx->child_req);
-	if (err != -EINPROGRESS &&
-			(err != -EBUSY ||
-			 !(req->base.flags & CRYPTO_TFM_REQ_MAY_BACKLOG)))
+	if (err != -EINPROGRESS && err != -EBUSY)
 		return pkcs1pad_verify_complete(req, err);
 
 	return err;
diff --git a/crypto/xts.c b/crypto/xts.c
index d86c11a..af68012 100644
--- a/crypto/xts.c
+++ b/crypto/xts.c
@@ -269,9 +269,7 @@ static int do_encrypt(struct skcipher_request *req, int err)
 		      crypto_skcipher_encrypt(subreq) ?:
 		      post_crypt(req);
 
-		if (err == -EINPROGRESS ||
-		    (err == -EBUSY &&
-		     req->base.flags & CRYPTO_TFM_REQ_MAY_BACKLOG))
+		if (err == -EINPROGRESS || err == -EBUSY)
 			return err;
 	}
 
@@ -321,9 +319,7 @@ static int do_decrypt(struct skcipher_request *req, int err)
 		      crypto_skcipher_decrypt(subreq) ?:
 		      post_crypt(req);
 
-		if (err == -EINPROGRESS ||
-		    (err == -EBUSY &&
-		     req->base.flags & CRYPTO_TFM_REQ_MAY_BACKLOG))
+		if (err == -EINPROGRESS || err == -EBUSY)
 			return err;
 	}
 
-- 
2.1.4

  parent reply	other threads:[~2017-08-14 15:21 UTC|newest]

Thread overview: 211+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2017-08-14 15:21 [PATCH v5 00/19] simplify crypto wait for async op Gilad Ben-Yossef
2017-08-14 15:21 ` Gilad Ben-Yossef
2017-08-14 15:21 ` Gilad Ben-Yossef
2017-08-14 15:21 ` Gilad Ben-Yossef
2017-08-14 15:21 ` Gilad Ben-Yossef
2017-08-14 15:21 ` [PATCH v5 01/19] crypto: change transient busy return code to -EAGAIN Gilad Ben-Yossef
2017-08-14 15:21 ` Gilad Ben-Yossef
2017-08-14 15:21 ` [PATCH v5 02/19] crypto: ccp: use -EAGAIN for transient busy indication Gilad Ben-Yossef
2017-08-14 15:21   ` Gilad Ben-Yossef
2017-08-14 15:21   ` Gilad Ben-Yossef
2017-08-14 15:21   ` Gilad Ben-Yossef
2017-08-14 15:21   ` Gilad Ben-Yossef
2017-08-14 16:55   ` Gary R Hook
2017-08-14 16:55     ` Gary R Hook
2017-08-14 16:55     ` Gary R Hook
2017-08-14 16:55     ` Gary R Hook
2017-08-14 16:55     ` Gary R Hook
2017-08-14 16:55     ` Gary R Hook
2017-08-14 16:55   ` Gary R Hook
2017-08-14 16:55   ` Gary R Hook
2017-08-14 16:55   ` Gary R Hook
     [not found]   ` <1502724094-23305-3-git-send-email-gilad-6S/DczAoZh3WXxRugSxzZg@public.gmane.org>
2017-08-14 16:55     ` Gary R Hook
2017-08-14 16:55       ` Gary R Hook
2017-08-14 15:21 ` Gilad Ben-Yossef
2017-08-14 15:21 ` Gilad Ben-Yossef
2017-08-14 15:21 ` [PATCH v5 03/19] crypto: remove redundant backlog checks on EBUSY Gilad Ben-Yossef
2017-08-14 15:21 ` Gilad Ben-Yossef
2017-08-14 15:21   ` Gilad Ben-Yossef
2017-08-14 15:21   ` Gilad Ben-Yossef
2017-08-14 15:21   ` Gilad Ben-Yossef
2017-08-14 15:21   ` Gilad Ben-Yossef
2017-08-14 15:21 ` Gilad Ben-Yossef
2017-08-14 15:21 ` [PATCH v5 04/19] crypto: marvell/cesa: " Gilad Ben-Yossef
2017-08-14 15:21   ` Gilad Ben-Yossef
2017-08-14 15:21   ` Gilad Ben-Yossef
2017-08-14 15:21   ` Gilad Ben-Yossef
2017-08-14 15:21   ` Gilad Ben-Yossef
2017-08-15  8:16   ` Boris Brezillon
2017-08-15  8:16     ` Boris Brezillon
2017-08-15  8:16     ` Boris Brezillon
2017-08-15  8:16     ` Boris Brezillon
2017-08-15  8:16     ` Boris Brezillon
2017-08-14 15:21 ` Gilad Ben-Yossef
2017-08-14 15:21 ` Gilad Ben-Yossef
2017-08-14 15:21 ` [PATCH v5 05/19] crypto: introduce crypto wait for async op Gilad Ben-Yossef
2017-08-14 15:21 ` Gilad Ben-Yossef
2017-08-14 15:21   ` Gilad Ben-Yossef
2017-08-14 15:21   ` Gilad Ben-Yossef
2017-08-14 15:21   ` Gilad Ben-Yossef
2017-08-14 15:21   ` Gilad Ben-Yossef
2017-08-15  2:23   ` Jonathan Cameron
2017-08-15  2:23     ` Jonathan Cameron
2017-08-15  2:23     ` Jonathan Cameron
2017-08-15  2:23     ` Jonathan Cameron
2017-08-15  2:23     ` Jonathan Cameron
2017-08-15  2:23     ` Jonathan Cameron
2017-08-21 12:49     ` Gilad Ben-Yossef
2017-08-21 12:49       ` Gilad Ben-Yossef
2017-08-21 12:49       ` Gilad Ben-Yossef
2017-08-21 12:49       ` Gilad Ben-Yossef
2017-08-21 12:49       ` Gilad Ben-Yossef
2017-08-14 15:21 ` Gilad Ben-Yossef
2017-08-14 15:21 ` [PATCH v5 06/19] crypto: move algif to generic async completion Gilad Ben-Yossef
2017-08-14 15:21   ` Gilad Ben-Yossef
2017-08-14 15:21   ` Gilad Ben-Yossef
2017-08-14 15:21   ` Gilad Ben-Yossef
2017-08-14 15:21   ` Gilad Ben-Yossef
2017-08-14 15:21 ` [PATCH v5 07/19] crypto: move pub key " Gilad Ben-Yossef
2017-08-14 15:21   ` Gilad Ben-Yossef
2017-08-14 15:21   ` Gilad Ben-Yossef
2017-08-14 15:21   ` Gilad Ben-Yossef
2017-08-14 15:21   ` Gilad Ben-Yossef
2017-08-14 15:21 ` [PATCH v5 08/19] crypto: move drbg " Gilad Ben-Yossef
2017-08-14 15:21 ` Gilad Ben-Yossef
2017-08-14 15:21 ` [PATCH v5 09/19] crypto: move gcm " Gilad Ben-Yossef
2017-08-14 15:21   ` Gilad Ben-Yossef
2017-08-14 15:21   ` Gilad Ben-Yossef
2017-08-14 15:21   ` Gilad Ben-Yossef
2017-08-14 15:21   ` Gilad Ben-Yossef
     [not found] ` <1502724094-23305-1-git-send-email-gilad-6S/DczAoZh3WXxRugSxzZg@public.gmane.org>
2017-08-14 15:21   ` [PATCH v5 01/19] crypto: change transient busy return code to -EAGAIN Gilad Ben-Yossef
2017-08-14 15:21   ` Gilad Ben-Yossef
2017-08-14 15:21     ` Gilad Ben-Yossef
2017-08-14 15:21     ` Gilad Ben-Yossef
2017-08-14 15:21     ` Gilad Ben-Yossef
2017-08-14 15:21     ` Gilad Ben-Yossef
2017-08-14 15:21   ` [PATCH v5 02/19] crypto: ccp: use -EAGAIN for transient busy indication Gilad Ben-Yossef
2017-08-14 15:21   ` Gilad Ben-Yossef
2017-08-14 15:21   ` [PATCH v5 03/19] crypto: remove redundant backlog checks on EBUSY Gilad Ben-Yossef
2017-08-14 15:21   ` Gilad Ben-Yossef [this message]
2017-08-14 15:21   ` [PATCH v5 04/19] crypto: marvell/cesa: " Gilad Ben-Yossef
2017-08-14 15:21   ` Gilad Ben-Yossef
2017-08-14 15:21   ` [PATCH v5 05/19] crypto: introduce crypto wait for async op Gilad Ben-Yossef
2017-08-14 15:21   ` Gilad Ben-Yossef
2017-08-14 15:21   ` [PATCH v5 06/19] crypto: move algif to generic async completion Gilad Ben-Yossef
2017-08-14 15:21   ` [PATCH v5 07/19] crypto: move pub key " Gilad Ben-Yossef
2017-08-14 15:21   ` [PATCH v5 08/19] crypto: move drbg " Gilad Ben-Yossef
2017-08-14 15:21     ` Gilad Ben-Yossef
2017-08-14 15:21     ` Gilad Ben-Yossef
2017-08-14 15:21     ` Gilad Ben-Yossef
2017-08-14 15:21     ` Gilad Ben-Yossef
2017-08-14 15:21   ` Gilad Ben-Yossef
2017-08-14 15:21   ` [PATCH v5 09/19] crypto: move gcm " Gilad Ben-Yossef
2017-08-14 15:21   ` Gilad Ben-Yossef
2017-08-14 15:21   ` [PATCH v5 10/19] crypto: move testmgr " Gilad Ben-Yossef
2017-08-14 15:21   ` Gilad Ben-Yossef
2017-08-14 15:21   ` [PATCH v5 11/19] fscrypt: move " Gilad Ben-Yossef
2017-08-14 15:21   ` Gilad Ben-Yossef
2017-08-14 15:21   ` [PATCH v5 12/19] dm: move dm-verity " Gilad Ben-Yossef
2017-08-14 15:21   ` Gilad Ben-Yossef
2017-08-14 15:21   ` [PATCH v5 13/19] cifs: move " Gilad Ben-Yossef
2017-08-14 15:21   ` Gilad Ben-Yossef
2017-08-14 15:21   ` [PATCH v5 14/19] ima: " Gilad Ben-Yossef
2017-08-14 15:21   ` Gilad Ben-Yossef
2017-08-14 15:21   ` [PATCH v5 15/19] crypto: tcrypt: " Gilad Ben-Yossef
2017-08-14 15:21   ` Gilad Ben-Yossef
2017-08-14 15:21   ` [PATCH v5 16/19] crypto: talitos: " Gilad Ben-Yossef
2017-08-14 15:21   ` Gilad Ben-Yossef
2017-08-14 15:21   ` [PATCH v5 17/19] crypto: qce: " Gilad Ben-Yossef
2017-08-14 15:21   ` Gilad Ben-Yossef
2017-08-14 15:21   ` [PATCH v5 18/19] crypto: mediatek: " Gilad Ben-Yossef
2017-08-14 15:21   ` Gilad Ben-Yossef
2017-08-14 15:21   ` [PATCH v5 19/19] crypto: adapt api sample to use async. op wait Gilad Ben-Yossef
2017-08-14 15:21   ` Gilad Ben-Yossef
2017-08-14 15:21 ` [PATCH v5 09/19] crypto: move gcm to generic async completion Gilad Ben-Yossef
2017-08-14 15:21 ` Gilad Ben-Yossef
2017-08-14 15:21 ` [PATCH v5 10/19] crypto: move testmgr " Gilad Ben-Yossef
2017-08-14 15:21 ` Gilad Ben-Yossef
2017-08-14 15:21   ` Gilad Ben-Yossef
2017-08-14 15:21   ` Gilad Ben-Yossef
2017-08-14 15:21   ` Gilad Ben-Yossef
2017-08-14 15:21   ` Gilad Ben-Yossef
2017-08-14 15:21 ` Gilad Ben-Yossef
2017-08-14 15:21 ` [PATCH v5 11/19] fscrypt: move " Gilad Ben-Yossef
2017-08-14 15:21   ` Gilad Ben-Yossef
2017-08-14 15:21   ` Gilad Ben-Yossef
2017-08-14 15:21   ` Gilad Ben-Yossef
2017-08-14 15:21   ` Gilad Ben-Yossef
2017-08-14 15:21 ` Gilad Ben-Yossef
2017-08-14 15:21 ` Gilad Ben-Yossef
2017-08-14 15:21 ` [PATCH v5 12/19] dm: move dm-verity " Gilad Ben-Yossef
2017-08-14 15:21 ` Gilad Ben-Yossef
2017-08-14 15:21 ` Gilad Ben-Yossef
2017-08-14 15:21   ` Gilad Ben-Yossef
2017-08-14 15:21   ` Gilad Ben-Yossef
2017-08-14 15:21   ` Gilad Ben-Yossef
2017-08-14 15:21   ` Gilad Ben-Yossef
2017-08-19 20:08   ` [dm-devel] " Mikulas Patocka
2017-08-19 20:08     ` Mikulas Patocka
2017-08-19 20:08     ` Mikulas Patocka
2017-08-19 20:08     ` Mikulas Patocka
2017-08-19 20:08     ` Mikulas Patocka
     [not found]     ` <alpine.LRH.2.02.1708191605370.2380-Hpncn10jQN4oNljnaZt3ZvA+iT7yCHsGwRM8/txMwJMAicBL8TP8PQ@public.gmane.org>
2017-08-21 12:48       ` Gilad Ben-Yossef
2017-08-21 12:48         ` Gilad Ben-Yossef
2017-08-21 12:48         ` Gilad Ben-Yossef
2017-08-21 12:48         ` Gilad Ben-Yossef
2017-08-21 12:48         ` Gilad Ben-Yossef
2017-08-14 15:21 ` [PATCH v5 13/19] cifs: move " Gilad Ben-Yossef
2017-08-14 15:21 ` Gilad Ben-Yossef
2017-08-14 15:21 ` Gilad Ben-Yossef
2017-08-14 15:21   ` Gilad Ben-Yossef
2017-08-14 15:21   ` Gilad Ben-Yossef
2017-08-14 15:21   ` Gilad Ben-Yossef
2017-08-14 15:21   ` Gilad Ben-Yossef
2017-08-14 15:21 ` [PATCH v5 14/19] ima: " Gilad Ben-Yossef
2017-08-14 15:21   ` Gilad Ben-Yossef
2017-08-14 15:21   ` Gilad Ben-Yossef
2017-08-14 15:21   ` Gilad Ben-Yossef
2017-08-14 15:21   ` Gilad Ben-Yossef
2017-08-14 15:21 ` Gilad Ben-Yossef
2017-08-14 15:21 ` Gilad Ben-Yossef
2017-08-14 15:21 ` [PATCH v5 15/19] crypto: tcrypt: " Gilad Ben-Yossef
2017-08-14 15:21 ` Gilad Ben-Yossef
2017-08-14 15:21   ` Gilad Ben-Yossef
2017-08-14 15:21   ` Gilad Ben-Yossef
2017-08-14 15:21   ` Gilad Ben-Yossef
2017-08-14 15:21   ` Gilad Ben-Yossef
2017-08-14 15:21 ` [PATCH v5 16/19] crypto: talitos: " Gilad Ben-Yossef
2017-08-14 15:21 ` Gilad Ben-Yossef
2017-08-14 15:21 ` Gilad Ben-Yossef
2017-08-14 15:21   ` Gilad Ben-Yossef
2017-08-14 15:21   ` Gilad Ben-Yossef
2017-08-14 15:21   ` Gilad Ben-Yossef
2017-08-14 15:21   ` Gilad Ben-Yossef
2017-08-14 15:21 ` [PATCH v5 17/19] crypto: qce: " Gilad Ben-Yossef
2017-08-14 15:21 ` Gilad Ben-Yossef
2017-08-14 15:21 ` Gilad Ben-Yossef
2017-08-14 15:21   ` Gilad Ben-Yossef
2017-08-14 15:21   ` Gilad Ben-Yossef
2017-08-14 15:21   ` Gilad Ben-Yossef
2017-08-14 15:21   ` Gilad Ben-Yossef
2017-08-14 15:21 ` [PATCH v5 18/19] crypto: mediatek: " Gilad Ben-Yossef
2017-08-14 15:21 ` Gilad Ben-Yossef
2017-08-14 15:21 ` Gilad Ben-Yossef
2017-08-14 15:21   ` Gilad Ben-Yossef
2017-08-14 15:21   ` Gilad Ben-Yossef
2017-08-14 15:21   ` Gilad Ben-Yossef
2017-08-14 15:21   ` Gilad Ben-Yossef
     [not found]   ` <1502724094-23305-19-git-send-email-gilad-6S/DczAoZh3WXxRugSxzZg@public.gmane.org>
2017-08-15  5:13     ` Ryder Lee
2017-08-15  5:13       ` Ryder Lee
2017-08-15  5:13       ` Ryder Lee
2017-08-15  5:13       ` Ryder Lee
2017-08-15  5:13       ` Ryder Lee
2017-08-15  5:13       ` Ryder Lee
2017-08-15  5:13       ` Ryder Lee
2017-08-14 15:21 ` [PATCH v5 19/19] crypto: adapt api sample to use async. op wait Gilad Ben-Yossef
2017-08-14 15:21 ` Gilad Ben-Yossef
2017-08-14 15:21 ` Gilad Ben-Yossef
2017-08-14 15:21   ` Gilad Ben-Yossef
2017-08-14 15:21   ` Gilad Ben-Yossef
2017-08-14 15:21   ` Gilad Ben-Yossef
2017-08-14 15:21   ` Gilad Ben-Yossef

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to='1502724094-23305-4-git-send-email-gilad__16675.1267192469$1502724222$gmane$org@benyossef.com' \
    --to=gilad-6s/dczaozh3wxxrugsxzzg@public.gmane.org \
    --cc=agk-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org \
    --cc=arno-LkuqDEemtHBg9hUCZPvPmw@public.gmane.org \
    --cc=boris.brezillon-wi1+55ScJUtKEb57/3fJTNBPR1lH4CV8@public.gmane.org \
    --cc=corbet-T1hC0tSOHrs@public.gmane.org \
    --cc=davem-fT/PcQaiUtIeIZ0/mPfg9Q@public.gmane.org \
    --cc=dhowells-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org \
    --cc=dm-devel-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org \
    --cc=dmitry.kasatkin-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org \
    --cc=gary.hook-5C7GfCeVMHo@public.gmane.org \
    --cc=herbert-lOAM2aK0SrRLBo1qDEOMRrpzq4S04n8Q@public.gmane.org \
    --cc=jaegeuk-DgEjT+Ai2ygdnm+yROfE0A@public.gmane.org \
    --cc=james.l.morris-QHcLZuEGTsvQT0dZR+AlfA@public.gmane.org \
    --cc=keyrings-u79uwXL29TY76Z2rM5mHXA@public.gmane.org \
    --cc=linux-arm-kernel@lists \
    --cc=linux-crypto-u79uwXL29TY76Z2rM5mHXA@public.gmane.org \
    --cc=linux-doc-u79uwXL29TY76Z2rM5mHXA@public.gmane.org \
    --cc=linux-kernel-u79uwXL29TY76Z2rM5mHXA@public.gmane.org \
    --cc=matthias.bgg-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org \
    --cc=ofir.drang-5wv7dgnIgG8@public.gmane.org \
    --cc=serge-A9i7LUbDfNHQT0dZR+AlfA@public.gmane.org \
    --cc=sfrench-eUNUBHrolfbYtjvyW6yDsg@public.gmane.org \
    --cc=shli-DgEjT+Ai2ygdnm+yROfE0A@public.gmane.org \
    --cc=snitzer-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org \
    --cc=thomas.lendacky-5C7GfCeVMHo@public.gmane.org \
    --cc=tytso-3s7WtUTddSA@public.gmane.org \
    --cc=zohar-23VcF4HTsmIX0ybBhKVfKdBPR1lH4CV8@public.gmane.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.