mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-23 12:14:10 +08:00
cgroup: cgroup_idr_lock should be bh
cgroup_idr_remove() can be invoked from bh leading to lockdep detecting possible AA deadlock (IN_BH/ON_BH). Make the lock bh-safe. Signed-off-by: Tejun Heo <tj@kernel.org> Acked-by: Li Zefan <lizefan@huawei.com>
This commit is contained in:
parent
0cee8b7786
commit
54504e977c
@ -203,9 +203,9 @@ static int cgroup_idr_alloc(struct idr *idr, void *ptr, int start, int end,
|
||||
int ret;
|
||||
|
||||
idr_preload(gfp_mask);
|
||||
spin_lock(&cgroup_idr_lock);
|
||||
spin_lock_bh(&cgroup_idr_lock);
|
||||
ret = idr_alloc(idr, ptr, start, end, gfp_mask);
|
||||
spin_unlock(&cgroup_idr_lock);
|
||||
spin_unlock_bh(&cgroup_idr_lock);
|
||||
idr_preload_end();
|
||||
return ret;
|
||||
}
|
||||
@ -214,17 +214,17 @@ static void *cgroup_idr_replace(struct idr *idr, void *ptr, int id)
|
||||
{
|
||||
void *ret;
|
||||
|
||||
spin_lock(&cgroup_idr_lock);
|
||||
spin_lock_bh(&cgroup_idr_lock);
|
||||
ret = idr_replace(idr, ptr, id);
|
||||
spin_unlock(&cgroup_idr_lock);
|
||||
spin_unlock_bh(&cgroup_idr_lock);
|
||||
return ret;
|
||||
}
|
||||
|
||||
static void cgroup_idr_remove(struct idr *idr, int id)
|
||||
{
|
||||
spin_lock(&cgroup_idr_lock);
|
||||
spin_lock_bh(&cgroup_idr_lock);
|
||||
idr_remove(idr, id);
|
||||
spin_unlock(&cgroup_idr_lock);
|
||||
spin_unlock_bh(&cgroup_idr_lock);
|
||||
}
|
||||
|
||||
/**
|
||||
|
Loading…
Reference in New Issue
Block a user