really fix newline
[ltt-control.git] / trunk / ltt-control / lttctl / ltt-armall.sh
CommitLineData
3c037c17 1#excluding core markers (already connected)
2#excluding locking markers (high traffic)
c6bcebb0 3
3c037c17 4echo Connecting all markers
43519792 5MARKERS=`cat /proc/ltt|grep -v %k|awk '{print $2 " " $4}'|sort -u|grep -v ^metadata|grep -v ^locking|grep -v ^lockdep`
c6bcebb0 6
d81c1217 7#separator is newline, ensure compatibility with bash and ash
d48e1c4f 8N="
9"
10
11IFS=${N}
98e12fa1 12for a in $MARKERS; do
13 echo Connecting $a
14
43519792 15 echo "connect $a default" > /proc/ltt
16# #redirect markers carrying state information to dedicated channels
17# case $a in
18# list_process_state|list_file_descriptor|user_generic_thread_brand|fs_exec|kernel_process_fork|kernel_process_free|kernel_process_exit|kernel_arch_kthread_create|list_statedump_end|list_vm_map)
19# CHANNEL=processes
20# ;;
21# list_interrupt|statedump_idt_table|statedump_sys_call_table|statedump_softirq_vec)
22# CHANNEL=interrupts
23# ;;
24# list_network_ipv4_interface|list_network_ip_interface)
25# CHANNEL=network
26# ;;
27# list_module|kernel_module_load|kernel_module_free)
28# CHANNEL=modules
29# ;;
30# *)
31# CHANNEL=
32# ;;
33# esac
98e12fa1 34
98e12fa1 35done
024405bd 36
37
38# Connect the interesting high-speed markers to the marker tap.
39# Markers starting with "tap_" are considered high-speed.
40echo Connecting high-rate markers to tap
ae4aa497 41MARKERS=`cat /proc/ltt|grep -v %k|awk '{print $2}'|sort -u |grep ^tap_`
024405bd 42
43#Uncomment the following to also record lockdep events.
ae4aa497 44#MARKERS=`cat /proc/ltt|grep -v %k|awk '{print $2}'|sort -u|grep -e ^tap_ -e ^lockdep`
024405bd 45
d48e1c4f 46IFS=${N}
024405bd 47for a in $MARKERS; do
48 echo Connecting $a
49
50 #redirect markers carrying state information to dedicated channels
51 case $a in
52 *)
53 CHANNEL=
54 ;;
55 esac
56
43519792 57 echo "connect $a ltt_tap_marker" > /proc/ltt
024405bd 58done
This page took 0.024139 seconds and 4 git commands to generate.