Revert "pci: fix the hotplug issue"

This reverts commit 301c5aeec9.

The patch doesn't fix anything as the hotremoval could be still
called twice and the second call would do use-after-free.

Change-Id: I78a1120707dbdf36c871ec378a312c4a058fc76b
Signed-off-by: Darek Stojaczyk <dariusz.stojaczyk@intel.com>
Reviewed-on: https://review.spdk.io/gerrit/c/spdk/spdk/+/1729
Tested-by: SPDK CI Jenkins <sys_sgci@intel.com>
Community-CI: Mellanox Build Bot
Reviewed-by: Ben Walker <benjamin.walker@intel.com>
Reviewed-by: Jim Harris <james.r.harris@intel.com>
This commit is contained in:
Darek Stojaczyk 2020-04-02 14:57:40 +02:00 committed by Jim Harris
parent 1415e38411
commit b71ee92e3b

View File

@ -179,12 +179,6 @@ pci_driver_register(struct spdk_pci_driver *driver)
} }
#if RTE_VERSION >= RTE_VERSION_NUM(18, 5, 0, 0) #if RTE_VERSION >= RTE_VERSION_NUM(18, 5, 0, 0)
static void
pci_device_rte_hotremove_cb(void *dev)
{
detach_rte((struct spdk_pci_device *)dev);
}
static void static void
pci_device_rte_hotremove(const char *device_name, pci_device_rte_hotremove(const char *device_name,
enum rte_dev_event_type event, enum rte_dev_event_type event,
@ -200,6 +194,7 @@ pci_device_rte_hotremove(const char *device_name,
pthread_mutex_lock(&g_pci_mutex); pthread_mutex_lock(&g_pci_mutex);
TAILQ_FOREACH(dev, &g_pci_devices, internal.tailq) { TAILQ_FOREACH(dev, &g_pci_devices, internal.tailq) {
struct rte_pci_device *rte_dev = dev->dev_handle; struct rte_pci_device *rte_dev = dev->dev_handle;
if (strcmp(rte_dev->name, device_name) == 0 && if (strcmp(rte_dev->name, device_name) == 0 &&
!dev->internal.pending_removal) { !dev->internal.pending_removal) {
can_detach = !dev->internal.attached; can_detach = !dev->internal.attached;
@ -211,17 +206,8 @@ pci_device_rte_hotremove(const char *device_name,
pthread_mutex_unlock(&g_pci_mutex); pthread_mutex_unlock(&g_pci_mutex);
if (dev != NULL && can_detach) { if (dev != NULL && can_detach) {
/* If device is not attached, we can remove it right away. /* if device is not attached, we can remove it right away. */
* detach_rte(dev);
* Because the user's callback is invoked in eal interrupt
* callback, the interrupt callback need to be finished before
* it can be unregistered when detaching device. So finish
* callback soon and use a deferred removal to detach device
* is need. It is a workaround, once the device detaching be
* moved into the eal in the future, the deferred removal could
* be deleted.
*/
rte_eal_alarm_set(1, pci_device_rte_hotremove_cb, dev);
} }
} }
#endif #endif