From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-wi0-f169.google.com (mail-wi0-f169.google.com [209.85.212.169]) by dpdk.org (Postfix) with ESMTP id 16913593E for ; Thu, 16 Oct 2014 21:54:05 +0200 (CEST) Received: by mail-wi0-f169.google.com with SMTP id h11so2460526wiw.0 for ; Thu, 16 Oct 2014 13:01:59 -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=GHYkWEszNWsafJQ7Gl1P7rsAtOls/q1mcLNqnY+U578=; b=ABIuYdRcuelKf56qX7MxdhYzM0A2rAzbEEZG+UiGcDxjImxxAuRhCajWyy8rGhnVgv q0i3EMitsIxm1eNRbkeceFmD1K+v6nvGD7RyQ5OykLN3VNerOwSHR1ghjQaqWslYrUif SOufnX4YT2SEywjNkgziKTP08QRfcEYx6YNP1IYosU91xWqUKVguwdVpeVVAO4TwnVxZ jZs2JT2ZfFKlYPB4jPd+IcKfObhYRwRMGoPaNhoH9YQkq9tPsBRx0qSY8KF4gg3ng4/8 /lbQAHxVibZ9ytfl3g+xxNBXy5iPZDDhQgJ6eRX9P7YgNvzzaqW2e/gdM+EyKhFQ+SxX 41pA== X-Gm-Message-State: ALoCoQkzbjRmsm6ZsqjkiijvGAsBK+Fx7Q21pqIWnZW9l/nQAVvVKw74zwBkq7KPcgg1ubt1Gzs3 X-Received: by 10.194.249.225 with SMTP id yx1mr4784049wjc.79.1413489719703; Thu, 16 Oct 2014 13:01:59 -0700 (PDT) Received: from xps13.localnet (136-92-190-109.dsl.ovh.fr. [109.190.92.136]) by mx.google.com with ESMTPSA id bo14sm3134707wib.13.2014.10.16.13.01.58 for (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Thu, 16 Oct 2014 13:01:58 -0700 (PDT) From: Thomas Monjalon To: Jijiang Liu Date: Thu, 16 Oct 2014 22:01:42 +0200 Message-ID: <2959182.8PakPvQ7cT@xps13> Organization: 6WIND User-Agent: KMail/4.14.1 (Linux/3.16.4-1-ARCH; KDE/4.14.1; x86_64; ; ) In-Reply-To: <1413006935-22535-4-git-send-email-jijiang.liu@intel.com> References: <1413006935-22535-1-git-send-email-jijiang.liu@intel.com> <1413006935-22535-4-git-send-email-jijiang.liu@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 v5 3/8]app/test-pmd:test VxLAN packet identification 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: Thu, 16 Oct 2014 19:54:05 -0000 2014-10-11 13:55, Jijiang Liu: > - "tx_checksum set mask (port_id)\n" > + "tx_checksum set (mask) (port_id)\n" > " Enable hardware insertion of checksum offload with" > - " the 4-bit mask, 0~0xf, in packets sent on a port.\n" > + " the 8-bit mask, 0~0xff, in packets sent on a port.\n" > " bit 0 - insert ip checksum offload if set\n" > " bit 1 - insert udp checksum offload if set\n" > " bit 2 - insert tcp checksum offload if set\n" > " bit 3 - insert sctp checksum offload if set\n" > + " bit 4 - insert inner ip checksum offload if set\n" > + " bit 5 - insert inner udp checksum offload if set\n" > + " bit 6 - insert inner tcp checksum offload if set\n" > + " bit 7 - insert inner sctp checksum offload if set\n" > " Please check the NIC datasheet for HW limits.\n\n" [...] > .help_str = "enable hardware insertion of L3/L4checksum with a given " > - "mask in packets sent on a port, the bit mapping is given as, Bit 0 for ip" > - "Bit 1 for UDP, Bit 2 for TCP, Bit 3 for SCTP", > + "mask in packets sent on a port, the bit mapping is given as, Bit 0 for ip " > + "Bit 1 for UDP, Bit 2 for TCP, Bit 3 for SCTP, Bit 4 for inner ip " > + "Bit 5 for inner UDP, Bit 6 for inner TCP, Bit 7 for inner SCTP", > .tokens = { > (void *)&cmd_tx_cksum_set_tx_cksum, > (void *)&cmd_tx_cksum_set_set, How is it related to VXLAN? I may have missed something. But if not, I note the name of the reviewers ;) -- Thomas