[v2,00/15] add meson support for more net drivers

Message ID 20180608212048.67261-1-bruce.richardson@intel.com (mailing list archive)
Headers
Series add meson support for more net drivers |

Message

Bruce Richardson June 8, 2018, 9:20 p.m. UTC
  A number of net drivers require pretty minimal meson.build files to build
successfully with meson. This set adds support for 14 net drivers to the
build.

V2: Small change to net/kni patch to ensure 32-bit builds ok.

Bruce Richardson (15):
  net/ark: add to meson build
  net/avp: add to meson build
  net/bnx2x: add to meson build
  net/bnxt: add to meson build
  net/cxgbe: add to meson build
  net/ena: add to meson build
  net/failsafe: add to meson build
  net/ifc: rename to ifcvf
  net/ifcvf: add to meson build
  net/kni: add to meson build
  net/liquidio: add to meson build
  net/nfp: add to meson build
  net/softnic: add to meson build
  net/szedata2: add to meson build
  net/vhost: add to meson build

 MAINTAINERS                                   |  4 ++--
 app/test-pmd/meson.build                      |  3 +++
 drivers/net/Makefile                          |  2 +-
 drivers/net/ark/meson.build                   | 13 +++++++++++
 drivers/net/avp/meson.build                   |  5 ++++
 drivers/net/bnx2x/meson.build                 | 14 +++++++++++
 drivers/net/bnxt/meson.build                  | 18 +++++++++++++++
 drivers/net/cxgbe/meson.build                 | 11 +++++++++
 drivers/net/ena/meson.build                   |  8 +++++++
 drivers/net/failsafe/meson.build              | 23 +++++++++++++++++++
 drivers/net/{ifc => ifcvf}/Makefile           |  2 +-
 drivers/net/{ifc => ifcvf}/base/ifcvf.c       |  0
 drivers/net/{ifc => ifcvf}/base/ifcvf.h       |  0
 drivers/net/{ifc => ifcvf}/base/ifcvf_osdep.h |  0
 drivers/net/{ifc => ifcvf}/ifcvf_vdpa.c       |  0
 drivers/net/ifcvf/meson.build                 |  7 ++++++
 .../rte_pmd_ifcvf_version.map}                |  0
 drivers/net/kni/meson.build                   |  8 +++++++
 drivers/net/liquidio/Makefile                 |  2 +-
 drivers/net/liquidio/meson.build              |  8 +++++++
 ...rsion.map => rte_pmd_liquidio_version.map} |  0
 drivers/net/meson.build                       | 13 +++++++----
 drivers/net/nfp/meson.build                   | 16 +++++++++++++
 drivers/net/softnic/Makefile                  |  2 +-
 drivers/net/softnic/meson.build               |  7 ++++++
 ...ersion.map => rte_pmd_softnic_version.map} |  0
 drivers/net/szedata2/meson.build              |  7 ++++++
 drivers/net/vhost/meson.build                 |  7 ++++++
 28 files changed, 170 insertions(+), 10 deletions(-)
 create mode 100644 drivers/net/ark/meson.build
 create mode 100644 drivers/net/avp/meson.build
 create mode 100644 drivers/net/bnx2x/meson.build
 create mode 100644 drivers/net/bnxt/meson.build
 create mode 100644 drivers/net/cxgbe/meson.build
 create mode 100644 drivers/net/ena/meson.build
 create mode 100644 drivers/net/failsafe/meson.build
 rename drivers/net/{ifc => ifcvf}/Makefile (94%)
 rename drivers/net/{ifc => ifcvf}/base/ifcvf.c (100%)
 rename drivers/net/{ifc => ifcvf}/base/ifcvf.h (100%)
 rename drivers/net/{ifc => ifcvf}/base/ifcvf_osdep.h (100%)
 rename drivers/net/{ifc => ifcvf}/ifcvf_vdpa.c (100%)
 create mode 100644 drivers/net/ifcvf/meson.build
 rename drivers/net/{ifc/rte_ifcvf_version.map => ifcvf/rte_pmd_ifcvf_version.map} (100%)
 create mode 100644 drivers/net/kni/meson.build
 create mode 100644 drivers/net/liquidio/meson.build
 rename drivers/net/liquidio/{rte_pmd_lio_version.map => rte_pmd_liquidio_version.map} (100%)
 create mode 100644 drivers/net/nfp/meson.build
 create mode 100644 drivers/net/softnic/meson.build
 rename drivers/net/softnic/{rte_pmd_eth_softnic_version.map => rte_pmd_softnic_version.map} (100%)
 create mode 100644 drivers/net/szedata2/meson.build
 create mode 100644 drivers/net/vhost/meson.build
  

Comments

Ferruh Yigit June 14, 2018, 2:55 p.m. UTC | #1
On 6/8/2018 10:20 PM, Bruce Richardson wrote:
> A number of net drivers require pretty minimal meson.build files to build
> successfully with meson. This set adds support for 14 net drivers to the
> build.
> 
> V2: Small change to net/kni patch to ensure 32-bit builds ok.
> 
> Bruce Richardson (15):
>   net/ark: add to meson build
>   net/avp: add to meson build
>   net/bnx2x: add to meson build
>   net/bnxt: add to meson build
>   net/cxgbe: add to meson build
>   net/ena: add to meson build
>   net/failsafe: add to meson build
>   net/ifc: rename to ifcvf
>   net/ifcvf: add to meson build
>   net/kni: add to meson build
>   net/liquidio: add to meson build
>   net/nfp: add to meson build
>   net/softnic: add to meson build
>   net/szedata2: add to meson build
>   net/vhost: add to meson build

Series applied to dpdk-next-net/master, thanks.

With exceptions:

- 8/15, 9/16 dropped from set. They replaced with:
  https://dpdk.org/dev/patchwork/patch/41030/
  https://dpdk.org/dev/patchwork/patch/41029/

- driver list in drivers/net/meson.build serialized while applying

- updates on 5/15 & 6/15 while merging, commented on patches
  
Ferruh Yigit June 14, 2018, 4:25 p.m. UTC | #2
On 6/8/2018 10:20 PM, Bruce Richardson wrote:
> A number of net drivers require pretty minimal meson.build files to build
> successfully with meson. This set adds support for 14 net drivers to the
> build.
> 
> V2: Small change to net/kni patch to ensure 32-bit builds ok.
> 
> Bruce Richardson (15):
>   net/ark: add to meson build
>   net/avp: add to meson build
>   net/bnx2x: add to meson build
>   net/bnxt: add to meson build
>   net/cxgbe: add to meson build
>   net/ena: add to meson build
>   net/failsafe: add to meson build
>   net/ifc: rename to ifcvf
>   net/ifcvf: add to meson build
>   net/kni: add to meson build
>   net/liquidio: add to meson build
>   net/nfp: add to meson build
>   net/softnic: add to meson build
>   net/szedata2: add to meson build
>   net/vhost: add to meson build

For series:
Reviewed-by: Ferruh Yigit <ferruh.yigit@intel.com>