From 320dc40bea2c88494b946c06ab6184281182d86d Mon Sep 17 00:00:00 2001 From: Reza Talebi Date: Sat, 19 Mar 2022 17:07:48 +0330 Subject: [PATCH] [CLEANUP PATCH 7/7] Removing unnecessary bperf header. Signed-off-by: Reza Talebi --- tools/perf/util/bpf_skel/bperf.h | 14 -------------- 1 file changed, 14 deletions(-) delete mode 100644 tools/perf/util/bpf_skel/bperf.h diff --git a/tools/perf/util/bpf_skel/bperf.h b/tools/perf/util/bpf_skel/bperf.h deleted file mode 100644 index 186a5551ddb9..000000000000 --- a/tools/perf/util/bpf_skel/bperf.h +++ /dev/null @@ -1,14 +0,0 @@ -// SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause) -// Copyright (c) 2021 Facebook - -#ifndef __BPERF_STAT_H -#define __BPERF_STAT_H - -typedef struct { - __uint(type, BPF_MAP_TYPE_PERCPU_ARRAY); - __uint(key_size, sizeof(__u32)); - __uint(value_size, sizeof(struct bpf_perf_event_value)); - __uint(max_entries, 1); -} reading_map; - -#endif /* __BPERF_STAT_H */