From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by inbox.dpdk.org (Postfix) with ESMTP id 23233A0A02; Thu, 14 Jan 2021 12:19:58 +0100 (CET) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id E51771411C4; Thu, 14 Jan 2021 12:19:57 +0100 (CET) Received: from mga04.intel.com (mga04.intel.com [192.55.52.120]) by mails.dpdk.org (Postfix) with ESMTP id 91C901411C3; Thu, 14 Jan 2021 12:19:55 +0100 (CET) IronPort-SDR: GO4Ukb8Pt6c8jGx3ucFJnETJ3Xy3s/K9lwvOdqsFSLj960RQz0dpeC9qfCxiuN/DEsVkCJgqV9 ro8jWSsLFP5g== X-IronPort-AV: E=McAfee;i="6000,8403,9863"; a="175767231" X-IronPort-AV: E=Sophos;i="5.79,347,1602572400"; d="scan'208";a="175767231" Received: from fmsmga003.fm.intel.com ([10.253.24.29]) by fmsmga104.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 14 Jan 2021 03:19:54 -0800 IronPort-SDR: iONk2tBoqsBCv3bKmyqPU8mbCExrAdUHFx9wI5Y5/da5c5jcWtORJLGLEARxgVLqSxH0GOr3cD 8vOG7xWv3D1g== X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.79,347,1602572400"; d="scan'208";a="405128418" Received: from irvmail001.ir.intel.com ([10.43.11.63]) by FMSMGA003.fm.intel.com with ESMTP; 14 Jan 2021 03:19:53 -0800 Received: from sivswdev09.ir.intel.com (sivswdev09.ir.intel.com [10.237.217.48]) by irvmail001.ir.intel.com (8.14.3/8.13.6/MailSET/Hub) with ESMTP id 10EBJqWG030952; Thu, 14 Jan 2021 11:19:52 GMT Received: from sivswdev09.ir.intel.com (localhost [127.0.0.1]) by sivswdev09.ir.intel.com with ESMTP id 10EBJqvk003979; Thu, 14 Jan 2021 11:19:52 GMT Received: (from bairemon@localhost) by sivswdev09.ir.intel.com with LOCAL id 10EBJqgv003975; Thu, 14 Jan 2021 11:19:52 GMT From: Bernard Iremonger To: dev@dpdk.org Cc: Bernard Iremonger , stable@dpdk.org Date: Thu, 14 Jan 2021 11:19:47 +0000 Message-Id: <1610623187-3631-1-git-send-email-bernard.iremonger@intel.com> X-Mailer: git-send-email 1.7.0.7 Subject: [dpdk-dev] [PATCH] doc: fix testpmd sample qinq flow rules X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" In the Testpmd Flow rules management section, correct the TPID values in the Sample QinQ flow rules sub section. Fixes: bef3bfe7d5f4 ("doc: revise sample testpmd flow commands") Cc: stable@dpdk.org Signed-off-by: Bernard Iremonger --- doc/guides/testpmd_app_ug/testpmd_funcs.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/guides/testpmd_app_ug/testpmd_funcs.rst b/doc/guides/testpmd_app_ug/testpmd_funcs.rst index 9be4500..e0020d6 100644 --- a/doc/guides/testpmd_app_ug/testpmd_funcs.rst +++ b/doc/guides/testpmd_app_ug/testpmd_funcs.rst @@ -4432,8 +4432,8 @@ The above command sets the inner and outer TPID's to 0x8100. To change the TPID's the following commands should be used:: - testpmd> vlan set outer tpid 0xa100 0 - testpmd> vlan set inner tpid 0x9100 0 + testpmd> vlan set outer tpid 0x88A8 0 + testpmd> vlan set inner tpid 0x8100 0 testpmd> port start 0 Validate and create a QinQ rule on port 0 to steer traffic to a VF queue in a VM. -- 2.7.4