]> git.hungrycats.org Git - linux/commitdiff
dm space map metadata: remove unused variable in brb_pop()
authorMike Snitzer <snitzer@redhat.com>
Mon, 14 Dec 2015 14:26:01 +0000 (09:26 -0500)
committerJiri Slaby <jslaby@suse.cz>
Thu, 3 Mar 2016 11:46:02 +0000 (12:46 +0100)
commit 512167788a6fe9481a33a3cce5f80b684631a1bb upstream.

Remove the unused struct block_op pointer that was inadvertantly
introduced, via cut-and-paste of previous brb_op() code, as part of
commit 50dd842ad.

(Cc'ing stable@ because commit 50dd842ad 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>
Signed-off-by: Jiri Slaby <jslaby@suse.cz>
drivers/md/persistent-data/dm-space-map-metadata.c

index 722bd48024d68f2af5944d044368ebe4738ccba4..8a8f06bcde6014e93bf63d02df3485cf1484bec7 100644 (file)
@@ -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)
 {
-       struct block_op *bop;
-
        if (brb_empty(brb))
                return -ENODATA;
 
-       bop = brb->bops + brb->begin;
        brb->begin = brb_next(brb, brb->begin);
 
        return 0;