From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga03.intel.com (mga03.intel.com [134.134.136.65]) by dpdk.org (Postfix) with ESMTP id BD357B573 for ; Fri, 20 Feb 2015 11:27:22 +0100 (CET) Received: from orsmga002.jf.intel.com ([10.7.209.21]) by orsmga103.jf.intel.com with ESMTP; 20 Feb 2015 02:21:53 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.09,614,1418112000"; d="scan'208";a="688325270" Received: from unknown (HELO Sent) ([10.217.248.178]) by orsmga002.jf.intel.com with SMTP; 20 Feb 2015 02:27:20 -0800 Received: by Sent (sSMTP sendmail emulation); Fri, 20 Feb 2015 11:26:57 +0200 From: Michal Jastrzebski To: dev@dpdk.org Date: Fri, 20 Feb 2015 11:26:11 +0100 Message-Id: <1424427972-6392-2-git-send-email-michalx.k.jastrzebski@intel.com> X-Mailer: git-send-email 2.1.1 In-Reply-To: <1424427972-6392-1-git-send-email-michalx.k.jastrzebski@intel.com> References: <1422379175-10004-1-git-send-email-michalx.k.jastrzebski@intel.com> <1424427972-6392-1-git-send-email-michalx.k.jastrzebski@intel.com> Subject: [dpdk-dev] [PATCH v3 1/2] doc: add information about limited number of vlan_ids 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: Fri, 20 Feb 2015 10:27:23 -0000 This patch adds information to testpmd_funcs.rst file, about limited number of vlan_ids possible to be enabled in a filter. This is limited to the maximum number of entries possible in the VFTA table. Signed-off-by: Michal Jastrzebski --- doc/guides/testpmd_app_ug/testpmd_funcs.rst | 2 ++ 1 file changed, 2 insertions(+) diff --git a/doc/guides/testpmd_app_ug/testpmd_funcs.rst b/doc/guides/testpmd_app_ug/testpmd_funcs.rst index 218835a..17d5ccb 100644 --- a/doc/guides/testpmd_app_ug/testpmd_funcs.rst +++ b/doc/guides/testpmd_app_ug/testpmd_funcs.rst @@ -424,6 +424,8 @@ rx_vlan add (vlan_id|all) (port_id) .. note:: VLAN filter must be set on that port. VLAN ID < 4096. + Depending on the NIC used, number of vlan_ids may be limited to the maximum entries + in VFTA table. This is important if enabling all vlan_ids. rx_vlan rm ~~~~~~~~~~ -- 1.7.9.5