Browse Source

lightnvm: put bio before return

The bio is not returned if the data page cannot be allocated.

Signed-off-by: Wenwei Tao <ww.tao0320@gmail.com>
Signed-off-by: Matias Bjørling <m@bjorling.me>
Signed-off-by: Jens Axboe <axboe@fb.com>
Wenwei Tao 9 years ago
parent
commit
16c6d048d7
1 changed files with 3 additions and 1 deletions
  1. 3 1
      drivers/lightnvm/rrpc.c

+ 3 - 1
drivers/lightnvm/rrpc.c

@@ -300,8 +300,10 @@ static int rrpc_move_valid_pages(struct rrpc *rrpc, struct rrpc_block *rblk)
 	}
 	}
 
 
 	page = mempool_alloc(rrpc->page_pool, GFP_NOIO);
 	page = mempool_alloc(rrpc->page_pool, GFP_NOIO);
-	if (!page)
+	if (!page) {
+		bio_put(bio);
 		return -ENOMEM;
 		return -ENOMEM;
+	}
 
 
 	while ((slot = find_first_zero_bit(rblk->invalid_pages,
 	while ((slot = find_first_zero_bit(rblk->invalid_pages,
 					    nr_pgs_per_blk)) < nr_pgs_per_blk) {
 					    nr_pgs_per_blk)) < nr_pgs_per_blk) {