All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] cgroup: fix reverse unlock sequence in cgroup_get_sb
@ 2009-07-21 10:25 Xiaotian Feng
  2009-07-21 11:10 ` Balbir Singh
                   ` (2 more replies)
  0 siblings, 3 replies; 25+ messages in thread
From: Xiaotian Feng @ 2009-07-21 10:25 UTC (permalink / raw)
  To: menage, lizf, containers; +Cc: linux-kernel, Xiaotian Feng

In cgroup_get_sb, the lock sequence is:
	mutex_lock(&inode->i_mutex);
	mutex_lock(&cgroup->mutex);
so the last unlock sequence should be:
	mutex_unlock(&cgroup->mutex);
	mutex_unlock(&inode->i_mutex);

Signed-off-by: Xiaotian Feng <dfeng@redhat.com>
---
 kernel/cgroup.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/kernel/cgroup.c b/kernel/cgroup.c
index 3737a68..11ef162 100644
--- a/kernel/cgroup.c
+++ b/kernel/cgroup.c
@@ -1140,8 +1140,8 @@ static int cgroup_get_sb(struct file_system_type *fs_type,
 		BUG_ON(root->number_of_cgroups != 1);
 
 		cgroup_populate_dir(root_cgrp);
-		mutex_unlock(&inode->i_mutex);
 		mutex_unlock(&cgroup_mutex);
+		mutex_unlock(&inode->i_mutex);
 	}
 
 	simple_set_mnt(mnt, sb);
-- 
1.6.2.5


^ permalink raw reply related	[flat|nested] 25+ messages in thread
* [PATCH] cgroup: fix reverse unlock sequence in cgroup_get_sb
@ 2009-07-21 10:25 Xiaotian Feng
  0 siblings, 0 replies; 25+ messages in thread
From: Xiaotian Feng @ 2009-07-21 10:25 UTC (permalink / raw)
  To: menage-hpIqsD4AKlfQT0dZR+AlfA, lizf-BthXqXjhjHXQFUHtdCDX3A,
	containers-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA
  Cc: linux-kernel-u79uwXL29TY76Z2rM5mHXA, Xiaotian Feng

In cgroup_get_sb, the lock sequence is:
	mutex_lock(&inode->i_mutex);
	mutex_lock(&cgroup->mutex);
so the last unlock sequence should be:
	mutex_unlock(&cgroup->mutex);
	mutex_unlock(&inode->i_mutex);

Signed-off-by: Xiaotian Feng <dfeng-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org>
---
 kernel/cgroup.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/kernel/cgroup.c b/kernel/cgroup.c
index 3737a68..11ef162 100644
--- a/kernel/cgroup.c
+++ b/kernel/cgroup.c
@@ -1140,8 +1140,8 @@ static int cgroup_get_sb(struct file_system_type *fs_type,
 		BUG_ON(root->number_of_cgroups != 1);
 
 		cgroup_populate_dir(root_cgrp);
-		mutex_unlock(&inode->i_mutex);
 		mutex_unlock(&cgroup_mutex);
+		mutex_unlock(&inode->i_mutex);
 	}
 
 	simple_set_mnt(mnt, sb);
-- 
1.6.2.5

^ permalink raw reply related	[flat|nested] 25+ messages in thread

end of thread, other threads:[~2009-07-22  2:32 UTC | newest]

Thread overview: 25+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-07-21 10:25 [PATCH] cgroup: fix reverse unlock sequence in cgroup_get_sb Xiaotian Feng
2009-07-21 11:10 ` Balbir Singh
2009-07-21 11:12   ` Danny Feng
     [not found]   ` <20090721111019.GV24157-SINUvgVNF2CyUtPGxGje5AC/G2K4zDHf@public.gmane.org>
2009-07-21 11:12     ` Danny Feng
2009-07-21 11:38     ` Zefan Li
     [not found]       ` <8522a3d30907210438u6fce081fi835bf964d0c01e8a-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2009-07-21 12:01         ` Balbir Singh
2009-07-21 12:01           ` Balbir Singh
2009-07-21 15:34           ` Paul Menage
     [not found]             ` <6599ad830907210834y30e7d57aj978898a300a447d0-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2009-07-21 15:47               ` Balbir Singh
2009-07-21 15:47             ` Balbir Singh
     [not found]           ` <20090721120106.GW24157-SINUvgVNF2CyUtPGxGje5AC/G2K4zDHf@public.gmane.org>
2009-07-21 15:34             ` Paul Menage
2009-07-22  0:53             ` Li Zefan
2009-07-22  0:53           ` Li Zefan
2009-07-22  1:42             ` Danny Feng
     [not found]             ` <4A66630C.3030303-BthXqXjhjHXQFUHtdCDX3A@public.gmane.org>
2009-07-22  1:42               ` Danny Feng
     [not found] ` <1248171926-20232-1-git-send-email-dfeng-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org>
2009-07-21 11:10   ` Balbir Singh
2009-07-21 16:03   ` Paul Menage
2009-07-21 16:03 ` Paul Menage
     [not found]   ` <6599ad830907210903q7206cac2l83a9139d19c5e1a-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2009-07-22  1:57     ` Danny Feng
2009-07-22  1:57   ` Danny Feng
2009-07-22  2:18     ` Li Zefan
     [not found]       ` <4A6676F4.7070201-BthXqXjhjHXQFUHtdCDX3A@public.gmane.org>
2009-07-22  2:32         ` Danny Feng
2009-07-22  2:32       ` Danny Feng
     [not found]     ` <4A667218.7040105-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org>
2009-07-22  2:18       ` Li Zefan
  -- strict thread matches above, loose matches on Subject: below --
2009-07-21 10:25 Xiaotian Feng

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.