]> Git Repo - J-linux.git/blob - tools/testing/selftests/bpf/progs/priv_map.c
Merge tag 'vfs-6.13-rc7.fixes' of git://git.kernel.org/pub/scm/linux/kernel/git/vfs/vfs
[J-linux.git] / tools / testing / selftests / bpf / progs / priv_map.c
1 // SPDX-License-Identifier: GPL-2.0
2 /* Copyright (c) 2023 Meta Platforms, Inc. and affiliates. */
3
4 #include "vmlinux.h"
5 #include <bpf/bpf_helpers.h>
6
7 char _license[] SEC("license") = "GPL";
8
9 struct {
10         __uint(type, BPF_MAP_TYPE_QUEUE);
11         __uint(max_entries, 1);
12         __type(value, __u32);
13 } priv_map SEC(".maps");
This page took 0.026969 seconds and 4 git commands to generate.