aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/tools/testing/selftests/bpf/progs/bad_struct_ops2.c
blob: 64a95f6be86d1014bffc55ba0d558317e2d518a6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// SPDX-License-Identifier: GPL-2.0

#include <linux/bpf.h>
#include <bpf/bpf_helpers.h>

char _license[] SEC("license") = "GPL";

/* This is an unused struct_ops program, it lacks corresponding
 * struct_ops map, which provides attachment information.
 * W/o additional configuration attempt to load such
 * BPF object file would fail.
 */
SEC("struct_ops/foo")
void foo(void) {}