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.6-rc7 16 lines 336 B view raw
1// SPDX-License-Identifier: GPL-2.0 2/* Copyright (c) Meta Platforms, Inc. and affiliates. */ 3 4#include <linux/bpf.h> 5#include <bpf/bpf_helpers.h> 6 7int var6 = 6; 8 9struct { 10 __uint(type, BPF_MAP_TYPE_HASH); 11 __type(key, __u32); 12 __type(value, __u32); 13 __uint(max_entries, 16); 14} map2 SEC(".maps"); 15 16char LICENSE[] SEC("license") = "GPL";