From patchwork Wed Apr 17 01:47:50 2019 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Ying Wang X-Patchwork-Id: 52839 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 AF5181B587; Wed, 17 Apr 2019 03:59:39 +0200 (CEST) Received: from mga03.intel.com (mga03.intel.com [134.134.136.65]) by dpdk.org (Postfix) with ESMTP id 9DD601B585 for ; Wed, 17 Apr 2019 03:59:37 +0200 (CEST) X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from orsmga007.jf.intel.com ([10.7.209.58]) by orsmga103.jf.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 16 Apr 2019 18:59:36 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.60,360,1549958400"; d="scan'208";a="132028367" Received: from unknown (HELO npg-dpdk-cvl-yingwang-117d94.sh.intel.com) ([10.67.117.94]) by orsmga007.jf.intel.com with ESMTP; 16 Apr 2019 18:59:35 -0700 From: Wang Ying A To: wenzhuo.lu@intel.com, qiming.yang@intel.com, qi.z.zhang@intel.com Cc: dev@dpdk.org, ramirose@gmail.com, Wang Ying A Date: Wed, 17 Apr 2019 09:47:50 +0800 Message-Id: <1555465672-288172-1-git-send-email-ying.a.wang@intel.com> X-Mailer: git-send-email 1.8.3.1 In-Reply-To: <1555077139-244831-2-git-send-email-ying.a.wang@intel.com> References: <1555077139-244831-2-git-send-email-ying.a.wang@intel.com> Subject: [dpdk-dev] [PATCH v2 0/2] ice: fix wrong type and promisc mode 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" Patch 1/2 modifies the variable type of "status" from "uint16_t" to "enum ice_status ". Patch 2/2 adds a return value check to give user a correct prompt. V2: * For patch 1/2, change "int" to "enum ice_status"; fix some typo of the commit message and rename the patch title. For patch 2/2, make the commit log concise and clear. Wang Ying A (2): net/ice: fix wrong type net/ice: fix promiscuous mode drivers/net/ice/ice_ethdev.c | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) Acked-by: Qiming Yang --- 1.8.3.1