Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

dm stripe: drop useless exit point from dm_stripe_init()

Signed-off-by: Luis Henriques <luis.henriques@canonical.com>
Signed-off-by: Mike Snitzer <snitzer@redhat.com>

authored by

Luis Henriques and committed by
Mike Snitzer
e223e1de 0cf45031

+1 -3
+1 -3
drivers/md/dm-stripe.c
··· 451 451 int r; 452 452 453 453 r = dm_register_target(&stripe_target); 454 - if (r < 0) { 454 + if (r < 0) 455 455 DMWARN("target registration failed"); 456 - return r; 457 - } 458 456 459 457 return r; 460 458 }