Skip to content

Commit eff8190

Browse files
rdnaborkmann
authored andcommitted
libbpf: Make include guards consistent
Rename include guards to have consistent names "__LIBBPF_<header_name>". Signed-off-by: Andrey Ignatov <rdna@fb.com> Acked-by: Alexei Starovoitov <ast@kernel.org> Signed-off-by: Daniel Borkmann <daniel@iogearbox.net>
1 parent 24d6a80 commit eff8190

File tree

5 files changed

+15
-15
lines changed

5 files changed

+15
-15
lines changed

tools/lib/bpf/bpf.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@
2020
* You should have received a copy of the GNU Lesser General Public
2121
* License along with this program; if not, see <http://www.gnu.org/licenses>
2222
*/
23-
#ifndef __BPF_BPF_H
24-
#define __BPF_BPF_H
23+
#ifndef __LIBBPF_BPF_H
24+
#define __LIBBPF_BPF_H
2525

2626
#include <linux/bpf.h>
2727
#include <stdbool.h>
@@ -111,4 +111,4 @@ int bpf_load_btf(void *btf, __u32 btf_size, char *log_buf, __u32 log_buf_size,
111111
int bpf_task_fd_query(int pid, int fd, __u32 flags, char *buf, __u32 *buf_len,
112112
__u32 *prog_id, __u32 *fd_type, __u64 *probe_offset,
113113
__u64 *probe_addr);
114-
#endif
114+
#endif /* __LIBBPF_BPF_H */

tools/lib/bpf/btf.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
/* SPDX-License-Identifier: LGPL-2.1 */
22
/* Copyright (c) 2018 Facebook */
33

4-
#ifndef __BPF_BTF_H
5-
#define __BPF_BTF_H
4+
#ifndef __LIBBPF_BTF_H
5+
#define __LIBBPF_BTF_H
66

77
#include <linux/types.h>
88

@@ -23,4 +23,4 @@ int btf__resolve_type(const struct btf *btf, __u32 type_id);
2323
int btf__fd(const struct btf *btf);
2424
const char *btf__name_by_offset(const struct btf *btf, __u32 offset);
2525

26-
#endif
26+
#endif /* __LIBBPF_BTF_H */

tools/lib/bpf/libbpf.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@
2020
* You should have received a copy of the GNU Lesser General Public
2121
* License along with this program; if not, see <http://www.gnu.org/licenses>
2222
*/
23-
#ifndef __BPF_LIBBPF_H
24-
#define __BPF_LIBBPF_H
23+
#ifndef __LIBBPF_LIBBPF_H
24+
#define __LIBBPF_LIBBPF_H
2525

2626
#include <stdio.h>
2727
#include <stdint.h>
@@ -315,4 +315,4 @@ int libbpf_nl_get_qdisc(int sock, unsigned int nl_pid, int ifindex,
315315
libbpf_dump_nlmsg_t dump_qdisc_nlmsg, void *cookie);
316316
int libbpf_nl_get_filter(int sock, unsigned int nl_pid, int ifindex, int handle,
317317
libbpf_dump_nlmsg_t dump_filter_nlmsg, void *cookie);
318-
#endif
318+
#endif /* __LIBBPF_LIBBPF_H */

tools/lib/bpf/nlattr.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@
1111
* Copyright (c) 2003-2013 Thomas Graf <tgraf@suug.ch>
1212
*/
1313

14-
#ifndef __NLATTR_H
15-
#define __NLATTR_H
14+
#ifndef __LIBBPF_NLATTR_H
15+
#define __LIBBPF_NLATTR_H
1616

1717
#include <stdint.h>
1818
#include <linux/netlink.h>
@@ -108,4 +108,4 @@ int libbpf_nla_parse_nested(struct nlattr *tb[], int maxtype,
108108

109109
int libbpf_nla_dump_errormsg(struct nlmsghdr *nlh);
110110

111-
#endif /* __NLATTR_H */
111+
#endif /* __LIBBPF_NLATTR_H */

tools/lib/bpf/str_error.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// SPDX-License-Identifier: LGPL-2.1
2-
#ifndef BPF_STR_ERROR
3-
#define BPF_STR_ERROR
2+
#ifndef __LIBBPF_STR_ERROR_H
3+
#define __LIBBPF_STR_ERROR_H
44

55
char *libbpf_strerror_r(int err, char *dst, int len);
6-
#endif // BPF_STR_ERROR
6+
#endif /* __LIBBPF_STR_ERROR_H */

0 commit comments

Comments
 (0)