Linux-6.18.2/tools/testing/selftests/bpf/progs/test_pinning_htab.c
2025-12-23 20:06:59 +08:00

26 lines
528 B
C

// SPDX-License-Identifier: GPL-2.0
#include "vmlinux.h"
#include <bpf/bpf_helpers.h>
char _license[] SEC("license") = "GPL";
struct timer_val {
struct bpf_timer timer;
};
struct {
__uint(type, BPF_MAP_TYPE_HASH);
__type(key, __u32);
__type(value, struct timer_val);
__uint(max_entries, 1);
} timer_prealloc SEC(".maps");
struct {
__uint(type, BPF_MAP_TYPE_HASH);
__type(key, __u32);
__type(value, struct timer_val);
__uint(max_entries, 1);
__uint(map_flags, BPF_F_NO_PREALLOC);
} timer_no_prealloc SEC(".maps");