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 51DA2A0527; Mon, 9 Nov 2020 10:11:54 +0100 (CET) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 745C75928; Mon, 9 Nov 2020 10:11:52 +0100 (CET) Received: from us-smtp-delivery-124.mimecast.com (us-smtp-delivery-124.mimecast.com [216.205.24.124]) by dpdk.org (Postfix) with ESMTP id EE8FF5916 for ; Mon, 9 Nov 2020 10:11:49 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1604913108; 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=9n0yMvkhnaEdphpI6eiS8Ems+kWSvA5WUzKINFqv8b0=; b=IhUROqFnrgu7xLUjANe2GPdCoT6sxeLnkhHk2rdB3mTHvmtF2MPf11bthI7NBkOOU6xhHv 6lNuMn/sUIrX+0wAovYS02YngIZpCsIfF3vRf1leDGPTOF63Rdf5v/Owv//syhPWCervwe oYGVuWwHPwk6twiMe9bEMY+uneCEVQU= 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-297-YtlCOKrtNxClNgexdvPrlA-1; Mon, 09 Nov 2020 04:11:44 -0500 X-MC-Unique: YtlCOKrtNxClNgexdvPrlA-1 Received: from smtp.corp.redhat.com (int-mx07.intmail.prod.int.phx2.redhat.com [10.5.11.22]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mimecast-mx01.redhat.com (Postfix) with ESMTPS id 76D3257085; Mon, 9 Nov 2020 09:11:43 +0000 (UTC) Received: from [10.36.110.32] (unknown [10.36.110.32]) by smtp.corp.redhat.com (Postfix) with ESMTPS id 6F57610074EE; Mon, 9 Nov 2020 09:11:42 +0000 (UTC) To: Ibtisam Tariq , chenbo.xia@intel.com Cc: dev@dpdk.org, roy.fan.zhang@intel.com References: <20201102113825.5550-1-ibtisam.tariq@emumba.com> From: Maxime Coquelin Message-ID: <85c6648a-4d53-6bc9-3f73-8e9d584b3904@redhat.com> Date: Mon, 9 Nov 2020 10:11:40 +0100 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:78.0) Gecko/20100101 Thunderbird/78.3.1 MIME-Version: 1.0 In-Reply-To: <20201102113825.5550-1-ibtisam.tariq@emumba.com> X-Scanned-By: MIMEDefang 2.84 on 10.5.11.22 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-Type: text/plain; charset=utf-8 Content-Language: en-US Content-Transfer-Encoding: 7bit Subject: Re: [dpdk-dev] [PATCH] example/vhost_crypto: add new line character in usage 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 11/2/20 12:38 PM, Ibtisam Tariq wrote: > Add new line character(\n) in the usage of vhost_crypto example for > better readability > > Fixes: 709521f4c2c ("examples/vhost_crypto: support multi-core") > Cc: roy.fan.zhang@intel.com > > Signed-off-by: Ibtisam Tariq > --- > examples/vhost_crypto/main.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/examples/vhost_crypto/main.c b/examples/vhost_crypto/main.c > index 11ad49159..29c8f7228 100644 > --- a/examples/vhost_crypto/main.c > +++ b/examples/vhost_crypto/main.c > @@ -195,7 +195,7 @@ vhost_crypto_usage(const char *prgname) > { > printf("%s [EAL options] --\n" > " --%s ,SOCKET-FILE-PATH\n" > - " --%s (lcore,cdev_id,queue_id)[,(lcore,cdev_id,queue_id)]" > + " --%s (lcore,cdev_id,queue_id)[,(lcore,cdev_id,queue_id)]\n" > " --%s: zero copy\n" > " --%s: guest polling\n", > prgname, SOCKET_FILE_KEYWORD, CONFIG_KEYWORD, > Reviewed-by: Maxime Coquelin Thanks, Maxime