Re: [dpdk-dev] [PATCH v2 04/17] net/ionic: register and initialize the adapter

2019-12-09 Thread Ferruh Yigit
On 12/8/2019 7:25 PM, Alfredo Cardigliano wrote: > >> On 2 Dec 2019, at 17:09, Ferruh Yigit > > wrote: >> >>> + * There is no room in struct rte_pci_driver to keep a reference >>> + * to the adapter, using a static list for the time being. >>> + */ >>> +static LIST_H

Re: [dpdk-dev] [PATCH v2 04/17] net/ionic: register and initialize the adapter

2019-12-08 Thread Alfredo Cardigliano
> On 2 Dec 2019, at 17:09, Ferruh Yigit wrote: > >> + * There is no room in struct rte_pci_driver to keep a reference >> + * to the adapter, using a static list for the time being. >> + */ >> +static LIST_HEAD(ionic_pci_adapters_list, ionic_adapter) ionic_pci_adapters >> = >> +LIST

Re: [dpdk-dev] [PATCH v2 04/17] net/ionic: register and initialize the adapter

2019-12-02 Thread Stephen Hemminger
On Tue, 15 Oct 2019 10:22:22 +0200 Alfredo Cardigliano wrote: > + /* BAR0: dev_cmd and interrupts */ > + if (num_bars < 1) { > + ionic_init_print(ERR, "No bars found, aborting\n"); Since ionic_init_print already adds a newline. All your log messages will be double spaced.

Re: [dpdk-dev] [PATCH v2 04/17] net/ionic: register and initialize the adapter

2019-12-02 Thread Ferruh Yigit
On 10/15/2019 9:22 AM, Alfredo Cardigliano wrote: > Register the Pensando ionic PMD (net_ionic) and define initial probe > and remove callbacks with adapter initialization. > > Signed-off-by: Alfredo Cardigliano > Reviewed-by: Shannon Nelson > --- > doc/guides/nics/features/ionic.ini | 2 + >

[dpdk-dev] [PATCH v2 04/17] net/ionic: register and initialize the adapter

2019-10-15 Thread Alfredo Cardigliano
Register the Pensando ionic PMD (net_ionic) and define initial probe and remove callbacks with adapter initialization. Signed-off-by: Alfredo Cardigliano Reviewed-by: Shannon Nelson --- doc/guides/nics/features/ionic.ini | 2 + drivers/net/ionic/Makefile | 3 + drivers/net/ionic/ion