xref: /linux/tools/testing/selftests/bpf/progs/nested_trust_common.h (revision 6efc0ab3b05de0d7bab8ec0597214e4788251071)
1 /* SPDX-License-Identifier: GPL-2.0 */
2 /* Copyright (c) 2023 Meta Platforms, Inc. and affiliates. */
3 
4 #ifndef _NESTED_TRUST_COMMON_H
5 #define _NESTED_TRUST_COMMON_H
6 
7 #include <stdbool.h>
8 
9 bool bpf_cpumask_test_cpu(unsigned int cpu, const struct cpumask *cpumask) __ksym;
10 __u32 bpf_cpumask_first_zero(const struct cpumask *cpumask) __ksym;
11 
12 #endif /* _NESTED_TRUST_COMMON_H */
13