Skip to content

Commit

Permalink
Revert "cred: add missing return error code when set_cred_ucounts() f…
Browse files Browse the repository at this point in the history
…ailed"

This reverts commit 0855952 which is
commit 5e6b8a5 upstream.

The "original" commit 905ae01 ("Add a reference to ucounts for each
cred"), should not have been applied to the 5.10.y tree, so revert it,
and the follow-on fixup patches as well.

Reported-by: "Eric W. Biederman" <ebiederm@xmission.com>
Link: https://lore.kernel.org/r/87v93k4bl6.fsf@disp2133
Cc: Yang Yingliang <yangyingliang@huawei.com>
Cc: Alexey Gladkov <legion@kernel.org>
Cc: Sasha Levin <sashal@kernel.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
  • Loading branch information
gregkh committed Sep 8, 2021
1 parent 0c14438 commit 1aa3f27
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions kernel/cred.c
Expand Up @@ -372,8 +372,7 @@ int copy_creds(struct task_struct *p, unsigned long clone_flags)
ret = create_user_ns(new);
if (ret < 0)
goto error_put;
ret = set_cred_ucounts(new);
if (ret < 0)
if (set_cred_ucounts(new) < 0)
goto error_put;
}

Expand Down

0 comments on commit 1aa3f27

Please sign in to comment.