Re: [dpdk-dev] [PATCH] eal: avoid error for non-existent default PMD path

2017-10-23 Thread Thomas Monjalon
19/10/2017 10:49, Bruce Richardson: > If the default location for the PMD .so files does not exist, it should > not be treated as a fatal error condition like an incorrect path on the > command line. Therefore check that the path exists and is a directory > before adding it to the list of paths to

[dpdk-dev] [PATCH] eal: avoid error for non-existent default PMD path

2017-10-19 Thread Bruce Richardson
If the default location for the PMD .so files does not exist, it should not be treated as a fatal error condition like an incorrect path on the command line. Therefore check that the path exists and is a directory before adding it to the list of paths to check for PMDs. Signed-off-by: Bruce Richar