-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Johannes Berg
authored and
Steven Rostedt
committed
Feb 13, 2012
1 parent
5b396a4
commit bf12d37
Showing
3 changed files
with
47 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
--- | ||
refs/heads/master: cdfb0d30e943f36c8a074a26c3d168a05bdbb372 | ||
refs/heads/master: 95100358491abaa2e9a5483811370059bbca4645 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
#undef TRACE_SYSTEM | ||
#define TRACE_SYSTEM printk | ||
|
||
#if !defined(_TRACE_PRINTK_H) || defined(TRACE_HEADER_MULTI_READ) | ||
#define _TRACE_PRINTK_H | ||
|
||
#include <linux/tracepoint.h> | ||
|
||
TRACE_EVENT_CONDITION(console, | ||
TP_PROTO(const char *log_buf, unsigned start, unsigned end, | ||
unsigned log_buf_len), | ||
|
||
TP_ARGS(log_buf, start, end, log_buf_len), | ||
|
||
TP_CONDITION(start != end), | ||
|
||
TP_STRUCT__entry( | ||
__dynamic_array(char, msg, end - start + 1) | ||
), | ||
|
||
TP_fast_assign( | ||
if ((start & (log_buf_len - 1)) > (end & (log_buf_len - 1))) { | ||
memcpy(__get_dynamic_array(msg), | ||
log_buf + (start & (log_buf_len - 1)), | ||
log_buf_len - (start & (log_buf_len - 1))); | ||
memcpy((char *)__get_dynamic_array(msg) + | ||
log_buf_len - (start & (log_buf_len - 1)), | ||
log_buf, end & (log_buf_len - 1)); | ||
} else | ||
memcpy(__get_dynamic_array(msg), | ||
log_buf + (start & (log_buf_len - 1)), | ||
end - start); | ||
((char *)__get_dynamic_array(msg))[end - start] = 0; | ||
), | ||
|
||
TP_printk("%s", __get_str(msg)) | ||
); | ||
#endif /* _TRACE_PRINTK_H */ | ||
|
||
/* This part must be outside protection */ | ||
#include <trace/define_trace.h> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters