-
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
Li Zefan
authored and
Ingo Molnar
committed
Aug 17, 2009
1 parent
957303a
commit 9d939e6
Showing
5 changed files
with
153 additions
and
4 deletions.
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: 60d970c254b95ec7a0fc4c590b510253987b64a0 | ||
refs/heads/master: 7ead8b8313d92b3a69a1a61b0dcbc4cd66c960dc |
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
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,126 @@ | ||
#undef TRACE_SYSTEM | ||
#define TRACE_SYSTEM module | ||
|
||
#if !defined(_TRACE_MODULE_H) || defined(TRACE_HEADER_MULTI_READ) | ||
#define _TRACE_MODULE_H | ||
|
||
#include <linux/tracepoint.h> | ||
|
||
#ifdef CONFIG_MODULES | ||
|
||
struct module; | ||
|
||
#define show_module_flags(flags) __print_flags(flags, "", \ | ||
{ (1UL << TAINT_PROPRIETARY_MODULE), "P" }, \ | ||
{ (1UL << TAINT_FORCED_MODULE), "F" }, \ | ||
{ (1UL << TAINT_CRAP), "C" }) | ||
|
||
TRACE_EVENT(module_load, | ||
|
||
TP_PROTO(struct module *mod), | ||
|
||
TP_ARGS(mod), | ||
|
||
TP_STRUCT__entry( | ||
__field( unsigned int, taints ) | ||
__string( name, mod->name ) | ||
), | ||
|
||
TP_fast_assign( | ||
__entry->taints = mod->taints; | ||
__assign_str(name, mod->name); | ||
), | ||
|
||
TP_printk("%s %s", __get_str(name), show_module_flags(__entry->taints)) | ||
); | ||
|
||
TRACE_EVENT(module_free, | ||
|
||
TP_PROTO(struct module *mod), | ||
|
||
TP_ARGS(mod), | ||
|
||
TP_STRUCT__entry( | ||
__string( name, mod->name ) | ||
), | ||
|
||
TP_fast_assign( | ||
__assign_str(name, mod->name); | ||
), | ||
|
||
TP_printk("%s", __get_str(name)) | ||
); | ||
|
||
TRACE_EVENT(module_get, | ||
|
||
TP_PROTO(struct module *mod, unsigned long ip, int refcnt), | ||
|
||
TP_ARGS(mod, ip, refcnt), | ||
|
||
TP_STRUCT__entry( | ||
__field( unsigned long, ip ) | ||
__field( int, refcnt ) | ||
__string( name, mod->name ) | ||
), | ||
|
||
TP_fast_assign( | ||
__entry->ip = ip; | ||
__entry->refcnt = refcnt; | ||
__assign_str(name, mod->name); | ||
), | ||
|
||
TP_printk("%s call_site=%pf refcnt=%d", | ||
__get_str(name), (void *)__entry->ip, __entry->refcnt) | ||
); | ||
|
||
TRACE_EVENT(module_put, | ||
|
||
TP_PROTO(struct module *mod, unsigned long ip, int refcnt), | ||
|
||
TP_ARGS(mod, ip, refcnt), | ||
|
||
TP_STRUCT__entry( | ||
__field( unsigned long, ip ) | ||
__field( int, refcnt ) | ||
__string( name, mod->name ) | ||
), | ||
|
||
TP_fast_assign( | ||
__entry->ip = ip; | ||
__entry->refcnt = refcnt; | ||
__assign_str(name, mod->name); | ||
), | ||
|
||
TP_printk("%s call_site=%pf refcnt=%d", | ||
__get_str(name), (void *)__entry->ip, __entry->refcnt) | ||
); | ||
|
||
TRACE_EVENT(module_request, | ||
|
||
TP_PROTO(char *name, bool wait, unsigned long ip), | ||
|
||
TP_ARGS(name, wait, ip), | ||
|
||
TP_STRUCT__entry( | ||
__field( bool, wait ) | ||
__field( unsigned long, ip ) | ||
__string( name, name ) | ||
), | ||
|
||
TP_fast_assign( | ||
__entry->wait = wait; | ||
__entry->ip = ip; | ||
__assign_str(name, name); | ||
), | ||
|
||
TP_printk("%s wait=%d call_site=%pf", | ||
__get_str(name), (int)__entry->wait, (void *)__entry->ip) | ||
); | ||
|
||
#endif /* CONFIG_MODULES */ | ||
|
||
#endif /* _TRACE_MODULE_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
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