diff options
author | Konrad Rzeszutek Wilk <konrad.wilk@oracle.com> | 2011-09-29 13:12:43 -0400 |
---|---|---|
committer | Konrad Rzeszutek Wilk <konrad.wilk@oracle.com> | 2011-10-19 17:01:10 -0400 |
commit | 4645bf306746106f805d2afa5330bf31df381626 (patch) | |
tree | 5cd174f16d7035b366d5293d1d35a5cc27458721 /drivers/xen/xen-pciback | |
parent | 72bf809a19d9fc97bfe39bb928149b5e0f202cb6 (diff) |
xen/pciback: Check if the device is found instead of blindly assuming so.
Just in case it is not found, don't try to dereference it.
[v1: Added WARN_ON, suggested by Jan Beulich <JBeulich@suse.com>]
Signed-off-by: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
Diffstat (limited to 'drivers/xen/xen-pciback')
-rw-r--r-- | drivers/xen/xen-pciback/pci_stub.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/xen/xen-pciback/pci_stub.c b/drivers/xen/xen-pciback/pci_stub.c index 3cc3fbe5bf8d..8f06e1ed028c 100644 --- a/drivers/xen/xen-pciback/pci_stub.c +++ b/drivers/xen/xen-pciback/pci_stub.c | |||
@@ -220,6 +220,8 @@ void pcistub_put_pci_dev(struct pci_dev *dev) | |||
220 | } | 220 | } |
221 | 221 | ||
222 | spin_unlock_irqrestore(&pcistub_devices_lock, flags); | 222 | spin_unlock_irqrestore(&pcistub_devices_lock, flags); |
223 | if (WARN_ON(!found_psdev)) | ||
224 | return; | ||
223 | 225 | ||
224 | /*hold this lock for avoiding breaking link between | 226 | /*hold this lock for avoiding breaking link between |
225 | * pcistub and xen_pcibk when AER is in processing | 227 | * pcistub and xen_pcibk when AER is in processing |