From mboxrd@z Thu Jan  1 00:00:00 1970
Return-Path: <ferruh.yigit@intel.com>
Received: from mga09.intel.com (mga09.intel.com [134.134.136.24])
 by dpdk.org (Postfix) with ESMTP id B7452591E
 for <dev@dpdk.org>; Thu, 23 Feb 2017 15:31:59 +0100 (CET)
Received: from fmsmga005.fm.intel.com ([10.253.24.32])
 by orsmga102.jf.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384;
 23 Feb 2017 06:31:58 -0800
X-ExtLoop1: 1
X-IronPort-AV: E=Sophos;i="5.35,198,1484035200"; d="scan'208";a="68735612"
Received: from fyigit-mobl1.ger.corp.intel.com (HELO [10.237.220.137])
 ([10.237.220.137])
 by fmsmga005.fm.intel.com with ESMTP; 23 Feb 2017 06:31:57 -0800
To: Shijith Thotton <shijith.thotton@caviumnetworks.com>, dev@dpdk.org
References: <1487669225-30091-1-git-send-email-shijith.thotton@caviumnetworks.com>
 <1487669225-30091-31-git-send-email-shijith.thotton@caviumnetworks.com>
Cc: Jerin Jacob <jerin.jacob@caviumnetworks.com>,
 Derek Chickles <derek.chickles@caviumnetworks.com>,
 Venkat Koppula <venkat.koppula@caviumnetworks.com>,
 Mallesham Jatharakonda <mjatharakonda@oneconvergence.com>
From: Ferruh Yigit <ferruh.yigit@intel.com>
Message-ID: <861a87a3-fbe6-1963-488f-7c1633b5d782@intel.com>
Date: Thu, 23 Feb 2017 14:31:56 +0000
User-Agent: Mozilla/5.0 (Windows NT 10.0; WOW64; rv:45.0) Gecko/20100101
 Thunderbird/45.7.1
MIME-Version: 1.0
In-Reply-To: <1487669225-30091-31-git-send-email-shijith.thotton@caviumnetworks.com>
Content-Type: text/plain; charset=windows-1252
Content-Transfer-Encoding: 8bit
Subject: Re: [dpdk-dev] [PATCH 30/50] net/liquidio: add Tx data path for
 single segment
X-BeenThere: dev@dpdk.org
X-Mailman-Version: 2.1.15
Precedence: list
List-Id: DPDK patches and discussions <dev.dpdk.org>
List-Unsubscribe: <http://dpdk.org/ml/options/dev>,
 <mailto:dev-request@dpdk.org?subject=unsubscribe>
List-Archive: <http://dpdk.org/ml/archives/dev/>
List-Post: <mailto:dev@dpdk.org>
List-Help: <mailto:dev-request@dpdk.org?subject=help>
List-Subscribe: <http://dpdk.org/ml/listinfo/dev>,
 <mailto:dev-request@dpdk.org?subject=subscribe>
X-List-Received-Date: Thu, 23 Feb 2017 14:32:00 -0000

On 2/21/2017 9:26 AM, Shijith Thotton wrote:
> Signed-off-by: Shijith Thotton <shijith.thotton@caviumnetworks.com>
> Signed-off-by: Jerin Jacob <jerin.jacob@caviumnetworks.com>
> Signed-off-by: Derek Chickles <derek.chickles@caviumnetworks.com>
> Signed-off-by: Venkat Koppula <venkat.koppula@caviumnetworks.com>
> Signed-off-by: Mallesham Jatharakonda <mjatharakonda@oneconvergence.com>
> ---

<...>

> @@ -543,6 +544,7 @@ static int lio_dev_configure(struct rte_eth_dev *eth_dev)
>  	PMD_INIT_FUNC_TRACE();
>  
>  	eth_dev->rx_pkt_burst = &lio_dev_recv_pkts;
> +	eth_dev->tx_pkt_burst = &lio_dev_xmit_pkts;

Not directly related to this patch, but double check, if tx_prep
required for this driver.

Since it is relatively new feature, it may be good to verify.