[dpdk-dev] [PATCH 1/3] net/virtio: fix dev detachable flag

hanxueluo at 126.com hanxueluo at 126.com
Mon Feb 20 15:04:45 CET 2017


From: Huanle Han <hanxueluo at gmail.com>

The dev detachable flag was removed by
commit f229eb4 ("net/virtio: fix rewriting LSC flag").

Signed-off-by: Huanle Han <hanxueluo at gmail.com>
---
 drivers/net/virtio/virtio_ethdev.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/drivers/net/virtio/virtio_ethdev.c b/drivers/net/virtio/virtio_ethdev.c
index 4dc03b9..8465e1a 100644
--- a/drivers/net/virtio/virtio_ethdev.c
+++ b/drivers/net/virtio/virtio_ethdev.c
@@ -1336,6 +1336,7 @@ virtio_init_device(struct rte_eth_dev *eth_dev, uint64_t req_features)
 	if (eth_dev->device) {
 		pci_dev = RTE_DEV_TO_PCI(eth_dev->device);
 		rte_eth_copy_pci_info(eth_dev, pci_dev);
+		eth_dev->data->dev_flags |= RTE_ETH_DEV_DETACHABLE;
 	}
 
 	/* If host does not support status then disable LSC */
-- 
2.7.4




More information about the dev mailing list