1. 09 Dec, 2015 2 commits
    • Thomas Huth's avatar
      KVM: PPC: Fix emulation of H_SET_DABR/X on POWER8 · 760a7364
      Thomas Huth authored
      In the old DABR register, the BT (Breakpoint Translation) bit
      is bit number 61. In the new DAWRX register, the WT (Watchpoint
      Translation) bit is bit number 59. So to move the DABR-BT bit
      into the position of the DAWRX-WT bit, it has to be shifted by
      two, not only by one. This fixes hardware watchpoints in gdb of
      older guests that only use the H_SET_DABR/X interface instead
      of the new H_SET_MODE interface.
      
      Cc: stable@vger.kernel.org # v3.14+
      Signed-off-by: default avatarThomas Huth <thuth@redhat.com>
      Reviewed-by: default avatarLaurent Vivier <lvivier@redhat.com>
      Reviewed-by: default avatarDavid Gibson <david@gibson.dropbear.id.au>
      Signed-off-by: default avatarPaul Mackerras <paulus@samba.org>
      760a7364
    • Paul Mackerras's avatar
      KVM: PPC: Book3S HV: Handle unexpected traps in guest entry/exit code better · 1c9e3d51
      Paul Mackerras authored
      As we saw with the TM Bad Thing type of program interrupt occurring
      on the hrfid that enters the guest, it is not completely impossible
      to have a trap occurring in the guest entry/exit code, despite the
      fact that the code has been written to avoid taking any traps.
      
      This adds a check in the kvmppc_handle_exit_hv() function to detect
      the case when a trap has occurred in the hypervisor-mode code, and
      instead of treating it just like a trap in guest code, we now print
      a message and return to userspace with a KVM_EXIT_INTERNAL_ERROR
      exit reason.
      
      Of the various interrupts that get handled in the assembly code in
      the guest exit path and that can return directly to the guest, the
      only one that can occur when MSR.HV=1 and MSR.EE=0 is machine check
      (other than system call, which we can avoid just by not doing a sc
      instruction).  Therefore this adds code to the machine check path to
      ensure that if the MCE occurred in hypervisor mode, we exit to the
      host rather than trying to continue the guest.
      Signed-off-by: default avatarPaul Mackerras <paulus@samba.org>
      1c9e3d51
  2. 02 Dec, 2015 1 commit
    • Paolo Bonzini's avatar
      Merge tag 'kvm-s390-next-4.5-1' of... · 46014634
      Paolo Bonzini authored
      Merge tag 'kvm-s390-next-4.5-1' of git://git.kernel.org/pub/scm/linux/kernel/git/kvms390/linux into HEAD
      
      KVM: s390 features, kvm_get_vcpu_by_id and stat
      
      Several features for s390
      1. ESCA support (up to 248 vCPUs)
      2. KVM detection: we  can now detect if we support KVM (e.g. does KVM
         under KVM work?)
      
      kvm_stat:
      1. cleanup the exit path
      
      kvm_get_vcpu_by_id:
      1. Use kvm_get_vcpu_by_id where appropriate
      2. Apply a heuristic to optimize for ID VCPU == No. VCPU
      46014634
  3. 30 Nov, 2015 23 commits
  4. 26 Nov, 2015 3 commits
  5. 25 Nov, 2015 11 commits