From patchwork Wed Sep 19 10:04:14 2018 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Bruce Richardson X-Patchwork-Id: 44905 Return-Path: X-Original-To: patchwork@dpdk.org Delivered-To: patchwork@dpdk.org Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 7026B326C; Wed, 19 Sep 2018 12:05:31 +0200 (CEST) Received: from mga05.intel.com (mga05.intel.com [192.55.52.43]) by dpdk.org (Postfix) with ESMTP id B2C7B1041 for ; Wed, 19 Sep 2018 12:05:29 +0200 (CEST) X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from orsmga005.jf.intel.com ([10.7.209.41]) by fmsmga105.fm.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 19 Sep 2018 03:05:28 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.53,393,1531810800"; d="scan'208";a="258522793" Received: from silpixa00399126.ir.intel.com (HELO silpixa00399126.ger.corp.intel.com) ([10.237.223.223]) by orsmga005.jf.intel.com with ESMTP; 19 Sep 2018 03:04:29 -0700 From: Bruce Richardson To: Jingjing Wu , Wenzhuo Lu Cc: dev@dpdk.org, Zhang Qi Z , Ferruh Yigit , Bruce Richardson Date: Wed, 19 Sep 2018 11:04:14 +0100 Message-Id: <20180919100417.37868-1-bruce.richardson@intel.com> X-Mailer: git-send-email 2.17.1 In-Reply-To: <20180913144405.72772-1-bruce.richardson@intel.com> References: <20180913144405.72772-1-bruce.richardson@intel.com> Subject: [dpdk-dev] [PATCH v4 0/3] AVF build improvements X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" This set adds a number of build improvements for AVF driver. It adds support for building with meson, and adds in the $(WERROR) flags for the make build. To fix both these cases, a number of fixes for compiler warnings are also made. V4: Including meson build patch into set. Added in missing reviewed and acked lines from V3. V3: Added missing fixed line and fixed error due to a removed var V2: Added in $WERROR flag to make, and expanded set to 2 patches V1: Original single patch, just removed unused variables/label for meson build. Bruce Richardson (2): net/avf: fix unused variables and label net/avf: fix missing compiler error flags Luca Boccassi (1): build: add Meson files for avf PMD drivers/net/avf/Makefile | 2 +- drivers/net/avf/avf_ethdev.c | 17 ++--------------- drivers/net/avf/avf_rxtx.c | 19 ++++++------------- drivers/net/avf/avf_rxtx.h | 2 +- drivers/net/avf/avf_rxtx_vec_sse.c | 2 +- drivers/net/avf/avf_vchnl.c | 2 -- drivers/net/avf/base/meson.build | 20 ++++++++++++++++++++ drivers/net/avf/meson.build | 18 ++++++++++++++++++ drivers/net/meson.build | 1 + 9 files changed, 50 insertions(+), 33 deletions(-) create mode 100644 drivers/net/avf/base/meson.build create mode 100644 drivers/net/avf/meson.build