Skip to content

Commit

Permalink
dm: convert suspend_lock semaphore to mutex
Browse files Browse the repository at this point in the history
Replace semaphore with mutex.

Signed-off-by: Daniel Walker <[email protected]>
Signed-off-by: Alasdair G Kergon <[email protected]>
  • Loading branch information
Daniel Walker authored and kergon committed Feb 8, 2008
1 parent 8defd83 commit e61290a
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions drivers/md/dm.c
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ union map_info *dm_get_mapinfo(struct bio *bio)

struct mapped_device {
struct rw_semaphore io_lock;
struct semaphore suspend_lock;
struct mutex suspend_lock;
spinlock_t pushback_lock;
rwlock_t map_lock;
atomic_t holders;
Expand Down Expand Up @@ -994,7 +994,7 @@ static struct mapped_device *alloc_dev(int minor)

memset(md, 0, sizeof(*md));
init_rwsem(&md->io_lock);
init_MUTEX(&md->suspend_lock);
mutex_init(&md->suspend_lock);
spin_lock_init(&md->pushback_lock);
rwlock_init(&md->map_lock);
atomic_set(&md->holders, 1);
Expand Down Expand Up @@ -1282,7 +1282,7 @@ int dm_swap_table(struct mapped_device *md, struct dm_table *table)
{
int r = -EINVAL;

down(&md->suspend_lock);
mutex_lock(&md->suspend_lock);

/* device must be suspended */
if (!dm_suspended(md))
Expand All @@ -1297,7 +1297,7 @@ int dm_swap_table(struct mapped_device *md, struct dm_table *table)
r = __bind(md, table);

out:
up(&md->suspend_lock);
mutex_unlock(&md->suspend_lock);
return r;
}

Expand Down Expand Up @@ -1353,7 +1353,7 @@ int dm_suspend(struct mapped_device *md, unsigned suspend_flags)
int do_lockfs = suspend_flags & DM_SUSPEND_LOCKFS_FLAG ? 1 : 0;
int noflush = suspend_flags & DM_SUSPEND_NOFLUSH_FLAG ? 1 : 0;

down(&md->suspend_lock);
mutex_lock(&md->suspend_lock);

if (dm_suspended(md))
goto out_unlock;
Expand Down Expand Up @@ -1475,7 +1475,7 @@ int dm_suspend(struct mapped_device *md, unsigned suspend_flags)
dm_table_put(map);

out_unlock:
up(&md->suspend_lock);
mutex_unlock(&md->suspend_lock);
return r;
}

Expand All @@ -1485,7 +1485,7 @@ int dm_resume(struct mapped_device *md)
struct bio *def;
struct dm_table *map = NULL;

down(&md->suspend_lock);
mutex_lock(&md->suspend_lock);
if (!dm_suspended(md))
goto out;

Expand Down Expand Up @@ -1521,7 +1521,7 @@ int dm_resume(struct mapped_device *md)

out:
dm_table_put(map);
up(&md->suspend_lock);
mutex_unlock(&md->suspend_lock);

return r;
}
Expand Down

0 comments on commit e61290a

Please sign in to comment.