Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 0637018d authored by Bart Van Assche's avatar Bart Van Assche Committed by Mike Snitzer
Browse files

dm array: remove a dead assignment in populate_ablock_with_values()



A value is assigned to 'nr_entries' but is never used, remove it.

Signed-off-by: default avatarBart Van Assche <bart.vanassche@sandisk.com>
Signed-off-by: default avatarMike Snitzer <snitzer@redhat.com>
parent 6080758d
Loading
Loading
Loading
Loading
+0 −2
Original line number Diff line number Diff line
@@ -700,13 +700,11 @@ static int populate_ablock_with_values(struct dm_array_info *info, struct array_
{
	int r;
	unsigned i;
	uint32_t nr_entries;
	struct dm_btree_value_type *vt = &info->value_type;

	BUG_ON(le32_to_cpu(ab->nr_entries));
	BUG_ON(new_nr > le32_to_cpu(ab->max_entries));

	nr_entries = le32_to_cpu(ab->nr_entries);
	for (i = 0; i < new_nr; i++) {
		r = fn(base + i, element_at(info, ab, i), context);
		if (r)