Staging
v0.8.1
https://github.com/torvalds/linux
Raw File
Tip revision: 09162bc32c880a791c6c0668ce0745cf7958f576 authored by Linus Torvalds on 16 November 2020, 00:44:31 UTC
Linux 5.10-rc4
Tip revision: 09162bc
test_bpf.sh
#!/bin/sh
# SPDX-License-Identifier: GPL-2.0
# Runs bpf test using test_bpf kernel module

if /sbin/modprobe -q test_bpf ; then
	/sbin/modprobe -q -r test_bpf;
	echo "test_bpf: ok";
else
	echo "test_bpf: [FAIL]";
	exit 1;
fi
back to top