um: chan_user: Fix winch_tramp() return value
authorJohannes Berg <johannes.berg@intel.com>
Fri, 20 May 2022 17:45:36 +0000 (19:45 +0200)
committerRichard Weinberger <richard@nod.at>
Fri, 27 May 2022 07:03:41 +0000 (09:03 +0200)
commit57ae0b67b747031bc41fb44643aa5344ab58607e
tree1e9d908c43466f475d90e4e0cc01249e8b11afcb
parentaf9fb41ed315ce95f659f0b10b4d59a71975381d
um: chan_user: Fix winch_tramp() return value

The previous fix here was only partially correct, it did
result in returning a proper error value in case of error,
but it also clobbered the pid that we need to return from
this function (not just zero for success).

As a result, it returned 0 here, but later this is treated
as a pid and used to kill the process, but since it's now
0 we kill(0, SIGKILL), which makes UML kill itself rather
than just the helper thread.

Fix that and make it more obvious by using a separate
variable for the pid.

Fixes: ccf1236ecac4 ("um: fix error return code in winch_tramp()")
Reported-and-tested-by: Nathan Chancellor <nathan@kernel.org>
Signed-off-by: Johannes Berg <johannes.berg@intel.com>
Cc: stable@vger.kernel.org
Signed-off-by: Richard Weinberger <richard@nod.at>
arch/um/drivers/chan_user.c