Merge tag 'mips_5.12' of git://git.kernel.org/pub/scm/linux/kernel/git/mips/linux
[linux-2.6-microblaze.git] / samples / bpf / run_cookie_uid_helper_example.sh
1 #!/bin/bash
2 # SPDX-License-Identifier: GPL-2.0
3 local_dir="$(pwd)"
4 root_dir=$local_dir/../..
5 mnt_dir=$(mktemp -d --tmp)
6
7 on_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
13 trap on_exit EXIT
14 mount -t bpf bpf ${mnt_dir}
15 ./per_socket_stats_example ${mnt_dir}/bpf_prog $1