From mboxrd@z Thu Jan  1 00:00:00 1970
Return-Path: <thomas.monjalon@6wind.com>
Received: from mail-wi0-f173.google.com (mail-wi0-f173.google.com
 [209.85.212.173]) by dpdk.org (Postfix) with ESMTP id 268017E71
 for <dev@dpdk.org>; Tue, 14 Oct 2014 11:42:54 +0200 (CEST)
Received: by mail-wi0-f173.google.com with SMTP id fb4so9610492wid.0
 for <dev@dpdk.org>; Tue, 14 Oct 2014 02:50:38 -0700 (PDT)
X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed;
 d=1e100.net; s=20130820;
 h=x-gm-message-state:from:to:cc:subject:date:message-id:organization
 :user-agent:in-reply-to:references:mime-version
 :content-transfer-encoding:content-type;
 bh=KmVgLLc1g/6JibkIo8cqRaEwYnv6/B6YnBWeUtvh5TU=;
 b=Yj2m2PQsPhDKJkUFZEFSECKLP8N7SCZksAk5WUG7dHWltW17K+L0Ty+xx4I5zEBUYM
 Zo1ZQ78Ykpx5F3GuBZlsribTH4SSOYaWNEF0u4Lg1JqDLhEFJpfaPcO+XwOtYxpmmDMh
 AKy8m54Wz/yt/MtKTEW2wnTRXn6hvGE4haYxb7cToJVPsyn1S2aBHFwL/1n/HWns5FEn
 oVODYvn0Hji7K2IMmj09Md5C5XEGQvXbcN+0cCruxQn7cuhfF5yb1BcNNYSnKXSRhKBW
 Oynm5FakvC5rv6pLtu23yH+Jl+2i01Lxf0LBO0tcv370VoiMYu1Bm333Gx4EDN2MYQ9C
 pU2g==
X-Gm-Message-State: ALoCoQlmZDoK2hlKnMgqfIBbCANrjBW6pE3im37hSyZJ0t39e97Zhybawn0pwJCOvvIuDaCnLJIU
X-Received: by 10.180.108.43 with SMTP id hh11mr4276351wib.80.1413280237944;
 Tue, 14 Oct 2014 02:50:37 -0700 (PDT)
Received: from xps13.localnet (136-92-190-109.dsl.ovh.fr. [109.190.92.136])
 by mx.google.com with ESMTPSA id t10sm1807878wja.43.2014.10.14.02.50.36
 for <multiple recipients>
 (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128);
 Tue, 14 Oct 2014 02:50:37 -0700 (PDT)
From: Thomas Monjalon <thomas.monjalon@6wind.com>
To: miroslaw.walukiewicz@intel.com
Date: Tue, 14 Oct 2014 11:50:22 +0200
Message-ID: <1661299.7FS05kkgmX@xps13>
Organization: 6WIND
User-Agent: KMail/4.14.1 (Linux/3.16.4-1-ARCH; KDE/4.14.1; x86_64; ; )
In-Reply-To: <20141013143840.19211.79771.stgit@gklab-18-011.igk.intel.com>
References: <20141013143834.19211.44077.stgit@gklab-18-011.igk.intel.com>
 <20141013143840.19211.79771.stgit@gklab-18-011.igk.intel.com>
MIME-Version: 1.0
Content-Transfer-Encoding: 7Bit
Content-Type: text/plain; charset="us-ascii"
Cc: dev@dpdk.org
Subject: Re: [dpdk-dev] [PATCH 2/3] pmd: add new header containing TCP
	offload specific definitions
X-BeenThere: dev@dpdk.org
X-Mailman-Version: 2.1.15
Precedence: list
List-Id: patches and discussions about DPDK <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: Tue, 14 Oct 2014 09:42:54 -0000

Hi Miroslaw,

2014-10-13 10:38, miroslaw.walukiewicz@intel.com:
> From: Miroslaw Walukiewicz <miroslaw.walukiewicz@intel.com>
> 
> The function for computing initial TCP header checksum.
> The file is common for both i40e and ixgbe PMD drivers
> 
> Signed-off-by: Mirek Walukiewicz <miroslaw.walukiewicz@intel.com>
> ---
>  lib/librte_net/Makefile      |    3 +
>  lib/librte_net/rte_tcp_off.h |  122 ++++++++++++++++++++++++++++++++++++++++++

There is a work in progress about TSO:
	http://thread.gmane.org/gmane.comp.networking.dpdk.devel/2541/focus=2553
This API was discussed and implemented for ixgbe.
Then there was an agreement to rework mbuf in 1.8 version to implement TSO
on top of it. Then it was suggested to rebase his work:
	http://dpdk.org/ml/archives/dev/2014-September/006151.html

How does your patchset match with Olivier's work on TSO and ixgbe driver?
I would like to ensure the API works fine for all TSO-capable driver,
this would be a good start.

Thanks
-- 
Thomas