1. 17 4月, 2012 6 次提交
    • M
      audio: don't apply volume effect if backend has VOICE_VOLUME_CAP · c01b2456
      Marc-André Lureau 提交于
      If the audio backend is capable of volume control, don't apply
      software volume (mixeng_volume ()), but instead, rely on backend
      volume control. This will allow guest to have full range volume
      control.
      Signed-off-by: NMarc-Andr? Lureau <marcandre.lureau@redhat.com>
      Signed-off-by: Nmalc <av1474@comtv.ru>
      c01b2456
    • M
      audio: add VOICE_VOLUME ctl · 6c95ab94
      Marc-André Lureau 提交于
      Add a new PCM control operation to update the stream volume on the
      audio backend.  The argument given is a SWVoiceOut/SWVoiceIn.
      
      v4:
      - verified other backends didn't fail/assert on this new control
        they randomly return 0 or -1, but we ignore return value.
      Signed-off-by: NMarc-Andr? Lureau <marcandre.lureau@redhat.com>
      Signed-off-by: Nmalc <av1474@comtv.ru>
      6c95ab94
    • P
      qemu-timer.c: Remove 250us timeouts · 158fd3ce
      Peter Portante 提交于
      Basically, the main wait loop calls qemu_run_all_timers() unconditionally. The
      first thing this routine used to do is to see if a timer had been serviced,
      and then reset the loop timeout to the next deadline.
      
      However, the new deadlines had not been calculated at that point, as
      qemu_run_timers() had not been called yet for each of the clocks. So
      qemu_rearm_alarm_timer() would end up with a negative or zero deadline, and
      default to setting a 250us timeout for the loop.
      
      As qemu_run_timers() is called for each clock, the real deadlines would be put
      in place, but because a loop timeout was already set, the loop timeout would
      not be changed.
      
      Once that 250us timeout fired, the real deadline would be used for the
      subsequent timeout.
      
      For idle VMs, this effectively doubles the number of times through the loop,
      doubling the number of select() system calls, timer calls, etc. putting added
      scheduling pressure on the kernel. And under cgroups, this really causes a big
      problem because the cgroup code does not scale well.
      
      By simply running the timers before trying to rearm the timer, we always rearm
      with a non-zero deadline, effectively halving the number of system calls.
      Signed-off-by: NPeter Portante <pportant@redhat.com>
      Signed-off-by: NAnthony Liguori <aliguori@us.ibm.com>
      158fd3ce
    • A
      Merge remote-tracking branch 'kiszka/queues/pending' into staging · fc34e77b
      Anthony Liguori 提交于
      * kiszka/queues/pending:
        vapic: Disable for pre-1.1 machines
        Kick io-thread on qemu_chr_accept_input
        pcnet: Properly handle TX requests during Link Fail
        pcnet: Clear ERR in CSR0 on stop
        signrom: Rewrite as python script
      
      Conflicts:
      	hw/pc_piix.c
      Signed-off-by: NAnthony Liguori <aliguori@us.ibm.com>
      fc34e77b
    • A
      Merge remote-tracking branch 'mst/tags/for_anthony' into staging · 52346e8c
      Anthony Liguori 提交于
      * mst/tags/for_anthony:
        pci: fix corrupted pci conf index register by unaligned write
        acpi: explicitly account for >1 device per slot
        acpi_piix4: Re-define PCI hotplug eject register read
        acpi_piix4: Remove PCI_RMV_BASE write code
        acpi_piix4: Fix PCI hotplug race
        acpi_piix4: Disallow write to up/down PCI hotplug registers
        virtio-pci: change virtio balloon PCI class code
        ivshmem: add missing msix calls
        vhost: readd assert statement
        vhost: Fix size of dirty log sync on resize
        pc: reduce duplication in compat machine types
        piix_pci: fix typo in i400FX chipset init code
      52346e8c
    • A
      Merge remote-tracking branch 'sstabellini/for_anthony' into staging · 8a6b8708
      Anthony Liguori 提交于
      * sstabellini/for_anthony:
        xen: introduce an event channel for buffered io event notifications
        xen-mapcache: don't unmap locked entry during mapcache invalidation
        Xen, mapcache: Fix the compute of the size of bucket.
        xen: handle backend deletion from xenstore
        Xen: Add xen-apic support and hook it up.
        Xen: basic HVM MSI injection support.
      8a6b8708
  2. 16 4月, 2012 34 次提交