From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-wr1-f66.google.com (mail-wr1-f66.google.com [209.85.221.66]) by dpdk.org (Postfix) with ESMTP id DCE1A1B20E; Tue, 25 Dec 2018 14:36:49 +0100 (CET) Received: by mail-wr1-f66.google.com with SMTP id t27so13684413wra.6; Tue, 25 Dec 2018 05:36:49 -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=mehYa/ubR95MwCmCidelFW2PHDfYxC1+S20TwsZKF0s=; b=LnAQoX5pz2sP9TTg7Q0kHKgnu6vGX4QYq6fpZgP50QgXg5rJ8n2zxpYnEvtoA16McX 9zYlpqOe+u/g8svxAPT7MX6AVi/zXX/Voo6hmyaQCDaDLWe3YrrT/uropZZ4SbqhOfUQ VeaKWLhb1dDgK3tNRwhdwWR7ntazD0GewOVQ2Fj7DtGNZiOsGRnlCSKxxs7wXIeJ7W8F o2UIZrwsOXQJJOOs/haBasz115rPpO287+NZ+tlU970D59+lQeyMEwiX2J5zPuwpFkPK HXlR8k9y47v1pkvU85Yg6ExkXcZLOKIfEJ7NCbiFmmmC9AXQWO4LniuhBT5XsV+Au2Qc aFzA== 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=mehYa/ubR95MwCmCidelFW2PHDfYxC1+S20TwsZKF0s=; b=P2bZPqc/IQDFPsxlhujhFlNdcGTQ9x58vx1GC5aZz7oXmUnbQhXMnjuIVcX6dne6vh icUq49FBnaNf860TSFssnSN7gR2sPOSlNegmaPy5Y8hYfxfgOGgAi3MXO1GSwJgjU5HE kTQ6PKi+cWDcW01AKjIHwz18E/lZOrhdG7hpDttt8nqgM7CqBS3zlUtMvcPvbccREtqB XfCDluXP3pxN2/s3uh7NF+G5624qfyPLOw3hKFL8lV2uBbqxU6UQ7ELXRiPve1CaY9du iDKSkY9ogtkCuYaYvauADo1rQ5yrXrY8M/Fg0cSOPgEqJRA6PRmxTJuVXadl5MV+XYrH 8kYg== X-Gm-Message-State: AJcUukdIRNM7eaqaJQRj8elFdZ3GFVl+W04UAOhpixj2BNDQkinuOJ2l +YurC41an9bSuHX8ftgf9lVVjVkLQUO/Rg== X-Google-Smtp-Source: ALg8bN7kXz5NTCSEHVrqBTfSuaCnuHAiXIysYLnop4gMst98UsWa4STZ1sV6e9fgDSzg2GexIdjOSQ== X-Received: by 2002:adf:94e4:: with SMTP id 91mr16200287wrr.322.1545745009253; Tue, 25 Dec 2018 05:36:49 -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 14sm45996026wmv.36.2018.12.25.05.36.48 (version=TLS1_2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Tue, 25 Dec 2018 05:36:48 -0800 (PST) From: Rami Rosen To: dev@dpdk.org Cc: stable@dpdk.org, Rami Rosen Date: Tue, 25 Dec 2018 15:36:40 +0200 Message-Id: <1545745000-114010-1-git-send-email-ramirose@gmail.com> X-Mailer: git-send-email 1.8.3.1 Subject: [dpdk-dev] [PATCH] doc: fix a parameter name in testpmd guide X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Dec 2018 13:36:50 -0000 There is no parameter called "eth-peer-configfile" in testpmd. It should be "eth-peers-configfile". See the usage() method in app/test-pmd/parameters.c. Fixes: a67857e97ba8 ("doc: clarify usage of testpmd MAC forward mode") Cc: stable@dpdk.org Signed-off-by: Rami Rosen --- doc/guides/testpmd_app_ug/testpmd_funcs.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/guides/testpmd_app_ug/testpmd_funcs.rst b/doc/guides/testpmd_app_ug/testpmd_funcs.rst index cbf23e9..1ceb000 100644 --- a/doc/guides/testpmd_app_ug/testpmd_funcs.rst +++ b/doc/guides/testpmd_app_ug/testpmd_funcs.rst @@ -304,7 +304,7 @@ The available information categories are: * ``mac``: Changes the source and the destination Ethernet addresses of packets before forwarding them. Default application behaviour is to set source Ethernet address to that of the transmitting interface, and destination address to a dummy value (set during init). The user may specify a target destination Ethernet address via the 'eth-peer' or - 'eth-peer-configfile' command-line options. It is not currently possible to specify a specific source Ethernet address. + 'eth-peers-configfile' command-line options. It is not currently possible to specify a specific source Ethernet address. * ``macswap``: MAC swap forwarding mode. Swaps the source and the destination Ethernet addresses of packets before forwarding them. -- 1.8.3.1