mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-15 16:24:13 +08:00
d17aff807f
This patch includes the following revert (one conflicting BPF FS patch and three token patch sets, represented by merge commits): - revert0f5d5454c7
"Merge branch 'bpf-fs-mount-options-parsing-follow-ups'"; - revert750e785796
"bpf: Support uid and gid when mounting bpffs"; - revert733763285a
"Merge branch 'bpf-token-support-in-libbpf-s-bpf-object'"; - revertc35919dcce
"Merge branch 'bpf-token-and-bpf-fs-based-delegation'". Link: https://lore.kernel.org/bpf/CAHk-=wg7JuFYwGy=GOMbRCtOL+jwSQsdUaBsRWkDVYbxipbM5A@mail.gmail.com Signed-off-by: Andrii Nakryiko <andrii@kernel.org>
7 lines
205 B
C
7 lines
205 B
C
/* SPDX-License-Identifier: (LGPL-2.1 OR BSD-2-Clause) */
|
|
#ifndef __LIBBPF_STR_ERROR_H
|
|
#define __LIBBPF_STR_ERROR_H
|
|
|
|
char *libbpf_strerror_r(int err, char *dst, int len);
|
|
#endif /* __LIBBPF_STR_ERROR_H */
|