diff options
author | Vasiliy Ulyanov <v.ulyanov@samsung.com> | 2014-06-10 12:26:49 +0400 |
---|---|---|
committer | Vasiliy Ulyanov <v.ulyanov@samsung.com> | 2014-07-18 13:29:05 +0400 |
commit | a2ee93f3f9fe60f96ab265f27741374b6a305e1f (patch) | |
tree | f9d53b501c0712ccef2eb479c5772fb0d3005c54 | |
parent | aa6aaa96542bf5f364a7a647528e8bd9ce33460e (diff) | |
download | swap-modules-a2ee93f3f9fe60f96ab265f27741374b6a305e1f.tar.gz swap-modules-a2ee93f3f9fe60f96ab265f27741374b6a305e1f.tar.bz2 swap-modules-a2ee93f3f9fe60f96ab265f27741374b6a305e1f.zip |
[PROTO] Change msg_function_entry fields sequence
Change-Id: I34f5044703b4a09393707106b9425f16d796053a
Signed-off-by: Vasiliy Ulyanov <v.ulyanov@samsung.com>
-rw-r--r-- | writer/swap_writer_module.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/writer/swap_writer_module.c b/writer/swap_writer_module.c index fcc2c30d..f1853c2d 100644 --- a/writer/swap_writer_module.c +++ b/writer/swap_writer_module.c @@ -733,12 +733,12 @@ EXPORT_SYMBOL_GPL(sample_msg); * @brief Entry event info. */ struct msg_func_entry { - u64 pc_addr; /**< Instruction pointer address. */ - u64 caller_pc_addr; /**< Return address */ - u16 probe_type; /**< Probe type */ - u16 probe_sub_type; /**< Probe subtype */ u32 pid; /**< Process ID */ u32 tid; /**< Thread ID */ + u16 probe_type; /**< Probe type */ + u16 probe_sub_type; /**< Probe subtype */ + u64 pc_addr; /**< Instruction pointer address. */ + u64 caller_pc_addr; /**< Return address */ u32 cpu_num; /**< CPU number */ u32 cnt_args; /**< Count of args */ char args[0]; /**< Args format string */ |