diff options
Diffstat (limited to 'arch/mips/kvm/vz.c')
| -rw-r--r-- | arch/mips/kvm/vz.c | 12 | 
1 files changed, 9 insertions, 3 deletions
diff --git a/arch/mips/kvm/vz.c b/arch/mips/kvm/vz.c index 4adca5abbc72..c706f5890a05 100644 --- a/arch/mips/kvm/vz.c +++ b/arch/mips/kvm/vz.c @@ -458,8 +458,8 @@ void kvm_vz_acquire_htimer(struct kvm_vcpu *vcpu)  /**   * _kvm_vz_save_htimer() - Switch to software emulation of guest timer.   * @vcpu:	Virtual CPU. - * @compare:	Pointer to write compare value to. - * @cause:	Pointer to write cause value to. + * @out_compare: Pointer to write compare value to. + * @out_cause:	Pointer to write cause value to.   *   * Save VZ guest timer state and switch to software emulation of guest CP0   * timer. The hard timer must already be in use, so preemption should be @@ -1541,11 +1541,14 @@ static int kvm_trap_vz_handle_guest_exit(struct kvm_vcpu *vcpu)  }  /** - * kvm_trap_vz_handle_cop_unusuable() - Guest used unusable coprocessor. + * kvm_trap_vz_handle_cop_unusable() - Guest used unusable coprocessor.   * @vcpu:	Virtual CPU context.   *   * Handle when the guest attempts to use a coprocessor which hasn't been allowed   * by the root context. + * + * Return: value indicating whether to resume the host or the guest + * 	   (RESUME_HOST or RESUME_GUEST)   */  static int kvm_trap_vz_handle_cop_unusable(struct kvm_vcpu *vcpu)  { @@ -1592,6 +1595,9 @@ static int kvm_trap_vz_handle_cop_unusable(struct kvm_vcpu *vcpu)   *   * Handle when the guest attempts to use MSA when it is disabled in the root   * context. + * + * Return: value indicating whether to resume the host or the guest + * 	   (RESUME_HOST or RESUME_GUEST)   */  static int kvm_trap_vz_handle_msa_disabled(struct kvm_vcpu *vcpu)  {  |