Commit 1c3fe2fa authored by Heinz Mauelshagen's avatar Heinz Mauelshagen Committed by Mike Snitzer
Browse files

dm: avoid useless 'else' after 'break' or return'

parent ae99111e
Loading
Loading
Loading
Loading
+4 −4
Original line number Diff line number Diff line
@@ -259,12 +259,12 @@ static int stripe_map_range(struct stripe_c *sc, struct bio *bio,
			sc->stripe[target_stripe].physical_start;
		bio->bi_iter.bi_size = to_bytes(end - begin);
		return DM_MAPIO_REMAPPED;
	} else {
	}

	/* The range doesn't map to the target stripe */
	bio_endio(bio);
	return DM_MAPIO_SUBMITTED;
}
}

static int stripe_map(struct dm_target *ti, struct bio *bio)
{
+2 −2
Original line number Diff line number Diff line
@@ -1612,7 +1612,7 @@ static int __find_mapped_range(struct dm_thin_device *td,
		if (r) {
			if (r == -ENODATA)
				break;
			else

			return r;
		}

+17 −16
Original line number Diff line number Diff line
@@ -110,7 +110,8 @@ static int verity_hash_update(struct dm_verity *v, struct ahash_request *req,
		sg_init_one(&sg, data, len);
		ahash_request_set_crypt(req, &sg, NULL, len);
		return crypto_wait_req(crypto_ahash_update(req), wait);
	} else {
	}

	do {
		int r;
		size_t this_step = min_t(size_t, len, PAGE_SIZE - offset_in_page(data));
@@ -125,9 +126,9 @@ static int verity_hash_update(struct dm_verity *v, struct ahash_request *req,
		data += this_step;
		len -= this_step;
	} while (len);

	return 0;
}
}

/*
 * Wrapper for crypto_ahash_init, which handles verity salting.
+8 −8
Original line number Diff line number Diff line
@@ -623,17 +623,17 @@ static struct wc_entry *writecache_find_entry(struct dm_writecache *wc,
		if (unlikely(!node)) {
			if (!(flags & WFE_RETURN_FOLLOWING))
				return NULL;
			if (read_original_sector(wc, e) >= block) {
			if (read_original_sector(wc, e) >= block)
				return e;
			} else {

			node = rb_next(&e->rb_node);
			if (unlikely(!node))
				return NULL;

			e = container_of(node, struct wc_entry, rb_node);
			return e;
		}
	}
	}

	while (1) {
		struct wc_entry *e2;
+2 −2
Original line number Diff line number Diff line
@@ -1352,7 +1352,7 @@ static int find_key(struct ro_spine *s, dm_block_t block, bool find_highest,
		i = le32_to_cpu(ro_node(s)->header.nr_entries);
		if (!i)
			return -ENODATA;
		else

		i--;

		if (find_highest)
Loading