diff options
Diffstat (limited to 'arch')
-rw-r--r-- | arch/x86/kvm/x86.c | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/arch/x86/kvm/x86.c b/arch/x86/kvm/x86.c index 15bba5d37931..cf6261e3d928 100644 --- a/arch/x86/kvm/x86.c +++ b/arch/x86/kvm/x86.c | |||
@@ -1083,32 +1083,32 @@ static void do_cpuid_ent(struct kvm_cpuid_entry2 *entry, u32 function, | |||
1083 | } | 1083 | } |
1084 | /* function 4 and 0xb have additional index. */ | 1084 | /* function 4 and 0xb have additional index. */ |
1085 | case 4: { | 1085 | case 4: { |
1086 | int index, cache_type; | 1086 | int i, cache_type; |
1087 | 1087 | ||
1088 | entry->flags |= KVM_CPUID_FLAG_SIGNIFCANT_INDEX; | 1088 | entry->flags |= KVM_CPUID_FLAG_SIGNIFCANT_INDEX; |
1089 | /* read more entries until cache_type is zero */ | 1089 | /* read more entries until cache_type is zero */ |
1090 | for (index = 1; *nent < maxnent; ++index) { | 1090 | for (i = 1; *nent < maxnent; ++i) { |
1091 | cache_type = entry[index - 1].eax & 0x1f; | 1091 | cache_type = entry[i - 1].eax & 0x1f; |
1092 | if (!cache_type) | 1092 | if (!cache_type) |
1093 | break; | 1093 | break; |
1094 | do_cpuid_1_ent(&entry[index], function, index); | 1094 | do_cpuid_1_ent(&entry[i], function, i); |
1095 | entry[index].flags |= | 1095 | entry[i].flags |= |
1096 | KVM_CPUID_FLAG_SIGNIFCANT_INDEX; | 1096 | KVM_CPUID_FLAG_SIGNIFCANT_INDEX; |
1097 | ++*nent; | 1097 | ++*nent; |
1098 | } | 1098 | } |
1099 | break; | 1099 | break; |
1100 | } | 1100 | } |
1101 | case 0xb: { | 1101 | case 0xb: { |
1102 | int index, level_type; | 1102 | int i, level_type; |
1103 | 1103 | ||
1104 | entry->flags |= KVM_CPUID_FLAG_SIGNIFCANT_INDEX; | 1104 | entry->flags |= KVM_CPUID_FLAG_SIGNIFCANT_INDEX; |
1105 | /* read more entries until level_type is zero */ | 1105 | /* read more entries until level_type is zero */ |
1106 | for (index = 1; *nent < maxnent; ++index) { | 1106 | for (i = 1; *nent < maxnent; ++i) { |
1107 | level_type = entry[index - 1].ecx & 0xff; | 1107 | level_type = entry[i - 1].ecx & 0xff; |
1108 | if (!level_type) | 1108 | if (!level_type) |
1109 | break; | 1109 | break; |
1110 | do_cpuid_1_ent(&entry[index], function, index); | 1110 | do_cpuid_1_ent(&entry[i], function, i); |
1111 | entry[index].flags |= | 1111 | entry[i].flags |= |
1112 | KVM_CPUID_FLAG_SIGNIFCANT_INDEX; | 1112 | KVM_CPUID_FLAG_SIGNIFCANT_INDEX; |
1113 | ++*nent; | 1113 | ++*nent; |
1114 | } | 1114 | } |
@@ -1965,7 +1965,7 @@ void kvm_report_emulation_failure(struct kvm_vcpu *vcpu, const char *context) | |||
1965 | } | 1965 | } |
1966 | EXPORT_SYMBOL_GPL(kvm_report_emulation_failure); | 1966 | EXPORT_SYMBOL_GPL(kvm_report_emulation_failure); |
1967 | 1967 | ||
1968 | struct x86_emulate_ops emulate_ops = { | 1968 | static struct x86_emulate_ops emulate_ops = { |
1969 | .read_std = emulator_read_std, | 1969 | .read_std = emulator_read_std, |
1970 | .read_emulated = emulator_read_emulated, | 1970 | .read_emulated = emulator_read_emulated, |
1971 | .write_emulated = emulator_write_emulated, | 1971 | .write_emulated = emulator_write_emulated, |
@@ -2899,7 +2899,7 @@ int kvm_arch_vcpu_ioctl_set_regs(struct kvm_vcpu *vcpu, struct kvm_regs *regs) | |||
2899 | static void get_segment(struct kvm_vcpu *vcpu, | 2899 | static void get_segment(struct kvm_vcpu *vcpu, |
2900 | struct kvm_segment *var, int seg) | 2900 | struct kvm_segment *var, int seg) |
2901 | { | 2901 | { |
2902 | return kvm_x86_ops->get_segment(vcpu, var, seg); | 2902 | kvm_x86_ops->get_segment(vcpu, var, seg); |
2903 | } | 2903 | } |
2904 | 2904 | ||
2905 | void kvm_get_cs_db_l_bits(struct kvm_vcpu *vcpu, int *db, int *l) | 2905 | void kvm_get_cs_db_l_bits(struct kvm_vcpu *vcpu, int *db, int *l) |
@@ -2965,7 +2965,7 @@ int kvm_arch_vcpu_ioctl_get_sregs(struct kvm_vcpu *vcpu, | |||
2965 | static void set_segment(struct kvm_vcpu *vcpu, | 2965 | static void set_segment(struct kvm_vcpu *vcpu, |
2966 | struct kvm_segment *var, int seg) | 2966 | struct kvm_segment *var, int seg) |
2967 | { | 2967 | { |
2968 | return kvm_x86_ops->set_segment(vcpu, var, seg); | 2968 | kvm_x86_ops->set_segment(vcpu, var, seg); |
2969 | } | 2969 | } |
2970 | 2970 | ||
2971 | int kvm_arch_vcpu_ioctl_set_sregs(struct kvm_vcpu *vcpu, | 2971 | int kvm_arch_vcpu_ioctl_set_sregs(struct kvm_vcpu *vcpu, |