summaryrefslogtreecommitdiff
path: root/tools/testing/selftests/bpf/progs/priv_map.c
diff options
context:
space:
mode:
Diffstat (limited to 'tools/testing/selftests/bpf/progs/priv_map.c')
-rw-r--r--tools/testing/selftests/bpf/progs/priv_map.c13
1 files changed, 0 insertions, 13 deletions
diff --git a/tools/testing/selftests/bpf/progs/priv_map.c b/tools/testing/selftests/bpf/progs/priv_map.c
deleted file mode 100644
index 9085be50f03b..000000000000
--- a/tools/testing/selftests/bpf/progs/priv_map.c
+++ /dev/null
@@ -1,13 +0,0 @@
-// SPDX-License-Identifier: GPL-2.0
-/* Copyright (c) 2023 Meta Platforms, Inc. and affiliates. */
-
-#include "vmlinux.h"
-#include <bpf/bpf_helpers.h>
-
-char _license[] SEC("license") = "GPL";
-
-struct {
- __uint(type, BPF_MAP_TYPE_QUEUE);
- __uint(max_entries, 1);
- __type(value, __u32);
-} priv_map SEC(".maps");