diff options
author | Shuah Khan <shuah.khan@hp.com> | 2012-10-08 20:36:11 -0400 |
---|---|---|
committer | Marcelo Tosatti <mtosatti@redhat.com> | 2012-10-10 14:45:40 -0400 |
commit | d151f63f20133aef9dbda209faddebcddbfccf31 (patch) | |
tree | c947a9f69b2cbeafdc5c994da1b5d12ec826b480 /virt/kvm/iommu.c | |
parent | b6785def8368f9a69505797fcbd9f280d91b673e (diff) |
KVM: change kvm_assign_device() to print return value when iommu_attach_device() fails
Change existing kernel error message to include return value from
iommu_attach_device() when it fails. This will help debug device
assignment failures more effectively.
Signed-off-by: Shuah Khan <shuah.khan@hp.com>
Signed-off-by: Marcelo Tosatti <mtosatti@redhat.com>
Diffstat (limited to 'virt/kvm/iommu.c')
-rw-r--r-- | virt/kvm/iommu.c | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/virt/kvm/iommu.c b/virt/kvm/iommu.c index 037cb6730e68..18e1e30019e3 100644 --- a/virt/kvm/iommu.c +++ b/virt/kvm/iommu.c | |||
@@ -168,11 +168,7 @@ int kvm_assign_device(struct kvm *kvm, | |||
168 | 168 | ||
169 | r = iommu_attach_device(domain, &pdev->dev); | 169 | r = iommu_attach_device(domain, &pdev->dev); |
170 | if (r) { | 170 | if (r) { |
171 | printk(KERN_ERR "assign device %x:%x:%x.%x failed", | 171 | dev_err(&pdev->dev, "kvm assign device failed ret %d", r); |
172 | pci_domain_nr(pdev->bus), | ||
173 | pdev->bus->number, | ||
174 | PCI_SLOT(pdev->devfn), | ||
175 | PCI_FUNC(pdev->devfn)); | ||
176 | return r; | 172 | return r; |
177 | } | 173 | } |
178 | 174 | ||