Skip to content

Commit

Permalink
blkback: Fix potential resource leak.
Browse files Browse the repository at this point in the history
  • Loading branch information
Keir Fraser authored and Konrad Rzeszutek Wilk committed Apr 14, 2011
1 parent dd36724 commit 8270b45
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions drivers/xen/blkback/blkback.c
Original file line number Diff line number Diff line change
Expand Up @@ -318,14 +318,14 @@ static int do_block_io_op(blkif_t *blkif)
if (RING_REQUEST_CONS_OVERFLOW(&blk_rings->common, rc))
break;

pending_req = alloc_req();
if (NULL == pending_req) {
blkif->st_oo_req++;
if (kthread_should_stop()) {
more_to_do = 1;
break;
}

if (kthread_should_stop()) {
pending_req = alloc_req();
if (NULL == pending_req) {
blkif->st_oo_req++;
more_to_do = 1;
break;
}
Expand Down

0 comments on commit 8270b45

Please sign in to comment.