From: Antoine Ténart Date: Thu, 15 Jun 2017 07:56:26 +0000 (+0200) Subject: crypto: inside-secure - get the backlog before dequeueing the request X-Git-Tag: v4.13-rc1~158^2~12 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=b1deb47ad10b71a7d62dfdb049735a1be2214eb2;p=karo-tx-linux.git crypto: inside-secure - get the backlog before dequeueing the request Get the backlog before dequeuing the request otherwise we'll miss the first request in line. Signed-off-by: Antoine Tenart Signed-off-by: Herbert Xu --- diff --git a/drivers/crypto/inside-secure/safexcel.c b/drivers/crypto/inside-secure/safexcel.c index 8ae133a9e3f2..8f195e031938 100644 --- a/drivers/crypto/inside-secure/safexcel.c +++ b/drivers/crypto/inside-secure/safexcel.c @@ -431,8 +431,8 @@ void safexcel_dequeue(struct safexcel_crypto_priv *priv, int ring) do { spin_lock_bh(&priv->ring[ring].queue_lock); - req = crypto_dequeue_request(&priv->ring[ring].queue); backlog = crypto_get_backlog(&priv->ring[ring].queue); + req = crypto_dequeue_request(&priv->ring[ring].queue); spin_unlock_bh(&priv->ring[ring].queue_lock); if (!req)