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 v4.19-rc8 15 lines 341 B view raw
1#!/bin/bash 2# SPDX-License-Identifier: GPL-2.0 3local_dir="$(pwd)" 4root_dir=$local_dir/../.. 5mnt_dir=$(mktemp -d --tmp) 6 7on_exit() { 8 iptables -D OUTPUT -m bpf --object-pinned ${mnt_dir}/bpf_prog -j ACCEPT 9 umount ${mnt_dir} 10 rm -r ${mnt_dir} 11} 12 13trap on_exit EXIT 14mount -t bpf bpf ${mnt_dir} 15./per_socket_stats_example ${mnt_dir}/bpf_prog $1