Re: [dpdk-dev] [PATCH v4 06/17] net/ionic: add basic lif support

2019-12-19 Thread Stephen Hemminger
On Thu, 19 Dec 2019 23:18:36 +0100 Alfredo Cardigliano wrote: > diff --git a/drivers/net/ionic/ionic.h b/drivers/net/ionic/ionic.h > index a29f0bb89..b6ef63161 100644 > --- a/drivers/net/ionic/ionic.h > +++ b/drivers/net/ionic/ionic.h > @@ -49,7 +49,12 @@ struct ionic_adapter { > struct ion

[dpdk-dev] [PATCH v4 06/17] net/ionic: add basic lif support

2019-12-19 Thread Alfredo Cardigliano
Initialize LIFs (Logical Interfaces) which represents external connections. The NIC can multiplex many LIFs to a single port, but in most setups, LIF0 is the primary control for the port. Create a device for each LIF. Signed-off-by: Alfredo Cardigliano Reviewed-by: Shannon Nelson --- drivers/ne