dm space map metadata: remove unused variable in brb_pop()
Remove the unused struct block_op pointer that was inadvertantly introduced, via cut-and-paste of previous brb_op() code, as part of commit50dd842ad
. (Cc'ing stable@ because commit50dd842ad
did) Fixes:50dd842ad
("dm space map metadata: fix ref counting bug when bootstrapping a new space map") Reported-by: David Binderman <dcb314@hotmail.com> Signed-off-by: Mike Snitzer <snitzer@redhat.com> Cc: stable@vger.kernel.org
This commit is contained in:
parent
0cc37c2df4
commit
512167788a
|
@ -152,12 +152,9 @@ static int brb_peek(struct bop_ring_buffer *brb, struct block_op *result)
|
||||||
|
|
||||||
static int brb_pop(struct bop_ring_buffer *brb)
|
static int brb_pop(struct bop_ring_buffer *brb)
|
||||||
{
|
{
|
||||||
struct block_op *bop;
|
|
||||||
|
|
||||||
if (brb_empty(brb))
|
if (brb_empty(brb))
|
||||||
return -ENODATA;
|
return -ENODATA;
|
||||||
|
|
||||||
bop = brb->bops + brb->begin;
|
|
||||||
brb->begin = brb_next(brb, brb->begin);
|
brb->begin = brb_next(brb, brb->begin);
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
|
|
Loading…
Reference in New Issue