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 3B4B7A04C0 for ; Sun, 17 Nov 2019 18:12:59 +0100 (CET) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id EDF632BAA; Sun, 17 Nov 2019 18:12:58 +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 845452142 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=1574010774; 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=QK/5lAuudpggze3cqRmEClU8OJcl0Iaawo1lQVUuGDGcxDBwH9fXPRLYzEldet4sDzQFjC F+DKvU7+UhvwLqeF5cr8iF5lHlJqRgmcEFOgysyxW81ZUaL+NW0zdZISU3Xms8WW7/U0IF enbHPxjB576kR3WC7m1yy5+XDF/5b18= Received: from mail-vk1-f200.google.com (mail-vk1-f200.google.com [209.85.221.200]) (Using TLS) by relay.mimecast.com with ESMTP id us-mta-253-1mx5-QpvMeyqzK8lhhMb6Q-1; Sun, 17 Nov 2019 12:12:52 -0500 Received: by mail-vk1-f200.google.com with SMTP id y75so7181909vkc.0 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=WQqWoSeITCQ2VdaSfJIWKsBMPyedad7wXYM5pxteg3CqaOoe4p57zoP1jqvXz/cMHz ONGMjfLwoykExzEW9KDthoPTgavDtEwXg0VLAGRDW6PHxf4IpovceUG9PNGBqUeD+EsT LZtW1vKhS0kllY46JrCSGO0rP/az2S1iACYXUXeQ9c4kY+IYtW634zR5G3FwehgbY3qs 2nnUwVgyz+WQeXuZR1E5tyUx0DRSzSIidzrEXw0dEoR0sThmyi+JcN81Txns1ICS4iH0 RC5v9dxhsQ5TMdWLueZY4FhcVoJK5RL5f9C0mFiBIvtyADciI9uWCrCnZZSkP6iOjBgr kqgA== X-Gm-Message-State: APjAAAXQFOlZU8MHpED3iayAMX8jU+TScD+4gBn6usof3chG53rjZuSn F1qSUKk/k4jOu5aaEWLGbyYUMOjcfxO/1YS3PvWuw+1z1aVTI64g+/d6IuKvy0+pmOVogO8yUTc MNBNurAfDnu8VJbEOzRY6rcs= X-Received: by 2002:a67:7d95:: with SMTP id y143mr16020836vsc.39.1574010771863; 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: 1mx5-QpvMeyqzK8lhhMb6Q-1 X-Mimecast-Spam-Score: 0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable Subject: Re: [dpdk-stable] [PATCH] app/testpmd: report invalid command line parameter X-BeenThere: stable@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: patches for DPDK stable branches List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: stable-bounces@dpdk.org Sender: "stable" 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