crypto: artpec6 - move spin_lock_bh to spin_lock in tasklet
authorTuo Cao <91tuocao@gmail.com>
Sun, 14 Aug 2022 13:00:54 +0000 (21:00 +0800)
committerHerbert Xu <herbert@gondor.apana.org.au>
Fri, 19 Aug 2022 10:39:39 +0000 (18:39 +0800)
it is unnecessary to call spin_lock_bh in a tasklet.

Signed-off-by: Tuo Cao <91tuocao@gmail.com>
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
drivers/crypto/axis/artpec6_crypto.c

index 9ad188c..b482059 100644 (file)
@@ -2091,7 +2091,7 @@ static void artpec6_crypto_task(unsigned long data)
                return;
        }
 
-       spin_lock_bh(&ac->queue_lock);
+       spin_lock(&ac->queue_lock);
 
        list_for_each_entry_safe(req, n, &ac->pending, list) {
                struct artpec6_crypto_dma_descriptors *dma = req->dma;
@@ -2128,7 +2128,7 @@ static void artpec6_crypto_task(unsigned long data)
 
        artpec6_crypto_process_queue(ac, &complete_in_progress);
 
-       spin_unlock_bh(&ac->queue_lock);
+       spin_unlock(&ac->queue_lock);
 
        /* Perform the completion callbacks without holding the queue lock
         * to allow new request submissions from the callbacks.