HV: coding style cleanup for TRACE_2L & TRACE_4I usage

to align the data type of parameters

Signed-off-by: Yonghua Huang <yonghua.huang@intel.com>
This commit is contained in:
Yonghua Huang 2018-07-14 01:49:40 +08:00 committed by lijinxia
parent c808972926
commit b831120165
5 changed files with 10 additions and 10 deletions

View File

@ -73,8 +73,8 @@ int io_instr_vmexit_handler(struct vcpu *vcpu)
direction = VM_EXIT_IO_INSTRUCTION_ACCESS_DIRECTION(exit_qual);
mask = 0xfffffffful >> (32 - 8 * sz);
TRACE_4I(TRACE_VMEXIT_IO_INSTRUCTION, port, direction, sz,
cur_context_idx);
TRACE_4I(TRACE_VMEXIT_IO_INSTRUCTION, port, (uint32_t)direction, sz,
(uint32_t)cur_context_idx);
for (handler = vm->arch_vm.io_handler;
handler; handler = handler->next) {

View File

@ -20,7 +20,7 @@ static void run_timer(struct timer *timer)
timer->func(timer->priv_data);
}
TRACE_2L(TRACE_TIMER_ACTION_PCKUP, timer->fire_tsc, 0);
TRACE_2L(TRACE_TIMER_ACTION_PCKUP, timer->fire_tsc, 0UL);
}
/* run in interrupt context */
@ -95,7 +95,7 @@ int add_timer(struct timer *timer)
update_physical_timer(cpu_timer);
}
TRACE_2L(TRACE_TIMER_ACTION_ADDED, timer->fire_tsc, 0);
TRACE_2L(TRACE_TIMER_ACTION_ADDED, timer->fire_tsc, 0UL);
return 0;
}

View File

@ -310,7 +310,7 @@ int interrupt_window_vmexit_handler(struct vcpu *vcpu)
{
int value32;
TRACE_2L(TRACE_VMEXIT_INTERRUPT_WINDOW, 0, 0);
TRACE_2L(TRACE_VMEXIT_INTERRUPT_WINDOW, 0UL, 0UL);
if (vcpu == NULL)
return -1;
@ -353,7 +353,7 @@ int external_interrupt_vmexit_handler(struct vcpu *vcpu)
vcpu_retain_rip(vcpu);
TRACE_2L(TRACE_VMEXIT_EXTERNAL_INTERRUPT, ctx.vector, 0);
TRACE_2L(TRACE_VMEXIT_EXTERNAL_INTERRUPT, ctx.vector, 0UL);
return 0;
}
@ -490,7 +490,7 @@ int exception_vmexit_handler(struct vcpu *vcpu)
int status = 0;
if (vcpu == NULL) {
TRACE_4I(TRACE_VMEXIT_EXCEPTION_OR_NMI, 0, 0, 0, 0);
TRACE_4I(TRACE_VMEXIT_EXCEPTION_OR_NMI, 0U, 0U, 0U, 0U);
status = -EINVAL;
}
@ -533,7 +533,7 @@ int exception_vmexit_handler(struct vcpu *vcpu)
}
TRACE_4I(TRACE_VMEXIT_EXCEPTION_OR_NMI,
exception_vector, int_err_code, 2, 0);
exception_vector, int_err_code, 2U, 0U);
return status;
}

View File

@ -213,7 +213,7 @@ static int unhandled_vmexit_handler(struct vcpu *vcpu)
/* while(1); */
TRACE_2L(TRACE_VMEXIT_UNHANDLED, vcpu->arch_vcpu.exit_reason, 0);
TRACE_2L(TRACE_VMEXIT_UNHANDLED, vcpu->arch_vcpu.exit_reason, 0UL);
return 0;
}

View File

@ -62,7 +62,7 @@ void vcpu_thread(struct vcpu *vcpu)
per_cpu(vmexit_time, vcpu->pcpu_id)[basic_exit_reason]
+= (vmexit_end - vmexit_begin);
}
TRACE_2L(TRACE_VM_ENTER, 0, 0);
TRACE_2L(TRACE_VM_ENTER, 0UL, 0UL);
/* Restore guest TSC_AUX */
if (vcpu->launched) {