From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-wr1-f67.google.com (mail-wr1-f67.google.com [209.85.221.67]) by dpdk.org (Postfix) with ESMTP id 9D82D2C17 for ; Sun, 3 Mar 2019 17:07:59 +0100 (CET) Received: by mail-wr1-f67.google.com with SMTP id f14so2855307wrg.1 for ; Sun, 03 Mar 2019 08:07:59 -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=hitWptZwz18Gy0CBVe3y9+iMCl80SVzgSkJwL5JOeII=; b=ksivdkSK/aNtqQbwsPV5GbNAORG7/pGlO7WFe66V4p5u2YvI82qNrNdWeOch7g8NKe q5fnxR8TZN9pyxg/ArTcqiiSdbrVBvEdSkBCz6TZT/1zLIkQeE3gSQGP2Be+tkycEa1V hhFOTq1N2xP5EbQsZnsUJtb2X5VhYqQnj8RDf0lWmWzrkhynIL35LNiV/e9M0LCuF2nE rJdwToWVa2SiG2SUt6N7S1dXd8U2Kflw7svO5nXCZr66sW/j+LJNOa5WdRKc0/CGq0rz uaxn4ukgAXAku/lQd3y3QGPIqJq/ZATf6ApS5pvWXjReil+8GN0eYcLr/WgbIl/foumj /KSg== 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=hitWptZwz18Gy0CBVe3y9+iMCl80SVzgSkJwL5JOeII=; b=TesjxtGzTNBG78pmZBORmi6PNTh8n5Z3wcJ/aP5jLz0W0sHPjIAPlj7mDTmfWYFXoK ZUx4RUBDICaXrjLVSdiQGWDVAbLvilBshiXZ3Ii6r7VDn3vJrB2z69ftsZaYeB9orMhU XpOUVTeoeqxBWfP2yCpKVMM9cFLiTvGfkvBt0IlqDcQKoVC94P3QEgPphOXi2E7RBaJ3 BUjWk9H7T4i3Y7dDBG/jYtebU55PNF8fQ6xhg6MpjxlVlVpYp27DrSDI7Ua3A1NpvkFM qKt0tfOGhqeXqzj43zCC92OA6Xp6fWEek/79MGdW9TD4XlZsKPO05Ktr4t/BQ6pkcS/g u5xQ== X-Gm-Message-State: APjAAAXPA1UZyftf6426/IXnHftXHEMhRZ77JsjXxGWDzUXYGu49CKFa E/Wk4Uzgrr8Wd8PWkgj+Z7zdxusZgnk= X-Google-Smtp-Source: APXvYqxgeQX/8J7DsI4nsRraXmE1MlTS/OT0meNj0Lg9Obm6m68+od/E6r51o7qORSN4J7FZZ3+0PQ== X-Received: by 2002:a5d:4149:: with SMTP id c9mr10286733wrq.58.1551629278998; Sun, 03 Mar 2019 08:07:58 -0800 (PST) Received: from herc_dut.netio.cloud ([212.199.245.54]) by smtp.gmail.com with ESMTPSA id a82sm12705851wmf.11.2019.03.03.08.07.58 (version=TLS1_2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Sun, 03 Mar 2019 08:07:58 -0800 (PST) From: Rami Rosen To: dts@dpdk.org Cc: Rami Rosen Date: Sun, 3 Mar 2019 18:07:52 +0200 Message-Id: <1551629272-8610-1-git-send-email-ramirose@gmail.com> X-Mailer: git-send-email 1.8.3.1 Subject: [dts] [PATCH] test_plans checksum_offload: fix name of a parameter 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: Sun, 03 Mar 2019 16:07:59 -0000 Testpmd has no longer a paramater called enable-rx-checksum, it should be: enable-rx-cksum. This patch fixes it in the checksum offload test plan. See: https://git.dpdk.org/dpdk/tree/app/test-pmd/parameters.c#n134 Signed-off-by: Rami Rosen --- test_plans/checksum_offload_test_plan.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test_plans/checksum_offload_test_plan.rst b/test_plans/checksum_offload_test_plan.rst index 710b98a..82fd12f 100644 --- a/test_plans/checksum_offload_test_plan.rst +++ b/test_plans/checksum_offload_test_plan.rst @@ -56,7 +56,7 @@ On the TX side: RX side, the L3/L4 checksum offload by hardware can be enabled with the following command of the ``testpmd`` application:: - enable-rx-checksum + enable-rx-cksum TX side, the insertion of a L3/L4 checksum by hardware can be enabled with the following command of the ``testpmd`` application and running in a dedicated @@ -93,7 +93,7 @@ launch the ``testpmd`` with the following arguments:: ./build/app/testpmd -cffffff -n 1 -- -i --burst=1 --txpt=32 \ --txht=8 --txwt=0 --txfreet=0 --rxfreet=64 --mbcache=250 --portmask=0x5 - enable-rx-checksum + enable-rx-cksum Set the verbose level to 1 to display information for each received packet:: -- 1.8.3.1