內(nèi)核的各個子系統(tǒng)已經(jīng)有大量的跟蹤點(diǎn),如果這些跟蹤點(diǎn)無法滿足工作中的需求,可以自己手動添加跟蹤點(diǎn)。
添加跟蹤點(diǎn)有兩種方式,一種是仿照events/目錄下的跟蹤點(diǎn),使用TRACE_EVENT() 宏添加。另一種是參考內(nèi)核目錄samples/trace_events添加。本文對這兩種方式分別進(jìn)行介紹。
使用 TRACE_EVENT 定義 tracepoint
我們仿照events/timer/timer_start,添加一個timer_stat的跟蹤點(diǎn),獲取start_pid和slack參數(shù)。
首先,需要在include/trace/events/timer.h頭文件種添加名為timer_stat的跟蹤點(diǎn)。
/** *timer_stat-ftraceinterfacetimer_stat *@timer:pointertostructtimer_list */ TRACE_EVENT(timer_stat, TP_PROTO(structtimer_list*timer), TP_ARGS(timer), TP_STRUCT__entry( __field(void*,timer) __field(int,start_pid) __field(int,slack) ), TP_fast_assign( __entry->timer=timer; __entry->start_pid=timer->start_pid; __entry->slack=timer->slack; ), TP_printk("ftraceinterfacetimer_stat:timer=%ppid=%dslack=%d ", __entry->timer,__entry->start_pid,__entry->slack) );
TRACE_EVENT()宏如下
#defineTRACE_EVENT(name,proto,args,struct,assign,print) DEFINE_TRACE(name)
name:表示跟蹤點(diǎn)的名字,如上面的timer_stat。
proto:表示跟蹤點(diǎn)調(diào)用的入?yún)⒌脑停热鐃imer類型為struct timer_list *。
args:表示參數(shù)。
struct:定義跟蹤器內(nèi)部使用的__entry數(shù)據(jù)結(jié)構(gòu)。
assign:把參數(shù)復(fù)制到__entry數(shù)據(jù)結(jié)構(gòu)中。
print:定義輸出的格式。
接著在kernel/kernel/time/timer.c debug_activate()添加trace_timer_stat()。
staticinlinevoid debug_activate(structtimer_list*timer,unsignedlongexpires) { debug_timer_activate(timer); trace_timer_start(timer,expires,timer->flags); trace_timer_stat(timer); }
重新編譯內(nèi)核后,燒寫到設(shè)備中,即可看到sys節(jié)點(diǎn)已經(jīng)有了新增的跟蹤點(diǎn)。
使能跟蹤點(diǎn)后,查看trace點(diǎn)的輸出。
編譯為獨(dú)立的ko文件
內(nèi)核還提供了一個跟蹤點(diǎn)的例子,在samples/trace_events 目錄下。
trace_event_init()創(chuàng)建內(nèi)核線程一個名為event-sample內(nèi)核線程。
staticint__inittrace_event_init(void) { simple_tsk=kthread_run(simple_thread,NULL,"event-sample"); if(IS_ERR(simple_tsk)) return-1; return0; }
kthread_should_stop()用于創(chuàng)建的線程檢查結(jié)束標(biāo)志,并決定是否退出。
staticintsimple_thread(void*arg) { intcnt=0; while(!kthread_should_stop()) simple_thread_func(cnt++); return0; }
set_current_state() 來設(shè)置進(jìn)程的狀態(tài),設(shè)置為TASK_INTERRUPTIBLE表示是可以被信號和wake_up()喚醒的,當(dāng)信號到來時,進(jìn)程會被設(shè)置為可運(yùn)行。
schedule_timeout()將當(dāng)前task調(diào)度出cpu,重新調(diào)度間隔為HZ。接著trace_開頭的函數(shù)就會依次打印跟蹤點(diǎn)的信息。
staticvoidsimple_thread_func(intcnt) { intarray[6]; intlen=cnt%5; inti; set_current_state(TASK_INTERRUPTIBLE); schedule_timeout(HZ); for(i=0;i
trace_foo_with_template_simple跟蹤點(diǎn)的實(shí)現(xiàn)方式也是使用的TRACE_EVENT ()宏,這里不再贅述。
最后將文件編譯為ko拷貝到設(shè)備上insmod后,即可看到sys目錄下已經(jīng)有新增的節(jié)點(diǎn)。
cd/home/zhongyi/code/rk3399_linux_release_v2.5.1_20210301/kernel/samples/trace_events make-C/home/zhongyi/code/rk3399_linux_release_v2.5.1_20210301/kernel/M=$(pwd)modulesroot@firefly:/sys/kernel/debug/tracing#catavailable_events|grepsample sample-trace:foo_bar sample-trace:foo_bar_with_cond race:foo_bar_with_fn sample-trace:foo_with_template_simple sample-trace:foo_with_template_cond sample-trace:foo_with_template_fn sample-trace:foo_with_template_print power:pstate_sampleroot@firefly:/sys/kernel/debug/tracing#cdevents/sample-trace/ root@firefly:/sys/kernel/debug/tracing/events/sample-trace#ls enablefoo_bar_with_condfoo_with_template_fn filterfoo_bar_with_fnfoo_with_template_print foo_barfoo_with_template_condfoo_with_templ_simple root@firefly:/sys/kernel/debug/tracing/events/sample-trace#echo1>enable root@firefly:/sys/kernel/debug/tracing/events/sample-trace#cat/sys/kernel/debug/tracing/trace
TRACE_EVENT_CONDITION()
在某些情況下,跟蹤點(diǎn)只有在某個條件發(fā)生時才會被調(diào)用,類似于
if(cond) trace_foo();
TRACE_EVENT_CONDITION()宏就是這個作用,它和TRACE_EVENT()相比只是在參數(shù)中多加了一個cond條件。TP_CONDITION()會對條件做個判斷。
TRACE_EVENT(name,proto,args,struct,assign,printk) TRACE_EVENT_CONDITION(name,proto,args,cond,struct,assign,printk)
詳細(xì)使用方法可以參考trace-events-sample.h。
TRACE_EVENT_FN()
TRACE_EVENT_FN()是在跟蹤點(diǎn)使能前和使能后分別打印一些信息。相比于TRACE_EVENT(),TRACE_EVENT_FN()多了兩個參數(shù)reg和unreg,
TRACE_EVENT(name,proto,args,struct,assign,printk) TRACE_EVENT_FN(name,proto,args,struct,assign,printk,reg,unreg)
reg 和unreg原型為
voidreg(void)
reg函數(shù)在跟蹤點(diǎn)使能前打印,unreg函數(shù)在跟蹤點(diǎn)使能后打印。reg 和unreg可以根據(jù)實(shí)際情況置其中一個為NULL,也可以全部置為NULL。
詳細(xì)使用方法可以參考trace-events-sample.h。
審核編輯:劉清
-
cpu
+關(guān)注
關(guān)注
68文章
10863瀏覽量
211763 -
Trace
+關(guān)注
關(guān)注
0文章
18瀏覽量
10563 -
跟蹤器
+關(guān)注
關(guān)注
0文章
131瀏覽量
20031
原文標(biāo)題:ftrace(二)新增tracepoint
文章出處:【微信號:嵌入式與Linux那些事,微信公眾號:嵌入式與Linux那些事】歡迎添加關(guān)注!文章轉(zhuǎn)載請注明出處。
發(fā)布評論請先 登錄
相關(guān)推薦
評論