Re: [PATCH net-next 01/18] ionic: Add basic framework for IONIC Network device driver

2019-06-24 Thread Shannon Nelson
On 6/24/19 1:07 PM, Jakub Kicinski wrote: On Fri, 21 Jun 2019 15:13:31 -0700, Shannon Nelson wrote: +#define DRV_VERSION"0.11.0-k" DRV_VERSION is pretty useless. What you really want to know is the kernel git tree and commit. The big distributions might backport this version of the

Re: [PATCH net-next 01/18] ionic: Add basic framework for IONIC Network device driver

2019-06-24 Thread Shannon Nelson
On 6/24/19 1:03 PM, Jakub Kicinski wrote: On Thu, 20 Jun 2019 13:24:07 -0700, Shannon Nelson wrote: diff --git a/Documentation/networking/device_drivers/pensando/ionic.rst b/Documentation/networking/device_drivers/pensando/ionic.rst new file mode 100644 index ..84bdf682052b --- /dev

Re: [PATCH net-next 01/18] ionic: Add basic framework for IONIC Network device driver

2019-06-24 Thread Jakub Kicinski
On Fri, 21 Jun 2019 15:13:31 -0700, Shannon Nelson wrote: > >> +#define DRV_VERSION "0.11.0-k" > > DRV_VERSION is pretty useless. What you really want to know is the > > kernel git tree and commit. The big distributions might backport this > > version of the driver back to the old k

Re: [PATCH net-next 01/18] ionic: Add basic framework for IONIC Network device driver

2019-06-24 Thread Jakub Kicinski
On Thu, 20 Jun 2019 13:24:07 -0700, Shannon Nelson wrote: > diff --git a/Documentation/networking/device_drivers/pensando/ionic.rst > b/Documentation/networking/device_drivers/pensando/ionic.rst > new file mode 100644 > index ..84bdf682052b > --- /dev/null > +++ b/Documentation/network

Re: [PATCH net-next 01/18] ionic: Add basic framework for IONIC Network device driver

2019-06-21 Thread Shannon Nelson
On 6/20/19 2:24 PM, Andrew Lunn wrote: Hi Andrew, thanks for your time and comments.  Responses below... +++ b/drivers/net/ethernet/pensando/ionic/ionic.h @@ -0,0 +1,27 @@ +/* SPDX-License-Identifier: GPL-2.0 */ +/* Copyright(c) 2017 - 2019 Pensando Systems, Inc */ + +#ifndef _IONIC_H_ +#define

Re: [PATCH net-next 01/18] ionic: Add basic framework for IONIC Network device driver

2019-06-20 Thread Andrew Lunn
> +++ b/drivers/net/ethernet/pensando/ionic/ionic.h > @@ -0,0 +1,27 @@ > +/* SPDX-License-Identifier: GPL-2.0 */ > +/* Copyright(c) 2017 - 2019 Pensando Systems, Inc */ > + > +#ifndef _IONIC_H_ > +#define _IONIC_H_ > + > +#define DRV_NAME "ionic" > +#define DRV_DESCRIPTION

[PATCH net-next 01/18] ionic: Add basic framework for IONIC Network device driver

2019-06-20 Thread Shannon Nelson
This patch adds a basic driver framework for the Pensando IONIC network device. There is no functionality right now other than the ability to load and unload. Signed-off-by: Shannon Nelson --- .../networking/device_drivers/index.rst | 1 + .../device_drivers/pensando/ionic.rst |