We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fec55ec commit fbfb6b7Copy full SHA for fbfb6b7
arch/mips/kvm/stats.c
@@ -54,9 +54,9 @@ void kvm_mips_dump_stats(struct kvm_vcpu *vcpu)
54
kvm_info("\nKVM VCPU[%d] COP0 Access Profile:\n", vcpu->vcpu_id);
55
for (i = 0; i < N_MIPS_COPROC_REGS; i++) {
56
for (j = 0; j < N_MIPS_COPROC_SEL; j++) {
57
- if (vcpu->arch.cop0->stat[i][j])
+ if (vcpu->arch.cop0.stat[i][j])
58
kvm_info("%s[%d]: %lu\n", kvm_cop0_str[i], j,
59
- vcpu->arch.cop0->stat[i][j]);
+ vcpu->arch.cop0.stat[i][j]);
60
}
61
62
#endif
0 commit comments