Skip to content

Commit

Permalink
dm: consolidate target deregistration error handling
Browse files Browse the repository at this point in the history
Change dm_unregister_target to return void and use BUG() for error
reporting.

dm_unregister_target can only fail because of programming bug in the
target driver. It can't fail because of user's behavior or disk errors.

This patch changes unregister_target to return void and use BUG if
someone tries to unregister non-registered target or unregister target
that is in use.

This patch removes code duplication (testing of error codes in all dm
targets) and reports bugs in just one place, in dm_unregister_target. In
some target drivers, these return codes were ignored, which could lead
to a situation where bugs could be missed.

Signed-off-by: Mikulas Patocka <mpatocka@redhat.com>
Signed-off-by: Alasdair G Kergon <agk@redhat.com>
  • Loading branch information
Mikulas Patocka authored and Alasdair G Kergon committed Jan 6, 2009
1 parent d460c65 commit 10d3bd0
Show file tree
Hide file tree
Showing 10 changed files with 20 additions and 50 deletions.
6 changes: 1 addition & 5 deletions drivers/md/dm-crypt.c
Original file line number Diff line number Diff line change
Expand Up @@ -1322,11 +1322,7 @@ static int __init dm_crypt_init(void)

static void __exit dm_crypt_exit(void)
{
int r = dm_unregister_target(&crypt_target);

if (r < 0)
DMERR("unregister failed %d", r);

dm_unregister_target(&crypt_target);
kmem_cache_destroy(_crypt_io_pool);
}

Expand Down
6 changes: 1 addition & 5 deletions drivers/md/dm-delay.c
Original file line number Diff line number Diff line change
Expand Up @@ -364,11 +364,7 @@ static int __init dm_delay_init(void)

static void __exit dm_delay_exit(void)
{
int r = dm_unregister_target(&delay_target);

if (r < 0)
DMERR("unregister failed %d", r);

dm_unregister_target(&delay_target);
kmem_cache_destroy(delayed_cache);
destroy_workqueue(kdelayd_wq);
}
Expand Down
5 changes: 1 addition & 4 deletions drivers/md/dm-linear.c
Original file line number Diff line number Diff line change
Expand Up @@ -156,8 +156,5 @@ int __init dm_linear_init(void)

void dm_linear_exit(void)
{
int r = dm_unregister_target(&linear_target);

if (r < 0)
DMERR("unregister failed %d", r);
dm_unregister_target(&linear_target);
}
6 changes: 1 addition & 5 deletions drivers/md/dm-mpath.c
Original file line number Diff line number Diff line change
Expand Up @@ -1495,14 +1495,10 @@ static int __init dm_multipath_init(void)

static void __exit dm_multipath_exit(void)
{
int r;

destroy_workqueue(kmpath_handlerd);
destroy_workqueue(kmultipathd);

r = dm_unregister_target(&multipath_target);
if (r < 0)
DMERR("target unregister failed %d", r);
dm_unregister_target(&multipath_target);
kmem_cache_destroy(_mpio_cache);
}

Expand Down
6 changes: 1 addition & 5 deletions drivers/md/dm-raid1.c
Original file line number Diff line number Diff line change
Expand Up @@ -1300,11 +1300,7 @@ static int __init dm_mirror_init(void)

static void __exit dm_mirror_exit(void)
{
int r;

r = dm_unregister_target(&mirror_target);
if (r < 0)
DMERR("unregister failed %d", r);
dm_unregister_target(&mirror_target);
}

/* Module hooks */
Expand Down
11 changes: 2 additions & 9 deletions drivers/md/dm-snap.c
Original file line number Diff line number Diff line change
Expand Up @@ -1470,17 +1470,10 @@ static int __init dm_snapshot_init(void)

static void __exit dm_snapshot_exit(void)
{
int r;

destroy_workqueue(ksnapd);

r = dm_unregister_target(&snapshot_target);
if (r)
DMERR("snapshot unregister failed %d", r);

r = dm_unregister_target(&origin_target);
if (r)
DMERR("origin unregister failed %d", r);
dm_unregister_target(&snapshot_target);
dm_unregister_target(&origin_target);

exit_origin_hash();
kmem_cache_destroy(pending_cache);
Expand Down
4 changes: 1 addition & 3 deletions drivers/md/dm-stripe.c
Original file line number Diff line number Diff line change
Expand Up @@ -337,9 +337,7 @@ int __init dm_stripe_init(void)

void dm_stripe_exit(void)
{
if (dm_unregister_target(&stripe_target))
DMWARN("target unregistration failed");

dm_unregister_target(&stripe_target);
destroy_workqueue(kstriped);

return;
Expand Down
15 changes: 7 additions & 8 deletions drivers/md/dm-target.c
Original file line number Diff line number Diff line change
Expand Up @@ -130,26 +130,26 @@ int dm_register_target(struct target_type *t)
return rv;
}

int dm_unregister_target(struct target_type *t)
void dm_unregister_target(struct target_type *t)
{
struct tt_internal *ti;

down_write(&_lock);
if (!(ti = __find_target_type(t->name))) {
up_write(&_lock);
return -EINVAL;
DMCRIT("Unregistering unrecognised target: %s", t->name);
BUG();
}

if (ti->use) {
up_write(&_lock);
return -ETXTBSY;
DMCRIT("Attempt to unregister target still in use: %s",
t->name);
BUG();
}

list_del(&ti->list);
kfree(ti);

up_write(&_lock);
return 0;
}

/*
Expand Down Expand Up @@ -187,8 +187,7 @@ int __init dm_target_init(void)

void dm_target_exit(void)
{
if (dm_unregister_target(&error_target))
DMWARN("error target unregistration failed");
dm_unregister_target(&error_target);
}

EXPORT_SYMBOL(dm_register_target);
Expand Down
5 changes: 1 addition & 4 deletions drivers/md/dm-zero.c
Original file line number Diff line number Diff line change
Expand Up @@ -69,10 +69,7 @@ static int __init dm_zero_init(void)

static void __exit dm_zero_exit(void)
{
int r = dm_unregister_target(&zero_target);

if (r < 0)
DMERR("unregister failed %d", r);
dm_unregister_target(&zero_target);
}

module_init(dm_zero_init)
Expand Down
6 changes: 4 additions & 2 deletions include/linux/device-mapper.h
Original file line number Diff line number Diff line change
Expand Up @@ -157,8 +157,7 @@ struct dm_target {
};

int dm_register_target(struct target_type *t);
int dm_unregister_target(struct target_type *t);

void dm_unregister_target(struct target_type *t);

/*-----------------------------------------------------------------
* Functions for creating and manipulating mapped devices.
Expand Down Expand Up @@ -276,6 +275,9 @@ void *dm_vcalloc(unsigned long nmemb, unsigned long elem_size);
*---------------------------------------------------------------*/
#define DM_NAME "device-mapper"

#define DMCRIT(f, arg...) \
printk(KERN_CRIT DM_NAME ": " DM_MSG_PREFIX ": " f "\n", ## arg)

#define DMERR(f, arg...) \
printk(KERN_ERR DM_NAME ": " DM_MSG_PREFIX ": " f "\n", ## arg)
#define DMERR_LIMIT(f, arg...) \
Expand Down

0 comments on commit 10d3bd0

Please sign in to comment.