[dpdk-dev] [PATCH] eal: fix plugindir processing to be filesystem agnostic

2015-11-23 Thread Thomas Monjalon
2015-11-18 08:45, Panu Matilainen: > Not all filesystems supply struct dirent d_type field, in which case > everything in the specified directory would go ignored. One such > filesystem being XFS which RHEL 7 defaults to... stat() the entries > instead. > > Fixes: 9f8eb1d9ca0f ("eal: support

[dpdk-dev] [PATCH] eal: fix plugindir processing to be filesystem agnostic

2015-11-23 Thread Thomas Monjalon
2015-11-23 13:42, Panu Matilainen: > On 11/23/2015 12:41 PM, Thomas Monjalon wrote: > > 2015-11-23 08:04, Panu Matilainen: > >> On 11/20/2015 06:38 PM, David Marchand wrote: > >>> It looks like you would skip the symbolic links while you were not before. > >>> Intended ? > >> > >> Intended. We

[dpdk-dev] [PATCH] eal: fix plugindir processing to be filesystem agnostic

2015-11-23 Thread Panu Matilainen
On 11/23/2015 12:41 PM, Thomas Monjalon wrote: > Hi Panu, > > 2015-11-23 08:04, Panu Matilainen: >> On 11/20/2015 06:38 PM, David Marchand wrote: >>> It looks like you would skip the symbolic links while you were not before. >>> Intended ? >> >> Intended. We want to accept symlinks in the driver

[dpdk-dev] [PATCH] eal: fix plugindir processing to be filesystem agnostic

2015-11-23 Thread Thomas Monjalon
Hi Panu, 2015-11-23 08:04, Panu Matilainen: > On 11/20/2015 06:38 PM, David Marchand wrote: > > It looks like you would skip the symbolic links while you were not before. > > Intended ? > > Intended. We want to accept symlinks in the driver directory, but the > actual drivers are always regular

[dpdk-dev] [PATCH] eal: fix plugindir processing to be filesystem agnostic

2015-11-23 Thread Panu Matilainen
On 11/20/2015 06:38 PM, David Marchand wrote: > Hello Panu, > > On Wed, Nov 18, 2015 at 7:45 AM, Panu Matilainen > wrote: > >> Not all filesystems supply struct dirent d_type field, in which case >> everything in the specified directory would go ignored. One such >> filesystem being XFS which

[dpdk-dev] [PATCH] eal: fix plugindir processing to be filesystem agnostic

2015-11-20 Thread David Marchand
Hello Panu, On Wed, Nov 18, 2015 at 7:45 AM, Panu Matilainen wrote: > Not all filesystems supply struct dirent d_type field, in which case > everything in the specified directory would go ignored. One such > filesystem being XFS which RHEL 7 defaults to... stat() the entries > instead. > >

[dpdk-dev] [PATCH] eal: fix plugindir processing to be filesystem agnostic

2015-11-18 Thread Panu Matilainen
Not all filesystems supply struct dirent d_type field, in which case everything in the specified directory would go ignored. One such filesystem being XFS which RHEL 7 defaults to... stat() the entries instead. Fixes: 9f8eb1d9ca0f ("eal: support driver loading from directory") Signed-off-by: