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 <bernard.iremonger@intel.com>
Acked-by: Stephen Hemminger <stephen@networkplumber.org>
This commit is contained in:
Bernard Iremonger 2015-07-15 14:51:05 +01:00 committed by Thomas Monjalon
parent 941d64b5bf
commit 20718201c8

View File

@ -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;