From patchwork Fri May 3 08:51:29 2024 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Kevin Traynor X-Patchwork-Id: 139827 X-Patchwork-Delegate: ferruh.yigit@amd.com Return-Path: X-Original-To: patchwork@inbox.dpdk.org Delivered-To: patchwork@inbox.dpdk.org Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by inbox.dpdk.org (Postfix) with ESMTP id 94F5E43F74; Fri, 3 May 2024 10:52:06 +0200 (CEST) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 57517402D1; Fri, 3 May 2024 10:52:06 +0200 (CEST) Received: from us-smtp-delivery-124.mimecast.com (us-smtp-delivery-124.mimecast.com [170.10.133.124]) by mails.dpdk.org (Postfix) with ESMTP id A5691402CF for ; Fri, 3 May 2024 10:52:04 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1714726324; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version:content-type:content-type: content-transfer-encoding:content-transfer-encoding; bh=81gNuUiA3sUBlcmtW8Nsmt7Qu5cyuchTVEXUl8zwwTc=; b=ZBuYMQ5cVip9v4F1PyAT5BWPQ18doDpMc7W+rI67Z3eskCX/ScjOupinedbjqDD6shsyda z8/daB7YYIKsg/GxssOiNhA8bUwgahInEuqCwwBu/rSn9sc9LUDGr78+LdcU+HwnDR742a r6B7PnqrEt49dx+bsY1Uu+/CVtTFp3Y= Received: from mimecast-mx02.redhat.com (mimecast-mx02.redhat.com [66.187.233.88]) by relay.mimecast.com with ESMTP with STARTTLS (version=TLSv1.3, cipher=TLS_AES_256_GCM_SHA384) id us-mta-344-vRzbJkHDPuaRyiIsC12qXg-1; Fri, 03 May 2024 04:52:00 -0400 X-MC-Unique: vRzbJkHDPuaRyiIsC12qXg-1 Received: from smtp.corp.redhat.com (int-mx10.intmail.prod.int.rdu2.redhat.com [10.11.54.10]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits) server-digest SHA256) (No client certificate requested) by mimecast-mx02.redhat.com (Postfix) with ESMTPS id E4199812C52; Fri, 3 May 2024 08:51:59 +0000 (UTC) Received: from rh.redhat.com (unknown [10.39.194.162]) by smtp.corp.redhat.com (Postfix) with ESMTP id 63380492BC7; Fri, 3 May 2024 08:51:58 +0000 (UTC) From: Kevin Traynor To: dev@dpdk.org Cc: Kevin Traynor , stable@dpdk.org, Aman Singh , Yuying Zhang , Ferruh Yigit , Qi Zhang Subject: [PATCH] doc: fix testpmd ring size command Date: Fri, 3 May 2024 09:51:29 +0100 Message-ID: <20240503085129.316979-1-ktraynor@redhat.com> MIME-Version: 1.0 X-Scanned-By: MIMEDefang 3.4.1 on 10.11.54.10 X-Mimecast-Spam-Score: 0 X-Mimecast-Originator: redhat.com X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org The documentation is missing the 'config' word. In app, 'help ports' shows the correct syntax: port config (port_id) (rxq|txq) (queue_id) ring_size (value) Fixes: 1a77cffa8143 ("app/testpmd: enable queue ring size configure") Cc: stable@dpdk.org Signed-off-by: Kevin Traynor Acked-by: Ferruh Yigit --- 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 2fbf9220d8..ecd040504e 100644 --- a/doc/guides/testpmd_app_ug/testpmd_funcs.rst +++ b/doc/guides/testpmd_app_ug/testpmd_funcs.rst @@ -2033,5 +2033,5 @@ port config - queue ring size Configure a rx/tx queue ring size:: - testpmd> port (port_id) (rxq|txq) (queue_id) ring_size (value) + testpmd> port config (port_id) (rxq|txq) (queue_id) ring_size (value) Only take effect after command that (re-)start the port or command that setup specific queue.