From mboxrd@z Thu Jan  1 00:00:00 1970
Return-Path: <dev-bounces@dpdk.org>
Received: from dpdk.org (dpdk.org [92.243.14.124])
	by dpdk.space (Postfix) with ESMTP id 71C65A05D3
	for <public@inbox.dpdk.org>; Mon, 20 May 2019 13:00:18 +0200 (CEST)
Received: from [92.243.14.124] (localhost [127.0.0.1])
	by dpdk.org (Postfix) with ESMTP id 50BB75F0F;
	Mon, 20 May 2019 13:00:13 +0200 (CEST)
Received: from mx0b-0016f401.pphosted.com (mx0b-0016f401.pphosted.com
 [67.231.156.173]) by dpdk.org (Postfix) with ESMTP id 7911E4F91
 for <dev@dpdk.org>; Mon, 20 May 2019 13:00:10 +0200 (CEST)
Received: from pps.filterd (m0045851.ppops.net [127.0.0.1])
 by mx0b-0016f401.pphosted.com (8.16.0.27/8.16.0.27) with SMTP id
 x4KAvFNb000340; Mon, 20 May 2019 04:00:09 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=marvell.com;
 h=from : to : cc :
 subject : date : message-id : in-reply-to : references : mime-version :
 content-type; s=pfpt0818; bh=e5FCbZY+N1M3E8DLesFcDyqWTF2bs80abjta2iYGn8g=;
 b=qs0e+tHgVylqK+ZJdeXVKhWzbJUenEEJksCW0/u5RTHNiphYUI4urNTA7gDzofUbK4Cp
 Zrs5EMUU3DHMySsfahZyRXmU0eckZxwUPIDBgtcaX9o6oA+jUAAe1NSb1+WJRNk0demI
 e6z7uEUeWSv3TEmFAksvzUZUMJnhlW9Av0TDi/mzj+L8M87hPBgwxKkn28XbPJbiapF+
 YLplbkx6LbeBa0GZuBxRFD4SQCTjHrSQvOJz4zN3ixkO021HFP6eORN31viQDjVfuxE1
 IbyAoViWEX64bjtD/a9Ym1atBSxKA/Pli+xqGidu225IKKaLfo1skwA568Kz5byImsC9 3w== 
Received: from sc-exch02.marvell.com ([199.233.58.182])
 by mx0b-0016f401.pphosted.com with ESMTP id 2sjhjjqsbm-3
 (version=TLSv1.2 cipher=ECDHE-RSA-AES256-SHA384 bits=256 verify=NOT);
 Mon, 20 May 2019 04:00:09 -0700
Received: from SC-EXCH01.marvell.com (10.93.176.81) by SC-EXCH02.marvell.com
 (10.93.176.82) with Microsoft SMTP Server (TLS) id 15.0.1367.3; Mon, 20 May
 2019 04:00:08 -0700
Received: from maili.marvell.com (10.93.176.43) by SC-EXCH01.marvell.com
 (10.93.176.81) with Microsoft SMTP Server id 15.0.1367.3 via Frontend
 Transport; Mon, 20 May 2019 04:00:08 -0700
Received: from dc7-eodlnx05.marvell.com (dc7-eodlnx05.marvell.com
 [10.28.113.55])
 by maili.marvell.com (Postfix) with ESMTP id A520A3F7041;
 Mon, 20 May 2019 04:00:07 -0700 (PDT)
From: Sunil Kumar Kori <skori@marvell.com>
To: Konstantin Ananyev <konstantin.ananyev@intel.com>
CC: <dev@dpdk.org>, Sunil Kumar Kori <skori@marvell.com>
Date: Mon, 20 May 2019 16:29:51 +0530
Message-ID: <1558349992-12237-2-git-send-email-skori@marvell.com>
X-Mailer: git-send-email 1.8.3.1
In-Reply-To: <1558349992-12237-1-git-send-email-skori@marvell.com>
References: <1558006933-32247-3-git-send-email-skori@marvell.com>
 <1558349992-12237-1-git-send-email-skori@marvell.com>
MIME-Version: 1.0
Content-Type: text/plain
X-Proofpoint-Virus-Version: vendor=fsecure engine=2.50.10434:, ,
 definitions=2019-05-20_05:, , signatures=0
Subject: [dpdk-dev] [PATCH v3 2/2] examples/ip_reassembly: Enabling IP
	checksum offload in mbuf
X-BeenThere: dev@dpdk.org
X-Mailman-Version: 2.1.15
Precedence: list
List-Id: DPDK patches and discussions <dev.dpdk.org>
List-Unsubscribe: <https://mails.dpdk.org/options/dev>,
 <mailto:dev-request@dpdk.org?subject=unsubscribe>
List-Archive: <http://mails.dpdk.org/archives/dev/>
List-Post: <mailto:dev@dpdk.org>
List-Help: <mailto:dev-request@dpdk.org?subject=help>
List-Subscribe: <https://mails.dpdk.org/listinfo/dev>,
 <mailto:dev-request@dpdk.org?subject=subscribe>
Errors-To: dev-bounces@dpdk.org
Sender: "dev" <dev-bounces@dpdk.org>

As per the documentation to use any IP offload features, application
must set required offload flags into mbuf->ol_flags.

Signed-off-by: Sunil Kumar Kori <skori@marvell.com>
---
 examples/ip_reassembly/main.c | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/examples/ip_reassembly/main.c b/examples/ip_reassembly/main.c
index 17b55d4..0ad526c 100644
--- a/examples/ip_reassembly/main.c
+++ b/examples/ip_reassembly/main.c
@@ -353,6 +353,9 @@ struct rte_lpm6_config lpm6_config = {
 					struct ether_hdr *);
 				ip_hdr = (struct ipv4_hdr *)(eth_hdr + 1);
 			}
+
+			/* update offloading flags */
+			m->ol_flags |= (PKT_TX_IPV4 | PKT_TX_IP_CKSUM);
 		}
 		ip_dst = rte_be_to_cpu_32(ip_hdr->dst_addr);
 
-- 
1.8.3.1