From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by inbox.dpdk.org (Postfix) with ESMTP id 62A87A0032; Thu, 17 Feb 2022 09:55:58 +0100 (CET) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 55819410FF; Thu, 17 Feb 2022 09:55:58 +0100 (CET) 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 B4B4040042 for ; Thu, 17 Feb 2022 09:55:56 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1645088156; 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=waQolHh+MMEiK9WJQvNCuXCuHlfI6KryPFXah9nVC9c=; b=KQkxIN2mRKgeVibF7WSdmhb0ma8Yqg7/hGCKs6lTYfPiqADnu2Js45MCNIlSo6M5NsZfAI 7fIBn+C5eBF8CpgXzq4L8HLAkbAvNJEP68Wzus128kSTxK/otwig+u5G0kWVyAXvviDBWc +sYBP6xXfrNkPDyFV0PdqsgGFfUe05k= Received: from mimecast-mx01.redhat.com (mimecast-mx01.redhat.com [209.132.183.4]) by relay.mimecast.com with ESMTP with STARTTLS (version=TLSv1.2, cipher=TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384) id us-mta-64-sPvXARe1NEe30amb1tL9lA-1; Thu, 17 Feb 2022 03:55:54 -0500 X-MC-Unique: sPvXARe1NEe30amb1tL9lA-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 8B13F801ADB; Thu, 17 Feb 2022 08:55:53 +0000 (UTC) Received: from [10.39.208.17] (unknown [10.39.208.17]) by smtp.corp.redhat.com (Postfix) with ESMTPS id 6293862D72; Thu, 17 Feb 2022 08:55:52 +0000 (UTC) Message-ID: Date: Thu, 17 Feb 2022 09:55:50 +0100 MIME-Version: 1.0 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:91.0) Gecko/20100101 Thunderbird/91.5.0 Subject: Re: [PATCH] examples/vhost: delete DMA type parameter help info To: Chengwen Feng , thomas@monjalon.net Cc: dev@dpdk.org, chenbo.xia@intel.com References: <20220217032451.15115-1-fengchengwen@huawei.com> From: Maxime Coquelin In-Reply-To: <20220217032451.15115-1-fengchengwen@huawei.com> X-Scanned-By: MIMEDefang 2.79 on 10.5.11.11 Authentication-Results: relay.mimecast.com; auth=pass smtp.auth=CUSA124A263 smtp.mailfrom=maxime.coquelin@redhat.com X-Mimecast-Spam-Score: 0 X-Mimecast-Originator: redhat.com Content-Language: en-US Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit 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 On 2/17/22 04:24, Chengwen Feng wrote: > The dma-type parameter was not support when integrate dmadev in vhost, > but the help info still exist, this patch deletes it. > > Fixes: 53d3f4778c1d ("vhost: integrate dmadev in asynchronous data-path") > > Signed-off-by: Chengwen Feng > --- > examples/vhost/main.c | 1 - > 1 file changed, 1 deletion(-) > > diff --git a/examples/vhost/main.c b/examples/vhost/main.c > index 3e784f5c6f..68afd398bb 100644 > --- a/examples/vhost/main.c > +++ b/examples/vhost/main.c > @@ -608,7 +608,6 @@ us_vhost_usage(const char *prgname) > " --tx-csum [0|1] disable/enable TX checksum offload.\n" > " --tso [0|1] disable/enable TCP segment offload.\n" > " --client register a vhost-user socket as client mode.\n" > - " --dma-type register dma type for your vhost async driver. For example \"ioat\" for now.\n" > " --dmas register dma channel for specific vhost device.\n", > prgname); > } Applied to dpdk-next-virtio/main. Thanks, Maxime