There was a reversed NULL test to the function couldn't work. Fixes: ec0090a1ccf7 ("cpuset: Use fs_context") Signed-off-by: Dan Carpenter <dan.carpenter@xxxxxxxxxx> diff --git a/kernel/cgroup/cpuset.c b/kernel/cgroup/cpuset.c index e6582b2f5144..b02161a41d5a 100644 --- a/kernel/cgroup/cpuset.c +++ b/kernel/cgroup/cpuset.c @@ -324,10 +324,8 @@ static int cpuset_get_tree(struct fs_context *fc) int ret = -ENODEV; cgroup_fs = get_fs_type("cgroup"); - if (cgroup_fs) { - ret = PTR_ERR(cgroup_fs); + if (!cgroup_fs) goto out; - } cg_fc = vfs_new_fs_context(cgroup_fs, NULL, fc->sb_flags, fc->purpose); put_filesystem(cgroup_fs); -- To unsubscribe from this list: send the line "unsubscribe kernel-janitors" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html