Add special test to be sure that only __nullable BTF params can be replaced by NULL. This patch adds fake kfuncs in bpf_testmod to properly test different params. Acked-by: Eduard Zingerman <eddyz87@gmail.com> Signed-off-by: Vadim Fedorenko <vadfed@meta.com> Link: https://lore.kernel.org/r/20240613211817.1551967-6-vadfed@meta.com Signed-off-by: Alexei Starovoitov <ast@kernel.org>
11 lines
232 B
C
11 lines
232 B
C
// SPDX-License-Identifier: GPL-2.0
|
|
|
|
/* Copyright (c) 2024 Meta Platforms, Inc */
|
|
|
|
#include <test_progs.h>
|
|
#include "test_kfunc_param_nullable.skel.h"
|
|
|
|
void test_kfunc_param_nullable(void)
|
|
{
|
|
RUN_TESTS(test_kfunc_param_nullable);
|
|
}
|