Merge branch 'for-3.14-fixes' into for-3.15
authorTejun Heo <tj@kernel.org>
Sat, 8 Feb 2014 15:37:14 +0000 (10:37 -0500)
committerTejun Heo <tj@kernel.org>
Sat, 8 Feb 2014 15:37:14 +0000 (10:37 -0500)
Pending kernfs conversion depends on fixes in for-3.14-fixes.  Pull it
into for-3.15.

Signed-off-by: Tejun Heo <tj@kernel.org>
1  2 
kernel/cgroup.c

diff --cc kernel/cgroup.c
@@@ -1493,11 -1564,12 +1493,11 @@@ static struct dentry *cgroup_mount(stru
  
                mutex_lock(&inode->i_mutex);
                mutex_lock(&cgroup_mutex);
 -              mutex_lock(&cgroup_root_mutex);
  
-               root_cgrp->id = idr_alloc(&root->cgroup_idr, root_cgrp,
-                                          0, 1, GFP_KERNEL);
-               if (root_cgrp->id < 0)
+               ret = idr_alloc(&root->cgroup_idr, root_cgrp, 0, 1, GFP_KERNEL);
+               if (ret < 0)
                        goto unlock_drop;
+               root_cgrp->id = ret;
  
                /* Check for name clashes with existing mounts */
                ret = -EBUSY;