From patchwork Wed Feb 4 09:25:24 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Olivier Matz X-Patchwork-Id: 2963 Return-Path: X-Original-To: patchwork@dpdk.org Delivered-To: patchwork@dpdk.org Received: from [92.243.14.124] (localhost [IPv6:::1]) by dpdk.org (Postfix) with ESMTP id DE27BB3F7; Wed, 4 Feb 2015 10:26:11 +0100 (CET) Received: from mail-wi0-f182.google.com (mail-wi0-f182.google.com [209.85.212.182]) by dpdk.org (Postfix) with ESMTP id 09D35B3EF for ; Wed, 4 Feb 2015 10:26:08 +0100 (CET) Received: by mail-wi0-f182.google.com with SMTP id n3so2167699wiv.3 for ; Wed, 04 Feb 2015 01:26:07 -0800 (PST) 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:in-reply-to :references; bh=HlX+yug+fQhhr4zIW6jQplbJMMIDqLSMK7s2AoUcPkQ=; b=lIiv5BG5KqRdSOfzIHjQ+pO34FpqtpwXjTL888dF+k6kjxb+o6IFPOHSU4E/rNaNwo 8Xj6WmOvHKdQHrpU71KFPTaPIyUfxRId/Zzwfpuo6Tsl2aqsdMlqRSLqWhE4Y+g1auq2 lnibZZrzjhbtcM4yABdF6+TM6pay3eb9lfa29JYYsA8AyGU4cclW4Ky93yoDqFcTtqQh QZqshzrU5fxBTCj5PXybeD0fJXVqnB0XgaIfqkyQfVjhBMf5dUusiyrDmJjagCtRzm0o efg+eqfI+jlPVBB/NFOZ7oxNTwHeYkndtg6P8tEFp607oKk4pBi16HBw++MKXz+RHqk2 l6yQ== X-Gm-Message-State: ALoCoQnkHza2UVWAEVThPF5JvqvN2Gc/eKmzj+q328CHwqKrEciqGGZn8CfTYrSrbaCBmlvLW0L6 X-Received: by 10.180.92.199 with SMTP id co7mr2425006wib.47.1423041967926; Wed, 04 Feb 2015 01:26:07 -0800 (PST) Received: from glumotte.dev.6wind.com (6wind.net2.nerim.net. [213.41.180.237]) by mx.google.com with ESMTPSA id a13sm2346491wic.3.2015.02.04.01.26.07 (version=TLSv1.2 cipher=ECDHE-RSA-AES128-SHA bits=128/128); Wed, 04 Feb 2015 01:26:07 -0800 (PST) From: Olivier Matz To: dev@dpdk.org Date: Wed, 4 Feb 2015 10:25:24 +0100 Message-Id: <1423041925-26956-20-git-send-email-olivier.matz@6wind.com> X-Mailer: git-send-email 2.1.4 In-Reply-To: <1423041925-26956-1-git-send-email-olivier.matz@6wind.com> References: <1422623775-8050-1-git-send-email-olivier.matz@6wind.com> <1423041925-26956-1-git-send-email-olivier.matz@6wind.com> Subject: [dpdk-dev] [PATCH v2 19/20] i40e: fix offloading of outer checksum for ip in ip tunnels 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: , Errors-To: dev-bounces@dpdk.org Sender: "dev" When offloading the checksums of ipip tunnels, m->l2_len is set to 0 as there is no tunnel or inner l2 header. Since this is a valid value remove the test. By the way, also remove the same test with l3_len because at this point, it is expected that the software provides proper values in the mbuf. It should avoid a test in dataplane processing and therefore slightly increase performance. Signed-off-by: Olivier Matz --- lib/librte_pmd_i40e/i40e_rxtx.c | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/lib/librte_pmd_i40e/i40e_rxtx.c b/lib/librte_pmd_i40e/i40e_rxtx.c index 0786255..3031bd7 100644 --- a/lib/librte_pmd_i40e/i40e_rxtx.c +++ b/lib/librte_pmd_i40e/i40e_rxtx.c @@ -471,16 +471,6 @@ i40e_txd_enable_checksum(uint64_t ol_flags, uint16_t outer_l3_len, uint32_t *cd_tunneling) { - if (!l2_len) { - PMD_DRV_LOG(DEBUG, "L2 length set to 0"); - return; - } - - if (!l3_len) { - PMD_DRV_LOG(DEBUG, "L3 length set to 0"); - return; - } - /* UDP tunneling packet TX checksum offload */ if (unlikely(ol_flags & PKT_TX_OUTER_IP_CKSUM)) {