mirror of
https://github.com/torvalds/linux.git
synced 2024-11-11 14:42:24 +00:00
null_blk: add lock drop/acquire annotation
sparse complains: drivers/block/null_blk_main.c:816:24: sparse: context imbalance in 'null_insert_page' - unexpected unlock Fix it by adding the necessary annotations to the function. Signed-off-by: Jens Axboe <axboe@kernel.dk>
This commit is contained in:
parent
991f61fe7e
commit
61884de08f
@ -804,7 +804,9 @@ static struct nullb_page *null_lookup_page(struct nullb *nullb,
|
||||
}
|
||||
|
||||
static struct nullb_page *null_insert_page(struct nullb *nullb,
|
||||
sector_t sector, bool ignore_cache)
|
||||
sector_t sector, bool ignore_cache)
|
||||
__releases(&nullb->lock)
|
||||
__acquires(&nullb->lock)
|
||||
{
|
||||
u64 idx;
|
||||
struct nullb_page *t_page;
|
||||
|
Loading…
Reference in New Issue
Block a user