From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga01.intel.com (mga01.intel.com [192.55.52.88]) by dpdk.org (Postfix) with ESMTP id 077E88D93 for ; Wed, 26 Aug 2015 09:43:12 +0200 (CEST) Received: from orsmga001.jf.intel.com ([10.7.209.18]) by fmsmga101.fm.intel.com with ESMTP; 26 Aug 2015 00:43:11 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.17,414,1437462000"; d="scan'208";a="755587054" Received: from irvmail001.ir.intel.com ([163.33.26.43]) by orsmga001.jf.intel.com with ESMTP; 26 Aug 2015 00:43:11 -0700 Received: from sivswdev02.ir.intel.com (sivswdev02.ir.intel.com [10.237.217.46]) by irvmail001.ir.intel.com (8.14.3/8.13.6/MailSET/Hub) with ESMTP id t7Q7hAID011148; Wed, 26 Aug 2015 08:43:10 +0100 Received: from sivswdev02.ir.intel.com (localhost [127.0.0.1]) by sivswdev02.ir.intel.com with ESMTP id t7Q7hA2V004165; Wed, 26 Aug 2015 08:43:10 +0100 Received: (from pdelarax@localhost) by sivswdev02.ir.intel.com with id t7Q7h93N004161; Wed, 26 Aug 2015 08:43:09 +0100 From: Pablo de Lara To: dev@dpdk.org Date: Wed, 26 Aug 2015 08:43:09 +0100 Message-Id: <1440574989-4129-1-git-send-email-pablo.de.lara.guarch@intel.com> X-Mailer: git-send-email 1.7.4.1 Subject: [dpdk-dev] [PATCH] doc: add missing field in ethertype_filter example in testpmd doc 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: Wed, 26 Aug 2015 07:43:13 -0000 The two examples of ethertype_filter in testpmd documentation were missing the mac address field, so the example was incorrect. Signed-off-by: Pablo de Lara --- 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 3f076c8..aa77a91 100644 --- a/doc/guides/testpmd_app_ug/testpmd_funcs.rst +++ b/doc/guides/testpmd_app_ug/testpmd_funcs.rst @@ -1469,8 +1469,8 @@ Example, to add/remove an ethertype filter rule: .. code-block:: console - testpmd> ethertype_filter 0 add mac_ignr ethertype 0x0806 fwd queue 3 - testpmd> ethertype_filter 0 del mac_ignr ethertype 0x0806 fwd queue 3 + testpmd> ethertype_filter 0 add mac_ignr 00:11:22:33:44:55 ethertype 0x0806 fwd queue 3 + testpmd> ethertype_filter 0 del mac_ignr 00:11:22:33:44:55 ethertype 0x0806 fwd queue 3 2tuple_filter ~~~~~~~~~~~~~~~~~ -- 2.4.2