raw/ioat: fix device state after test

The ioat rawdev was initially started during the test, however was never
stopped. This would cause issues when running the test again, as the device
cannot be configured when in a running state.

The device is now stopped after the test has completed, or if the test is
terminated due to error.

Fixes: 849470d522 ("raw/ioat: add configure, start and stop functions")
Cc: stable@dpdk.org

Signed-off-by: Ciara Power <ciara.power@intel.com>
Acked-by: Bruce Richardson <bruce.richardson@intel.com>
This commit is contained in:
Ciara Power 2019-10-10 13:36:02 +01:00 committed by David Marchand
parent ec4a1d40a5
commit df769483bf

View File

@ -220,6 +220,7 @@ ioat_rawdev_test(uint16_t dev_id)
}
printf("\n");
rte_rawdev_stop(dev_id);
rte_mempool_free(pool);
free(snames);
free(stats);
@ -227,6 +228,7 @@ ioat_rawdev_test(uint16_t dev_id)
return 0;
err:
rte_rawdev_stop(dev_id);
rte_mempool_free(pool);
free(snames);
free(stats);