From: Markus Elfring <elfring@xxxxxxxxxxxxxxxxxxxxx> Date: Mon, 12 Sep 2016 19:56:37 +0200 Adjust a jump label according to the current Linux coding style convention. Signed-off-by: Markus Elfring <elfring@xxxxxxxxxxxxxxxxxxxxx> --- drivers/block/rbd.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/drivers/block/rbd.c b/drivers/block/rbd.c index 8e9d30f7..abc2dcb 100644 --- a/drivers/block/rbd.c +++ b/drivers/block/rbd.c @@ -1421,12 +1421,12 @@ static struct bio *bio_chain_clone_range(struct bio **bio_src, if (!bi) { rbd_warn(NULL, "bio_chain exhausted with %u left", len); - goto out_err; /* EINVAL; ran out of bio's */ + goto put_chain; /* EINVAL; ran out of bio's */ } bi_size = min_t(unsigned int, bi->bi_iter.bi_size - off, len); bio = bio_clone_range(bi, off, bi_size, gfpmask); if (!bio) - goto out_err; /* ENOMEM */ + goto put_chain; /* ENOMEM */ *end = bio; end = &bio->bi_next; @@ -1442,7 +1442,7 @@ static struct bio *bio_chain_clone_range(struct bio **bio_src, *offset = off; return chain; -out_err: + put_chain: bio_chain_put(chain); return NULL; -- 2.10.0 -- To unsubscribe from this list: send the line "unsubscribe kernel-janitors" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html