OSDN Git Service

libbpf: Optimized return value in libbpf_strerror when errno is libbpf errno
authorXin Liu <liuxin350@huawei.com>
Sat, 10 Dec 2022 08:20:45 +0000 (16:20 +0800)
committerDaniel Borkmann <daniel@iogearbox.net>
Wed, 14 Dec 2022 17:39:33 +0000 (18:39 +0100)
commitc9883ee9d110703ccb3dfe2ca13e0b7a01351077
tree98c9d223d38b5090aca23c78b62fbe81466fc339
parent7e68dd7d07a28faa2e6574dd6b9dbd90cdeaae91
libbpf: Optimized return value in libbpf_strerror when errno is libbpf errno

This is a small improvement in libbpf_strerror. When libbpf_strerror
is used to obtain the system error description, if the length of the
buf is insufficient, libbpf_sterror returns ERANGE and sets errno to
ERANGE.

However, this processing is not performed when the error code
customized by libbpf is obtained. Make some minor improvements here,
return -ERANGE and set errno to ERANGE when buf is not enough for
custom description.

Signed-off-by: Xin Liu <liuxin350@huawei.com>
Signed-off-by: Andrii Nakryiko <andrii@kernel.org>
Signed-off-by: Daniel Borkmann <daniel@iogearbox.net>
Link: https://lore.kernel.org/bpf/20221210082045.233697-1-liuxin350@huawei.com
tools/lib/bpf/libbpf_errno.c