From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-yw0-f181.google.com (mail-yw0-f181.google.com [209.85.161.181]) by dpdk.org (Postfix) with ESMTP id 4415269EC for ; Thu, 6 Apr 2017 07:56:23 +0200 (CEST) Received: by mail-yw0-f181.google.com with SMTP id v76so15692841ywg.0 for ; Wed, 05 Apr 2017 22:56:23 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linaro.org; s=google; h=mime-version:in-reply-to:references:from:date:message-id:subject:to :cc; bh=yWzz5S0vR3tH1pHjCEmsl7pqtRh0V34EL/S6L6Bhb/8=; b=f5kRxXqoOdGdlUv/t169UmXMM3T4jgXNsIUsS+NCQfJPDW3xovhNcJe/rOF/631yVk LCYEIZpCKk1YX1Zf1NMDDdr14ZQ2L9LIM4im5+ObjXDAISMP3VaLNmavITRsQt/rw8w8 SJkj4cJKBlPr0WVnV6WOe0DIxLLnpK9bG8Tgg= X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:mime-version:in-reply-to:references:from:date :message-id:subject:to:cc; bh=yWzz5S0vR3tH1pHjCEmsl7pqtRh0V34EL/S6L6Bhb/8=; b=HGAqMlvtBd8zsPW9ugyZ3dZcQGj6VZpeNn2sehRfVvzDUIrL7bPerx8/1ju8wLK8CL 5C2or6+bVZWvvYAyej2beN6YCh5JVDzOZWXs+tBbaJHyrReAx7/MMnyLlW2TcsF3kiNH ZEMas+eZv9ki7TAOvchXoXct9dSG7ZphpW1bNjB1zBiSeJHoyhqFD0FRJZn6BfwHweI0 xj3b2oxIpPCCfXpCwI7MLpKlN138MpNbPkyjtyZSJbQ58u9vdd8FlJ67w37esZ1cUDEk xOV2Ep0LSX/rqjMEaSu25aiPY7qkt7DSY6UBh+tptKeJyuxP8BDVdK2YTLACrK0lXNPw mf9g== X-Gm-Message-State: AFeK/H1f8NlBcZ2SyjqWoGU3JMchMZKMmHNIhEqsUe3iVL6grzl3u3q44nkUKFrzh4bD31CaoByJcNSpCsUGMIh9 X-Received: by 10.129.84.6 with SMTP id i6mr24923896ywb.335.1491458182506; Wed, 05 Apr 2017 22:56:22 -0700 (PDT) MIME-Version: 1.0 Received: by 10.37.173.103 with HTTP; Wed, 5 Apr 2017 22:56:22 -0700 (PDT) In-Reply-To: <20170403143944.17719-1-bruce.richardson@intel.com> References: <20170403143944.17719-1-bruce.richardson@intel.com> From: Jianbo Liu Date: Thu, 6 Apr 2017 13:56:22 +0800 Message-ID: To: Bruce Richardson Cc: "Zhang, Helin" , "Wu, Jingjing" , dev@dpdk.org, Jerin Jacob Content-Type: text/plain; charset=UTF-8 Subject: Re: [dpdk-dev] [PATCH 0/2] reduce writes in i40e driver 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: , X-List-Received-Date: Thu, 06 Apr 2017 05:56:23 -0000 On 3 April 2017 at 22:39, Bruce Richardson wrote: > this set is based upon Olivier's mbuf rework patchset, and makes some > improvement to the i40e driver taking account of the rework. It also > removes a build-time option that seems unnecessary. > > Bruce Richardson (2): > net/i40e: eliminate mbuf write on rearm > net/i40e: remove option to disable offload flags > > config/common_base | 1 - > doc/guides/nics/i40e.rst | 5 ---- > drivers/net/i40e/i40e_rxtx_vec_common.h | 8 ------ > drivers/net/i40e/i40e_rxtx_vec_neon.c | 11 -------- > drivers/net/i40e/i40e_rxtx_vec_sse.c | 50 ++++++++++++++++----------------- > 5 files changed, 24 insertions(+), 51 deletions(-) Acked-by: Jianbo Liu And I'll send a patch to do the same change for i40e neon implementation.