mirror of
https://github.com/Fishwaldo/Star64_linux.git
synced 2025-07-10 08:33:14 +00:00
tracing: Pass trace_array into trace_buffer_unlock_commit()
In preparation for having trace options be per instance, the trace_array needs to be passed to the trace_buffer_unlock_commit(). The trace_event_buffer_lock_reserve() already passes in the trace_event_file where the trace_array can be derived from. Also added a "__init" to the boot up test event plus function tracing function function_test_events_call(). Signed-off-by: Steven Rostedt <rostedt@goodmis.org>
This commit is contained in:
parent
41907416bc
commit
b7f0c959ed
6 changed files with 25 additions and 24 deletions
|
@ -103,7 +103,7 @@ record_it:
|
|||
memcpy((void *) t + sizeof(*t), data, len);
|
||||
|
||||
if (blk_tracer)
|
||||
trace_buffer_unlock_commit(buffer, event, 0, pc);
|
||||
trace_buffer_unlock_commit(blk_tr, buffer, event, 0, pc);
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -278,7 +278,7 @@ record_it:
|
|||
memcpy((void *) t + sizeof(*t), pdu_data, pdu_len);
|
||||
|
||||
if (blk_tracer) {
|
||||
trace_buffer_unlock_commit(buffer, event, 0, pc);
|
||||
trace_buffer_unlock_commit(blk_tr, buffer, event, 0, pc);
|
||||
return;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue