aboutsummaryrefslogtreecommitdiffstats
path: root/virt/kvm
diff options
context:
space:
mode:
authorJan Kiszka <jan.kiszka@siemens.com>2010-11-16 16:30:04 -0500
committerAvi Kivity <avi@redhat.com>2011-01-12 04:29:21 -0500
commit1e001d49f9f9a0e3eb72939ad49d9a2c7754e9c1 (patch)
tree3ccce476e4ad47d9ad620294a684827df0ded980 /virt/kvm
parent0645211c43df0b96c51e12980066b3227e10b164 (diff)
KVM: Refactor IRQ names of assigned devices
Cosmetic change, but it helps to correlate IRQs with PCI devices. Acked-by: Alex Williamson <alex.williamson@redhat.com> Acked-by: Michael S. Tsirkin <mst@redhat.com> Signed-off-by: Jan Kiszka <jan.kiszka@siemens.com> Signed-off-by: Marcelo Tosatti <mtosatti@redhat.com>
Diffstat (limited to 'virt/kvm')
-rw-r--r--virt/kvm/assigned-dev.c11
1 files changed, 6 insertions, 5 deletions
diff --git a/virt/kvm/assigned-dev.c b/virt/kvm/assigned-dev.c
index 1d77ce16360a..7623408dbc81 100644
--- a/virt/kvm/assigned-dev.c
+++ b/virt/kvm/assigned-dev.c
@@ -231,8 +231,7 @@ static int assigned_device_enable_host_intx(struct kvm *kvm,
231 * are going to be long delays in accepting, acking, etc. 231 * are going to be long delays in accepting, acking, etc.
232 */ 232 */
233 if (request_threaded_irq(dev->host_irq, NULL, kvm_assigned_dev_thread, 233 if (request_threaded_irq(dev->host_irq, NULL, kvm_assigned_dev_thread,
234 IRQF_ONESHOT, "kvm_assigned_intx_device", 234 IRQF_ONESHOT, dev->irq_name, (void *)dev))
235 (void *)dev))
236 return -EIO; 235 return -EIO;
237 return 0; 236 return 0;
238} 237}
@@ -251,7 +250,7 @@ static int assigned_device_enable_host_msi(struct kvm *kvm,
251 250
252 dev->host_irq = dev->dev->irq; 251 dev->host_irq = dev->dev->irq;
253 if (request_threaded_irq(dev->host_irq, NULL, kvm_assigned_dev_thread, 252 if (request_threaded_irq(dev->host_irq, NULL, kvm_assigned_dev_thread,
254 0, "kvm_assigned_msi_device", (void *)dev)) { 253 0, dev->irq_name, (void *)dev)) {
255 pci_disable_msi(dev->dev); 254 pci_disable_msi(dev->dev);
256 return -EIO; 255 return -EIO;
257 } 256 }
@@ -278,8 +277,7 @@ static int assigned_device_enable_host_msix(struct kvm *kvm,
278 for (i = 0; i < dev->entries_nr; i++) { 277 for (i = 0; i < dev->entries_nr; i++) {
279 r = request_threaded_irq(dev->host_msix_entries[i].vector, 278 r = request_threaded_irq(dev->host_msix_entries[i].vector,
280 NULL, kvm_assigned_dev_thread, 279 NULL, kvm_assigned_dev_thread,
281 0, "kvm_assigned_msix_device", 280 0, dev->irq_name, (void *)dev);
282 (void *)dev);
283 if (r) 281 if (r)
284 goto err; 282 goto err;
285 } 283 }
@@ -336,6 +334,9 @@ static int assign_host_irq(struct kvm *kvm,
336 if (dev->irq_requested_type & KVM_DEV_IRQ_HOST_MASK) 334 if (dev->irq_requested_type & KVM_DEV_IRQ_HOST_MASK)
337 return r; 335 return r;
338 336
337 snprintf(dev->irq_name, sizeof(dev->irq_name), "kvm:%s",
338 pci_name(dev->dev));
339
339 switch (host_irq_type) { 340 switch (host_irq_type) {
340 case KVM_DEV_IRQ_HOST_INTX: 341 case KVM_DEV_IRQ_HOST_INTX:
341 r = assigned_device_enable_host_intx(kvm, dev); 342 r = assigned_device_enable_host_intx(kvm, dev);