aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/tools/testing/selftests/ftrace/test.d/direct/ftrace-direct.tc
blob: 8b8ed3cad51beda0b2e5184d5edc22f2675662b5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
#!/bin/sh
# SPDX-License-Identifier: GPL-2.0
# description: Test ftrace direct functions against tracers

rmmod ftrace-direct ||:
if ! modprobe ftrace-direct ; then
  echo "No ftrace-direct sample module - please make CONFIG_SAMPLE_FTRACE_DIRECT=m"
  exit_unresolved;
fi

echo "Let the module run a little"
sleep 1

grep -q "my_direct_func: wakeing up" trace

rmmod ftrace-direct

test_tracer() {
	tracer=$1

	# tracer -> direct -> no direct > no tracer
	echo $tracer > current_tracer
	modprobe ftrace-direct
	rmmod ftrace-direct
	echo nop > current_tracer

	# tracer -> direct -> no tracer > no direct
	echo $tracer > current_tracer
	modprobe ftrace-direct
	echo nop > current_tracer
	rmmod ftrace-direct

	# direct -> tracer -> no tracer > no direct
	modprobe ftrace-direct
	echo $tracer > current_tracer
	echo nop > current_tracer
	rmmod ftrace-direct

	# direct -> tracer -> no direct > no notracer
	modprobe ftrace-direct
	echo $tracer > current_tracer
	rmmod ftrace-direct
	echo nop > current_tracer
}

for t in `cat available_tracers`; do
	if [ "$t" != "nop" ]; then
		test_tracer $t
	fi
done

echo nop > current_tracer
rmmod ftrace-direct ||: