diff options
Diffstat (limited to 'tools/testing/selftests/bpf/bpf_testmod/bpf_testmod.c')
| -rw-r--r-- | tools/testing/selftests/bpf/bpf_testmod/bpf_testmod.c | 16 | 
1 files changed, 8 insertions, 8 deletions
diff --git a/tools/testing/selftests/bpf/bpf_testmod/bpf_testmod.c b/tools/testing/selftests/bpf/bpf_testmod/bpf_testmod.c index cf216041876c..aaf6ef1201c7 100644 --- a/tools/testing/selftests/bpf/bpf_testmod/bpf_testmod.c +++ b/tools/testing/selftests/bpf/bpf_testmod/bpf_testmod.c @@ -191,8 +191,6 @@ noinline int bpf_testmod_fentry_test3(char a, int b, u64 c)  	return a + b + c;  } -__diag_pop(); -  int bpf_testmod_fentry_ok;  noinline ssize_t @@ -273,6 +271,14 @@ bpf_testmod_test_write(struct file *file, struct kobject *kobj,  EXPORT_SYMBOL(bpf_testmod_test_write);  ALLOW_ERROR_INJECTION(bpf_testmod_test_write, ERRNO); +noinline int bpf_fentry_shadow_test(int a) +{ +	return a + 2; +} +EXPORT_SYMBOL_GPL(bpf_fentry_shadow_test); + +__diag_pop(); +  static struct bin_attribute bin_attr_bpf_testmod_file __ro_after_init = {  	.attr = { .name = "bpf_testmod", .mode = 0666, },  	.read = bpf_testmod_test_read, @@ -462,12 +468,6 @@ static const struct btf_kfunc_id_set bpf_testmod_kfunc_set = {  	.set   = &bpf_testmod_check_kfunc_ids,  }; -noinline int bpf_fentry_shadow_test(int a) -{ -	return a + 2; -} -EXPORT_SYMBOL_GPL(bpf_fentry_shadow_test); -  extern int bpf_fentry_test1(int a);  static int bpf_testmod_init(void)  | 
