14 lines · c
1// SPDX-License-Identifier: GPL-2.02/* Copyright (c) 2023 Meta Platforms, Inc. and affiliates. */3 4#include "vmlinux.h"5#include <bpf/bpf_helpers.h>6 7char _license[] SEC("license") = "GPL";8 9SEC("kprobe")10int kprobe_prog(void *ctx)11{12 return 1;13}14