SEP/SOCWATCH change variable names

To follow ACRN coding guideline: identifier cannot be reused.
in profiling_info_wrapper struct, modified member names:
pmu_sample -> p_sample
sep_state -> s_state
sw_msr_op_info -> sw_msr_info
vm_switch_trace -> vm_trace

Tracked-On: #3598
Acked-by: min.yeol.lim@intel.com
Signed-off-by: Manisha <manisha.chinthapally@intel.com>
This commit is contained in:
Manisha
2019-08-09 00:36:24 +00:00
committed by wenlingz
parent de589c25fc
commit 489a0e645d
2 changed files with 69 additions and 69 deletions

View File

@@ -290,13 +290,13 @@ struct vm_switch_trace {
*/
struct profiling_info_wrapper {
struct profiling_msr_ops_list *msr_node;
struct sep_state sep_state;
struct sep_state s_state;
struct guest_vm_info vm_info;
ipi_commands ipi_cmd;
struct pmu_sample pmu_sample;
struct vm_switch_trace vm_switch_trace;
struct pmu_sample p_sample;
struct vm_switch_trace vm_trace;
socwatch_state soc_state;
struct sw_msr_op_info sw_msr_op_info;
struct sw_msr_op_info sw_msr_info;
spinlock_t sw_lock;
} __aligned(8);