Re: [dpdk-dev] [PATCH] usertools: enhance device bind script module detection

2019-10-28 Thread Thomas Monjalon
28/10/2019 18:09, Thomas Monjalon: > 28/10/2019 15:50, Pavan Nikhilesh Bhagavatula: > > >21/09/2019 20:16, pbhagavat...@marvell.com: > > >> From: Pavan Nikhilesh > > >> > > >> Some kernel modules have '-' in their name when populated in > > >> '/sys/bus/pci/drivers/' where as the kernel always pop

Re: [dpdk-dev] [PATCH] usertools: enhance device bind script module detection

2019-10-28 Thread Thomas Monjalon
28/10/2019 15:50, Pavan Nikhilesh Bhagavatula: > >21/09/2019 20:16, pbhagavat...@marvell.com: > >> From: Pavan Nikhilesh > >> > >> Some kernel modules have '-' in their name when populated in > >> '/sys/bus/pci/drivers/' where as the kernel always populates > >> '/sys/modules/' with '_'. > >> Repl

Re: [dpdk-dev] [PATCH] usertools: enhance device bind script module detection

2019-10-28 Thread Pavan Nikhilesh Bhagavatula
>21/09/2019 20:16, pbhagavat...@marvell.com: >> From: Pavan Nikhilesh >> >> Some kernel modules have '-' in their name when populated in >> '/sys/bus/pci/drivers/' where as the kernel always populates >> '/sys/modules/' with '_'. >> Replace '-' in module name with '_' to avoid script complaining >

Re: [dpdk-dev] [PATCH] usertools: enhance device bind script module detection

2019-10-27 Thread Thomas Monjalon
21/09/2019 20:16, pbhagavat...@marvell.com: > From: Pavan Nikhilesh > > Some kernel modules have '-' in their name when populated in > '/sys/bus/pci/drivers/' where as the kernel always populates > '/sys/modules/' with '_'. > Replace '-' in module name with '_' to avoid script complaining > that

[dpdk-dev] [PATCH] usertools: enhance device bind script module detection

2019-09-21 Thread pbhagavatula
From: Pavan Nikhilesh Some kernel modules have '-' in their name when populated in '/sys/bus/pci/drivers/' where as the kernel always populates '/sys/modules/' with '_'. Replace '-' in module name with '_' to avoid script complaining that module not loaded. Signed-off-by: Phanendra Vukkisala Si