[PROTO] Change msg_function_entry fields sequence 97/22697/3
authorVasiliy Ulyanov <v.ulyanov@samsung.com>
Tue, 10 Jun 2014 08:26:49 +0000 (12:26 +0400)
committerVasiliy Ulyanov <v.ulyanov@samsung.com>
Fri, 18 Jul 2014 09:29:05 +0000 (13:29 +0400)
Change-Id: I34f5044703b4a09393707106b9425f16d796053a
Signed-off-by: Vasiliy Ulyanov <v.ulyanov@samsung.com>
writer/swap_writer_module.c

index fcc2c30..f1853c2 100644 (file)
@@ -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 */