diff options
Diffstat (limited to 'drivers/md/dm-stripe.c')
| -rw-r--r-- | drivers/md/dm-stripe.c | 4 | 
1 files changed, 3 insertions, 1 deletions
diff --git a/drivers/md/dm-stripe.c b/drivers/md/dm-stripe.c index a2d068dbe9e..9e4ef88d421 100644 --- a/drivers/md/dm-stripe.c +++ b/drivers/md/dm-stripe.c @@ -320,8 +320,10 @@ int __init dm_stripe_init(void)  	int r;  	r = dm_register_target(&stripe_target); -	if (r < 0) +	if (r < 0) {  		DMWARN("target registration failed"); +		return r; +	}  	kstriped = create_singlethread_workqueue("kstriped");  	if (!kstriped) {  |