libbpf: fix errno is overwritten after being closed.
authorXin Liu <liuxin350@huawei.com>
Fri, 23 Dec 2022 13:36:18 +0000 (21:36 +0800)
committerAlexei Starovoitov <ast@kernel.org>
Wed, 28 Dec 2022 22:03:51 +0000 (14:03 -0800)
commit07453245620c075779abefa2a9f469fa336e7510
tree27d0c2b236c8e450653d4ed66dc48dac97a85f5f
parent4633a00682589931e8415c166979d8e5dd174282
libbpf: fix errno is overwritten after being closed.

In the ensure_good_fd function, if the fcntl function succeeds but
the close function fails, ensure_good_fd returns a normal fd and
sets errno, which may cause users to misunderstand. The close
failure is not a serious problem, and the correct FD has been
handed over to the upper-layer application. Let's restore errno here.

Signed-off-by: Xin Liu <liuxin350@huawei.com>
Link: https://lore.kernel.org/r/20221223133618.10323-1-liuxin350@huawei.com
Signed-off-by: Alexei Starovoitov <ast@kernel.org>
tools/lib/bpf/libbpf_internal.h