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 2F4451B472; Fri, 4 Jan 2019 10:11:02 +0100 (CET) Received: by mail-wr1-f65.google.com with SMTP id j2so36091853wrw.1; Fri, 04 Jan 2019 01:11:02 -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:mime-version :content-transfer-encoding; bh=YafYfXWJ6yK3r1WQe8yWBxM9CC7hzEWAi2YHPYTde/E=; b=YMsGcQ6wVflkpjSoYq+Mt0MBRFIxRHr9NLyzlt2WHm21pNYVtfuD8R1aYjO/3mn/vl kpp2l9x4eWE+ENRoIYGK4IcT+i0JwpQfxbDtWQfYhxKfEeDqRMg0CqxzP0V3UgkqhlI3 1S07hsiZJd32sWUIhPAAAdar8+L4cCfrLZCP4yWCmwFNKtOkUuM4yzcc51boED9FwRbI EXeAafSp4IFHW6FmLQCfdPKFMQ5EsYDDfllE6kcMIUGX+PBctvn9ygKSdrbubOIgJYLN V/ZS+JddmxxUPENwWeZrPBHTH0LiXBKp1YmD4agPjhsgUELWrj+PqT0PEFk9fJYrqesS qiHg== 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:mime-version :content-transfer-encoding; bh=YafYfXWJ6yK3r1WQe8yWBxM9CC7hzEWAi2YHPYTde/E=; b=Vhk5iM204EnRVGGRWkCL6xvpOfIe1x4X2WDyuX0hbOqyybZQtnZs11YiJsP5L/wi54 rUaNM7SfO/yC11WycxZBxdHaM5u/rr75967a0UakpTXtxCKnvXL5XP/23dIQFHIHZIJw t7SfZ2UyZvYICKRJgQkn2J7FDZ0xdTSablLSO20qDA1vQO5CC4rTcQNNbXRcJOcVXFMP ZhtQrqSdDTWCs87PrZxtaOZ3kUjoksOFKlPjxG6sHo/PnELv5cv7Q4aSHV/MrtxWC4qJ MVal/6MqCb0P1xhZMceRvqmvXNB48tALVnnblzZBnhZXdE1RKUe/k76A+zqB92suG1gc xI/g== X-Gm-Message-State: AJcUukcqhLjDVhXP8DR297l09BXxW8dGGfKCEXU+04sPvyypPzPZA2ng 2mD5yP3L7hRGXGbvZJ7WKCkPQj2iyPk= X-Google-Smtp-Source: ALg8bN5reOrnxNilaOYGRLVIysNyVsmbj5zfEpenlKU7uvHi8Mu7KcXNCwS1gWGPCAwTAs3BBpWnig== X-Received: by 2002:adf:efd1:: with SMTP id i17mr42620298wrp.200.1546593061710; Fri, 04 Jan 2019 01:11:01 -0800 (PST) Received: from localhost.localdomain (bzq-79-182-127-199.red.bezeqint.net. [79.182.127.199]) by smtp.gmail.com with ESMTPSA id 10sm540216wmy.40.2019.01.04.01.11.00 (version=TLS1_2 cipher=ECDHE-RSA-CHACHA20-POLY1305 bits=256/256); Fri, 04 Jan 2019 01:11:01 -0800 (PST) From: Rami Rosen To: dev@dpdk.org Cc: stable@dpdk.org, bernard.iremonger@intel.com, Rami Rosen Date: Fri, 4 Jan 2019 11:10:46 +0200 Message-Id: <20190104091047.7777-1-ramirose@gmail.com> X-Mailer: git-send-email 2.19.2 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Subject: [dpdk-dev] [PATCH v2] 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: Fri, 04 Jan 2019 09:11:02 -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. v2: Fix line too long in the patch commit log. 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 cbf23e928..1ceb000da 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. -- 2.19.2