Commit 326dbde2 authored by Colin Ian King's avatar Colin Ian King Committed by Mike Snitzer
Browse files

dm ps io affinity: remove redundant continue statement



The continue statement at the end of a for-loop has no effect,
remove it.

Addresses-Coverity: ("Continue has no effect")
Signed-off-by: default avatarColin Ian King <colin.king@canonical.com>
Signed-off-by: default avatarMike Snitzer <snitzer@redhat.com>
parent 611c3e16
Loading
Loading
Loading
Loading
+0 −1
Original line number Diff line number Diff line
@@ -91,7 +91,6 @@ static int ioa_add_path(struct path_selector *ps, struct dm_path *path,
		cpumask_set_cpu(cpu, s->path_mask);
		s->path_map[cpu] = pi;
		refcount_inc(&pi->refcount);
		continue;
	}

	if (refcount_dec_and_test(&pi->refcount)) {