Commit e6302698 authored by Miaohe Lin's avatar Miaohe Lin Committed by Paolo Bonzini

KVM: x86: Fix print format and coding style

Use %u to print u32 var and correct some coding style.
Signed-off-by: default avatarMiaohe Lin <linmiaohe@huawei.com>
Reviewed-by: default avatarVitaly Kuznetsov <vkuznets@redhat.com>
Signed-off-by: default avatarPaolo Bonzini <pbonzini@redhat.com>
parent 222f06e7
...@@ -367,7 +367,7 @@ static void pit_load_count(struct kvm_pit *pit, int channel, u32 val) ...@@ -367,7 +367,7 @@ static void pit_load_count(struct kvm_pit *pit, int channel, u32 val)
{ {
struct kvm_kpit_state *ps = &pit->pit_state; struct kvm_kpit_state *ps = &pit->pit_state;
pr_debug("load_count val is %d, channel is %d\n", val, channel); pr_debug("load_count val is %u, channel is %d\n", val, channel);
/* /*
* The largest possible initial count is 0; this is equivalent * The largest possible initial count is 0; this is equivalent
......
...@@ -3568,8 +3568,7 @@ static bool fast_page_fault(struct kvm_vcpu *vcpu, gpa_t cr2_or_gpa, ...@@ -3568,8 +3568,7 @@ static bool fast_page_fault(struct kvm_vcpu *vcpu, gpa_t cr2_or_gpa,
* write-protected for dirty-logging or access tracking. * write-protected for dirty-logging or access tracking.
*/ */
if ((error_code & PFERR_WRITE_MASK) && if ((error_code & PFERR_WRITE_MASK) &&
spte_can_locklessly_be_made_writable(spte)) spte_can_locklessly_be_made_writable(spte)) {
{
new_spte |= PT_WRITABLE_MASK; new_spte |= PT_WRITABLE_MASK;
/* /*
......
...@@ -4423,7 +4423,7 @@ int get_vmx_mem_address(struct kvm_vcpu *vcpu, unsigned long exit_qualification, ...@@ -4423,7 +4423,7 @@ int get_vmx_mem_address(struct kvm_vcpu *vcpu, unsigned long exit_qualification,
if (base_is_valid) if (base_is_valid)
off += kvm_register_read(vcpu, base_reg); off += kvm_register_read(vcpu, base_reg);
if (index_is_valid) if (index_is_valid)
off += kvm_register_read(vcpu, index_reg)<<scaling; off += kvm_register_read(vcpu, index_reg) << scaling;
vmx_get_segment(vcpu, &s, seg_reg); vmx_get_segment(vcpu, &s, seg_reg);
/* /*
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment