• J
    virtio: introduce an API to set affinity for a virtqueue · 75a0a52b
    Jason Wang 提交于
    Sometimes, virtio device need to configure irq affinity hint to maximize the
    performance. Instead of just exposing the irq of a virtqueue, this patch
    introduce an API to set the affinity for a virtqueue.
    
    The api is best-effort, the affinity hint may not be set as expected due to
    platform support, irq sharing or irq type. Currently, only pci method were
    implemented and we set the affinity according to:
    
    - if device uses INTX, we just ignore the request
    - if device has per vq vector, we force the affinity hint
    - if the virtqueues share MSI, make the affinity OR over all affinities
      requested
    Signed-off-by: NJason Wang <jasowang@redhat.com>
    Signed-off-by: NPaolo Bonzini <pbonzini@redhat.com>
    Signed-off-by: NRusty Russell <rusty@rustcorp.com.au>
    75a0a52b
virtio_pci.c 22.0 KB