From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-wi0-f182.google.com (mail-wi0-f182.google.com [209.85.212.182]) by dpdk.org (Postfix) with ESMTP id AC77C5A6D for ; Wed, 11 Mar 2015 10:14:14 +0100 (CET) Received: by wibbs8 with SMTP id bs8so37131591wib.0 for ; Wed, 11 Mar 2015 02:14:14 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:message-id:date:from:user-agent:mime-version:to :cc:subject:references:in-reply-to:content-type :content-transfer-encoding; bh=qRIn5xn7lHBROPWpAlxNBOZ207xu75eW3Z9klvpC0g0=; b=bSCO0DxdCA609sl6WPsWwAVxUa2RU+OPMCGCK/5tG0chNFUDWpph83Bg/4GnttPCM6 +Werd+Iv2Xos1/gHLK4XFqa69j1KDQm87IM94g153Pp+guS7XQIZwhQMGTJM4ieZf2JV F6Df23wXmqP3D3YRtD/TMdq9DHpsTsuRMl5HOQdNsBeANGPitRUW2QQ+KvQ8N78mvwM9 qwYeJmZRUeogARVntbxUqTBgqk9nkgGts/9l89PcvnIbIQnDGWeu2UZuIDNn+0FSjiPD 4vEs2tkG0BTthpLmaf508myiHx5neSnmEthlBBAJSufGuzM2GVyqFSGATSPYz9FU/juL Zoiw== X-Gm-Message-State: ALoCoQl4Vqln0mY45OXE39wjSVatdMCKAoMb/v60wlgjj6TNn0I2gnwRm6rCKfaJEcHVL6Zpd52p X-Received: by 10.180.102.73 with SMTP id fm9mr79083902wib.12.1426065254505; Wed, 11 Mar 2015 02:14:14 -0700 (PDT) Received: from [10.0.0.2] ([109.65.117.109]) by mx.google.com with ESMTPSA id fo8sm5207196wib.14.2015.03.11.02.14.13 (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Wed, 11 Mar 2015 02:14:14 -0700 (PDT) Message-ID: <55000764.5080909@cloudius-systems.com> Date: Wed, 11 Mar 2015 11:14:12 +0200 From: Vlad Zolotarov User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:31.0) Gecko/20100101 Thunderbird/31.5.0 MIME-Version: 1.0 To: Thomas Monjalon References: <1425918532-8601-1-git-send-email-vladz@cloudius-systems.com> In-Reply-To: <1425918532-8601-1-git-send-email-vladz@cloudius-systems.com> Content-Type: text/plain; charset=windows-1252; format=flowed Content-Transfer-Encoding: 7bit Cc: dev@dpdk.org Subject: Re: [dpdk-dev] [PATCH v2 0/3]: bug fixes in the ixgbe PF PMD Rx flow X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: patches and discussions about DPDK List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Mar 2015 09:14:14 -0000 Ping. ;) On 03/09/15 18:28, Vlad Zolotarov wrote: > This series contains some bug fixes that were found during my work on the ixgbe LRO > patches. Sending this series separately on Thomas request so that it may be integrated > into the 2.0 release. > > New in v2: > - Fixed a compilation failure. > > Vlad Zolotarov (3): > ixgbe: Use the rte_le_to_cpu_xx()/rte_cpu_to_le_xx() when > reading/setting HW ring descriptor fields > ixgbe: Bug fix: Properly configure Rx CRC stripping for x540 devices > ixgbe: Unify the rx_pkt_bulk callback initialization > > lib/librte_pmd_ixgbe/ixgbe/ixgbe_type.h | 2 + > lib/librte_pmd_ixgbe/ixgbe_ethdev.c | 13 ++- > lib/librte_pmd_ixgbe/ixgbe_rxtx.c | 199 +++++++++++++++++++++----------- > lib/librte_pmd_ixgbe/ixgbe_rxtx.h | 22 +++- > 4 files changed, 161 insertions(+), 75 deletions(-) >