diff options
Diffstat (limited to 'tools/testing/selftests/bpf/prog_tests/kfunc_call.c')
| -rw-r--r-- | tools/testing/selftests/bpf/prog_tests/kfunc_call.c | 6 | 
1 files changed, 3 insertions, 3 deletions
| diff --git a/tools/testing/selftests/bpf/prog_tests/kfunc_call.c b/tools/testing/selftests/bpf/prog_tests/kfunc_call.c index 9611f2bc50df..5c9c0176991b 100644 --- a/tools/testing/selftests/bpf/prog_tests/kfunc_call.c +++ b/tools/testing/selftests/bpf/prog_tests/kfunc_call.c @@ -7,10 +7,10 @@  static void test_main(void)  { -	struct kfunc_call_test *skel; +	struct kfunc_call_test_lskel *skel;  	int prog_fd, retval, err; -	skel = kfunc_call_test__open_and_load(); +	skel = kfunc_call_test_lskel__open_and_load();  	if (!ASSERT_OK_PTR(skel, "skel"))  		return; @@ -26,7 +26,7 @@ static void test_main(void)  	ASSERT_OK(err, "bpf_prog_test_run(test2)");  	ASSERT_EQ(retval, 3, "test2-retval"); -	kfunc_call_test__destroy(skel); +	kfunc_call_test_lskel__destroy(skel);  }  static void test_subprog(void) |