tracing: format clean ups
Fix white-space formatting. Signed-off-by: Li Zefan <lizf@cn.fujitsu.com> LKML-Reference: <4AA8579B.4020706@cn.fujitsu.com> Signed-off-by: Steven Rostedt <rostedt@goodmis.org>
This commit is contained in:
@@ -169,20 +169,20 @@ enum kmemtrace_type_id {
|
|||||||
|
|
||||||
struct kmemtrace_alloc_entry {
|
struct kmemtrace_alloc_entry {
|
||||||
struct trace_entry ent;
|
struct trace_entry ent;
|
||||||
enum kmemtrace_type_id type_id;
|
enum kmemtrace_type_id type_id;
|
||||||
unsigned long call_site;
|
unsigned long call_site;
|
||||||
const void *ptr;
|
const void *ptr;
|
||||||
size_t bytes_req;
|
size_t bytes_req;
|
||||||
size_t bytes_alloc;
|
size_t bytes_alloc;
|
||||||
gfp_t gfp_flags;
|
gfp_t gfp_flags;
|
||||||
int node;
|
int node;
|
||||||
};
|
};
|
||||||
|
|
||||||
struct kmemtrace_free_entry {
|
struct kmemtrace_free_entry {
|
||||||
struct trace_entry ent;
|
struct trace_entry ent;
|
||||||
enum kmemtrace_type_id type_id;
|
enum kmemtrace_type_id type_id;
|
||||||
unsigned long call_site;
|
unsigned long call_site;
|
||||||
const void *ptr;
|
const void *ptr;
|
||||||
};
|
};
|
||||||
|
|
||||||
struct syscall_trace_enter {
|
struct syscall_trace_enter {
|
||||||
@@ -203,7 +203,7 @@ struct syscall_trace_exit {
|
|||||||
* states when a trace occurs. These are:
|
* states when a trace occurs. These are:
|
||||||
* IRQS_OFF - interrupts were disabled
|
* IRQS_OFF - interrupts were disabled
|
||||||
* IRQS_NOSUPPORT - arch does not support irqs_disabled_flags
|
* IRQS_NOSUPPORT - arch does not support irqs_disabled_flags
|
||||||
* NEED_RESCED - reschedule is requested
|
* NEED_RESCHED - reschedule is requested
|
||||||
* HARDIRQ - inside an interrupt handler
|
* HARDIRQ - inside an interrupt handler
|
||||||
* SOFTIRQ - inside a softirq handler
|
* SOFTIRQ - inside a softirq handler
|
||||||
*/
|
*/
|
||||||
|
Reference in New Issue
Block a user