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 3347CA04DD; Tue, 10 Nov 2020 17:09:31 +0100 (CET) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 2B3A42B9D; Tue, 10 Nov 2020 17:09:29 +0100 (CET) Received: from mga09.intel.com (mga09.intel.com [134.134.136.24]) by dpdk.org (Postfix) with ESMTP id 94297F90 for ; Tue, 10 Nov 2020 17:09:27 +0100 (CET) IronPort-SDR: NncMBWc4PKgG8h9Bz3AOle9jL50R6w3TGNvnxw+/8PMqE97vpZoE7/QwmW9SCfjU1Z74dRamvK XLcRcMNOg3qQ== X-IronPort-AV: E=McAfee;i="6000,8403,9801"; a="170157212" X-IronPort-AV: E=Sophos;i="5.77,466,1596524400"; d="scan'208";a="170157212" X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from orsmga004.jf.intel.com ([10.7.209.38]) by orsmga102.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 10 Nov 2020 08:09:22 -0800 IronPort-SDR: d0VSvBX3i90XYYhE12595XSp9IRPp442O4WoDa7nsHFUJdosjpkoEGKecenxc4kjluXlCQS/M8 Dyz76HTrG/7A== X-IronPort-AV: E=Sophos;i="5.77,466,1596524400"; d="scan'208";a="473479620" Received: from bricha3-mobl.ger.corp.intel.com ([10.213.241.186]) by orsmga004-auth.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-SHA; 10 Nov 2020 08:09:21 -0800 Date: Tue, 10 Nov 2020 16:09:18 +0000 From: Bruce Richardson To: Stephen Hemminger Cc: dev@dpdk.org, Luca Boccassi Message-ID: <20201110160918.GL1641@bricha3-MOBL.ger.corp.intel.com> References: <20200922143202.8755-1-stephen@networkplumber.org> <20201105223602.5965-1-stephen@networkplumber.org> <20201105223602.5965-6-stephen@networkplumber.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20201105223602.5965-6-stephen@networkplumber.org> Subject: Re: [dpdk-dev] [PATCH v9 5/6] doc: change references to blacklist and whitelist 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" On Thu, Nov 05, 2020 at 02:36:01PM -0800, Stephen Hemminger wrote: > There are two areas where documentation needed update. > The first was use of whitelist when describing address > filtering. > > The other is the legacy -w whitelist option for PCI > which is used in many examples > > Signed-off-by: Stephen Hemminger > Acked-by: Luca Boccassi > --- > - .//app/dpdk-testpmd -c 0x300 -w 0002:02:00.0 -- --portmask=0x1 --nb-cores=1 --port-topology=loop --rxq=1 --txq=1 > + .//app/dpdk-testpmd -c 0x300 -a 0002:02:00.0 \ > + -- --portmask=0x1 --nb-cores=1 --port-topology=loop --rxq=1 --txq=1 Git apply complains about whitespace before tab here. For the line continuation it should be fine to just indent with spaces. /Bruce