xen/pciback: don't call pcistub_device_put() under lock
authorJuergen Gross <jgross@suse.com>
Tue, 28 Mar 2023 08:45:49 +0000 (10:45 +0200)
committerJuergen Gross <jgross@suse.com>
Mon, 24 Apr 2023 05:27:10 +0000 (07:27 +0200)
commitfae65ef3a148079103ae935107c62f7830ab52c5
tree6e1381d7304ec032d39e3b4b24ff057f33866183
parent457391b0380335d5e9a5babdec90ac53928b23b4
xen/pciback: don't call pcistub_device_put() under lock

pcistub_device_put() shouldn't be called under spinlock, as it can
sleep.

For this reason pcistub_device_get_pci_dev() needs to be modified:
instead of always calling pcistub_device_get() just do the call of
pcistub_device_get() only if it is really needed. This removes the
need to call pcistub_device_put().

Reported-by: Dan Carpenter <error27@gmail.com>
Link: https://lore.kernel.org/lkml/Y+JUIl64UDmdkboh@kadam/
Signed-off-by: Juergen Gross <jgross@suse.com>
Reviewed-by: Oleksandr Tyshchenko <oleksandr_tyshchenko@epam.com>
Link: https://lore.kernel.org/r/20230328084549.20695-1-jgross@suse.com
Signed-off-by: Juergen Gross <jgross@suse.com>
drivers/xen/xen-pciback/pci_stub.c