From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from dpdk.org (dpdk.org [92.243.14.124]) by inbox.dpdk.org (Postfix) with ESMTP id 7F97BA04DB; Mon, 16 Nov 2020 11:06:58 +0100 (CET) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 7BB72C904; Mon, 16 Nov 2020 11:06:42 +0100 (CET) Received: from us-smtp-delivery-124.mimecast.com (us-smtp-delivery-124.mimecast.com [63.128.21.124]) by dpdk.org (Postfix) with ESMTP id E67B0C8F8 for ; Mon, 16 Nov 2020 11:06:38 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1605521197; 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: in-reply-to:in-reply-to:references:references; bh=T811OTX5DL6wBQ675zaR4rdFjTEYoLBwlATOthUW1Fs=; b=K9ewmHMJQpDlZOV71wJ1fQ6ISs1iHkMhvpZWA9W5Xs2V5q72DBsjQfn2H925527Y+LBUav 9iGN2mRk1EkRZDs46ZHy9GbzoVCJ1jw/1xeC2gufBJG2XknyjGcVM8yjrFqFQe1gKCwLEo pfzvx2FzG/bhpTak4TAT/vHkB5C3woI= Received: from mimecast-mx01.redhat.com (mimecast-mx01.redhat.com [209.132.183.4]) (Using TLS) by relay.mimecast.com with ESMTP id us-mta-26-sA1mGwIJP2eZFNpHaRCl6w-1; Mon, 16 Nov 2020 05:06:35 -0500 X-MC-Unique: sA1mGwIJP2eZFNpHaRCl6w-1 Received: from smtp.corp.redhat.com (int-mx01.intmail.prod.int.phx2.redhat.com [10.5.11.11]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mimecast-mx01.redhat.com (Postfix) with ESMTPS id 7C82B800683; Mon, 16 Nov 2020 10:06:34 +0000 (UTC) Received: from dmarchan.remote.csb (unknown [10.40.194.2]) by smtp.corp.redhat.com (Postfix) with ESMTP id 2EB165B4BB; Mon, 16 Nov 2020 10:06:32 +0000 (UTC) From: David Marchand To: dev@dpdk.org Cc: thomas@monjalon.net Date: Mon, 16 Nov 2020 11:06:17 +0100 Message-Id: <20201116100618.2894-2-david.marchand@redhat.com> In-Reply-To: <20201116100618.2894-1-david.marchand@redhat.com> References: <20201116100618.2894-1-david.marchand@redhat.com> MIME-Version: 1.0 X-Scanned-By: MIMEDefang 2.79 on 10.5.11.11 Authentication-Results: relay.mimecast.com; auth=pass smtp.auth=CUSA124A263 smtp.mailfrom=david.marchand@redhat.com X-Mimecast-Spam-Score: 0 X-Mimecast-Originator: redhat.com Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Subject: [dpdk-dev] [PATCH 2/3] doc: fix coremask option for eventdev pipeline 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: , Errors-To: dev-bounces@dpdk.org Sender: "dev" -w option in this context is an application option for coremask. Restore it. Fixes: db27370b5720 ("eal: replace blacklist/whitelist options") Signed-off-by: David Marchand --- doc/guides/sample_app_ug/eventdev_pipeline.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/guides/sample_app_ug/eventdev_pipeline.rst b/doc/guides/sample_app_ug/eventdev_pipeline.rst index 41ee8b7ee3..4508c3dcc8 100644 --- a/doc/guides/sample_app_ug/eventdev_pipeline.rst +++ b/doc/guides/sample_app_ug/eventdev_pipeline.rst @@ -47,7 +47,7 @@ these settings is shown below: .. code-block:: console .//examples/dpdk-eventdev_pipeline --vdev event_sw0 -- -r1 -t1 \ - -e4 -a FF00 -s4 -n0 -c32 -W1000 -D + -e4 -w FF00 -s4 -n0 -c32 -W1000 -D The application has some sanity checking built-in, so if there is a function (e.g.; the RX core) which doesn't have a cpu core mask assigned, the application -- 2.23.0