From patchwork Mon Nov 10 15:59:17 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Olivier Matz X-Patchwork-Id: 1241 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 21D557F69; Mon, 10 Nov 2014 16:50:11 +0100 (CET) Received: from mail-wg0-f45.google.com (mail-wg0-f45.google.com [74.125.82.45]) by dpdk.org (Postfix) with ESMTP id 85B137F55 for ; Mon, 10 Nov 2014 16:50:06 +0100 (CET) Received: by mail-wg0-f45.google.com with SMTP id x12so9132570wgg.4 for ; Mon, 10 Nov 2014 07:59:51 -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=BbXSvB5YlXj3kJO7xa5lFfZz4RyYXl4vZdc0l2mwvnQ=; b=YkyJk6pGSYmc4c6+CCev+7qCPXuuEwl88bMlWcGWGdsb6n30RSPfNuQdnovrhGUU8V 65iwfE7czagzKtdwP3AHfN5ucfgytk6ZjMx52nZ5qLMIL/k3IfWHcDc2td0xgXBmEUJH nxs6HoRZTk4BGHAW1E6dFtbGJeCfQngaomUe14db6WO+Unj38YOgjGOsCcQgL8A2dCpg rRRk3l1Ox/eQ3n0DX47E2GOCVXTIElLg6UzwGXa1QvAWO1y6wR/K3dDkDIIkRBGgxJXM 2yHpuaELyNH7ofYlp+cnxUBNFvy6tUdfo+HP494a+PHKKrhe3uzU9zliChWnMeW/4/dN Jjdw== X-Gm-Message-State: ALoCoQnKCNsqxM9AUuoA89R+c0hqF1zYSWP7BaU2FK1YDczilXLES6sdNCFHAuLNyxb7BMrKuWbr X-Received: by 10.181.8.72 with SMTP id di8mr40809147wid.1.1415635191474; Mon, 10 Nov 2014 07:59:51 -0800 (PST) Received: from glumotte.dev.6wind.com (guy78-3-82-239-227-177.fbx.proxad.net. [82.239.227.177]) by mx.google.com with ESMTPSA id ll2sm10966561wjb.11.2014.11.10.07.59.50 for (version=TLSv1.2 cipher=ECDHE-RSA-AES128-SHA bits=128/128); Mon, 10 Nov 2014 07:59:51 -0800 (PST) From: Olivier Matz To: dev@dpdk.org Date: Mon, 10 Nov 2014 16:59:17 +0100 Message-Id: <1415635166-1364-4-git-send-email-olivier.matz@6wind.com> X-Mailer: git-send-email 2.1.0 In-Reply-To: <1415635166-1364-1-git-send-email-olivier.matz@6wind.com> References: <1415635166-1364-1-git-send-email-olivier.matz@6wind.com> Cc: jigsaw@gmail.com Subject: [dpdk-dev] [PATCH 03/12] mbuf: move vxlan_cksum flag definition at the proper place 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" The tx mbuf flags are ordered from the highest value to the the lowest. Move the PKT_TX_VXLAN_CKSUM at the right place. Signed-off-by: Olivier Matz Acked-by: Bruce Richardson --- lib/librte_mbuf/rte_mbuf.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/librte_mbuf/rte_mbuf.h b/lib/librte_mbuf/rte_mbuf.h index e8f9bfc..be15168 100644 --- a/lib/librte_mbuf/rte_mbuf.h +++ b/lib/librte_mbuf/rte_mbuf.h @@ -96,7 +96,6 @@ extern "C" { #define PKT_TX_VLAN_PKT (1ULL << 55) /**< TX packet is a 802.1q VLAN packet. */ #define PKT_TX_IP_CKSUM (1ULL << 54) /**< IP cksum of TX pkt. computed by NIC. */ -#define PKT_TX_VXLAN_CKSUM (1ULL << 50) /**< TX checksum of VXLAN computed by NIC */ #define PKT_TX_IPV4_CSUM PKT_TX_IP_CKSUM /**< Alias of PKT_TX_IP_CKSUM. */ #define PKT_TX_IPV4 PKT_RX_IPV4_HDR /**< IPv4 with no IP checksum offload. */ #define PKT_TX_IPV6 PKT_RX_IPV6_HDR /**< IPv6 packet */ @@ -114,9 +113,10 @@ extern "C" { #define PKT_TX_UDP_CKSUM (3ULL << 52) /**< UDP cksum of TX pkt. computed by NIC. */ #define PKT_TX_L4_MASK (3ULL << 52) /**< Mask for L4 cksum offload request. */ -/* Bit 51 - IEEE1588*/ #define PKT_TX_IEEE1588_TMST (1ULL << 51) /**< TX IEEE1588 packet to timestamp. */ +#define PKT_TX_VXLAN_CKSUM (1ULL << 50) /**< TX checksum of VXLAN computed by NIC */ + /* Use final bit of flags to indicate a control mbuf */ #define CTRL_MBUF_FLAG (1ULL << 63) /**< Mbuf contains control data */