ftrace.txt 104 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811
  1. ftrace - Function Tracer
  2. ========================
  3. Copyright 2008 Red Hat Inc.
  4. Author: Steven Rostedt <srostedt@redhat.com>
  5. License: The GNU Free Documentation License, Version 1.2
  6. (dual licensed under the GPL v2)
  7. Reviewers: Elias Oltmanns, Randy Dunlap, Andrew Morton,
  8. John Kacur, and David Teigland.
  9. Written for: 2.6.28-rc2
  10. Updated for: 3.10
  11. Introduction
  12. ------------
  13. Ftrace is an internal tracer designed to help out developers and
  14. designers of systems to find what is going on inside the kernel.
  15. It can be used for debugging or analyzing latencies and
  16. performance issues that take place outside of user-space.
  17. Although ftrace is typically considered the function tracer, it
  18. is really a frame work of several assorted tracing utilities.
  19. There's latency tracing to examine what occurs between interrupts
  20. disabled and enabled, as well as for preemption and from a time
  21. a task is woken to the task is actually scheduled in.
  22. One of the most common uses of ftrace is the event tracing.
  23. Through out the kernel is hundreds of static event points that
  24. can be enabled via the debugfs file system to see what is
  25. going on in certain parts of the kernel.
  26. Implementation Details
  27. ----------------------
  28. See ftrace-design.txt for details for arch porters and such.
  29. The File System
  30. ---------------
  31. Ftrace uses the debugfs file system to hold the control files as
  32. well as the files to display output.
  33. When debugfs is configured into the kernel (which selecting any ftrace
  34. option will do) the directory /sys/kernel/debug will be created. To mount
  35. this directory, you can add to your /etc/fstab file:
  36. debugfs /sys/kernel/debug debugfs defaults 0 0
  37. Or you can mount it at run time with:
  38. mount -t debugfs nodev /sys/kernel/debug
  39. For quicker access to that directory you may want to make a soft link to
  40. it:
  41. ln -s /sys/kernel/debug /debug
  42. Any selected ftrace option will also create a directory called tracing
  43. within the debugfs. The rest of the document will assume that you are in
  44. the ftrace directory (cd /sys/kernel/debug/tracing) and will only concentrate
  45. on the files within that directory and not distract from the content with
  46. the extended "/sys/kernel/debug/tracing" path name.
  47. That's it! (assuming that you have ftrace configured into your kernel)
  48. After mounting debugfs, you can see a directory called
  49. "tracing". This directory contains the control and output files
  50. of ftrace. Here is a list of some of the key files:
  51. Note: all time values are in microseconds.
  52. current_tracer:
  53. This is used to set or display the current tracer
  54. that is configured.
  55. available_tracers:
  56. This holds the different types of tracers that
  57. have been compiled into the kernel. The
  58. tracers listed here can be configured by
  59. echoing their name into current_tracer.
  60. tracing_on:
  61. This sets or displays whether writing to the trace
  62. ring buffer is enabled. Echo 0 into this file to disable
  63. the tracer or 1 to enable it. Note, this only disables
  64. writing to the ring buffer, the tracing overhead may
  65. still be occurring.
  66. trace:
  67. This file holds the output of the trace in a human
  68. readable format (described below).
  69. trace_pipe:
  70. The output is the same as the "trace" file but this
  71. file is meant to be streamed with live tracing.
  72. Reads from this file will block until new data is
  73. retrieved. Unlike the "trace" file, this file is a
  74. consumer. This means reading from this file causes
  75. sequential reads to display more current data. Once
  76. data is read from this file, it is consumed, and
  77. will not be read again with a sequential read. The
  78. "trace" file is static, and if the tracer is not
  79. adding more data,they will display the same
  80. information every time they are read.
  81. trace_options:
  82. This file lets the user control the amount of data
  83. that is displayed in one of the above output
  84. files. Options also exist to modify how a tracer
  85. or events work (stack traces, timestamps, etc).
  86. options:
  87. This is a directory that has a file for every available
  88. trace option (also in trace_options). Options may also be set
  89. or cleared by writing a "1" or "0" respectively into the
  90. corresponding file with the option name.
  91. tracing_max_latency:
  92. Some of the tracers record the max latency.
  93. For example, the time interrupts are disabled.
  94. This time is saved in this file. The max trace
  95. will also be stored, and displayed by "trace".
  96. A new max trace will only be recorded if the
  97. latency is greater than the value in this
  98. file. (in microseconds)
  99. tracing_thresh:
  100. Some latency tracers will record a trace whenever the
  101. latency is greater than the number in this file.
  102. Only active when the file contains a number greater than 0.
  103. (in microseconds)
  104. buffer_size_kb:
  105. This sets or displays the number of kilobytes each CPU
  106. buffer holds. By default, the trace buffers are the same size
  107. for each CPU. The displayed number is the size of the
  108. CPU buffer and not total size of all buffers. The
  109. trace buffers are allocated in pages (blocks of memory
  110. that the kernel uses for allocation, usually 4 KB in size).
  111. If the last page allocated has room for more bytes
  112. than requested, the rest of the page will be used,
  113. making the actual allocation bigger than requested.
  114. ( Note, the size may not be a multiple of the page size
  115. due to buffer management meta-data. )
  116. buffer_total_size_kb:
  117. This displays the total combined size of all the trace buffers.
  118. free_buffer:
  119. If a process is performing the tracing, and the ring buffer
  120. should be shrunk "freed" when the process is finished, even
  121. if it were to be killed by a signal, this file can be used
  122. for that purpose. On close of this file, the ring buffer will
  123. be resized to its minimum size. Having a process that is tracing
  124. also open this file, when the process exits its file descriptor
  125. for this file will be closed, and in doing so, the ring buffer
  126. will be "freed".
  127. It may also stop tracing if disable_on_free option is set.
  128. tracing_cpumask:
  129. This is a mask that lets the user only trace
  130. on specified CPUs. The format is a hex string
  131. representing the CPUs.
  132. set_ftrace_filter:
  133. When dynamic ftrace is configured in (see the
  134. section below "dynamic ftrace"), the code is dynamically
  135. modified (code text rewrite) to disable calling of the
  136. function profiler (mcount). This lets tracing be configured
  137. in with practically no overhead in performance. This also
  138. has a side effect of enabling or disabling specific functions
  139. to be traced. Echoing names of functions into this file
  140. will limit the trace to only those functions.
  141. This interface also allows for commands to be used. See the
  142. "Filter commands" section for more details.
  143. set_ftrace_notrace:
  144. This has an effect opposite to that of
  145. set_ftrace_filter. Any function that is added here will not
  146. be traced. If a function exists in both set_ftrace_filter
  147. and set_ftrace_notrace, the function will _not_ be traced.
  148. set_ftrace_pid:
  149. Have the function tracer only trace a single thread.
  150. set_graph_function:
  151. Set a "trigger" function where tracing should start
  152. with the function graph tracer (See the section
  153. "dynamic ftrace" for more details).
  154. available_filter_functions:
  155. This lists the functions that ftrace
  156. has processed and can trace. These are the function
  157. names that you can pass to "set_ftrace_filter" or
  158. "set_ftrace_notrace". (See the section "dynamic ftrace"
  159. below for more details.)
  160. enabled_functions:
  161. This file is more for debugging ftrace, but can also be useful
  162. in seeing if any function has a callback attached to it.
  163. Not only does the trace infrastructure use ftrace function
  164. trace utility, but other subsystems might too. This file
  165. displays all functions that have a callback attached to them
  166. as well as the number of callbacks that have been attached.
  167. Note, a callback may also call multiple functions which will
  168. not be listed in this count.
  169. If the callback registered to be traced by a function with
  170. the "save regs" attribute (thus even more overhead), a 'R'
  171. will be displayed on the same line as the function that
  172. is returning registers.
  173. function_profile_enabled:
  174. When set it will enable all functions with either the function
  175. tracer, or if enabled, the function graph tracer. It will
  176. keep a histogram of the number of functions that were called
  177. and if run with the function graph tracer, it will also keep
  178. track of the time spent in those functions. The histogram
  179. content can be displayed in the files:
  180. trace_stats/function<cpu> ( function0, function1, etc).
  181. trace_stats:
  182. A directory that holds different tracing stats.
  183. kprobe_events:
  184. Enable dynamic trace points. See kprobetrace.txt.
  185. kprobe_profile:
  186. Dynamic trace points stats. See kprobetrace.txt.
  187. max_graph_depth:
  188. Used with the function graph tracer. This is the max depth
  189. it will trace into a function. Setting this to a value of
  190. one will show only the first kernel function that is called
  191. from user space.
  192. printk_formats:
  193. This is for tools that read the raw format files. If an event in
  194. the ring buffer references a string (currently only trace_printk()
  195. does this), only a pointer to the string is recorded into the buffer
  196. and not the string itself. This prevents tools from knowing what
  197. that string was. This file displays the string and address for
  198. the string allowing tools to map the pointers to what the
  199. strings were.
  200. saved_cmdlines:
  201. Only the pid of the task is recorded in a trace event unless
  202. the event specifically saves the task comm as well. Ftrace
  203. makes a cache of pid mappings to comms to try to display
  204. comms for events. If a pid for a comm is not listed, then
  205. "<...>" is displayed in the output.
  206. snapshot:
  207. This displays the "snapshot" buffer and also lets the user
  208. take a snapshot of the current running trace.
  209. See the "Snapshot" section below for more details.
  210. stack_max_size:
  211. When the stack tracer is activated, this will display the
  212. maximum stack size it has encountered.
  213. See the "Stack Trace" section below.
  214. stack_trace:
  215. This displays the stack back trace of the largest stack
  216. that was encountered when the stack tracer is activated.
  217. See the "Stack Trace" section below.
  218. stack_trace_filter:
  219. This is similar to "set_ftrace_filter" but it limits what
  220. functions the stack tracer will check.
  221. trace_clock:
  222. Whenever an event is recorded into the ring buffer, a
  223. "timestamp" is added. This stamp comes from a specified
  224. clock. By default, ftrace uses the "local" clock. This
  225. clock is very fast and strictly per cpu, but on some
  226. systems it may not be monotonic with respect to other
  227. CPUs. In other words, the local clocks may not be in sync
  228. with local clocks on other CPUs.
  229. Usual clocks for tracing:
  230. # cat trace_clock
  231. [local] global counter x86-tsc
  232. local: Default clock, but may not be in sync across CPUs
  233. global: This clock is in sync with all CPUs but may
  234. be a bit slower than the local clock.
  235. counter: This is not a clock at all, but literally an atomic
  236. counter. It counts up one by one, but is in sync
  237. with all CPUs. This is useful when you need to
  238. know exactly the order events occurred with respect to
  239. each other on different CPUs.
  240. uptime: This uses the jiffies counter and the time stamp
  241. is relative to the time since boot up.
  242. perf: This makes ftrace use the same clock that perf uses.
  243. Eventually perf will be able to read ftrace buffers
  244. and this will help out in interleaving the data.
  245. x86-tsc: Architectures may define their own clocks. For
  246. example, x86 uses its own TSC cycle clock here.
  247. To set a clock, simply echo the clock name into this file.
  248. echo global > trace_clock
  249. trace_marker:
  250. This is a very useful file for synchronizing user space
  251. with events happening in the kernel. Writing strings into
  252. this file will be written into the ftrace buffer.
  253. It is useful in applications to open this file at the start
  254. of the application and just reference the file descriptor
  255. for the file.
  256. void trace_write(const char *fmt, ...)
  257. {
  258. va_list ap;
  259. char buf[256];
  260. int n;
  261. if (trace_fd < 0)
  262. return;
  263. va_start(ap, fmt);
  264. n = vsnprintf(buf, 256, fmt, ap);
  265. va_end(ap);
  266. write(trace_fd, buf, n);
  267. }
  268. start:
  269. trace_fd = open("trace_marker", WR_ONLY);
  270. uprobe_events:
  271. Add dynamic tracepoints in programs.
  272. See uprobetracer.txt
  273. uprobe_profile:
  274. Uprobe statistics. See uprobetrace.txt
  275. instances:
  276. This is a way to make multiple trace buffers where different
  277. events can be recorded in different buffers.
  278. See "Instances" section below.
  279. events:
  280. This is the trace event directory. It holds event tracepoints
  281. (also known as static tracepoints) that have been compiled
  282. into the kernel. It shows what event tracepoints exist
  283. and how they are grouped by system. There are "enable"
  284. files at various levels that can enable the tracepoints
  285. when a "1" is written to them.
  286. See events.txt for more information.
  287. per_cpu:
  288. This is a directory that contains the trace per_cpu information.
  289. per_cpu/cpu0/buffer_size_kb:
  290. The ftrace buffer is defined per_cpu. That is, there's a separate
  291. buffer for each CPU to allow writes to be done atomically,
  292. and free from cache bouncing. These buffers may have different
  293. size buffers. This file is similar to the buffer_size_kb
  294. file, but it only displays or sets the buffer size for the
  295. specific CPU. (here cpu0).
  296. per_cpu/cpu0/trace:
  297. This is similar to the "trace" file, but it will only display
  298. the data specific for the CPU. If written to, it only clears
  299. the specific CPU buffer.
  300. per_cpu/cpu0/trace_pipe
  301. This is similar to the "trace_pipe" file, and is a consuming
  302. read, but it will only display (and consume) the data specific
  303. for the CPU.
  304. per_cpu/cpu0/trace_pipe_raw
  305. For tools that can parse the ftrace ring buffer binary format,
  306. the trace_pipe_raw file can be used to extract the data
  307. from the ring buffer directly. With the use of the splice()
  308. system call, the buffer data can be quickly transferred to
  309. a file or to the network where a server is collecting the
  310. data.
  311. Like trace_pipe, this is a consuming reader, where multiple
  312. reads will always produce different data.
  313. per_cpu/cpu0/snapshot:
  314. This is similar to the main "snapshot" file, but will only
  315. snapshot the current CPU (if supported). It only displays
  316. the content of the snapshot for a given CPU, and if
  317. written to, only clears this CPU buffer.
  318. per_cpu/cpu0/snapshot_raw:
  319. Similar to the trace_pipe_raw, but will read the binary format
  320. from the snapshot buffer for the given CPU.
  321. per_cpu/cpu0/stats:
  322. This displays certain stats about the ring buffer:
  323. entries: The number of events that are still in the buffer.
  324. overrun: The number of lost events due to overwriting when
  325. the buffer was full.
  326. commit overrun: Should always be zero.
  327. This gets set if so many events happened within a nested
  328. event (ring buffer is re-entrant), that it fills the
  329. buffer and starts dropping events.
  330. bytes: Bytes actually read (not overwritten).
  331. oldest event ts: The oldest timestamp in the buffer
  332. now ts: The current timestamp
  333. dropped events: Events lost due to overwrite option being off.
  334. read events: The number of events read.
  335. The Tracers
  336. -----------
  337. Here is the list of current tracers that may be configured.
  338. "function"
  339. Function call tracer to trace all kernel functions.
  340. "function_graph"
  341. Similar to the function tracer except that the
  342. function tracer probes the functions on their entry
  343. whereas the function graph tracer traces on both entry
  344. and exit of the functions. It then provides the ability
  345. to draw a graph of function calls similar to C code
  346. source.
  347. "irqsoff"
  348. Traces the areas that disable interrupts and saves
  349. the trace with the longest max latency.
  350. See tracing_max_latency. When a new max is recorded,
  351. it replaces the old trace. It is best to view this
  352. trace with the latency-format option enabled.
  353. "preemptoff"
  354. Similar to irqsoff but traces and records the amount of
  355. time for which preemption is disabled.
  356. "preemptirqsoff"
  357. Similar to irqsoff and preemptoff, but traces and
  358. records the largest time for which irqs and/or preemption
  359. is disabled.
  360. "wakeup"
  361. Traces and records the max latency that it takes for
  362. the highest priority task to get scheduled after
  363. it has been woken up.
  364. Traces all tasks as an average developer would expect.
  365. "wakeup_rt"
  366. Traces and records the max latency that it takes for just
  367. RT tasks (as the current "wakeup" does). This is useful
  368. for those interested in wake up timings of RT tasks.
  369. "nop"
  370. This is the "trace nothing" tracer. To remove all
  371. tracers from tracing simply echo "nop" into
  372. current_tracer.
  373. Examples of using the tracer
  374. ----------------------------
  375. Here are typical examples of using the tracers when controlling
  376. them only with the debugfs interface (without using any
  377. user-land utilities).
  378. Output format:
  379. --------------
  380. Here is an example of the output format of the file "trace"
  381. --------
  382. # tracer: function
  383. #
  384. # entries-in-buffer/entries-written: 140080/250280 #P:4
  385. #
  386. # _-----=> irqs-off
  387. # / _----=> need-resched
  388. # | / _---=> hardirq/softirq
  389. # || / _--=> preempt-depth
  390. # ||| / delay
  391. # TASK-PID CPU# |||| TIMESTAMP FUNCTION
  392. # | | | |||| | |
  393. bash-1977 [000] .... 17284.993652: sys_close <-system_call_fastpath
  394. bash-1977 [000] .... 17284.993653: __close_fd <-sys_close
  395. bash-1977 [000] .... 17284.993653: _raw_spin_lock <-__close_fd
  396. sshd-1974 [003] .... 17284.993653: __srcu_read_unlock <-fsnotify
  397. bash-1977 [000] .... 17284.993654: add_preempt_count <-_raw_spin_lock
  398. bash-1977 [000] ...1 17284.993655: _raw_spin_unlock <-__close_fd
  399. bash-1977 [000] ...1 17284.993656: sub_preempt_count <-_raw_spin_unlock
  400. bash-1977 [000] .... 17284.993657: filp_close <-__close_fd
  401. bash-1977 [000] .... 17284.993657: dnotify_flush <-filp_close
  402. sshd-1974 [003] .... 17284.993658: sys_select <-system_call_fastpath
  403. --------
  404. A header is printed with the tracer name that is represented by
  405. the trace. In this case the tracer is "function". Then it shows the
  406. number of events in the buffer as well as the total number of entries
  407. that were written. The difference is the number of entries that were
  408. lost due to the buffer filling up (250280 - 140080 = 110200 events
  409. lost).
  410. The header explains the content of the events. Task name "bash", the task
  411. PID "1977", the CPU that it was running on "000", the latency format
  412. (explained below), the timestamp in <secs>.<usecs> format, the
  413. function name that was traced "sys_close" and the parent function that
  414. called this function "system_call_fastpath". The timestamp is the time
  415. at which the function was entered.
  416. Latency trace format
  417. --------------------
  418. When the latency-format option is enabled or when one of the latency
  419. tracers is set, the trace file gives somewhat more information to see
  420. why a latency happened. Here is a typical trace.
  421. # tracer: irqsoff
  422. #
  423. # irqsoff latency trace v1.1.5 on 3.8.0-test+
  424. # --------------------------------------------------------------------
  425. # latency: 259 us, #4/4, CPU#2 | (M:preempt VP:0, KP:0, SP:0 HP:0 #P:4)
  426. # -----------------
  427. # | task: ps-6143 (uid:0 nice:0 policy:0 rt_prio:0)
  428. # -----------------
  429. # => started at: __lock_task_sighand
  430. # => ended at: _raw_spin_unlock_irqrestore
  431. #
  432. #
  433. # _------=> CPU#
  434. # / _-----=> irqs-off
  435. # | / _----=> need-resched
  436. # || / _---=> hardirq/softirq
  437. # ||| / _--=> preempt-depth
  438. # |||| / delay
  439. # cmd pid ||||| time | caller
  440. # \ / ||||| \ | /
  441. ps-6143 2d... 0us!: trace_hardirqs_off <-__lock_task_sighand
  442. ps-6143 2d..1 259us+: trace_hardirqs_on <-_raw_spin_unlock_irqrestore
  443. ps-6143 2d..1 263us+: time_hardirqs_on <-_raw_spin_unlock_irqrestore
  444. ps-6143 2d..1 306us : <stack trace>
  445. => trace_hardirqs_on_caller
  446. => trace_hardirqs_on
  447. => _raw_spin_unlock_irqrestore
  448. => do_task_stat
  449. => proc_tgid_stat
  450. => proc_single_show
  451. => seq_read
  452. => vfs_read
  453. => sys_read
  454. => system_call_fastpath
  455. This shows that the current tracer is "irqsoff" tracing the time
  456. for which interrupts were disabled. It gives the trace version (which
  457. never changes) and the version of the kernel upon which this was executed on
  458. (3.10). Then it displays the max latency in microseconds (259 us). The number
  459. of trace entries displayed and the total number (both are four: #4/4).
  460. VP, KP, SP, and HP are always zero and are reserved for later use.
  461. #P is the number of online CPUs (#P:4).
  462. The task is the process that was running when the latency
  463. occurred. (ps pid: 6143).
  464. The start and stop (the functions in which the interrupts were
  465. disabled and enabled respectively) that caused the latencies:
  466. __lock_task_sighand is where the interrupts were disabled.
  467. _raw_spin_unlock_irqrestore is where they were enabled again.
  468. The next lines after the header are the trace itself. The header
  469. explains which is which.
  470. cmd: The name of the process in the trace.
  471. pid: The PID of that process.
  472. CPU#: The CPU which the process was running on.
  473. irqs-off: 'd' interrupts are disabled. '.' otherwise.
  474. Note: If the architecture does not support a way to
  475. read the irq flags variable, an 'X' will always
  476. be printed here.
  477. need-resched:
  478. 'N' both TIF_NEED_RESCHED and PREEMPT_NEED_RESCHED is set,
  479. 'n' only TIF_NEED_RESCHED is set,
  480. 'p' only PREEMPT_NEED_RESCHED is set,
  481. '.' otherwise.
  482. hardirq/softirq:
  483. 'H' - hard irq occurred inside a softirq.
  484. 'h' - hard irq is running
  485. 's' - soft irq is running
  486. '.' - normal context.
  487. preempt-depth: The level of preempt_disabled
  488. The above is mostly meaningful for kernel developers.
  489. time: When the latency-format option is enabled, the trace file
  490. output includes a timestamp relative to the start of the
  491. trace. This differs from the output when latency-format
  492. is disabled, which includes an absolute timestamp.
  493. delay: This is just to help catch your eye a bit better. And
  494. needs to be fixed to be only relative to the same CPU.
  495. The marks are determined by the difference between this
  496. current trace and the next trace.
  497. '!' - greater than preempt_mark_thresh (default 100)
  498. '+' - greater than 1 microsecond
  499. ' ' - less than or equal to 1 microsecond.
  500. The rest is the same as the 'trace' file.
  501. Note, the latency tracers will usually end with a back trace
  502. to easily find where the latency occurred.
  503. trace_options
  504. -------------
  505. The trace_options file (or the options directory) is used to control
  506. what gets printed in the trace output, or manipulate the tracers.
  507. To see what is available, simply cat the file:
  508. cat trace_options
  509. print-parent
  510. nosym-offset
  511. nosym-addr
  512. noverbose
  513. noraw
  514. nohex
  515. nobin
  516. noblock
  517. nostacktrace
  518. trace_printk
  519. noftrace_preempt
  520. nobranch
  521. annotate
  522. nouserstacktrace
  523. nosym-userobj
  524. noprintk-msg-only
  525. context-info
  526. latency-format
  527. sleep-time
  528. graph-time
  529. record-cmd
  530. overwrite
  531. nodisable_on_free
  532. irq-info
  533. markers
  534. function-trace
  535. To disable one of the options, echo in the option prepended with
  536. "no".
  537. echo noprint-parent > trace_options
  538. To enable an option, leave off the "no".
  539. echo sym-offset > trace_options
  540. Here are the available options:
  541. print-parent - On function traces, display the calling (parent)
  542. function as well as the function being traced.
  543. print-parent:
  544. bash-4000 [01] 1477.606694: simple_strtoul <-kstrtoul
  545. noprint-parent:
  546. bash-4000 [01] 1477.606694: simple_strtoul
  547. sym-offset - Display not only the function name, but also the
  548. offset in the function. For example, instead of
  549. seeing just "ktime_get", you will see
  550. "ktime_get+0xb/0x20".
  551. sym-offset:
  552. bash-4000 [01] 1477.606694: simple_strtoul+0x6/0xa0
  553. sym-addr - this will also display the function address as well
  554. as the function name.
  555. sym-addr:
  556. bash-4000 [01] 1477.606694: simple_strtoul <c0339346>
  557. verbose - This deals with the trace file when the
  558. latency-format option is enabled.
  559. bash 4000 1 0 00000000 00010a95 [58127d26] 1720.415ms \
  560. (+0.000ms): simple_strtoul (kstrtoul)
  561. raw - This will display raw numbers. This option is best for
  562. use with user applications that can translate the raw
  563. numbers better than having it done in the kernel.
  564. hex - Similar to raw, but the numbers will be in a hexadecimal
  565. format.
  566. bin - This will print out the formats in raw binary.
  567. block - When set, reading trace_pipe will not block when polled.
  568. stacktrace - This is one of the options that changes the trace
  569. itself. When a trace is recorded, so is the stack
  570. of functions. This allows for back traces of
  571. trace sites.
  572. trace_printk - Can disable trace_printk() from writing into the buffer.
  573. branch - Enable branch tracing with the tracer.
  574. annotate - It is sometimes confusing when the CPU buffers are full
  575. and one CPU buffer had a lot of events recently, thus
  576. a shorter time frame, were another CPU may have only had
  577. a few events, which lets it have older events. When
  578. the trace is reported, it shows the oldest events first,
  579. and it may look like only one CPU ran (the one with the
  580. oldest events). When the annotate option is set, it will
  581. display when a new CPU buffer started:
  582. <idle>-0 [001] dNs4 21169.031481: wake_up_idle_cpu <-add_timer_on
  583. <idle>-0 [001] dNs4 21169.031482: _raw_spin_unlock_irqrestore <-add_timer_on
  584. <idle>-0 [001] .Ns4 21169.031484: sub_preempt_count <-_raw_spin_unlock_irqrestore
  585. ##### CPU 2 buffer started ####
  586. <idle>-0 [002] .N.1 21169.031484: rcu_idle_exit <-cpu_idle
  587. <idle>-0 [001] .Ns3 21169.031484: _raw_spin_unlock <-clocksource_watchdog
  588. <idle>-0 [001] .Ns3 21169.031485: sub_preempt_count <-_raw_spin_unlock
  589. userstacktrace - This option changes the trace. It records a
  590. stacktrace of the current userspace thread.
  591. sym-userobj - when user stacktrace are enabled, look up which
  592. object the address belongs to, and print a
  593. relative address. This is especially useful when
  594. ASLR is on, otherwise you don't get a chance to
  595. resolve the address to object/file/line after
  596. the app is no longer running
  597. The lookup is performed when you read
  598. trace,trace_pipe. Example:
  599. a.out-1623 [000] 40874.465068: /root/a.out[+0x480] <-/root/a.out[+0
  600. x494] <- /root/a.out[+0x4a8] <- /lib/libc-2.7.so[+0x1e1a6]
  601. printk-msg-only - When set, trace_printk()s will only show the format
  602. and not their parameters (if trace_bprintk() or
  603. trace_bputs() was used to save the trace_printk()).
  604. context-info - Show only the event data. Hides the comm, PID,
  605. timestamp, CPU, and other useful data.
  606. latency-format - This option changes the trace. When
  607. it is enabled, the trace displays
  608. additional information about the
  609. latencies, as described in "Latency
  610. trace format".
  611. sleep-time - When running function graph tracer, to include
  612. the time a task schedules out in its function.
  613. When enabled, it will account time the task has been
  614. scheduled out as part of the function call.
  615. graph-time - When running function graph tracer, to include the
  616. time to call nested functions. When this is not set,
  617. the time reported for the function will only include
  618. the time the function itself executed for, not the time
  619. for functions that it called.
  620. record-cmd - When any event or tracer is enabled, a hook is enabled
  621. in the sched_switch trace point to fill comm cache
  622. with mapped pids and comms. But this may cause some
  623. overhead, and if you only care about pids, and not the
  624. name of the task, disabling this option can lower the
  625. impact of tracing.
  626. overwrite - This controls what happens when the trace buffer is
  627. full. If "1" (default), the oldest events are
  628. discarded and overwritten. If "0", then the newest
  629. events are discarded.
  630. (see per_cpu/cpu0/stats for overrun and dropped)
  631. disable_on_free - When the free_buffer is closed, tracing will
  632. stop (tracing_on set to 0).
  633. irq-info - Shows the interrupt, preempt count, need resched data.
  634. When disabled, the trace looks like:
  635. # tracer: function
  636. #
  637. # entries-in-buffer/entries-written: 144405/9452052 #P:4
  638. #
  639. # TASK-PID CPU# TIMESTAMP FUNCTION
  640. # | | | | |
  641. <idle>-0 [002] 23636.756054: ttwu_do_activate.constprop.89 <-try_to_wake_up
  642. <idle>-0 [002] 23636.756054: activate_task <-ttwu_do_activate.constprop.89
  643. <idle>-0 [002] 23636.756055: enqueue_task <-activate_task
  644. markers - When set, the trace_marker is writable (only by root).
  645. When disabled, the trace_marker will error with EINVAL
  646. on write.
  647. function-trace - The latency tracers will enable function tracing
  648. if this option is enabled (default it is). When
  649. it is disabled, the latency tracers do not trace
  650. functions. This keeps the overhead of the tracer down
  651. when performing latency tests.
  652. Note: Some tracers have their own options. They only appear
  653. when the tracer is active.
  654. irqsoff
  655. -------
  656. When interrupts are disabled, the CPU can not react to any other
  657. external event (besides NMIs and SMIs). This prevents the timer
  658. interrupt from triggering or the mouse interrupt from letting
  659. the kernel know of a new mouse event. The result is a latency
  660. with the reaction time.
  661. The irqsoff tracer tracks the time for which interrupts are
  662. disabled. When a new maximum latency is hit, the tracer saves
  663. the trace leading up to that latency point so that every time a
  664. new maximum is reached, the old saved trace is discarded and the
  665. new trace is saved.
  666. To reset the maximum, echo 0 into tracing_max_latency. Here is
  667. an example:
  668. # echo 0 > options/function-trace
  669. # echo irqsoff > current_tracer
  670. # echo 1 > tracing_on
  671. # echo 0 > tracing_max_latency
  672. # ls -ltr
  673. [...]
  674. # echo 0 > tracing_on
  675. # cat trace
  676. # tracer: irqsoff
  677. #
  678. # irqsoff latency trace v1.1.5 on 3.8.0-test+
  679. # --------------------------------------------------------------------
  680. # latency: 16 us, #4/4, CPU#0 | (M:preempt VP:0, KP:0, SP:0 HP:0 #P:4)
  681. # -----------------
  682. # | task: swapper/0-0 (uid:0 nice:0 policy:0 rt_prio:0)
  683. # -----------------
  684. # => started at: run_timer_softirq
  685. # => ended at: run_timer_softirq
  686. #
  687. #
  688. # _------=> CPU#
  689. # / _-----=> irqs-off
  690. # | / _----=> need-resched
  691. # || / _---=> hardirq/softirq
  692. # ||| / _--=> preempt-depth
  693. # |||| / delay
  694. # cmd pid ||||| time | caller
  695. # \ / ||||| \ | /
  696. <idle>-0 0d.s2 0us+: _raw_spin_lock_irq <-run_timer_softirq
  697. <idle>-0 0dNs3 17us : _raw_spin_unlock_irq <-run_timer_softirq
  698. <idle>-0 0dNs3 17us+: trace_hardirqs_on <-run_timer_softirq
  699. <idle>-0 0dNs3 25us : <stack trace>
  700. => _raw_spin_unlock_irq
  701. => run_timer_softirq
  702. => __do_softirq
  703. => call_softirq
  704. => do_softirq
  705. => irq_exit
  706. => smp_apic_timer_interrupt
  707. => apic_timer_interrupt
  708. => rcu_idle_exit
  709. => cpu_idle
  710. => rest_init
  711. => start_kernel
  712. => x86_64_start_reservations
  713. => x86_64_start_kernel
  714. Here we see that that we had a latency of 16 microseconds (which is
  715. very good). The _raw_spin_lock_irq in run_timer_softirq disabled
  716. interrupts. The difference between the 16 and the displayed
  717. timestamp 25us occurred because the clock was incremented
  718. between the time of recording the max latency and the time of
  719. recording the function that had that latency.
  720. Note the above example had function-trace not set. If we set
  721. function-trace, we get a much larger output:
  722. with echo 1 > options/function-trace
  723. # tracer: irqsoff
  724. #
  725. # irqsoff latency trace v1.1.5 on 3.8.0-test+
  726. # --------------------------------------------------------------------
  727. # latency: 71 us, #168/168, CPU#3 | (M:preempt VP:0, KP:0, SP:0 HP:0 #P:4)
  728. # -----------------
  729. # | task: bash-2042 (uid:0 nice:0 policy:0 rt_prio:0)
  730. # -----------------
  731. # => started at: ata_scsi_queuecmd
  732. # => ended at: ata_scsi_queuecmd
  733. #
  734. #
  735. # _------=> CPU#
  736. # / _-----=> irqs-off
  737. # | / _----=> need-resched
  738. # || / _---=> hardirq/softirq
  739. # ||| / _--=> preempt-depth
  740. # |||| / delay
  741. # cmd pid ||||| time | caller
  742. # \ / ||||| \ | /
  743. bash-2042 3d... 0us : _raw_spin_lock_irqsave <-ata_scsi_queuecmd
  744. bash-2042 3d... 0us : add_preempt_count <-_raw_spin_lock_irqsave
  745. bash-2042 3d..1 1us : ata_scsi_find_dev <-ata_scsi_queuecmd
  746. bash-2042 3d..1 1us : __ata_scsi_find_dev <-ata_scsi_find_dev
  747. bash-2042 3d..1 2us : ata_find_dev.part.14 <-__ata_scsi_find_dev
  748. bash-2042 3d..1 2us : ata_qc_new_init <-__ata_scsi_queuecmd
  749. bash-2042 3d..1 3us : ata_sg_init <-__ata_scsi_queuecmd
  750. bash-2042 3d..1 4us : ata_scsi_rw_xlat <-__ata_scsi_queuecmd
  751. bash-2042 3d..1 4us : ata_build_rw_tf <-ata_scsi_rw_xlat
  752. [...]
  753. bash-2042 3d..1 67us : delay_tsc <-__delay
  754. bash-2042 3d..1 67us : add_preempt_count <-delay_tsc
  755. bash-2042 3d..2 67us : sub_preempt_count <-delay_tsc
  756. bash-2042 3d..1 67us : add_preempt_count <-delay_tsc
  757. bash-2042 3d..2 68us : sub_preempt_count <-delay_tsc
  758. bash-2042 3d..1 68us+: ata_bmdma_start <-ata_bmdma_qc_issue
  759. bash-2042 3d..1 71us : _raw_spin_unlock_irqrestore <-ata_scsi_queuecmd
  760. bash-2042 3d..1 71us : _raw_spin_unlock_irqrestore <-ata_scsi_queuecmd
  761. bash-2042 3d..1 72us+: trace_hardirqs_on <-ata_scsi_queuecmd
  762. bash-2042 3d..1 120us : <stack trace>
  763. => _raw_spin_unlock_irqrestore
  764. => ata_scsi_queuecmd
  765. => scsi_dispatch_cmd
  766. => scsi_request_fn
  767. => __blk_run_queue_uncond
  768. => __blk_run_queue
  769. => blk_queue_bio
  770. => generic_make_request
  771. => submit_bio
  772. => submit_bh
  773. => __ext3_get_inode_loc
  774. => ext3_iget
  775. => ext3_lookup
  776. => lookup_real
  777. => __lookup_hash
  778. => walk_component
  779. => lookup_last
  780. => path_lookupat
  781. => filename_lookup
  782. => user_path_at_empty
  783. => user_path_at
  784. => vfs_fstatat
  785. => vfs_stat
  786. => sys_newstat
  787. => system_call_fastpath
  788. Here we traced a 71 microsecond latency. But we also see all the
  789. functions that were called during that time. Note that by
  790. enabling function tracing, we incur an added overhead. This
  791. overhead may extend the latency times. But nevertheless, this
  792. trace has provided some very helpful debugging information.
  793. preemptoff
  794. ----------
  795. When preemption is disabled, we may be able to receive
  796. interrupts but the task cannot be preempted and a higher
  797. priority task must wait for preemption to be enabled again
  798. before it can preempt a lower priority task.
  799. The preemptoff tracer traces the places that disable preemption.
  800. Like the irqsoff tracer, it records the maximum latency for
  801. which preemption was disabled. The control of preemptoff tracer
  802. is much like the irqsoff tracer.
  803. # echo 0 > options/function-trace
  804. # echo preemptoff > current_tracer
  805. # echo 1 > tracing_on
  806. # echo 0 > tracing_max_latency
  807. # ls -ltr
  808. [...]
  809. # echo 0 > tracing_on
  810. # cat trace
  811. # tracer: preemptoff
  812. #
  813. # preemptoff latency trace v1.1.5 on 3.8.0-test+
  814. # --------------------------------------------------------------------
  815. # latency: 46 us, #4/4, CPU#1 | (M:preempt VP:0, KP:0, SP:0 HP:0 #P:4)
  816. # -----------------
  817. # | task: sshd-1991 (uid:0 nice:0 policy:0 rt_prio:0)
  818. # -----------------
  819. # => started at: do_IRQ
  820. # => ended at: do_IRQ
  821. #
  822. #
  823. # _------=> CPU#
  824. # / _-----=> irqs-off
  825. # | / _----=> need-resched
  826. # || / _---=> hardirq/softirq
  827. # ||| / _--=> preempt-depth
  828. # |||| / delay
  829. # cmd pid ||||| time | caller
  830. # \ / ||||| \ | /
  831. sshd-1991 1d.h. 0us+: irq_enter <-do_IRQ
  832. sshd-1991 1d..1 46us : irq_exit <-do_IRQ
  833. sshd-1991 1d..1 47us+: trace_preempt_on <-do_IRQ
  834. sshd-1991 1d..1 52us : <stack trace>
  835. => sub_preempt_count
  836. => irq_exit
  837. => do_IRQ
  838. => ret_from_intr
  839. This has some more changes. Preemption was disabled when an
  840. interrupt came in (notice the 'h'), and was enabled on exit.
  841. But we also see that interrupts have been disabled when entering
  842. the preempt off section and leaving it (the 'd'). We do not know if
  843. interrupts were enabled in the mean time or shortly after this
  844. was over.
  845. # tracer: preemptoff
  846. #
  847. # preemptoff latency trace v1.1.5 on 3.8.0-test+
  848. # --------------------------------------------------------------------
  849. # latency: 83 us, #241/241, CPU#1 | (M:preempt VP:0, KP:0, SP:0 HP:0 #P:4)
  850. # -----------------
  851. # | task: bash-1994 (uid:0 nice:0 policy:0 rt_prio:0)
  852. # -----------------
  853. # => started at: wake_up_new_task
  854. # => ended at: task_rq_unlock
  855. #
  856. #
  857. # _------=> CPU#
  858. # / _-----=> irqs-off
  859. # | / _----=> need-resched
  860. # || / _---=> hardirq/softirq
  861. # ||| / _--=> preempt-depth
  862. # |||| / delay
  863. # cmd pid ||||| time | caller
  864. # \ / ||||| \ | /
  865. bash-1994 1d..1 0us : _raw_spin_lock_irqsave <-wake_up_new_task
  866. bash-1994 1d..1 0us : select_task_rq_fair <-select_task_rq
  867. bash-1994 1d..1 1us : __rcu_read_lock <-select_task_rq_fair
  868. bash-1994 1d..1 1us : source_load <-select_task_rq_fair
  869. bash-1994 1d..1 1us : source_load <-select_task_rq_fair
  870. [...]
  871. bash-1994 1d..1 12us : irq_enter <-smp_apic_timer_interrupt
  872. bash-1994 1d..1 12us : rcu_irq_enter <-irq_enter
  873. bash-1994 1d..1 13us : add_preempt_count <-irq_enter
  874. bash-1994 1d.h1 13us : exit_idle <-smp_apic_timer_interrupt
  875. bash-1994 1d.h1 13us : hrtimer_interrupt <-smp_apic_timer_interrupt
  876. bash-1994 1d.h1 13us : _raw_spin_lock <-hrtimer_interrupt
  877. bash-1994 1d.h1 14us : add_preempt_count <-_raw_spin_lock
  878. bash-1994 1d.h2 14us : ktime_get_update_offsets <-hrtimer_interrupt
  879. [...]
  880. bash-1994 1d.h1 35us : lapic_next_event <-clockevents_program_event
  881. bash-1994 1d.h1 35us : irq_exit <-smp_apic_timer_interrupt
  882. bash-1994 1d.h1 36us : sub_preempt_count <-irq_exit
  883. bash-1994 1d..2 36us : do_softirq <-irq_exit
  884. bash-1994 1d..2 36us : __do_softirq <-call_softirq
  885. bash-1994 1d..2 36us : __local_bh_disable <-__do_softirq
  886. bash-1994 1d.s2 37us : add_preempt_count <-_raw_spin_lock_irq
  887. bash-1994 1d.s3 38us : _raw_spin_unlock <-run_timer_softirq
  888. bash-1994 1d.s3 39us : sub_preempt_count <-_raw_spin_unlock
  889. bash-1994 1d.s2 39us : call_timer_fn <-run_timer_softirq
  890. [...]
  891. bash-1994 1dNs2 81us : cpu_needs_another_gp <-rcu_process_callbacks
  892. bash-1994 1dNs2 82us : __local_bh_enable <-__do_softirq
  893. bash-1994 1dNs2 82us : sub_preempt_count <-__local_bh_enable
  894. bash-1994 1dN.2 82us : idle_cpu <-irq_exit
  895. bash-1994 1dN.2 83us : rcu_irq_exit <-irq_exit
  896. bash-1994 1dN.2 83us : sub_preempt_count <-irq_exit
  897. bash-1994 1.N.1 84us : _raw_spin_unlock_irqrestore <-task_rq_unlock
  898. bash-1994 1.N.1 84us+: trace_preempt_on <-task_rq_unlock
  899. bash-1994 1.N.1 104us : <stack trace>
  900. => sub_preempt_count
  901. => _raw_spin_unlock_irqrestore
  902. => task_rq_unlock
  903. => wake_up_new_task
  904. => do_fork
  905. => sys_clone
  906. => stub_clone
  907. The above is an example of the preemptoff trace with
  908. function-trace set. Here we see that interrupts were not disabled
  909. the entire time. The irq_enter code lets us know that we entered
  910. an interrupt 'h'. Before that, the functions being traced still
  911. show that it is not in an interrupt, but we can see from the
  912. functions themselves that this is not the case.
  913. preemptirqsoff
  914. --------------
  915. Knowing the locations that have interrupts disabled or
  916. preemption disabled for the longest times is helpful. But
  917. sometimes we would like to know when either preemption and/or
  918. interrupts are disabled.
  919. Consider the following code:
  920. local_irq_disable();
  921. call_function_with_irqs_off();
  922. preempt_disable();
  923. call_function_with_irqs_and_preemption_off();
  924. local_irq_enable();
  925. call_function_with_preemption_off();
  926. preempt_enable();
  927. The irqsoff tracer will record the total length of
  928. call_function_with_irqs_off() and
  929. call_function_with_irqs_and_preemption_off().
  930. The preemptoff tracer will record the total length of
  931. call_function_with_irqs_and_preemption_off() and
  932. call_function_with_preemption_off().
  933. But neither will trace the time that interrupts and/or
  934. preemption is disabled. This total time is the time that we can
  935. not schedule. To record this time, use the preemptirqsoff
  936. tracer.
  937. Again, using this trace is much like the irqsoff and preemptoff
  938. tracers.
  939. # echo 0 > options/function-trace
  940. # echo preemptirqsoff > current_tracer
  941. # echo 1 > tracing_on
  942. # echo 0 > tracing_max_latency
  943. # ls -ltr
  944. [...]
  945. # echo 0 > tracing_on
  946. # cat trace
  947. # tracer: preemptirqsoff
  948. #
  949. # preemptirqsoff latency trace v1.1.5 on 3.8.0-test+
  950. # --------------------------------------------------------------------
  951. # latency: 100 us, #4/4, CPU#3 | (M:preempt VP:0, KP:0, SP:0 HP:0 #P:4)
  952. # -----------------
  953. # | task: ls-2230 (uid:0 nice:0 policy:0 rt_prio:0)
  954. # -----------------
  955. # => started at: ata_scsi_queuecmd
  956. # => ended at: ata_scsi_queuecmd
  957. #
  958. #
  959. # _------=> CPU#
  960. # / _-----=> irqs-off
  961. # | / _----=> need-resched
  962. # || / _---=> hardirq/softirq
  963. # ||| / _--=> preempt-depth
  964. # |||| / delay
  965. # cmd pid ||||| time | caller
  966. # \ / ||||| \ | /
  967. ls-2230 3d... 0us+: _raw_spin_lock_irqsave <-ata_scsi_queuecmd
  968. ls-2230 3...1 100us : _raw_spin_unlock_irqrestore <-ata_scsi_queuecmd
  969. ls-2230 3...1 101us+: trace_preempt_on <-ata_scsi_queuecmd
  970. ls-2230 3...1 111us : <stack trace>
  971. => sub_preempt_count
  972. => _raw_spin_unlock_irqrestore
  973. => ata_scsi_queuecmd
  974. => scsi_dispatch_cmd
  975. => scsi_request_fn
  976. => __blk_run_queue_uncond
  977. => __blk_run_queue
  978. => blk_queue_bio
  979. => generic_make_request
  980. => submit_bio
  981. => submit_bh
  982. => ext3_bread
  983. => ext3_dir_bread
  984. => htree_dirblock_to_tree
  985. => ext3_htree_fill_tree
  986. => ext3_readdir
  987. => vfs_readdir
  988. => sys_getdents
  989. => system_call_fastpath
  990. The trace_hardirqs_off_thunk is called from assembly on x86 when
  991. interrupts are disabled in the assembly code. Without the
  992. function tracing, we do not know if interrupts were enabled
  993. within the preemption points. We do see that it started with
  994. preemption enabled.
  995. Here is a trace with function-trace set:
  996. # tracer: preemptirqsoff
  997. #
  998. # preemptirqsoff latency trace v1.1.5 on 3.8.0-test+
  999. # --------------------------------------------------------------------
  1000. # latency: 161 us, #339/339, CPU#3 | (M:preempt VP:0, KP:0, SP:0 HP:0 #P:4)
  1001. # -----------------
  1002. # | task: ls-2269 (uid:0 nice:0 policy:0 rt_prio:0)
  1003. # -----------------
  1004. # => started at: schedule
  1005. # => ended at: mutex_unlock
  1006. #
  1007. #
  1008. # _------=> CPU#
  1009. # / _-----=> irqs-off
  1010. # | / _----=> need-resched
  1011. # || / _---=> hardirq/softirq
  1012. # ||| / _--=> preempt-depth
  1013. # |||| / delay
  1014. # cmd pid ||||| time | caller
  1015. # \ / ||||| \ | /
  1016. kworker/-59 3...1 0us : __schedule <-schedule
  1017. kworker/-59 3d..1 0us : rcu_preempt_qs <-rcu_note_context_switch
  1018. kworker/-59 3d..1 1us : add_preempt_count <-_raw_spin_lock_irq
  1019. kworker/-59 3d..2 1us : deactivate_task <-__schedule
  1020. kworker/-59 3d..2 1us : dequeue_task <-deactivate_task
  1021. kworker/-59 3d..2 2us : update_rq_clock <-dequeue_task
  1022. kworker/-59 3d..2 2us : dequeue_task_fair <-dequeue_task
  1023. kworker/-59 3d..2 2us : update_curr <-dequeue_task_fair
  1024. kworker/-59 3d..2 2us : update_min_vruntime <-update_curr
  1025. kworker/-59 3d..2 3us : cpuacct_charge <-update_curr
  1026. kworker/-59 3d..2 3us : __rcu_read_lock <-cpuacct_charge
  1027. kworker/-59 3d..2 3us : __rcu_read_unlock <-cpuacct_charge
  1028. kworker/-59 3d..2 3us : update_cfs_rq_blocked_load <-dequeue_task_fair
  1029. kworker/-59 3d..2 4us : clear_buddies <-dequeue_task_fair
  1030. kworker/-59 3d..2 4us : account_entity_dequeue <-dequeue_task_fair
  1031. kworker/-59 3d..2 4us : update_min_vruntime <-dequeue_task_fair
  1032. kworker/-59 3d..2 4us : update_cfs_shares <-dequeue_task_fair
  1033. kworker/-59 3d..2 5us : hrtick_update <-dequeue_task_fair
  1034. kworker/-59 3d..2 5us : wq_worker_sleeping <-__schedule
  1035. kworker/-59 3d..2 5us : kthread_data <-wq_worker_sleeping
  1036. kworker/-59 3d..2 5us : put_prev_task_fair <-__schedule
  1037. kworker/-59 3d..2 6us : pick_next_task_fair <-pick_next_task
  1038. kworker/-59 3d..2 6us : clear_buddies <-pick_next_task_fair
  1039. kworker/-59 3d..2 6us : set_next_entity <-pick_next_task_fair
  1040. kworker/-59 3d..2 6us : update_stats_wait_end <-set_next_entity
  1041. ls-2269 3d..2 7us : finish_task_switch <-__schedule
  1042. ls-2269 3d..2 7us : _raw_spin_unlock_irq <-finish_task_switch
  1043. ls-2269 3d..2 8us : do_IRQ <-ret_from_intr
  1044. ls-2269 3d..2 8us : irq_enter <-do_IRQ
  1045. ls-2269 3d..2 8us : rcu_irq_enter <-irq_enter
  1046. ls-2269 3d..2 9us : add_preempt_count <-irq_enter
  1047. ls-2269 3d.h2 9us : exit_idle <-do_IRQ
  1048. [...]
  1049. ls-2269 3d.h3 20us : sub_preempt_count <-_raw_spin_unlock
  1050. ls-2269 3d.h2 20us : irq_exit <-do_IRQ
  1051. ls-2269 3d.h2 21us : sub_preempt_count <-irq_exit
  1052. ls-2269 3d..3 21us : do_softirq <-irq_exit
  1053. ls-2269 3d..3 21us : __do_softirq <-call_softirq
  1054. ls-2269 3d..3 21us+: __local_bh_disable <-__do_softirq
  1055. ls-2269 3d.s4 29us : sub_preempt_count <-_local_bh_enable_ip
  1056. ls-2269 3d.s5 29us : sub_preempt_count <-_local_bh_enable_ip
  1057. ls-2269 3d.s5 31us : do_IRQ <-ret_from_intr
  1058. ls-2269 3d.s5 31us : irq_enter <-do_IRQ
  1059. ls-2269 3d.s5 31us : rcu_irq_enter <-irq_enter
  1060. [...]
  1061. ls-2269 3d.s5 31us : rcu_irq_enter <-irq_enter
  1062. ls-2269 3d.s5 32us : add_preempt_count <-irq_enter
  1063. ls-2269 3d.H5 32us : exit_idle <-do_IRQ
  1064. ls-2269 3d.H5 32us : handle_irq <-do_IRQ
  1065. ls-2269 3d.H5 32us : irq_to_desc <-handle_irq
  1066. ls-2269 3d.H5 33us : handle_fasteoi_irq <-handle_irq
  1067. [...]
  1068. ls-2269 3d.s5 158us : _raw_spin_unlock_irqrestore <-rtl8139_poll
  1069. ls-2269 3d.s3 158us : net_rps_action_and_irq_enable.isra.65 <-net_rx_action
  1070. ls-2269 3d.s3 159us : __local_bh_enable <-__do_softirq
  1071. ls-2269 3d.s3 159us : sub_preempt_count <-__local_bh_enable
  1072. ls-2269 3d..3 159us : idle_cpu <-irq_exit
  1073. ls-2269 3d..3 159us : rcu_irq_exit <-irq_exit
  1074. ls-2269 3d..3 160us : sub_preempt_count <-irq_exit
  1075. ls-2269 3d... 161us : __mutex_unlock_slowpath <-mutex_unlock
  1076. ls-2269 3d... 162us+: trace_hardirqs_on <-mutex_unlock
  1077. ls-2269 3d... 186us : <stack trace>
  1078. => __mutex_unlock_slowpath
  1079. => mutex_unlock
  1080. => process_output
  1081. => n_tty_write
  1082. => tty_write
  1083. => vfs_write
  1084. => sys_write
  1085. => system_call_fastpath
  1086. This is an interesting trace. It started with kworker running and
  1087. scheduling out and ls taking over. But as soon as ls released the
  1088. rq lock and enabled interrupts (but not preemption) an interrupt
  1089. triggered. When the interrupt finished, it started running softirqs.
  1090. But while the softirq was running, another interrupt triggered.
  1091. When an interrupt is running inside a softirq, the annotation is 'H'.
  1092. wakeup
  1093. ------
  1094. One common case that people are interested in tracing is the
  1095. time it takes for a task that is woken to actually wake up.
  1096. Now for non Real-Time tasks, this can be arbitrary. But tracing
  1097. it none the less can be interesting.
  1098. Without function tracing:
  1099. # echo 0 > options/function-trace
  1100. # echo wakeup > current_tracer
  1101. # echo 1 > tracing_on
  1102. # echo 0 > tracing_max_latency
  1103. # chrt -f 5 sleep 1
  1104. # echo 0 > tracing_on
  1105. # cat trace
  1106. # tracer: wakeup
  1107. #
  1108. # wakeup latency trace v1.1.5 on 3.8.0-test+
  1109. # --------------------------------------------------------------------
  1110. # latency: 15 us, #4/4, CPU#3 | (M:preempt VP:0, KP:0, SP:0 HP:0 #P:4)
  1111. # -----------------
  1112. # | task: kworker/3:1H-312 (uid:0 nice:-20 policy:0 rt_prio:0)
  1113. # -----------------
  1114. #
  1115. # _------=> CPU#
  1116. # / _-----=> irqs-off
  1117. # | / _----=> need-resched
  1118. # || / _---=> hardirq/softirq
  1119. # ||| / _--=> preempt-depth
  1120. # |||| / delay
  1121. # cmd pid ||||| time | caller
  1122. # \ / ||||| \ | /
  1123. <idle>-0 3dNs7 0us : 0:120:R + [003] 312:100:R kworker/3:1H
  1124. <idle>-0 3dNs7 1us+: ttwu_do_activate.constprop.87 <-try_to_wake_up
  1125. <idle>-0 3d..3 15us : __schedule <-schedule
  1126. <idle>-0 3d..3 15us : 0:120:R ==> [003] 312:100:R kworker/3:1H
  1127. The tracer only traces the highest priority task in the system
  1128. to avoid tracing the normal circumstances. Here we see that
  1129. the kworker with a nice priority of -20 (not very nice), took
  1130. just 15 microseconds from the time it woke up, to the time it
  1131. ran.
  1132. Non Real-Time tasks are not that interesting. A more interesting
  1133. trace is to concentrate only on Real-Time tasks.
  1134. wakeup_rt
  1135. ---------
  1136. In a Real-Time environment it is very important to know the
  1137. wakeup time it takes for the highest priority task that is woken
  1138. up to the time that it executes. This is also known as "schedule
  1139. latency". I stress the point that this is about RT tasks. It is
  1140. also important to know the scheduling latency of non-RT tasks,
  1141. but the average schedule latency is better for non-RT tasks.
  1142. Tools like LatencyTop are more appropriate for such
  1143. measurements.
  1144. Real-Time environments are interested in the worst case latency.
  1145. That is the longest latency it takes for something to happen,
  1146. and not the average. We can have a very fast scheduler that may
  1147. only have a large latency once in a while, but that would not
  1148. work well with Real-Time tasks. The wakeup_rt tracer was designed
  1149. to record the worst case wakeups of RT tasks. Non-RT tasks are
  1150. not recorded because the tracer only records one worst case and
  1151. tracing non-RT tasks that are unpredictable will overwrite the
  1152. worst case latency of RT tasks (just run the normal wakeup
  1153. tracer for a while to see that effect).
  1154. Since this tracer only deals with RT tasks, we will run this
  1155. slightly differently than we did with the previous tracers.
  1156. Instead of performing an 'ls', we will run 'sleep 1' under
  1157. 'chrt' which changes the priority of the task.
  1158. # echo 0 > options/function-trace
  1159. # echo wakeup_rt > current_tracer
  1160. # echo 1 > tracing_on
  1161. # echo 0 > tracing_max_latency
  1162. # chrt -f 5 sleep 1
  1163. # echo 0 > tracing_on
  1164. # cat trace
  1165. # tracer: wakeup
  1166. #
  1167. # tracer: wakeup_rt
  1168. #
  1169. # wakeup_rt latency trace v1.1.5 on 3.8.0-test+
  1170. # --------------------------------------------------------------------
  1171. # latency: 5 us, #4/4, CPU#3 | (M:preempt VP:0, KP:0, SP:0 HP:0 #P:4)
  1172. # -----------------
  1173. # | task: sleep-2389 (uid:0 nice:0 policy:1 rt_prio:5)
  1174. # -----------------
  1175. #
  1176. # _------=> CPU#
  1177. # / _-----=> irqs-off
  1178. # | / _----=> need-resched
  1179. # || / _---=> hardirq/softirq
  1180. # ||| / _--=> preempt-depth
  1181. # |||| / delay
  1182. # cmd pid ||||| time | caller
  1183. # \ / ||||| \ | /
  1184. <idle>-0 3d.h4 0us : 0:120:R + [003] 2389: 94:R sleep
  1185. <idle>-0 3d.h4 1us+: ttwu_do_activate.constprop.87 <-try_to_wake_up
  1186. <idle>-0 3d..3 5us : __schedule <-schedule
  1187. <idle>-0 3d..3 5us : 0:120:R ==> [003] 2389: 94:R sleep
  1188. Running this on an idle system, we see that it only took 5 microseconds
  1189. to perform the task switch. Note, since the trace point in the schedule
  1190. is before the actual "switch", we stop the tracing when the recorded task
  1191. is about to schedule in. This may change if we add a new marker at the
  1192. end of the scheduler.
  1193. Notice that the recorded task is 'sleep' with the PID of 2389
  1194. and it has an rt_prio of 5. This priority is user-space priority
  1195. and not the internal kernel priority. The policy is 1 for
  1196. SCHED_FIFO and 2 for SCHED_RR.
  1197. Note, that the trace data shows the internal priority (99 - rtprio).
  1198. <idle>-0 3d..3 5us : 0:120:R ==> [003] 2389: 94:R sleep
  1199. The 0:120:R means idle was running with a nice priority of 0 (120 - 20)
  1200. and in the running state 'R'. The sleep task was scheduled in with
  1201. 2389: 94:R. That is the priority is the kernel rtprio (99 - 5 = 94)
  1202. and it too is in the running state.
  1203. Doing the same with chrt -r 5 and function-trace set.
  1204. echo 1 > options/function-trace
  1205. # tracer: wakeup_rt
  1206. #
  1207. # wakeup_rt latency trace v1.1.5 on 3.8.0-test+
  1208. # --------------------------------------------------------------------
  1209. # latency: 29 us, #85/85, CPU#3 | (M:preempt VP:0, KP:0, SP:0 HP:0 #P:4)
  1210. # -----------------
  1211. # | task: sleep-2448 (uid:0 nice:0 policy:1 rt_prio:5)
  1212. # -----------------
  1213. #
  1214. # _------=> CPU#
  1215. # / _-----=> irqs-off
  1216. # | / _----=> need-resched
  1217. # || / _---=> hardirq/softirq
  1218. # ||| / _--=> preempt-depth
  1219. # |||| / delay
  1220. # cmd pid ||||| time | caller
  1221. # \ / ||||| \ | /
  1222. <idle>-0 3d.h4 1us+: 0:120:R + [003] 2448: 94:R sleep
  1223. <idle>-0 3d.h4 2us : ttwu_do_activate.constprop.87 <-try_to_wake_up
  1224. <idle>-0 3d.h3 3us : check_preempt_curr <-ttwu_do_wakeup
  1225. <idle>-0 3d.h3 3us : resched_task <-check_preempt_curr
  1226. <idle>-0 3dNh3 4us : task_woken_rt <-ttwu_do_wakeup
  1227. <idle>-0 3dNh3 4us : _raw_spin_unlock <-try_to_wake_up
  1228. <idle>-0 3dNh3 4us : sub_preempt_count <-_raw_spin_unlock
  1229. <idle>-0 3dNh2 5us : ttwu_stat <-try_to_wake_up
  1230. <idle>-0 3dNh2 5us : _raw_spin_unlock_irqrestore <-try_to_wake_up
  1231. <idle>-0 3dNh2 6us : sub_preempt_count <-_raw_spin_unlock_irqrestore
  1232. <idle>-0 3dNh1 6us : _raw_spin_lock <-__run_hrtimer
  1233. <idle>-0 3dNh1 6us : add_preempt_count <-_raw_spin_lock
  1234. <idle>-0 3dNh2 7us : _raw_spin_unlock <-hrtimer_interrupt
  1235. <idle>-0 3dNh2 7us : sub_preempt_count <-_raw_spin_unlock
  1236. <idle>-0 3dNh1 7us : tick_program_event <-hrtimer_interrupt
  1237. <idle>-0 3dNh1 7us : clockevents_program_event <-tick_program_event
  1238. <idle>-0 3dNh1 8us : ktime_get <-clockevents_program_event
  1239. <idle>-0 3dNh1 8us : lapic_next_event <-clockevents_program_event
  1240. <idle>-0 3dNh1 8us : irq_exit <-smp_apic_timer_interrupt
  1241. <idle>-0 3dNh1 9us : sub_preempt_count <-irq_exit
  1242. <idle>-0 3dN.2 9us : idle_cpu <-irq_exit
  1243. <idle>-0 3dN.2 9us : rcu_irq_exit <-irq_exit
  1244. <idle>-0 3dN.2 10us : rcu_eqs_enter_common.isra.45 <-rcu_irq_exit
  1245. <idle>-0 3dN.2 10us : sub_preempt_count <-irq_exit
  1246. <idle>-0 3.N.1 11us : rcu_idle_exit <-cpu_idle
  1247. <idle>-0 3dN.1 11us : rcu_eqs_exit_common.isra.43 <-rcu_idle_exit
  1248. <idle>-0 3.N.1 11us : tick_nohz_idle_exit <-cpu_idle
  1249. <idle>-0 3dN.1 12us : menu_hrtimer_cancel <-tick_nohz_idle_exit
  1250. <idle>-0 3dN.1 12us : ktime_get <-tick_nohz_idle_exit
  1251. <idle>-0 3dN.1 12us : tick_do_update_jiffies64 <-tick_nohz_idle_exit
  1252. <idle>-0 3dN.1 13us : update_cpu_load_nohz <-tick_nohz_idle_exit
  1253. <idle>-0 3dN.1 13us : _raw_spin_lock <-update_cpu_load_nohz
  1254. <idle>-0 3dN.1 13us : add_preempt_count <-_raw_spin_lock
  1255. <idle>-0 3dN.2 13us : __update_cpu_load <-update_cpu_load_nohz
  1256. <idle>-0 3dN.2 14us : sched_avg_update <-__update_cpu_load
  1257. <idle>-0 3dN.2 14us : _raw_spin_unlock <-update_cpu_load_nohz
  1258. <idle>-0 3dN.2 14us : sub_preempt_count <-_raw_spin_unlock
  1259. <idle>-0 3dN.1 15us : calc_load_exit_idle <-tick_nohz_idle_exit
  1260. <idle>-0 3dN.1 15us : touch_softlockup_watchdog <-tick_nohz_idle_exit
  1261. <idle>-0 3dN.1 15us : hrtimer_cancel <-tick_nohz_idle_exit
  1262. <idle>-0 3dN.1 15us : hrtimer_try_to_cancel <-hrtimer_cancel
  1263. <idle>-0 3dN.1 16us : lock_hrtimer_base.isra.18 <-hrtimer_try_to_cancel
  1264. <idle>-0 3dN.1 16us : _raw_spin_lock_irqsave <-lock_hrtimer_base.isra.18
  1265. <idle>-0 3dN.1 16us : add_preempt_count <-_raw_spin_lock_irqsave
  1266. <idle>-0 3dN.2 17us : __remove_hrtimer <-remove_hrtimer.part.16
  1267. <idle>-0 3dN.2 17us : hrtimer_force_reprogram <-__remove_hrtimer
  1268. <idle>-0 3dN.2 17us : tick_program_event <-hrtimer_force_reprogram
  1269. <idle>-0 3dN.2 18us : clockevents_program_event <-tick_program_event
  1270. <idle>-0 3dN.2 18us : ktime_get <-clockevents_program_event
  1271. <idle>-0 3dN.2 18us : lapic_next_event <-clockevents_program_event
  1272. <idle>-0 3dN.2 19us : _raw_spin_unlock_irqrestore <-hrtimer_try_to_cancel
  1273. <idle>-0 3dN.2 19us : sub_preempt_count <-_raw_spin_unlock_irqrestore
  1274. <idle>-0 3dN.1 19us : hrtimer_forward <-tick_nohz_idle_exit
  1275. <idle>-0 3dN.1 20us : ktime_add_safe <-hrtimer_forward
  1276. <idle>-0 3dN.1 20us : ktime_add_safe <-hrtimer_forward
  1277. <idle>-0 3dN.1 20us : hrtimer_start_range_ns <-hrtimer_start_expires.constprop.11
  1278. <idle>-0 3dN.1 20us : __hrtimer_start_range_ns <-hrtimer_start_range_ns
  1279. <idle>-0 3dN.1 21us : lock_hrtimer_base.isra.18 <-__hrtimer_start_range_ns
  1280. <idle>-0 3dN.1 21us : _raw_spin_lock_irqsave <-lock_hrtimer_base.isra.18
  1281. <idle>-0 3dN.1 21us : add_preempt_count <-_raw_spin_lock_irqsave
  1282. <idle>-0 3dN.2 22us : ktime_add_safe <-__hrtimer_start_range_ns
  1283. <idle>-0 3dN.2 22us : enqueue_hrtimer <-__hrtimer_start_range_ns
  1284. <idle>-0 3dN.2 22us : tick_program_event <-__hrtimer_start_range_ns
  1285. <idle>-0 3dN.2 23us : clockevents_program_event <-tick_program_event
  1286. <idle>-0 3dN.2 23us : ktime_get <-clockevents_program_event
  1287. <idle>-0 3dN.2 23us : lapic_next_event <-clockevents_program_event
  1288. <idle>-0 3dN.2 24us : _raw_spin_unlock_irqrestore <-__hrtimer_start_range_ns
  1289. <idle>-0 3dN.2 24us : sub_preempt_count <-_raw_spin_unlock_irqrestore
  1290. <idle>-0 3dN.1 24us : account_idle_ticks <-tick_nohz_idle_exit
  1291. <idle>-0 3dN.1 24us : account_idle_time <-account_idle_ticks
  1292. <idle>-0 3.N.1 25us : sub_preempt_count <-cpu_idle
  1293. <idle>-0 3.N.. 25us : schedule <-cpu_idle
  1294. <idle>-0 3.N.. 25us : __schedule <-preempt_schedule
  1295. <idle>-0 3.N.. 26us : add_preempt_count <-__schedule
  1296. <idle>-0 3.N.1 26us : rcu_note_context_switch <-__schedule
  1297. <idle>-0 3.N.1 26us : rcu_sched_qs <-rcu_note_context_switch
  1298. <idle>-0 3dN.1 27us : rcu_preempt_qs <-rcu_note_context_switch
  1299. <idle>-0 3.N.1 27us : _raw_spin_lock_irq <-__schedule
  1300. <idle>-0 3dN.1 27us : add_preempt_count <-_raw_spin_lock_irq
  1301. <idle>-0 3dN.2 28us : put_prev_task_idle <-__schedule
  1302. <idle>-0 3dN.2 28us : pick_next_task_stop <-pick_next_task
  1303. <idle>-0 3dN.2 28us : pick_next_task_rt <-pick_next_task
  1304. <idle>-0 3dN.2 29us : dequeue_pushable_task <-pick_next_task_rt
  1305. <idle>-0 3d..3 29us : __schedule <-preempt_schedule
  1306. <idle>-0 3d..3 30us : 0:120:R ==> [003] 2448: 94:R sleep
  1307. This isn't that big of a trace, even with function tracing enabled,
  1308. so I included the entire trace.
  1309. The interrupt went off while when the system was idle. Somewhere
  1310. before task_woken_rt() was called, the NEED_RESCHED flag was set,
  1311. this is indicated by the first occurrence of the 'N' flag.
  1312. Latency tracing and events
  1313. --------------------------
  1314. As function tracing can induce a much larger latency, but without
  1315. seeing what happens within the latency it is hard to know what
  1316. caused it. There is a middle ground, and that is with enabling
  1317. events.
  1318. # echo 0 > options/function-trace
  1319. # echo wakeup_rt > current_tracer
  1320. # echo 1 > events/enable
  1321. # echo 1 > tracing_on
  1322. # echo 0 > tracing_max_latency
  1323. # chrt -f 5 sleep 1
  1324. # echo 0 > tracing_on
  1325. # cat trace
  1326. # tracer: wakeup_rt
  1327. #
  1328. # wakeup_rt latency trace v1.1.5 on 3.8.0-test+
  1329. # --------------------------------------------------------------------
  1330. # latency: 6 us, #12/12, CPU#2 | (M:preempt VP:0, KP:0, SP:0 HP:0 #P:4)
  1331. # -----------------
  1332. # | task: sleep-5882 (uid:0 nice:0 policy:1 rt_prio:5)
  1333. # -----------------
  1334. #
  1335. # _------=> CPU#
  1336. # / _-----=> irqs-off
  1337. # | / _----=> need-resched
  1338. # || / _---=> hardirq/softirq
  1339. # ||| / _--=> preempt-depth
  1340. # |||| / delay
  1341. # cmd pid ||||| time | caller
  1342. # \ / ||||| \ | /
  1343. <idle>-0 2d.h4 0us : 0:120:R + [002] 5882: 94:R sleep
  1344. <idle>-0 2d.h4 0us : ttwu_do_activate.constprop.87 <-try_to_wake_up
  1345. <idle>-0 2d.h4 1us : sched_wakeup: comm=sleep pid=5882 prio=94 success=1 target_cpu=002
  1346. <idle>-0 2dNh2 1us : hrtimer_expire_exit: hrtimer=ffff88007796feb8
  1347. <idle>-0 2.N.2 2us : power_end: cpu_id=2
  1348. <idle>-0 2.N.2 3us : cpu_idle: state=4294967295 cpu_id=2
  1349. <idle>-0 2dN.3 4us : hrtimer_cancel: hrtimer=ffff88007d50d5e0
  1350. <idle>-0 2dN.3 4us : hrtimer_start: hrtimer=ffff88007d50d5e0 function=tick_sched_timer expires=34311211000000 softexpires=34311211000000
  1351. <idle>-0 2.N.2 5us : rcu_utilization: Start context switch
  1352. <idle>-0 2.N.2 5us : rcu_utilization: End context switch
  1353. <idle>-0 2d..3 6us : __schedule <-schedule
  1354. <idle>-0 2d..3 6us : 0:120:R ==> [002] 5882: 94:R sleep
  1355. function
  1356. --------
  1357. This tracer is the function tracer. Enabling the function tracer
  1358. can be done from the debug file system. Make sure the
  1359. ftrace_enabled is set; otherwise this tracer is a nop.
  1360. See the "ftrace_enabled" section below.
  1361. # sysctl kernel.ftrace_enabled=1
  1362. # echo function > current_tracer
  1363. # echo 1 > tracing_on
  1364. # usleep 1
  1365. # echo 0 > tracing_on
  1366. # cat trace
  1367. # tracer: function
  1368. #
  1369. # entries-in-buffer/entries-written: 24799/24799 #P:4
  1370. #
  1371. # _-----=> irqs-off
  1372. # / _----=> need-resched
  1373. # | / _---=> hardirq/softirq
  1374. # || / _--=> preempt-depth
  1375. # ||| / delay
  1376. # TASK-PID CPU# |||| TIMESTAMP FUNCTION
  1377. # | | | |||| | |
  1378. bash-1994 [002] .... 3082.063030: mutex_unlock <-rb_simple_write
  1379. bash-1994 [002] .... 3082.063031: __mutex_unlock_slowpath <-mutex_unlock
  1380. bash-1994 [002] .... 3082.063031: __fsnotify_parent <-fsnotify_modify
  1381. bash-1994 [002] .... 3082.063032: fsnotify <-fsnotify_modify
  1382. bash-1994 [002] .... 3082.063032: __srcu_read_lock <-fsnotify
  1383. bash-1994 [002] .... 3082.063032: add_preempt_count <-__srcu_read_lock
  1384. bash-1994 [002] ...1 3082.063032: sub_preempt_count <-__srcu_read_lock
  1385. bash-1994 [002] .... 3082.063033: __srcu_read_unlock <-fsnotify
  1386. [...]
  1387. Note: function tracer uses ring buffers to store the above
  1388. entries. The newest data may overwrite the oldest data.
  1389. Sometimes using echo to stop the trace is not sufficient because
  1390. the tracing could have overwritten the data that you wanted to
  1391. record. For this reason, it is sometimes better to disable
  1392. tracing directly from a program. This allows you to stop the
  1393. tracing at the point that you hit the part that you are
  1394. interested in. To disable the tracing directly from a C program,
  1395. something like following code snippet can be used:
  1396. int trace_fd;
  1397. [...]
  1398. int main(int argc, char *argv[]) {
  1399. [...]
  1400. trace_fd = open(tracing_file("tracing_on"), O_WRONLY);
  1401. [...]
  1402. if (condition_hit()) {
  1403. write(trace_fd, "0", 1);
  1404. }
  1405. [...]
  1406. }
  1407. Single thread tracing
  1408. ---------------------
  1409. By writing into set_ftrace_pid you can trace a
  1410. single thread. For example:
  1411. # cat set_ftrace_pid
  1412. no pid
  1413. # echo 3111 > set_ftrace_pid
  1414. # cat set_ftrace_pid
  1415. 3111
  1416. # echo function > current_tracer
  1417. # cat trace | head
  1418. # tracer: function
  1419. #
  1420. # TASK-PID CPU# TIMESTAMP FUNCTION
  1421. # | | | | |
  1422. yum-updatesd-3111 [003] 1637.254676: finish_task_switch <-thread_return
  1423. yum-updatesd-3111 [003] 1637.254681: hrtimer_cancel <-schedule_hrtimeout_range
  1424. yum-updatesd-3111 [003] 1637.254682: hrtimer_try_to_cancel <-hrtimer_cancel
  1425. yum-updatesd-3111 [003] 1637.254683: lock_hrtimer_base <-hrtimer_try_to_cancel
  1426. yum-updatesd-3111 [003] 1637.254685: fget_light <-do_sys_poll
  1427. yum-updatesd-3111 [003] 1637.254686: pipe_poll <-do_sys_poll
  1428. # echo -1 > set_ftrace_pid
  1429. # cat trace |head
  1430. # tracer: function
  1431. #
  1432. # TASK-PID CPU# TIMESTAMP FUNCTION
  1433. # | | | | |
  1434. ##### CPU 3 buffer started ####
  1435. yum-updatesd-3111 [003] 1701.957688: free_poll_entry <-poll_freewait
  1436. yum-updatesd-3111 [003] 1701.957689: remove_wait_queue <-free_poll_entry
  1437. yum-updatesd-3111 [003] 1701.957691: fput <-free_poll_entry
  1438. yum-updatesd-3111 [003] 1701.957692: audit_syscall_exit <-sysret_audit
  1439. yum-updatesd-3111 [003] 1701.957693: path_put <-audit_syscall_exit
  1440. If you want to trace a function when executing, you could use
  1441. something like this simple program:
  1442. #include <stdio.h>
  1443. #include <stdlib.h>
  1444. #include <sys/types.h>
  1445. #include <sys/stat.h>
  1446. #include <fcntl.h>
  1447. #include <unistd.h>
  1448. #include <string.h>
  1449. #define _STR(x) #x
  1450. #define STR(x) _STR(x)
  1451. #define MAX_PATH 256
  1452. const char *find_debugfs(void)
  1453. {
  1454. static char debugfs[MAX_PATH+1];
  1455. static int debugfs_found;
  1456. char type[100];
  1457. FILE *fp;
  1458. if (debugfs_found)
  1459. return debugfs;
  1460. if ((fp = fopen("/proc/mounts","r")) == NULL) {
  1461. perror("/proc/mounts");
  1462. return NULL;
  1463. }
  1464. while (fscanf(fp, "%*s %"
  1465. STR(MAX_PATH)
  1466. "s %99s %*s %*d %*d\n",
  1467. debugfs, type) == 2) {
  1468. if (strcmp(type, "debugfs") == 0)
  1469. break;
  1470. }
  1471. fclose(fp);
  1472. if (strcmp(type, "debugfs") != 0) {
  1473. fprintf(stderr, "debugfs not mounted");
  1474. return NULL;
  1475. }
  1476. strcat(debugfs, "/tracing/");
  1477. debugfs_found = 1;
  1478. return debugfs;
  1479. }
  1480. const char *tracing_file(const char *file_name)
  1481. {
  1482. static char trace_file[MAX_PATH+1];
  1483. snprintf(trace_file, MAX_PATH, "%s/%s", find_debugfs(), file_name);
  1484. return trace_file;
  1485. }
  1486. int main (int argc, char **argv)
  1487. {
  1488. if (argc < 1)
  1489. exit(-1);
  1490. if (fork() > 0) {
  1491. int fd, ffd;
  1492. char line[64];
  1493. int s;
  1494. ffd = open(tracing_file("current_tracer"), O_WRONLY);
  1495. if (ffd < 0)
  1496. exit(-1);
  1497. write(ffd, "nop", 3);
  1498. fd = open(tracing_file("set_ftrace_pid"), O_WRONLY);
  1499. s = sprintf(line, "%d\n", getpid());
  1500. write(fd, line, s);
  1501. write(ffd, "function", 8);
  1502. close(fd);
  1503. close(ffd);
  1504. execvp(argv[1], argv+1);
  1505. }
  1506. return 0;
  1507. }
  1508. Or this simple script!
  1509. ------
  1510. #!/bin/bash
  1511. debugfs=`sed -ne 's/^debugfs \(.*\) debugfs.*/\1/p' /proc/mounts`
  1512. echo nop > $debugfs/tracing/current_tracer
  1513. echo 0 > $debugfs/tracing/tracing_on
  1514. echo $$ > $debugfs/tracing/set_ftrace_pid
  1515. echo function > $debugfs/tracing/current_tracer
  1516. echo 1 > $debugfs/tracing/tracing_on
  1517. exec "$@"
  1518. ------
  1519. function graph tracer
  1520. ---------------------------
  1521. This tracer is similar to the function tracer except that it
  1522. probes a function on its entry and its exit. This is done by
  1523. using a dynamically allocated stack of return addresses in each
  1524. task_struct. On function entry the tracer overwrites the return
  1525. address of each function traced to set a custom probe. Thus the
  1526. original return address is stored on the stack of return address
  1527. in the task_struct.
  1528. Probing on both ends of a function leads to special features
  1529. such as:
  1530. - measure of a function's time execution
  1531. - having a reliable call stack to draw function calls graph
  1532. This tracer is useful in several situations:
  1533. - you want to find the reason of a strange kernel behavior and
  1534. need to see what happens in detail on any areas (or specific
  1535. ones).
  1536. - you are experiencing weird latencies but it's difficult to
  1537. find its origin.
  1538. - you want to find quickly which path is taken by a specific
  1539. function
  1540. - you just want to peek inside a working kernel and want to see
  1541. what happens there.
  1542. # tracer: function_graph
  1543. #
  1544. # CPU DURATION FUNCTION CALLS
  1545. # | | | | | | |
  1546. 0) | sys_open() {
  1547. 0) | do_sys_open() {
  1548. 0) | getname() {
  1549. 0) | kmem_cache_alloc() {
  1550. 0) 1.382 us | __might_sleep();
  1551. 0) 2.478 us | }
  1552. 0) | strncpy_from_user() {
  1553. 0) | might_fault() {
  1554. 0) 1.389 us | __might_sleep();
  1555. 0) 2.553 us | }
  1556. 0) 3.807 us | }
  1557. 0) 7.876 us | }
  1558. 0) | alloc_fd() {
  1559. 0) 0.668 us | _spin_lock();
  1560. 0) 0.570 us | expand_files();
  1561. 0) 0.586 us | _spin_unlock();
  1562. There are several columns that can be dynamically
  1563. enabled/disabled. You can use every combination of options you
  1564. want, depending on your needs.
  1565. - The cpu number on which the function executed is default
  1566. enabled. It is sometimes better to only trace one cpu (see
  1567. tracing_cpu_mask file) or you might sometimes see unordered
  1568. function calls while cpu tracing switch.
  1569. hide: echo nofuncgraph-cpu > trace_options
  1570. show: echo funcgraph-cpu > trace_options
  1571. - The duration (function's time of execution) is displayed on
  1572. the closing bracket line of a function or on the same line
  1573. than the current function in case of a leaf one. It is default
  1574. enabled.
  1575. hide: echo nofuncgraph-duration > trace_options
  1576. show: echo funcgraph-duration > trace_options
  1577. - The overhead field precedes the duration field in case of
  1578. reached duration thresholds.
  1579. hide: echo nofuncgraph-overhead > trace_options
  1580. show: echo funcgraph-overhead > trace_options
  1581. depends on: funcgraph-duration
  1582. ie:
  1583. 0) | up_write() {
  1584. 0) 0.646 us | _spin_lock_irqsave();
  1585. 0) 0.684 us | _spin_unlock_irqrestore();
  1586. 0) 3.123 us | }
  1587. 0) 0.548 us | fput();
  1588. 0) + 58.628 us | }
  1589. [...]
  1590. 0) | putname() {
  1591. 0) | kmem_cache_free() {
  1592. 0) 0.518 us | __phys_addr();
  1593. 0) 1.757 us | }
  1594. 0) 2.861 us | }
  1595. 0) ! 115.305 us | }
  1596. 0) ! 116.402 us | }
  1597. + means that the function exceeded 10 usecs.
  1598. ! means that the function exceeded 100 usecs.
  1599. - The task/pid field displays the thread cmdline and pid which
  1600. executed the function. It is default disabled.
  1601. hide: echo nofuncgraph-proc > trace_options
  1602. show: echo funcgraph-proc > trace_options
  1603. ie:
  1604. # tracer: function_graph
  1605. #
  1606. # CPU TASK/PID DURATION FUNCTION CALLS
  1607. # | | | | | | | | |
  1608. 0) sh-4802 | | d_free() {
  1609. 0) sh-4802 | | call_rcu() {
  1610. 0) sh-4802 | | __call_rcu() {
  1611. 0) sh-4802 | 0.616 us | rcu_process_gp_end();
  1612. 0) sh-4802 | 0.586 us | check_for_new_grace_period();
  1613. 0) sh-4802 | 2.899 us | }
  1614. 0) sh-4802 | 4.040 us | }
  1615. 0) sh-4802 | 5.151 us | }
  1616. 0) sh-4802 | + 49.370 us | }
  1617. - The absolute time field is an absolute timestamp given by the
  1618. system clock since it started. A snapshot of this time is
  1619. given on each entry/exit of functions
  1620. hide: echo nofuncgraph-abstime > trace_options
  1621. show: echo funcgraph-abstime > trace_options
  1622. ie:
  1623. #
  1624. # TIME CPU DURATION FUNCTION CALLS
  1625. # | | | | | | | |
  1626. 360.774522 | 1) 0.541 us | }
  1627. 360.774522 | 1) 4.663 us | }
  1628. 360.774523 | 1) 0.541 us | __wake_up_bit();
  1629. 360.774524 | 1) 6.796 us | }
  1630. 360.774524 | 1) 7.952 us | }
  1631. 360.774525 | 1) 9.063 us | }
  1632. 360.774525 | 1) 0.615 us | journal_mark_dirty();
  1633. 360.774527 | 1) 0.578 us | __brelse();
  1634. 360.774528 | 1) | reiserfs_prepare_for_journal() {
  1635. 360.774528 | 1) | unlock_buffer() {
  1636. 360.774529 | 1) | wake_up_bit() {
  1637. 360.774529 | 1) | bit_waitqueue() {
  1638. 360.774530 | 1) 0.594 us | __phys_addr();
  1639. You can put some comments on specific functions by using
  1640. trace_printk() For example, if you want to put a comment inside
  1641. the __might_sleep() function, you just have to include
  1642. <linux/ftrace.h> and call trace_printk() inside __might_sleep()
  1643. trace_printk("I'm a comment!\n")
  1644. will produce:
  1645. 1) | __might_sleep() {
  1646. 1) | /* I'm a comment! */
  1647. 1) 1.449 us | }
  1648. You might find other useful features for this tracer in the
  1649. following "dynamic ftrace" section such as tracing only specific
  1650. functions or tasks.
  1651. dynamic ftrace
  1652. --------------
  1653. If CONFIG_DYNAMIC_FTRACE is set, the system will run with
  1654. virtually no overhead when function tracing is disabled. The way
  1655. this works is the mcount function call (placed at the start of
  1656. every kernel function, produced by the -pg switch in gcc),
  1657. starts of pointing to a simple return. (Enabling FTRACE will
  1658. include the -pg switch in the compiling of the kernel.)
  1659. At compile time every C file object is run through the
  1660. recordmcount program (located in the scripts directory). This
  1661. program will parse the ELF headers in the C object to find all
  1662. the locations in the .text section that call mcount. (Note, only
  1663. white listed .text sections are processed, since processing other
  1664. sections like .init.text may cause races due to those sections
  1665. being freed unexpectedly).
  1666. A new section called "__mcount_loc" is created that holds
  1667. references to all the mcount call sites in the .text section.
  1668. The recordmcount program re-links this section back into the
  1669. original object. The final linking stage of the kernel will add all these
  1670. references into a single table.
  1671. On boot up, before SMP is initialized, the dynamic ftrace code
  1672. scans this table and updates all the locations into nops. It
  1673. also records the locations, which are added to the
  1674. available_filter_functions list. Modules are processed as they
  1675. are loaded and before they are executed. When a module is
  1676. unloaded, it also removes its functions from the ftrace function
  1677. list. This is automatic in the module unload code, and the
  1678. module author does not need to worry about it.
  1679. When tracing is enabled, the process of modifying the function
  1680. tracepoints is dependent on architecture. The old method is to use
  1681. kstop_machine to prevent races with the CPUs executing code being
  1682. modified (which can cause the CPU to do undesirable things, especially
  1683. if the modified code crosses cache (or page) boundaries), and the nops are
  1684. patched back to calls. But this time, they do not call mcount
  1685. (which is just a function stub). They now call into the ftrace
  1686. infrastructure.
  1687. The new method of modifying the function tracepoints is to place
  1688. a breakpoint at the location to be modified, sync all CPUs, modify
  1689. the rest of the instruction not covered by the breakpoint. Sync
  1690. all CPUs again, and then remove the breakpoint with the finished
  1691. version to the ftrace call site.
  1692. Some archs do not even need to monkey around with the synchronization,
  1693. and can just slap the new code on top of the old without any
  1694. problems with other CPUs executing it at the same time.
  1695. One special side-effect to the recording of the functions being
  1696. traced is that we can now selectively choose which functions we
  1697. wish to trace and which ones we want the mcount calls to remain
  1698. as nops.
  1699. Two files are used, one for enabling and one for disabling the
  1700. tracing of specified functions. They are:
  1701. set_ftrace_filter
  1702. and
  1703. set_ftrace_notrace
  1704. A list of available functions that you can add to these files is
  1705. listed in:
  1706. available_filter_functions
  1707. # cat available_filter_functions
  1708. put_prev_task_idle
  1709. kmem_cache_create
  1710. pick_next_task_rt
  1711. get_online_cpus
  1712. pick_next_task_fair
  1713. mutex_lock
  1714. [...]
  1715. If I am only interested in sys_nanosleep and hrtimer_interrupt:
  1716. # echo sys_nanosleep hrtimer_interrupt > set_ftrace_filter
  1717. # echo function > current_tracer
  1718. # echo 1 > tracing_on
  1719. # usleep 1
  1720. # echo 0 > tracing_on
  1721. # cat trace
  1722. # tracer: function
  1723. #
  1724. # entries-in-buffer/entries-written: 5/5 #P:4
  1725. #
  1726. # _-----=> irqs-off
  1727. # / _----=> need-resched
  1728. # | / _---=> hardirq/softirq
  1729. # || / _--=> preempt-depth
  1730. # ||| / delay
  1731. # TASK-PID CPU# |||| TIMESTAMP FUNCTION
  1732. # | | | |||| | |
  1733. usleep-2665 [001] .... 4186.475355: sys_nanosleep <-system_call_fastpath
  1734. <idle>-0 [001] d.h1 4186.475409: hrtimer_interrupt <-smp_apic_timer_interrupt
  1735. usleep-2665 [001] d.h1 4186.475426: hrtimer_interrupt <-smp_apic_timer_interrupt
  1736. <idle>-0 [003] d.h1 4186.475426: hrtimer_interrupt <-smp_apic_timer_interrupt
  1737. <idle>-0 [002] d.h1 4186.475427: hrtimer_interrupt <-smp_apic_timer_interrupt
  1738. To see which functions are being traced, you can cat the file:
  1739. # cat set_ftrace_filter
  1740. hrtimer_interrupt
  1741. sys_nanosleep
  1742. Perhaps this is not enough. The filters also allow simple wild
  1743. cards. Only the following are currently available
  1744. <match>* - will match functions that begin with <match>
  1745. *<match> - will match functions that end with <match>
  1746. *<match>* - will match functions that have <match> in it
  1747. These are the only wild cards which are supported.
  1748. <match>*<match> will not work.
  1749. Note: It is better to use quotes to enclose the wild cards,
  1750. otherwise the shell may expand the parameters into names
  1751. of files in the local directory.
  1752. # echo 'hrtimer_*' > set_ftrace_filter
  1753. Produces:
  1754. # tracer: function
  1755. #
  1756. # entries-in-buffer/entries-written: 897/897 #P:4
  1757. #
  1758. # _-----=> irqs-off
  1759. # / _----=> need-resched
  1760. # | / _---=> hardirq/softirq
  1761. # || / _--=> preempt-depth
  1762. # ||| / delay
  1763. # TASK-PID CPU# |||| TIMESTAMP FUNCTION
  1764. # | | | |||| | |
  1765. <idle>-0 [003] dN.1 4228.547803: hrtimer_cancel <-tick_nohz_idle_exit
  1766. <idle>-0 [003] dN.1 4228.547804: hrtimer_try_to_cancel <-hrtimer_cancel
  1767. <idle>-0 [003] dN.2 4228.547805: hrtimer_force_reprogram <-__remove_hrtimer
  1768. <idle>-0 [003] dN.1 4228.547805: hrtimer_forward <-tick_nohz_idle_exit
  1769. <idle>-0 [003] dN.1 4228.547805: hrtimer_start_range_ns <-hrtimer_start_expires.constprop.11
  1770. <idle>-0 [003] d..1 4228.547858: hrtimer_get_next_event <-get_next_timer_interrupt
  1771. <idle>-0 [003] d..1 4228.547859: hrtimer_start <-__tick_nohz_idle_enter
  1772. <idle>-0 [003] d..2 4228.547860: hrtimer_force_reprogram <-__rem
  1773. Notice that we lost the sys_nanosleep.
  1774. # cat set_ftrace_filter
  1775. hrtimer_run_queues
  1776. hrtimer_run_pending
  1777. hrtimer_init
  1778. hrtimer_cancel
  1779. hrtimer_try_to_cancel
  1780. hrtimer_forward
  1781. hrtimer_start
  1782. hrtimer_reprogram
  1783. hrtimer_force_reprogram
  1784. hrtimer_get_next_event
  1785. hrtimer_interrupt
  1786. hrtimer_nanosleep
  1787. hrtimer_wakeup
  1788. hrtimer_get_remaining
  1789. hrtimer_get_res
  1790. hrtimer_init_sleeper
  1791. This is because the '>' and '>>' act just like they do in bash.
  1792. To rewrite the filters, use '>'
  1793. To append to the filters, use '>>'
  1794. To clear out a filter so that all functions will be recorded
  1795. again:
  1796. # echo > set_ftrace_filter
  1797. # cat set_ftrace_filter
  1798. #
  1799. Again, now we want to append.
  1800. # echo sys_nanosleep > set_ftrace_filter
  1801. # cat set_ftrace_filter
  1802. sys_nanosleep
  1803. # echo 'hrtimer_*' >> set_ftrace_filter
  1804. # cat set_ftrace_filter
  1805. hrtimer_run_queues
  1806. hrtimer_run_pending
  1807. hrtimer_init
  1808. hrtimer_cancel
  1809. hrtimer_try_to_cancel
  1810. hrtimer_forward
  1811. hrtimer_start
  1812. hrtimer_reprogram
  1813. hrtimer_force_reprogram
  1814. hrtimer_get_next_event
  1815. hrtimer_interrupt
  1816. sys_nanosleep
  1817. hrtimer_nanosleep
  1818. hrtimer_wakeup
  1819. hrtimer_get_remaining
  1820. hrtimer_get_res
  1821. hrtimer_init_sleeper
  1822. The set_ftrace_notrace prevents those functions from being
  1823. traced.
  1824. # echo '*preempt*' '*lock*' > set_ftrace_notrace
  1825. Produces:
  1826. # tracer: function
  1827. #
  1828. # entries-in-buffer/entries-written: 39608/39608 #P:4
  1829. #
  1830. # _-----=> irqs-off
  1831. # / _----=> need-resched
  1832. # | / _---=> hardirq/softirq
  1833. # || / _--=> preempt-depth
  1834. # ||| / delay
  1835. # TASK-PID CPU# |||| TIMESTAMP FUNCTION
  1836. # | | | |||| | |
  1837. bash-1994 [000] .... 4342.324896: file_ra_state_init <-do_dentry_open
  1838. bash-1994 [000] .... 4342.324897: open_check_o_direct <-do_last
  1839. bash-1994 [000] .... 4342.324897: ima_file_check <-do_last
  1840. bash-1994 [000] .... 4342.324898: process_measurement <-ima_file_check
  1841. bash-1994 [000] .... 4342.324898: ima_get_action <-process_measurement
  1842. bash-1994 [000] .... 4342.324898: ima_match_policy <-ima_get_action
  1843. bash-1994 [000] .... 4342.324899: do_truncate <-do_last
  1844. bash-1994 [000] .... 4342.324899: should_remove_suid <-do_truncate
  1845. bash-1994 [000] .... 4342.324899: notify_change <-do_truncate
  1846. bash-1994 [000] .... 4342.324900: current_fs_time <-notify_change
  1847. bash-1994 [000] .... 4342.324900: current_kernel_time <-current_fs_time
  1848. bash-1994 [000] .... 4342.324900: timespec_trunc <-current_fs_time
  1849. We can see that there's no more lock or preempt tracing.
  1850. Dynamic ftrace with the function graph tracer
  1851. ---------------------------------------------
  1852. Although what has been explained above concerns both the
  1853. function tracer and the function-graph-tracer, there are some
  1854. special features only available in the function-graph tracer.
  1855. If you want to trace only one function and all of its children,
  1856. you just have to echo its name into set_graph_function:
  1857. echo __do_fault > set_graph_function
  1858. will produce the following "expanded" trace of the __do_fault()
  1859. function:
  1860. 0) | __do_fault() {
  1861. 0) | filemap_fault() {
  1862. 0) | find_lock_page() {
  1863. 0) 0.804 us | find_get_page();
  1864. 0) | __might_sleep() {
  1865. 0) 1.329 us | }
  1866. 0) 3.904 us | }
  1867. 0) 4.979 us | }
  1868. 0) 0.653 us | _spin_lock();
  1869. 0) 0.578 us | page_add_file_rmap();
  1870. 0) 0.525 us | native_set_pte_at();
  1871. 0) 0.585 us | _spin_unlock();
  1872. 0) | unlock_page() {
  1873. 0) 0.541 us | page_waitqueue();
  1874. 0) 0.639 us | __wake_up_bit();
  1875. 0) 2.786 us | }
  1876. 0) + 14.237 us | }
  1877. 0) | __do_fault() {
  1878. 0) | filemap_fault() {
  1879. 0) | find_lock_page() {
  1880. 0) 0.698 us | find_get_page();
  1881. 0) | __might_sleep() {
  1882. 0) 1.412 us | }
  1883. 0) 3.950 us | }
  1884. 0) 5.098 us | }
  1885. 0) 0.631 us | _spin_lock();
  1886. 0) 0.571 us | page_add_file_rmap();
  1887. 0) 0.526 us | native_set_pte_at();
  1888. 0) 0.586 us | _spin_unlock();
  1889. 0) | unlock_page() {
  1890. 0) 0.533 us | page_waitqueue();
  1891. 0) 0.638 us | __wake_up_bit();
  1892. 0) 2.793 us | }
  1893. 0) + 14.012 us | }
  1894. You can also expand several functions at once:
  1895. echo sys_open > set_graph_function
  1896. echo sys_close >> set_graph_function
  1897. Now if you want to go back to trace all functions you can clear
  1898. this special filter via:
  1899. echo > set_graph_function
  1900. ftrace_enabled
  1901. --------------
  1902. Note, the proc sysctl ftrace_enable is a big on/off switch for the
  1903. function tracer. By default it is enabled (when function tracing is
  1904. enabled in the kernel). If it is disabled, all function tracing is
  1905. disabled. This includes not only the function tracers for ftrace, but
  1906. also for any other uses (perf, kprobes, stack tracing, profiling, etc).
  1907. Please disable this with care.
  1908. This can be disable (and enabled) with:
  1909. sysctl kernel.ftrace_enabled=0
  1910. sysctl kernel.ftrace_enabled=1
  1911. or
  1912. echo 0 > /proc/sys/kernel/ftrace_enabled
  1913. echo 1 > /proc/sys/kernel/ftrace_enabled
  1914. Filter commands
  1915. ---------------
  1916. A few commands are supported by the set_ftrace_filter interface.
  1917. Trace commands have the following format:
  1918. <function>:<command>:<parameter>
  1919. The following commands are supported:
  1920. - mod
  1921. This command enables function filtering per module. The
  1922. parameter defines the module. For example, if only the write*
  1923. functions in the ext3 module are desired, run:
  1924. echo 'write*:mod:ext3' > set_ftrace_filter
  1925. This command interacts with the filter in the same way as
  1926. filtering based on function names. Thus, adding more functions
  1927. in a different module is accomplished by appending (>>) to the
  1928. filter file. Remove specific module functions by prepending
  1929. '!':
  1930. echo '!writeback*:mod:ext3' >> set_ftrace_filter
  1931. - traceon/traceoff
  1932. These commands turn tracing on and off when the specified
  1933. functions are hit. The parameter determines how many times the
  1934. tracing system is turned on and off. If unspecified, there is
  1935. no limit. For example, to disable tracing when a schedule bug
  1936. is hit the first 5 times, run:
  1937. echo '__schedule_bug:traceoff:5' > set_ftrace_filter
  1938. To always disable tracing when __schedule_bug is hit:
  1939. echo '__schedule_bug:traceoff' > set_ftrace_filter
  1940. These commands are cumulative whether or not they are appended
  1941. to set_ftrace_filter. To remove a command, prepend it by '!'
  1942. and drop the parameter:
  1943. echo '!__schedule_bug:traceoff:0' > set_ftrace_filter
  1944. The above removes the traceoff command for __schedule_bug
  1945. that have a counter. To remove commands without counters:
  1946. echo '!__schedule_bug:traceoff' > set_ftrace_filter
  1947. - snapshot
  1948. Will cause a snapshot to be triggered when the function is hit.
  1949. echo 'native_flush_tlb_others:snapshot' > set_ftrace_filter
  1950. To only snapshot once:
  1951. echo 'native_flush_tlb_others:snapshot:1' > set_ftrace_filter
  1952. To remove the above commands:
  1953. echo '!native_flush_tlb_others:snapshot' > set_ftrace_filter
  1954. echo '!native_flush_tlb_others:snapshot:0' > set_ftrace_filter
  1955. - enable_event/disable_event
  1956. These commands can enable or disable a trace event. Note, because
  1957. function tracing callbacks are very sensitive, when these commands
  1958. are registered, the trace point is activated, but disabled in
  1959. a "soft" mode. That is, the tracepoint will be called, but
  1960. just will not be traced. The event tracepoint stays in this mode
  1961. as long as there's a command that triggers it.
  1962. echo 'try_to_wake_up:enable_event:sched:sched_switch:2' > \
  1963. set_ftrace_filter
  1964. The format is:
  1965. <function>:enable_event:<system>:<event>[:count]
  1966. <function>:disable_event:<system>:<event>[:count]
  1967. To remove the events commands:
  1968. echo '!try_to_wake_up:enable_event:sched:sched_switch:0' > \
  1969. set_ftrace_filter
  1970. echo '!schedule:disable_event:sched:sched_switch' > \
  1971. set_ftrace_filter
  1972. - dump
  1973. When the function is hit, it will dump the contents of the ftrace
  1974. ring buffer to the console. This is useful if you need to debug
  1975. something, and want to dump the trace when a certain function
  1976. is hit. Perhaps its a function that is called before a tripple
  1977. fault happens and does not allow you to get a regular dump.
  1978. - cpudump
  1979. When the function is hit, it will dump the contents of the ftrace
  1980. ring buffer for the current CPU to the console. Unlike the "dump"
  1981. command, it only prints out the contents of the ring buffer for the
  1982. CPU that executed the function that triggered the dump.
  1983. trace_pipe
  1984. ----------
  1985. The trace_pipe outputs the same content as the trace file, but
  1986. the effect on the tracing is different. Every read from
  1987. trace_pipe is consumed. This means that subsequent reads will be
  1988. different. The trace is live.
  1989. # echo function > current_tracer
  1990. # cat trace_pipe > /tmp/trace.out &
  1991. [1] 4153
  1992. # echo 1 > tracing_on
  1993. # usleep 1
  1994. # echo 0 > tracing_on
  1995. # cat trace
  1996. # tracer: function
  1997. #
  1998. # entries-in-buffer/entries-written: 0/0 #P:4
  1999. #
  2000. # _-----=> irqs-off
  2001. # / _----=> need-resched
  2002. # | / _---=> hardirq/softirq
  2003. # || / _--=> preempt-depth
  2004. # ||| / delay
  2005. # TASK-PID CPU# |||| TIMESTAMP FUNCTION
  2006. # | | | |||| | |
  2007. #
  2008. # cat /tmp/trace.out
  2009. bash-1994 [000] .... 5281.568961: mutex_unlock <-rb_simple_write
  2010. bash-1994 [000] .... 5281.568963: __mutex_unlock_slowpath <-mutex_unlock
  2011. bash-1994 [000] .... 5281.568963: __fsnotify_parent <-fsnotify_modify
  2012. bash-1994 [000] .... 5281.568964: fsnotify <-fsnotify_modify
  2013. bash-1994 [000] .... 5281.568964: __srcu_read_lock <-fsnotify
  2014. bash-1994 [000] .... 5281.568964: add_preempt_count <-__srcu_read_lock
  2015. bash-1994 [000] ...1 5281.568965: sub_preempt_count <-__srcu_read_lock
  2016. bash-1994 [000] .... 5281.568965: __srcu_read_unlock <-fsnotify
  2017. bash-1994 [000] .... 5281.568967: sys_dup2 <-system_call_fastpath
  2018. Note, reading the trace_pipe file will block until more input is
  2019. added.
  2020. trace entries
  2021. -------------
  2022. Having too much or not enough data can be troublesome in
  2023. diagnosing an issue in the kernel. The file buffer_size_kb is
  2024. used to modify the size of the internal trace buffers. The
  2025. number listed is the number of entries that can be recorded per
  2026. CPU. To know the full size, multiply the number of possible CPUs
  2027. with the number of entries.
  2028. # cat buffer_size_kb
  2029. 1408 (units kilobytes)
  2030. Or simply read buffer_total_size_kb
  2031. # cat buffer_total_size_kb
  2032. 5632
  2033. To modify the buffer, simple echo in a number (in 1024 byte segments).
  2034. # echo 10000 > buffer_size_kb
  2035. # cat buffer_size_kb
  2036. 10000 (units kilobytes)
  2037. It will try to allocate as much as possible. If you allocate too
  2038. much, it can cause Out-Of-Memory to trigger.
  2039. # echo 1000000000000 > buffer_size_kb
  2040. -bash: echo: write error: Cannot allocate memory
  2041. # cat buffer_size_kb
  2042. 85
  2043. The per_cpu buffers can be changed individually as well:
  2044. # echo 10000 > per_cpu/cpu0/buffer_size_kb
  2045. # echo 100 > per_cpu/cpu1/buffer_size_kb
  2046. When the per_cpu buffers are not the same, the buffer_size_kb
  2047. at the top level will just show an X
  2048. # cat buffer_size_kb
  2049. X
  2050. This is where the buffer_total_size_kb is useful:
  2051. # cat buffer_total_size_kb
  2052. 12916
  2053. Writing to the top level buffer_size_kb will reset all the buffers
  2054. to be the same again.
  2055. Snapshot
  2056. --------
  2057. CONFIG_TRACER_SNAPSHOT makes a generic snapshot feature
  2058. available to all non latency tracers. (Latency tracers which
  2059. record max latency, such as "irqsoff" or "wakeup", can't use
  2060. this feature, since those are already using the snapshot
  2061. mechanism internally.)
  2062. Snapshot preserves a current trace buffer at a particular point
  2063. in time without stopping tracing. Ftrace swaps the current
  2064. buffer with a spare buffer, and tracing continues in the new
  2065. current (=previous spare) buffer.
  2066. The following debugfs files in "tracing" are related to this
  2067. feature:
  2068. snapshot:
  2069. This is used to take a snapshot and to read the output
  2070. of the snapshot. Echo 1 into this file to allocate a
  2071. spare buffer and to take a snapshot (swap), then read
  2072. the snapshot from this file in the same format as
  2073. "trace" (described above in the section "The File
  2074. System"). Both reads snapshot and tracing are executable
  2075. in parallel. When the spare buffer is allocated, echoing
  2076. 0 frees it, and echoing else (positive) values clear the
  2077. snapshot contents.
  2078. More details are shown in the table below.
  2079. status\input | 0 | 1 | else |
  2080. --------------+------------+------------+------------+
  2081. not allocated |(do nothing)| alloc+swap |(do nothing)|
  2082. --------------+------------+------------+------------+
  2083. allocated | free | swap | clear |
  2084. --------------+------------+------------+------------+
  2085. Here is an example of using the snapshot feature.
  2086. # echo 1 > events/sched/enable
  2087. # echo 1 > snapshot
  2088. # cat snapshot
  2089. # tracer: nop
  2090. #
  2091. # entries-in-buffer/entries-written: 71/71 #P:8
  2092. #
  2093. # _-----=> irqs-off
  2094. # / _----=> need-resched
  2095. # | / _---=> hardirq/softirq
  2096. # || / _--=> preempt-depth
  2097. # ||| / delay
  2098. # TASK-PID CPU# |||| TIMESTAMP FUNCTION
  2099. # | | | |||| | |
  2100. <idle>-0 [005] d... 2440.603828: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=snapshot-test-2 next_pid=2242 next_prio=120
  2101. sleep-2242 [005] d... 2440.603846: sched_switch: prev_comm=snapshot-test-2 prev_pid=2242 prev_prio=120 prev_state=R ==> next_comm=kworker/5:1 next_pid=60 next_prio=120
  2102. [...]
  2103. <idle>-0 [002] d... 2440.707230: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=snapshot-test-2 next_pid=2229 next_prio=120
  2104. # cat trace
  2105. # tracer: nop
  2106. #
  2107. # entries-in-buffer/entries-written: 77/77 #P:8
  2108. #
  2109. # _-----=> irqs-off
  2110. # / _----=> need-resched
  2111. # | / _---=> hardirq/softirq
  2112. # || / _--=> preempt-depth
  2113. # ||| / delay
  2114. # TASK-PID CPU# |||| TIMESTAMP FUNCTION
  2115. # | | | |||| | |
  2116. <idle>-0 [007] d... 2440.707395: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=snapshot-test-2 next_pid=2243 next_prio=120
  2117. snapshot-test-2-2229 [002] d... 2440.707438: sched_switch: prev_comm=snapshot-test-2 prev_pid=2229 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
  2118. [...]
  2119. If you try to use this snapshot feature when current tracer is
  2120. one of the latency tracers, you will get the following results.
  2121. # echo wakeup > current_tracer
  2122. # echo 1 > snapshot
  2123. bash: echo: write error: Device or resource busy
  2124. # cat snapshot
  2125. cat: snapshot: Device or resource busy
  2126. Instances
  2127. ---------
  2128. In the debugfs tracing directory is a directory called "instances".
  2129. This directory can have new directories created inside of it using
  2130. mkdir, and removing directories with rmdir. The directory created
  2131. with mkdir in this directory will already contain files and other
  2132. directories after it is created.
  2133. # mkdir instances/foo
  2134. # ls instances/foo
  2135. buffer_size_kb buffer_total_size_kb events free_buffer per_cpu
  2136. set_event snapshot trace trace_clock trace_marker trace_options
  2137. trace_pipe tracing_on
  2138. As you can see, the new directory looks similar to the tracing directory
  2139. itself. In fact, it is very similar, except that the buffer and
  2140. events are agnostic from the main director, or from any other
  2141. instances that are created.
  2142. The files in the new directory work just like the files with the
  2143. same name in the tracing directory except the buffer that is used
  2144. is a separate and new buffer. The files affect that buffer but do not
  2145. affect the main buffer with the exception of trace_options. Currently,
  2146. the trace_options affect all instances and the top level buffer
  2147. the same, but this may change in future releases. That is, options
  2148. may become specific to the instance they reside in.
  2149. Notice that none of the function tracer files are there, nor is
  2150. current_tracer and available_tracers. This is because the buffers
  2151. can currently only have events enabled for them.
  2152. # mkdir instances/foo
  2153. # mkdir instances/bar
  2154. # mkdir instances/zoot
  2155. # echo 100000 > buffer_size_kb
  2156. # echo 1000 > instances/foo/buffer_size_kb
  2157. # echo 5000 > instances/bar/per_cpu/cpu1/buffer_size_kb
  2158. # echo function > current_trace
  2159. # echo 1 > instances/foo/events/sched/sched_wakeup/enable
  2160. # echo 1 > instances/foo/events/sched/sched_wakeup_new/enable
  2161. # echo 1 > instances/foo/events/sched/sched_switch/enable
  2162. # echo 1 > instances/bar/events/irq/enable
  2163. # echo 1 > instances/zoot/events/syscalls/enable
  2164. # cat trace_pipe
  2165. CPU:2 [LOST 11745 EVENTS]
  2166. bash-2044 [002] .... 10594.481032: _raw_spin_lock_irqsave <-get_page_from_freelist
  2167. bash-2044 [002] d... 10594.481032: add_preempt_count <-_raw_spin_lock_irqsave
  2168. bash-2044 [002] d..1 10594.481032: __rmqueue <-get_page_from_freelist
  2169. bash-2044 [002] d..1 10594.481033: _raw_spin_unlock <-get_page_from_freelist
  2170. bash-2044 [002] d..1 10594.481033: sub_preempt_count <-_raw_spin_unlock
  2171. bash-2044 [002] d... 10594.481033: get_pageblock_flags_group <-get_pageblock_migratetype
  2172. bash-2044 [002] d... 10594.481034: __mod_zone_page_state <-get_page_from_freelist
  2173. bash-2044 [002] d... 10594.481034: zone_statistics <-get_page_from_freelist
  2174. bash-2044 [002] d... 10594.481034: __inc_zone_state <-zone_statistics
  2175. bash-2044 [002] d... 10594.481034: __inc_zone_state <-zone_statistics
  2176. bash-2044 [002] .... 10594.481035: arch_dup_task_struct <-copy_process
  2177. [...]
  2178. # cat instances/foo/trace_pipe
  2179. bash-1998 [000] d..4 136.676759: sched_wakeup: comm=kworker/0:1 pid=59 prio=120 success=1 target_cpu=000
  2180. bash-1998 [000] dN.4 136.676760: sched_wakeup: comm=bash pid=1998 prio=120 success=1 target_cpu=000
  2181. <idle>-0 [003] d.h3 136.676906: sched_wakeup: comm=rcu_preempt pid=9 prio=120 success=1 target_cpu=003
  2182. <idle>-0 [003] d..3 136.676909: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=rcu_preempt next_pid=9 next_prio=120
  2183. rcu_preempt-9 [003] d..3 136.676916: sched_switch: prev_comm=rcu_preempt prev_pid=9 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
  2184. bash-1998 [000] d..4 136.677014: sched_wakeup: comm=kworker/0:1 pid=59 prio=120 success=1 target_cpu=000
  2185. bash-1998 [000] dN.4 136.677016: sched_wakeup: comm=bash pid=1998 prio=120 success=1 target_cpu=000
  2186. bash-1998 [000] d..3 136.677018: sched_switch: prev_comm=bash prev_pid=1998 prev_prio=120 prev_state=R+ ==> next_comm=kworker/0:1 next_pid=59 next_prio=120
  2187. kworker/0:1-59 [000] d..4 136.677022: sched_wakeup: comm=sshd pid=1995 prio=120 success=1 target_cpu=001
  2188. kworker/0:1-59 [000] d..3 136.677025: sched_switch: prev_comm=kworker/0:1 prev_pid=59 prev_prio=120 prev_state=S ==> next_comm=bash next_pid=1998 next_prio=120
  2189. [...]
  2190. # cat instances/bar/trace_pipe
  2191. migration/1-14 [001] d.h3 138.732674: softirq_raise: vec=3 [action=NET_RX]
  2192. <idle>-0 [001] dNh3 138.732725: softirq_raise: vec=3 [action=NET_RX]
  2193. bash-1998 [000] d.h1 138.733101: softirq_raise: vec=1 [action=TIMER]
  2194. bash-1998 [000] d.h1 138.733102: softirq_raise: vec=9 [action=RCU]
  2195. bash-1998 [000] ..s2 138.733105: softirq_entry: vec=1 [action=TIMER]
  2196. bash-1998 [000] ..s2 138.733106: softirq_exit: vec=1 [action=TIMER]
  2197. bash-1998 [000] ..s2 138.733106: softirq_entry: vec=9 [action=RCU]
  2198. bash-1998 [000] ..s2 138.733109: softirq_exit: vec=9 [action=RCU]
  2199. sshd-1995 [001] d.h1 138.733278: irq_handler_entry: irq=21 name=uhci_hcd:usb4
  2200. sshd-1995 [001] d.h1 138.733280: irq_handler_exit: irq=21 ret=unhandled
  2201. sshd-1995 [001] d.h1 138.733281: irq_handler_entry: irq=21 name=eth0
  2202. sshd-1995 [001] d.h1 138.733283: irq_handler_exit: irq=21 ret=handled
  2203. [...]
  2204. # cat instances/zoot/trace
  2205. # tracer: nop
  2206. #
  2207. # entries-in-buffer/entries-written: 18996/18996 #P:4
  2208. #
  2209. # _-----=> irqs-off
  2210. # / _----=> need-resched
  2211. # | / _---=> hardirq/softirq
  2212. # || / _--=> preempt-depth
  2213. # ||| / delay
  2214. # TASK-PID CPU# |||| TIMESTAMP FUNCTION
  2215. # | | | |||| | |
  2216. bash-1998 [000] d... 140.733501: sys_write -> 0x2
  2217. bash-1998 [000] d... 140.733504: sys_dup2(oldfd: a, newfd: 1)
  2218. bash-1998 [000] d... 140.733506: sys_dup2 -> 0x1
  2219. bash-1998 [000] d... 140.733508: sys_fcntl(fd: a, cmd: 1, arg: 0)
  2220. bash-1998 [000] d... 140.733509: sys_fcntl -> 0x1
  2221. bash-1998 [000] d... 140.733510: sys_close(fd: a)
  2222. bash-1998 [000] d... 140.733510: sys_close -> 0x0
  2223. bash-1998 [000] d... 140.733514: sys_rt_sigprocmask(how: 0, nset: 0, oset: 6e2768, sigsetsize: 8)
  2224. bash-1998 [000] d... 140.733515: sys_rt_sigprocmask -> 0x0
  2225. bash-1998 [000] d... 140.733516: sys_rt_sigaction(sig: 2, act: 7fff718846f0, oact: 7fff71884650, sigsetsize: 8)
  2226. bash-1998 [000] d... 140.733516: sys_rt_sigaction -> 0x0
  2227. You can see that the trace of the top most trace buffer shows only
  2228. the function tracing. The foo instance displays wakeups and task
  2229. switches.
  2230. To remove the instances, simply delete their directories:
  2231. # rmdir instances/foo
  2232. # rmdir instances/bar
  2233. # rmdir instances/zoot
  2234. Note, if a process has a trace file open in one of the instance
  2235. directories, the rmdir will fail with EBUSY.
  2236. Stack trace
  2237. -----------
  2238. Since the kernel has a fixed sized stack, it is important not to
  2239. waste it in functions. A kernel developer must be conscience of
  2240. what they allocate on the stack. If they add too much, the system
  2241. can be in danger of a stack overflow, and corruption will occur,
  2242. usually leading to a system panic.
  2243. There are some tools that check this, usually with interrupts
  2244. periodically checking usage. But if you can perform a check
  2245. at every function call that will become very useful. As ftrace provides
  2246. a function tracer, it makes it convenient to check the stack size
  2247. at every function call. This is enabled via the stack tracer.
  2248. CONFIG_STACK_TRACER enables the ftrace stack tracing functionality.
  2249. To enable it, write a '1' into /proc/sys/kernel/stack_tracer_enabled.
  2250. # echo 1 > /proc/sys/kernel/stack_tracer_enabled
  2251. You can also enable it from the kernel command line to trace
  2252. the stack size of the kernel during boot up, by adding "stacktrace"
  2253. to the kernel command line parameter.
  2254. After running it for a few minutes, the output looks like:
  2255. # cat stack_max_size
  2256. 2928
  2257. # cat stack_trace
  2258. Depth Size Location (18 entries)
  2259. ----- ---- --------
  2260. 0) 2928 224 update_sd_lb_stats+0xbc/0x4ac
  2261. 1) 2704 160 find_busiest_group+0x31/0x1f1
  2262. 2) 2544 256 load_balance+0xd9/0x662
  2263. 3) 2288 80 idle_balance+0xbb/0x130
  2264. 4) 2208 128 __schedule+0x26e/0x5b9
  2265. 5) 2080 16 schedule+0x64/0x66
  2266. 6) 2064 128 schedule_timeout+0x34/0xe0
  2267. 7) 1936 112 wait_for_common+0x97/0xf1
  2268. 8) 1824 16 wait_for_completion+0x1d/0x1f
  2269. 9) 1808 128 flush_work+0xfe/0x119
  2270. 10) 1680 16 tty_flush_to_ldisc+0x1e/0x20
  2271. 11) 1664 48 input_available_p+0x1d/0x5c
  2272. 12) 1616 48 n_tty_poll+0x6d/0x134
  2273. 13) 1568 64 tty_poll+0x64/0x7f
  2274. 14) 1504 880 do_select+0x31e/0x511
  2275. 15) 624 400 core_sys_select+0x177/0x216
  2276. 16) 224 96 sys_select+0x91/0xb9
  2277. 17) 128 128 system_call_fastpath+0x16/0x1b
  2278. Note, if -mfentry is being used by gcc, functions get traced before
  2279. they set up the stack frame. This means that leaf level functions
  2280. are not tested by the stack tracer when -mfentry is used.
  2281. Currently, -mfentry is used by gcc 4.6.0 and above on x86 only.
  2282. ---------
  2283. More details can be found in the source code, in the
  2284. kernel/trace/*.c files.