mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-08-05 16:54:27 +00:00

The test added in previous patch will fail with bpf_refcount_acquire disabled. Until all races are fixed and bpf_refcount_acquire is re-enabled on bpf-next, disable the test so CI doesn't complain. Signed-off-by: Dave Marchevsky <davemarchevsky@fb.com> Link: https://lore.kernel.org/r/20230718083813.3416104-6-davemarchevsky@fb.com Signed-off-by: Alexei Starovoitov <ast@kernel.org>
20 lines
354 B
C
20 lines
354 B
C
// SPDX-License-Identifier: GPL-2.0
|
|
/* Copyright (c) 2023 Meta Platforms, Inc. and affiliates. */
|
|
|
|
#include <test_progs.h>
|
|
#include <network_helpers.h>
|
|
|
|
#include "refcounted_kptr.skel.h"
|
|
#include "refcounted_kptr_fail.skel.h"
|
|
|
|
void test_refcounted_kptr(void)
|
|
{
|
|
}
|
|
|
|
void test_refcounted_kptr_fail(void)
|
|
{
|
|
}
|
|
|
|
void test_refcounted_kptr_wrong_owner(void)
|
|
{
|
|
}
|