From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-wm0-f47.google.com (mail-wm0-f47.google.com [74.125.82.47]) by dpdk.org (Postfix) with ESMTP id CA6D16CBE for ; Fri, 23 Sep 2016 20:38:08 +0200 (CEST) Received: by mail-wm0-f47.google.com with SMTP id b130so45125803wmc.0 for ; Fri, 23 Sep 2016 11:38:08 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=6wind-com.20150623.gappssmtp.com; s=20150623; h=from:to:cc:subject:date:message-id:user-agent:in-reply-to :references:mime-version:content-transfer-encoding; bh=f38NsIpwcxlhOYzruL/T41ktqj9ZNS+ynnPYZGIzoLc=; b=k7UhBg/pPArGXmpGdxXA5W+f6PytRCSSmLXblpcm4zxdmZzkJDCzIqDZo5XjqQWPub Zyts8pe2s8A1whjkINmDWxel8n7sLKM0EogiRgkbhHQkScPpe6LtoqdDN8puw1dQMZwM rmfem0er/m2dWkAivdGpkyemoX8gdOoFl9nGtzxIZ/zyu3YpDbtnubYBecyAa15S4Uad BIsgoymQl6XbzKPFPk4Ln9kVmMkwpzQyDWMFWgJEOJEkwZemUADL3bTR6rf4Cfpt9ByF 2mxPA3Dz7FOAf985sEzpBsjL26hCpRR4cfWlySfwtT42ep/L6FUrhRxJp4y61n4pqS9E Mtvw== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:from:to:cc:subject:date:message-id:user-agent :in-reply-to:references:mime-version:content-transfer-encoding; bh=f38NsIpwcxlhOYzruL/T41ktqj9ZNS+ynnPYZGIzoLc=; b=O0V1FGDOiFj68wyq8zS4FOUWX6oi6PLuap1XWdmk9TVUjQuQ3XZxyLwTStwWN1MmAt qol3xA5xOcfeeYK4J9mTs8bmXM7zZrGZVCV7F713PVrrQVgGX5+AV1Jvh2y4syOV49L+ pu2BcHpXGf3L/4Fez7kFsJlAQtSG3i0aHuOV94/V3+N8mzmYqWk3ay5hzFn7bVTsmW6L 0xP9CceBy5XTdkoSvrrO6nHDeqYfbXPe/dbSjrh9/ffoVUfyUIwwpn1oFTIjd34W1peg tHluVQ4BK98wNSdIcu3U4KFCj2yDep6iXqukEmHY02vuiR53i9VrW+aWpY5RokXTxS8h Qd9g== X-Gm-Message-State: AA6/9RldpNO86v1lPB2y/mtFs4hqxwgtHXNdjo2/3yglMHtpuxvTTkK4StCDsFJ48+aJxLDb X-Received: by 10.194.44.69 with SMTP id c5mr2222008wjm.80.1474655888611; Fri, 23 Sep 2016 11:38:08 -0700 (PDT) Received: from xps13.localnet (244.202.154.77.rev.sfr.net. [77.154.202.244]) by smtp.gmail.com with ESMTPSA id r8sm8462424wjs.22.2016.09.23.11.38.07 (version=TLS1_2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Fri, 23 Sep 2016 11:38:07 -0700 (PDT) From: Thomas Monjalon To: dev@dpdk.org Cc: Frederico.Cadete-ext@oneaccess-net.com, frederico@cadete.eu, pablo.de.lara.guarch@intel.com Date: Fri, 23 Sep 2016 20:37:59 +0200 Message-ID: <1924651.XQXukuLhii@xps13> User-Agent: KMail/4.14.10 (Linux/4.5.4-1-ARCH; KDE/4.14.11; x86_64; ; ) In-Reply-To: <1471943445-20696-1-git-send-email-Frederico.Cadete-ext@oneaccess-net.com> References: <1471943445-20696-1-git-send-email-Frederico.Cadete-ext@oneaccess-net.com> MIME-Version: 1.0 Content-Transfer-Encoding: 7Bit Content-Type: text/plain; charset="us-ascii" Subject: Re: [dpdk-dev] [PATCH] testpmd: fix fdir command on MAC and tunnel modes X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: patches and discussions about DPDK List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 23 Sep 2016 18:38:09 -0000 Anyone to review please? 2016-08-23 11:10, Frederico.Cadete-ext@oneaccess-net.com: > The flow_director_filter commands has a pf|vf option for most modes > except for MAC-VLAN and tunnel. On Intel NIC's these modes are not > supported under virtualized environments. > But the application was checking that this field was parsed for these cases, > even though this token is not registered with the cmdline parser. > > This patch skips checking of this field for the commands that don't > accept it. > > Signed-off-by: Frederico Cadete