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 70534A04C0; Sun, 17 Nov 2019 18:12:57 +0100 (CET) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id CE15E2142; Sun, 17 Nov 2019 18:12:56 +0100 (CET) Received: from us-smtp-delivery-1.mimecast.com (us-smtp-1.mimecast.com [207.211.31.81]) by dpdk.org (Postfix) with ESMTP id 6FF1AF04 for ; Sun, 17 Nov 2019 18:12:54 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1574010773; 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=2NJNjth3JFVNBwhFktnmMiWTC+8Mq4jUdEfbV6yJoI4=; b=IYxBFOuAtiMccLUN4S9SvM3cBG92Liy3XTF9s+GZL8zUH+SGO/eMUPravJjnL76UbI3tJu AVGMQUTqTP8PgMEtjNNdT7johnXgtE2dL4ivUPf8Tw5o8738CRSaLN5g/OUBesyBuFF02o exg6A3KXXa4qiRtzuWj+CJAxcpHVDzw= Received: from mail-vs1-f69.google.com (mail-vs1-f69.google.com [209.85.217.69]) (Using TLS) by relay.mimecast.com with ESMTP id us-mta-29-m_3EnHprM2O4nZ0TtAQxiA-1; Sun, 17 Nov 2019 12:12:52 -0500 Received: by mail-vs1-f69.google.com with SMTP id b12so2193962vsh.10 for ; Sun, 17 Nov 2019 09:12:52 -0800 (PST) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:mime-version:references:in-reply-to:from:date :message-id:subject:to:cc; bh=76g+DFYrv3EHow6msrL+uq8lKeUD6IYtn6ydP+12JhA=; b=KcUU9yEPYc+nA4JTLr+GnoIkwJfdQkBtR/NM9XznN6UmO3M+I6cDlFtsUu8k7HRhuS 6uOKuySVYyKNd+OKdRfQfArr3nb21vtaiSlzD+xvp20s0/6sqbDQqc0XUDo/xq/SertE hPF2fPN67XARGNoFRqGnY0f5X9iFKFF3ZDq8Ct7oZGzy8cWCqXprgQoNxateCKErdKwS JZW477m8k58jeh+Hl2rfffvgTNLqUUpB1y6Da7/AR2EdlJOu/jJ6HFzNPQvf6OV4gQmJ MmaJmJTEABuGM/JmjCbpjeTHHdiLPD841QZ5VL11EfH/X1dSFu9gzdqzRNLp8t5Aktuc 28Bw== X-Gm-Message-State: APjAAAXFvah1BCKhaaFrxcnxwcbH2ESY7CGEc14qWobrXOxCPudVClTr C5a3Sd6iNekvh/vICjoSGH1du2lWC6P40Vrtnu9XdfzND+FVqwrp/bK6Fv5B7lOHW90xea22tns 0Ol+IhLcxaCQ9cVTFwms= X-Received: by 2002:a67:7d95:: with SMTP id y143mr16020830vsc.39.1574010771861; Sun, 17 Nov 2019 09:12:51 -0800 (PST) X-Google-Smtp-Source: APXvYqy9hCRWMRZoLBnvIdFUwJKNKIHYhS9VstVAbmo0gY6rlTplajK4bjnKQAJJSKpbkAdhxnXzrf++YyR7YfOGXbs= X-Received: by 2002:a67:7d95:: with SMTP id y143mr16020814vsc.39.1574010771536; Sun, 17 Nov 2019 09:12:51 -0800 (PST) MIME-Version: 1.0 References: <20191117171013.17373-1-david.marchand@redhat.com> In-Reply-To: <20191117171013.17373-1-david.marchand@redhat.com> From: David Marchand Date: Sun, 17 Nov 2019 18:12:40 +0100 Message-ID: To: dev Cc: Thomas Monjalon , "Yigit, Ferruh" , dpdk stable , Wenzhuo Lu , Jingjing Wu , Bernard Iremonger X-MC-Unique: m_3EnHprM2O4nZ0TtAQxiA-1 X-Mimecast-Spam-Score: 0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable Subject: Re: [dpdk-dev] [dpdk-stable] [PATCH] app/testpmd: report invalid command line parameter 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 Sun, Nov 17, 2019 at 6:10 PM David Marchand wrote: > After this patch: > $ ./master/app/testpmd --no-huge -m 512 --vdev net_null0 \ > --vdev net_null1 -- -i -nb-cores=3D2 --total-num-mbuf 2048 Sorry wrong example, s/-nb-cores/nb-cores/ > [...] > Invalid parameter: nb-cores=3D2 > EAL: Error - exiting with code: 1 > Cause: Command line incorrect But the output was correct. --=20 David Marchand