1. 27 2月, 2010 1 次提交
  2. 21 9月, 2009 1 次提交
  3. 10 9月, 2009 1 次提交
  4. 05 8月, 2009 1 次提交
    • C
      KVM: s390: fix wait_queue handling · d3bc2f91
      Christian Borntraeger 提交于
      There are two waitqueues in kvm for wait handling:
      vcpu->wq for virt/kvm/kvm_main.c and
      vpcu->arch.local_int.wq for the s390 specific wait code.
      
      the wait handling in kvm_s390_handle_wait was broken by using different
      wait_queues for add_wait queue and remove_wait_queue.
      
      There are two options to fix the problem:
      o  move all the s390 specific code to vcpu->wq and remove
         vcpu->arch.local_int.wq
      o  move all the s390 specific code to vcpu->arch.local_int.wq
      
      This patch chooses the 2nd variant for two reasons:
      o  s390 does not use kvm_vcpu_block but implements its own enabled wait
         handling.
         Having a separate wait_queue make it clear, that our wait mechanism is
         different
      o  the patch is much smaller
      Report-by: NJulia Lawall <julia@diku.dk>
      Signed-off-by: NChristian Borntraeger <borntraeger@de.ibm.com>
      Signed-off-by: NMarcelo Tosatti <mtosatti@redhat.com>
      Signed-off-by: NAvi Kivity <avi@redhat.com>
      d3bc2f91
  5. 10 6月, 2009 3 次提交
  6. 24 3月, 2009 1 次提交
  7. 09 1月, 2009 1 次提交
  8. 27 7月, 2008 1 次提交
    • C
      KVM: s390: Fix program check on interrupt delivery handling · 3cd61299
      Christian Borntraeger 提交于
      The current interrupt handling on s390 misbehaves on an error case. On s390
      each cpu has the prefix area (lowcore) for interrupt delivery. This memory
      must always be available. If we fail to access the prefix area for a guest
      on interrupt delivery the configuration is completely unusable. There is no
      point in sending another program interrupt to an inaccessible lowcore.
      Furthermore, we should not bug the host kernel, because this can be triggered
      by userspace. I think the guest kernel itself can not trigger the problem, as
      SET PREFIX and SIGNAL PROCESSOR SET PREFIX both check that the memory is
      available and sane. As this is a userspace bug (e.g. setting the wrong guest
      offset, unmapping guest memory) we should kill the userspace process instead
      of BUGing the host kernel.
      In the long term we probably should notify the userspace process about this
      problem.
      Signed-off-by: NChristian Borntraeger <borntraeger@de.ibm.com>
      Signed-off-by: NAvi Kivity <avi@qumranet.com>
      3cd61299
  9. 20 7月, 2008 1 次提交
  10. 07 6月, 2008 1 次提交
    • C
      KVM: s390: Fix race condition in kvm_s390_handle_wait · e52b2af5
      Carsten Otte 提交于
      The call to add_timer was issued before local_int.lock was taken and before
      timer_due was set to 0. If the timer expires before the lock is being taken,
      the timer function will set timer_due to 1 and exit before the vcpu falls
      asleep. Depending on other external events, the vcpu might sleep forever.
      This fix pulls setting timer_due to the beginning of the function before
      add_timer, which ensures correct behavior.
      Signed-off-by: NCarsten Otte <cotte@de.ibm.com>
      Signed-off-by: NAvi Kivity <avi@qumranet.com>
      e52b2af5
  11. 27 4月, 2008 2 次提交
    • M
      KVM: hlt emulation should take in-kernel APIC/PIT timers into account · 3d80840d
      Marcelo Tosatti 提交于
      Timers that fire between guest hlt and vcpu_block's add_wait_queue() are
      ignored, possibly resulting in hangs.
      
      Also make sure that atomic_inc and waitqueue_active tests happen in the
      specified order, otherwise the following race is open:
      
      CPU0                                        CPU1
                                                  if (waitqueue_active(wq))
      add_wait_queue()
      if (!atomic_read(pit_timer->pending))
          schedule()
                                                  atomic_inc(pit_timer->pending)
      Signed-off-by: NMarcelo Tosatti <mtosatti@redhat.com>
      Signed-off-by: NAvi Kivity <avi@qumranet.com>
      3d80840d
    • C
      KVM: s390: interrupt subsystem, cpu timer, waitpsw · ba5c1e9b
      Carsten Otte 提交于
      This patch contains the s390 interrupt subsystem (similar to in kernel apic)
      including timer interrupts (similar to in-kernel-pit) and enabled wait
      (similar to in kernel hlt).
      
      In order to achieve that, this patch also introduces intercept handling
      for instruction intercepts, and it implements load control instructions.
      
      This patch introduces an ioctl KVM_S390_INTERRUPT which is valid for both
      the vm file descriptors and the vcpu file descriptors. In case this ioctl is
      issued against a vm file descriptor, the interrupt is considered floating.
      Floating interrupts may be delivered to any virtual cpu in the configuration.
      
      The following interrupts are supported:
      SIGP STOP       - interprocessor signal that stops a remote cpu
      SIGP SET PREFIX - interprocessor signal that sets the prefix register of a
                        (stopped) remote cpu
      INT EMERGENCY   - interprocessor interrupt, usually used to signal need_reshed
                        and for smp_call_function() in the guest.
      PROGRAM INT     - exception during program execution such as page fault, illegal
                        instruction and friends
      RESTART         - interprocessor signal that starts a stopped cpu
      INT VIRTIO      - floating interrupt for virtio signalisation
      INT SERVICE     - floating interrupt for signalisations from the system
                        service processor
      
      struct kvm_s390_interrupt, which is submitted as ioctl parameter when injecting
      an interrupt, also carrys parameter data for interrupts along with the interrupt
      type. Interrupts on s390 usually have a state that represents the current
      operation, or identifies which device has caused the interruption on s390.
      
      kvm_s390_handle_wait() does handle waitpsw in two flavors: in case of a
      disabled wait (that is, disabled for interrupts), we exit to userspace. In case
      of an enabled wait we set up a timer that equals the cpu clock comparator value
      and sleep on a wait queue.
      
      [christian: change virtio interrupt to 0x2603]
      Acked-by: NMartin Schwidefsky <schwidefsky@de.ibm.com>
      Signed-off-by: NHeiko Carstens <heiko.carstens@de.ibm.com>
      Signed-off-by: NCarsten Otte <cotte@de.ibm.com>
      Signed-off-by: NChristian Borntraeger <borntraeger@de.ibm.com>
      Signed-off-by: NAvi Kivity <avi@qumranet.com>
      ba5c1e9b