dect
/
linux-2.6
Archived
13
0
Fork 0

[PATCH] mqueue: nested locking annotation

Fix http://bugzilla.kernel.org/show_bug.cgi?id=8130

Signed-off-by: Peter Zijlstra <a.p.zijlstra@chello.nl>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
This commit is contained in:
Peter Zijlstra 2007-03-06 01:42:09 -08:00 committed by Linus Torvalds
parent 4a6753ca08
commit 7a434814c7
1 changed files with 2 additions and 1 deletions

View File

@ -731,7 +731,8 @@ asmlinkage long sys_mq_unlink(const char __user *u_name)
if (IS_ERR(name))
return PTR_ERR(name);
mutex_lock(&mqueue_mnt->mnt_root->d_inode->i_mutex);
mutex_lock_nested(&mqueue_mnt->mnt_root->d_inode->i_mutex,
I_MUTEX_PARENT);
dentry = lookup_one_len(name, mqueue_mnt->mnt_root, strlen(name));
if (IS_ERR(dentry)) {
err = PTR_ERR(dentry);