Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

at v6.12-rc2 14 lines 305 B view raw
1// SPDX-License-Identifier: GPL-2.0 2 3#include <linux/bpf.h> 4#include <bpf/bpf_helpers.h> 5 6struct { 7 __uint(type, BPF_MAP_TYPE_ARRAY); 8 __uint(max_entries, 1); 9 __type(key, __u32); 10 __type(value, __u64); 11 __uint(pinning, 2); /* invalid */ 12} nopinmap3 SEC(".maps"); 13 14char _license[] SEC("license") = "GPL";