mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-29 23:24:11 +08:00
5b891af7fc
This patch replaces [u]int32_t and [u]int64_t usage with
__[su]32 and __[su]64. The same change goes for [u]int16_t
and [u]int8_t.
Fixes: 8a138aed4a
("bpf: btf: Add BTF support to libbpf")
Signed-off-by: Martin KaFai Lau <kafai@fb.com>
Acked-by: Yonghong Song <yhs@fb.com>
Signed-off-by: Daniel Borkmann <daniel@iogearbox.net>
23 lines
553 B
C
23 lines
553 B
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
/* Copyright (c) 2018 Facebook */
|
|
|
|
#ifndef __BPF_BTF_H
|
|
#define __BPF_BTF_H
|
|
|
|
#include <linux/types.h>
|
|
|
|
#define BTF_ELF_SEC ".BTF"
|
|
|
|
struct btf;
|
|
|
|
typedef int (*btf_print_fn_t)(const char *, ...)
|
|
__attribute__((format(printf, 1, 2)));
|
|
|
|
void btf__free(struct btf *btf);
|
|
struct btf *btf__new(__u8 *data, __u32 size, btf_print_fn_t err_log);
|
|
__s32 btf__find_by_name(const struct btf *btf, const char *type_name);
|
|
__s64 btf__resolve_size(const struct btf *btf, __u32 type_id);
|
|
int btf__fd(const struct btf *btf);
|
|
|
|
#endif
|