Skip to content

Commit

Permalink
dm log: move register functions
Browse files Browse the repository at this point in the history
Reorder a couple of functions in the file so the next patch is readable.

Signed-off-by: Alasdair G Kergon <agk@redhat.com>
  • Loading branch information
Alasdair G Kergon committed Apr 25, 2008
1 parent 416cd17 commit b8206bc
Showing 1 changed file with 26 additions and 26 deletions.
52 changes: 26 additions & 26 deletions drivers/md/dm-log.c
Original file line number Diff line number Diff line change
Expand Up @@ -19,32 +19,6 @@
static LIST_HEAD(_log_types);
static DEFINE_SPINLOCK(_lock);

int dm_dirty_log_type_register(struct dm_dirty_log_type *type)
{
spin_lock(&_lock);
type->use_count = 0;
list_add(&type->list, &_log_types);
spin_unlock(&_lock);

return 0;
}
EXPORT_SYMBOL(dm_dirty_log_type_register);

int dm_dirty_log_type_unregister(struct dm_dirty_log_type *type)
{
spin_lock(&_lock);

if (type->use_count)
DMWARN("Attempt to unregister a log type that is still in use");
else
list_del(&type->list);

spin_unlock(&_lock);

return 0;
}
EXPORT_SYMBOL(dm_dirty_log_type_unregister);

static struct dm_dirty_log_type *_get_type(const char *type_name)
{
struct dm_dirty_log_type *type;
Expand Down Expand Up @@ -122,6 +96,32 @@ static void put_type(struct dm_dirty_log_type *type)
spin_unlock(&_lock);
}

int dm_dirty_log_type_register(struct dm_dirty_log_type *type)
{
spin_lock(&_lock);
type->use_count = 0;
list_add(&type->list, &_log_types);
spin_unlock(&_lock);

return 0;
}
EXPORT_SYMBOL(dm_dirty_log_type_register);

int dm_dirty_log_type_unregister(struct dm_dirty_log_type *type)
{
spin_lock(&_lock);

if (type->use_count)
DMWARN("Attempt to unregister a log type that is still in use");
else
list_del(&type->list);

spin_unlock(&_lock);

return 0;
}
EXPORT_SYMBOL(dm_dirty_log_type_unregister);

struct dm_dirty_log *dm_dirty_log_create(const char *type_name,
struct dm_target *ti,
unsigned int argc, char **argv)
Expand Down

0 comments on commit b8206bc

Please sign in to comment.