Skip to content

Commit

Permalink
[PATCH] md: Convert reconfig_sem to reconfig_mutex
Browse files Browse the repository at this point in the history
... being careful that mutex_trylock is inverted wrt down_trylock

Signed-off-by: Neil Brown <neilb@suse.de>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
  • Loading branch information
NeilBrown authored and Linus Torvalds committed Mar 27, 2006
1 parent 48c9c27 commit df5b89b
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
14 changes: 7 additions & 7 deletions drivers/md/md.c
Original file line number Diff line number Diff line change
Expand Up @@ -255,7 +255,7 @@ static mddev_t * mddev_find(dev_t unit)
else
new->md_minor = MINOR(unit) >> MdpMinorShift;

init_MUTEX(&new->reconfig_sem);
mutex_init(&new->reconfig_mutex);
INIT_LIST_HEAD(&new->disks);
INIT_LIST_HEAD(&new->all_mddevs);
init_timer(&new->safemode_timer);
Expand All @@ -277,22 +277,22 @@ static mddev_t * mddev_find(dev_t unit)

static inline int mddev_lock(mddev_t * mddev)
{
return down_interruptible(&mddev->reconfig_sem);
return mutex_lock_interruptible(&mddev->reconfig_mutex);
}

static inline void mddev_lock_uninterruptible(mddev_t * mddev)
{
down(&mddev->reconfig_sem);
mutex_lock(&mddev->reconfig_mutex);
}

static inline int mddev_trylock(mddev_t * mddev)
{
return down_trylock(&mddev->reconfig_sem);
return mutex_trylock(&mddev->reconfig_mutex);
}

static inline void mddev_unlock(mddev_t * mddev)
{
up(&mddev->reconfig_sem);
mutex_unlock(&mddev->reconfig_mutex);

md_wakeup_thread(mddev->thread);
}
Expand Down Expand Up @@ -4893,7 +4893,7 @@ void md_check_recovery(mddev_t *mddev)
))
return;

if (mddev_trylock(mddev)==0) {
if (mddev_trylock(mddev)) {
int spares =0;

spin_lock_irq(&mddev->write_lock);
Expand Down Expand Up @@ -5029,7 +5029,7 @@ static int md_notify_reboot(struct notifier_block *this,
printk(KERN_INFO "md: stopping all md devices.\n");

ITERATE_MDDEV(mddev,tmp)
if (mddev_trylock(mddev)==0)
if (mddev_trylock(mddev))
do_md_stop (mddev, 1);
/*
* certain more exotic SCSI devices are known to be
Expand Down
2 changes: 1 addition & 1 deletion include/linux/raid/md_k.h
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,7 @@ struct mddev_s
unsigned long recovery;

int in_sync; /* know to not need resync */
struct semaphore reconfig_sem;
struct mutex reconfig_mutex;
atomic_t active;

int changed; /* true if we might need to reread partition info */
Expand Down

0 comments on commit df5b89b

Please sign in to comment.