From: Xiaotian Feng Date: Wed, 23 Sep 2009 22:56:18 +0000 (-0700) Subject: cgroups: make unlock sequence in cgroup_get_sb consistent X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=34f77a90f79fca31802c2e942bd73f7f557fe28c;p=GitHub%2Fexynos8895%2Fandroid_kernel_samsung_universal8895.git cgroups: make unlock sequence in cgroup_get_sb consistent Make the last unlock sequence consistent with previous unlock sequeue. Acked-by: Balbir Singh Acked-by: Paul Menage Signed-off-by: Xiaotian Feng Signed-off-by: Andrew Morton Signed-off-by: Linus Torvalds --- diff --git a/kernel/cgroup.c b/kernel/cgroup.c index cd83d9933b6b..f5281aadbcab 100644 --- a/kernel/cgroup.c +++ b/kernel/cgroup.c @@ -1155,8 +1155,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);