Commit 902d5391 authored by jun qian's avatar jun qian Committed by Jens Axboe

block: umem: replace spin_lock_bh with spin_lock in tasklet callback

As you are already in a tasklet, it is unnecessary to call spin_lock_bh.
Signed-off-by: default avatarjun qian <hangdianqj@163.com>
Signed-off-by: default avatarJens Axboe <axboe@kernel.dk>
parent 7759eb23
...@@ -421,7 +421,7 @@ static void process_page(unsigned long data) ...@@ -421,7 +421,7 @@ static void process_page(unsigned long data)
struct cardinfo *card = (struct cardinfo *)data; struct cardinfo *card = (struct cardinfo *)data;
unsigned int dma_status = card->dma_status; unsigned int dma_status = card->dma_status;
spin_lock_bh(&card->lock); spin_lock(&card->lock);
if (card->Active < 0) if (card->Active < 0)
goto out_unlock; goto out_unlock;
page = &card->mm_pages[card->Active]; page = &card->mm_pages[card->Active];
...@@ -496,7 +496,7 @@ static void process_page(unsigned long data) ...@@ -496,7 +496,7 @@ static void process_page(unsigned long data)
mm_start_io(card); mm_start_io(card);
} }
out_unlock: out_unlock:
spin_unlock_bh(&card->lock); spin_unlock(&card->lock);
while (return_bio) { while (return_bio) {
struct bio *bio = return_bio; struct bio *bio = return_bio;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment