From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-wm0-f66.google.com (mail-wm0-f66.google.com [74.125.82.66]) by dpdk.org (Postfix) with ESMTP id A393A7D30 for ; Fri, 23 Mar 2018 13:58:31 +0100 (CET) Received: by mail-wm0-f66.google.com with SMTP id l9so3421042wmh.2 for ; Fri, 23 Mar 2018 05:58:31 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=6wind-com.20150623.gappssmtp.com; s=20150623; h=date:from:to:cc:subject:message-id:references:mime-version :content-disposition:in-reply-to; bh=GO+sZiWthifrlwpJ/6e2MdrkZjJ2Sy7XnrCEKvqsir4=; b=mKLy3urwHzNnAzB2lQGs9X42rFslHbQoggi3o50LoaqgxM7iatS0oOfm5wrzKdiUfy PtS4BBdMAwiH4U3uJkVDcPseIWfPtc8AkIX+iksZdp+VYG3qR7AFCMAAGNKpgEqXzVn2 fLnakZMFYupREFnGUmraV3dEMOMBD1zmvrnUMjuzsyOTO6v5tzYnPUxE0XfbGGBV9cN1 XbD7kM4epLDSDm+2EzHfWMqbeMIjaArPtU0o9jBIR/fGoZ1yotaYX+cyds1RCO8hafwY jUAjgVf7YWsnOjkVefSvxmQyudWDAIQU3xiVPy3HlP4OzL4mlkbxL8FLGbgkQQTm7qMq BaZw== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:date:from:to:cc:subject:message-id:references :mime-version:content-disposition:in-reply-to; bh=GO+sZiWthifrlwpJ/6e2MdrkZjJ2Sy7XnrCEKvqsir4=; b=O8Y/3q6eu5usG51AZQ6goT+0IrIG7uMrPT93IzjLiUb+GxJlzEZSdSsVV1C/2ANwbF fXS1M6y0MvzsFHOo32D7Iu4SCCHaAlxlw6rTmSto15FEt+SnoMOBkLTnXLbb9A53CY+V PXYLxs3VHT4BfoX1qH+VGTwq74CCTf+25K5qMrC6/WZ/7Cwqfd1pKgI1RFygwhgv87st QUqp0G1GWH+jtqC+BvQMCKr9oVE32IkLMaaON1yrAml61PA7BA8hKS0AymFPhjlUYykd ykP/qsYduxPrnLrBVDDYvzyFcsvYvKp/18k6PBp4PxAMYE6aCa1SsM6P9dhjT7U/T1Ci Nf1g== X-Gm-Message-State: AElRT7GjrrzRNyDim+uEoDWQuoW48hj8q+rczLCCd/HfUfLh0S8IGlLf Z7pQ+/KeBRDypBRrjEeNn5HSejYZ X-Google-Smtp-Source: AG47ELuzERgjJX61VoEhAg3TSJNrLGW6ax4nEvVkwjdIvX51lH1jouVNRXDL+YP7xrwo3st0eaitqw== X-Received: by 10.28.56.132 with SMTP id f126mr6778951wma.118.1521809910819; Fri, 23 Mar 2018 05:58:30 -0700 (PDT) Received: from 6wind.com (host.78.145.23.62.rev.coltfrance.com. [62.23.145.78]) by smtp.gmail.com with ESMTPSA id 69sm12519405wmn.9.2018.03.23.05.58.30 (version=TLS1_2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Fri, 23 Mar 2018 05:58:30 -0700 (PDT) Date: Fri, 23 Mar 2018 13:58:16 +0100 From: Adrien Mazarguil To: dev@dpdk.org Cc: stable@dpdk.org Message-ID: <20180323124725.15806-9-adrien.mazarguil@6wind.com> References: <20180323124725.15806-1-adrien.mazarguil@6wind.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20180323124725.15806-1-adrien.mazarguil@6wind.com> X-Mailer: git-send-email 2.11.0 Subject: [dpdk-dev] [PATCH v1 8/9] ethdev: fix missing boolean values in flow command 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: , X-List-Received-Date: Fri, 23 Mar 2018 12:58:31 -0000 Original implementation lacks the on/off toggle. This patch shows up as a fix because it has been a popular request ever since the first DPDK release with the original implementation but was never addressed. Fixes: abc3d81aca1b ("app/testpmd: add item raw to flow command") Cc: stable@dpdk.org Signed-off-by: Adrien Mazarguil --- app/test-pmd/cmdline_flow.c | 1 + 1 file changed, 1 insertion(+) diff --git a/app/test-pmd/cmdline_flow.c b/app/test-pmd/cmdline_flow.c index 38aa6099d..f2be10d20 100644 --- a/app/test-pmd/cmdline_flow.c +++ b/app/test-pmd/cmdline_flow.c @@ -2695,6 +2695,7 @@ static const char *const boolean_name[] = { "false", "true", "no", "yes", "N", "Y", + "off", "on", NULL, }; -- 2.11.0