From: Bernard Iremonger Date: Wed, 15 Jul 2015 13:51:05 +0000 (+0100) Subject: app/testpmd: fix port detaching with virtio X-Git-Tag: spdx-start~8681 X-Git-Url: http://git.droids-corp.org/?p=dpdk.git;a=commitdiff_plain;h=20718201c81c0db3c06e9a5040c9a85f145c4647 app/testpmd: fix port detaching with virtio At this point the stop() and close() functions have already been called. The rte_eth_promiscuous_disable() function does not return on the VM. Signed-off-by: Bernard Iremonger Acked-by: Stephen Hemminger --- diff --git a/app/test-pmd/testpmd.c b/app/test-pmd/testpmd.c index 82b465df76..4769533333 100644 --- a/app/test-pmd/testpmd.c +++ b/app/test-pmd/testpmd.c @@ -1,7 +1,7 @@ /*- * BSD LICENSE * - * Copyright(c) 2010-2014 Intel Corporation. All rights reserved. + * Copyright(c) 2010-2015 Intel Corporation. All rights reserved. * All rights reserved. * * Redistribution and use in source and binary forms, with or without @@ -1542,8 +1542,6 @@ detach_port(uint8_t port_id) return; } - rte_eth_promiscuous_disable(port_id); - if (rte_eth_dev_detach(port_id, name)) return;