mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2025-04-11 18:57:59 +07:00
md: move mddev_lock and related to md.h
The one which is not inline (mddev_unlock) gets EXPORTed. This makes the locking available to personality modules so that it doesn't have to be imposed upon them. Signed-off-by: NeilBrown <neilb@suse.de>
This commit is contained in:
parent
23da422b19
commit
5c47daf6e7
@ -590,32 +590,9 @@ static struct mddev *mddev_find(dev_t unit)
|
|||||||
goto retry;
|
goto retry;
|
||||||
}
|
}
|
||||||
|
|
||||||
static inline int __must_check mddev_lock(struct mddev *mddev)
|
|
||||||
{
|
|
||||||
return mutex_lock_interruptible(&mddev->reconfig_mutex);
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Sometimes we need to take the lock in a situation where
|
|
||||||
* failure due to interrupts is not acceptable.
|
|
||||||
*/
|
|
||||||
static inline void mddev_lock_nointr(struct mddev *mddev)
|
|
||||||
{
|
|
||||||
mutex_lock(&mddev->reconfig_mutex);
|
|
||||||
}
|
|
||||||
|
|
||||||
static inline int mddev_is_locked(struct mddev *mddev)
|
|
||||||
{
|
|
||||||
return mutex_is_locked(&mddev->reconfig_mutex);
|
|
||||||
}
|
|
||||||
|
|
||||||
static inline int mddev_trylock(struct mddev *mddev)
|
|
||||||
{
|
|
||||||
return mutex_trylock(&mddev->reconfig_mutex);
|
|
||||||
}
|
|
||||||
|
|
||||||
static struct attribute_group md_redundancy_group;
|
static struct attribute_group md_redundancy_group;
|
||||||
|
|
||||||
static void mddev_unlock(struct mddev *mddev)
|
void mddev_unlock(struct mddev *mddev)
|
||||||
{
|
{
|
||||||
if (mddev->to_remove) {
|
if (mddev->to_remove) {
|
||||||
/* These cannot be removed under reconfig_mutex as
|
/* These cannot be removed under reconfig_mutex as
|
||||||
@ -657,6 +634,7 @@ static void mddev_unlock(struct mddev *mddev)
|
|||||||
md_wakeup_thread(mddev->thread);
|
md_wakeup_thread(mddev->thread);
|
||||||
spin_unlock(&pers_lock);
|
spin_unlock(&pers_lock);
|
||||||
}
|
}
|
||||||
|
EXPORT_SYMBOL_GPL(mddev_unlock);
|
||||||
|
|
||||||
static struct md_rdev *find_rdev_nr_rcu(struct mddev *mddev, int nr)
|
static struct md_rdev *find_rdev_nr_rcu(struct mddev *mddev, int nr)
|
||||||
{
|
{
|
||||||
|
@ -450,6 +450,30 @@ struct mddev {
|
|||||||
void (*sync_super)(struct mddev *mddev, struct md_rdev *rdev);
|
void (*sync_super)(struct mddev *mddev, struct md_rdev *rdev);
|
||||||
};
|
};
|
||||||
|
|
||||||
|
static inline int __must_check mddev_lock(struct mddev *mddev)
|
||||||
|
{
|
||||||
|
return mutex_lock_interruptible(&mddev->reconfig_mutex);
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Sometimes we need to take the lock in a situation where
|
||||||
|
* failure due to interrupts is not acceptable.
|
||||||
|
*/
|
||||||
|
static inline void mddev_lock_nointr(struct mddev *mddev)
|
||||||
|
{
|
||||||
|
mutex_lock(&mddev->reconfig_mutex);
|
||||||
|
}
|
||||||
|
|
||||||
|
static inline int mddev_is_locked(struct mddev *mddev)
|
||||||
|
{
|
||||||
|
return mutex_is_locked(&mddev->reconfig_mutex);
|
||||||
|
}
|
||||||
|
|
||||||
|
static inline int mddev_trylock(struct mddev *mddev)
|
||||||
|
{
|
||||||
|
return mutex_trylock(&mddev->reconfig_mutex);
|
||||||
|
}
|
||||||
|
extern void mddev_unlock(struct mddev *mddev);
|
||||||
|
|
||||||
static inline void rdev_dec_pending(struct md_rdev *rdev, struct mddev *mddev)
|
static inline void rdev_dec_pending(struct md_rdev *rdev, struct mddev *mddev)
|
||||||
{
|
{
|
||||||
int faulty = test_bit(Faulty, &rdev->flags);
|
int faulty = test_bit(Faulty, &rdev->flags);
|
||||||
|
Loading…
Reference in New Issue
Block a user