146565696SKumar Kartikeya Dwivedi // SPDX-License-Identifier: GPL-2.0 246565696SKumar Kartikeya Dwivedi #include <vmlinux.h> 346565696SKumar Kartikeya Dwivedi #include <bpf/bpf_helpers.h> 4*8e9af821SJiri Olsa #include "../bpf_testmod/bpf_testmod_kfunc.h" 546565696SKumar Kartikeya Dwivedi 646565696SKumar Kartikeya Dwivedi SEC("tc") kfunc_call_fail(struct __sk_buff * ctx)746565696SKumar Kartikeya Dwivediint kfunc_call_fail(struct __sk_buff *ctx) 846565696SKumar Kartikeya Dwivedi { 946565696SKumar Kartikeya Dwivedi bpf_testmod_test_mod_kfunc(0); 1046565696SKumar Kartikeya Dwivedi return 0; 1146565696SKumar Kartikeya Dwivedi } 1246565696SKumar Kartikeya Dwivedi 1346565696SKumar Kartikeya Dwivedi char _license[] SEC("license") = "GPL"; 14