From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-wr1-f65.google.com (mail-wr1-f65.google.com [209.85.221.65]) by dpdk.org (Postfix) with ESMTP id 0AFD21B129 for ; Thu, 27 Dec 2018 16:56:41 +0100 (CET) Received: by mail-wr1-f65.google.com with SMTP id v13so18655068wrw.5 for ; Thu, 27 Dec 2018 07:56:41 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20161025; h=from:to:cc:subject:date:message-id; bh=P7yAhbiZCZHeI7cXx8TI6b/oFpU7GKBcQyYAZ5lHgPc=; b=h+xIvH2RvKtmnUBPr+j2n1Nb32V96llQUg3a44RgiE6/1T0Y7y6Y70k0l22u+UGwZT i094/1aNSLM3D3op7mxyW6LBMdq9TbHkauIWpIXrDA5FT1gwye3XdLQrW+gXOsXStNJB YEPK4kneFmeuhRdNsn2mm7htAUGK0c2VtinUk7ctlugl6gdzD/8grOMg0qRnnb7x698a TEZXbjLKMWg+d1IOEkJhESuQhyuLCf37C8d+VFzou7UQul5kKlJ4ch+7SBRdbH5nGzxg FKW745ZXXvJfxEYqUuXI6I/EQDnRCSiCgEsbgl/Mw++yWmTCT81yFroUY2QYr9dudEjr UR5Q== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:from:to:cc:subject:date:message-id; bh=P7yAhbiZCZHeI7cXx8TI6b/oFpU7GKBcQyYAZ5lHgPc=; b=PF0fH+GsQqrmnFliNJbBbNexb+u3I18B6KVpST7iQ4vpuOtyRqQnWnzzG3li75XERb hldA1ZYtbNaq8Nu398z25ez1c5UheEjmwkUVbuhbp/Euwgr5Gwrp3iSfOwp+q7JIfy3O iCUwAbm/pNBW3tQCQSiZDFD+D0jJF+UzOJmnC7AG92CoqnVnZmU9hRVm2pP/dMr6DVE9 BIwL/+tt+Kei2r/v1M4WVuZ/sf+HRbIihyqU7pDPJCgEM4Ei/DpnVLpl+vFtJ4WGnmLs 4UzXt2GWgPNAw1CzLkCD8bmeMCm6rQb5xljh4YETnBzsACID7n+1yTlWiCbCILoy8C9J urMA== X-Gm-Message-State: AJcUukeUUPIkl0SdzqwpZsffbI9M+OThiJQfJNPoARrW3xmyhESixKGI /UvgL55YlNP/fN5jk8H5bAK1YwhfmhoR+Q== X-Google-Smtp-Source: ALg8bN6hVa8dJA684lYAsM1c4cumg2QDpFJqlS+TdAHzqXanwabsqL8CrxJqHU+nalu7mU+sNf8gLw== X-Received: by 2002:adf:ef0d:: with SMTP id e13mr21410324wro.29.1545926200320; Thu, 27 Dec 2018 07:56:40 -0800 (PST) Received: from herc.netio.cloud (bzq-218-196-15.red.bezeqint.net. [81.218.196.15]) by smtp.gmail.com with ESMTPSA id o16sm34448501wrn.11.2018.12.27.07.56.39 (version=TLS1_2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Thu, 27 Dec 2018 07:56:39 -0800 (PST) From: Rami Rosen To: dts@dpdk.org Cc: Rami Rosen Date: Thu, 27 Dec 2018 17:56:33 +0200 Message-Id: <1545926193-3581-1-git-send-email-ramirose@gmail.com> X-Mailer: git-send-email 1.8.3.1 Subject: [dts] [PATCH] test_plans: Fix hardware insertion of VLAN tag in VLAN test plan X-BeenThere: dts@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: test suite reviews and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 27 Dec 2018 15:56:41 -0000 This patch fixes setting of hardware insertion of VLAN in VLAN test plan. See http://doc.dpdk.org/guides/testpmd_app_ug/testpmd_funcs.html#tx-vlan-set Signed-off-by: Rami Rosen --- test_plans/vlan_test_plan.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test_plans/vlan_test_plan.rst b/test_plans/vlan_test_plan.rst index fb4c485..23efa9a 100644 --- a/test_plans/vlan_test_plan.rst +++ b/test_plans/vlan_test_plan.rst @@ -54,7 +54,7 @@ In the same way, the insertion of a VLAN header with the VLAN tag identifier ``vlan_id`` in packets sent on the port ``port_id`` can be enabled with the following command of the ``testpmd`` application:: - tx_vlan set vlan_id port_id + tx_vlan set port_id vlan_id The transmission of VLAN packets is done with the ``start tx_first`` command -- 1.8.3.1