From: compudj Date: Wed, 1 Oct 2008 16:19:17 +0000 (+0000) Subject: Looks like we overlooked some marker redirects in our ltt-armall patch X-Git-Tag: 0.80~58 X-Git-Url: http://git.liburcu.org/?a=commitdiff_plain;h=a17fd94a1c51dcd77cc10fc8ba7cd47fa3fd7e63;p=ltt-control.git Looks like we overlooked some marker redirects in our ltt-armall patch from February (see Jan's patch in [1]). As I can see, you already caught some of them, but some are still missing. See the attached patch. Gernot Hillier Siemens AG, CT SE 2, Corporate Competence Center Embedded Linux Gernot Hillier git-svn-id: http://ltt.polymtl.ca/svn@3070 04897980-b3bd-0310-b5e0-8ef037075253 --- diff --git a/trunk/ltt-control/lttctl/ltt-armall.sh b/trunk/ltt-control/lttctl/ltt-armall.sh index ae6867d..08cc32e 100755 --- a/trunk/ltt-control/lttctl/ltt-armall.sh +++ b/trunk/ltt-control/lttctl/ltt-armall.sh @@ -9,16 +9,16 @@ for a in $MARKERS; do #redirect markers carrying state information to dedicated channels case $a in - list_process_state|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) + 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) CHANNEL=processes ;; - list_interrupt|statedump_idt_table|statedump_sys_call_table) + list_interrupt|statedump_idt_table|statedump_sys_call_table|statedump_softirq_vec) CHANNEL=interrupts ;; list_network_ipv4_interface|list_network_ip_interface) CHANNEL=network ;; - kernel_module_load|kernel_module_free) + list_module|kernel_module_load|kernel_module_free) CHANNEL=modules ;; *)