brintos

brintos / linux-shallow public Read only

0
0
Text · 239 B · 68debfc Raw
16 lines · plain
1ftrace {2	tracing_on = 0  # off by default3	tracer = function_graph4	event.kprobes {5		start_event {6			probes = "pci_proc_init"7			actions = "traceon"8		}9		end_event {10			probes = "pci_proc_init%return"11			actions = "traceoff"12		}13	}14}15 16