From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-wm0-f54.google.com (mail-wm0-f54.google.com [74.125.82.54]) by dpdk.org (Postfix) with ESMTP id 33559298F for ; Wed, 24 Feb 2016 16:04:17 +0100 (CET) Received: by mail-wm0-f54.google.com with SMTP id a4so33875935wme.1 for ; Wed, 24 Feb 2016 07:04:17 -0800 (PST) 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:organization:user-agent :in-reply-to:references:mime-version:content-transfer-encoding :content-type; bh=DJ4iEKvClGJ/h/DxIyi73zOEVacUG9jEhNH5UduXUuY=; b=JD7nfgvT7MyRi/bkfmPpieojC51/zPTpknOYvIRm7bAz9AEsIo6PTV821eHQBIdlYT rG05xWEv8QD/8uhjv2gVLqiJaKfFZ+Zsq86NHuPqK4k67A0hla3L+vJhlKH3mFAopgsL bCw0Tq2Mc9sYtsY5C/iZEmyNGAUvUMq319jS4DoO/ZauRyTn5cVw1cToYP9vBtW4DCI3 ReeCgO01yOyWfPEdzsMpW2S4PMYDM54fmqkY9A39O5/GZE8SGUHFVa5wHuynIslt00L2 E7si5eKsDr3JUbyzJ0CE6YclATqo/JhdsiAgY93lQbgL1o+i62FiVy4+7vXg2QoiFeMX R5jA== 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:organization :user-agent:in-reply-to:references:mime-version :content-transfer-encoding:content-type; bh=DJ4iEKvClGJ/h/DxIyi73zOEVacUG9jEhNH5UduXUuY=; b=AP9IC05SASbLONB1RNkW6HMdA/mjlv4BHiJ6GWXBWGeURq3ZVZy56r9+L8bXI8HaVR HVESJRCT/DvhF/Zoob8r69FHBlY5cvG1rEc99YEWMEeW7/UHFXXY7FOXBkIzRZEhN+bl JQCfE/8rSCvTkQdwo6gLzExwfv75nKXbcSD8e1wVonHJ6L2jTulj9IzRfwxVwZwWJwvt ayunfpaJnj0Fpqi7mzIuJBNwqhYoLMLmywWy8/Yctbuw2i9RR3/T9CDfK6mnOH9SEt2v DMWTOKcpUYPq/4vAQwhVHJBu8Vuz20HXRGllMLesuxAfFRxGadaef70HKTI7cOcMQQJg 5COA== X-Gm-Message-State: AG10YOQOktkDpxWDJbpJzSH0yzUr06IOtt6fFX8L9olwxzSq85uPODVS+g2jZVIQLCv20z+R X-Received: by 10.194.78.37 with SMTP id y5mr39247973wjw.78.1456326256974; Wed, 24 Feb 2016 07:04:16 -0800 (PST) Received: from xps13.localnet (171.36.101.84.rev.sfr.net. [84.101.36.171]) by smtp.gmail.com with ESMTPSA id bg1sm3421728wjc.27.2016.02.24.07.04.15 (version=TLSv1/SSLv3 cipher=OTHER); Wed, 24 Feb 2016 07:04:16 -0800 (PST) From: Thomas Monjalon To: Rahul Lakkireddy Date: Wed, 24 Feb 2016 16:02:42 +0100 Message-ID: <13893420.AuWBYNZ43L@xps13> Organization: 6WIND User-Agent: KMail/4.14.10 (Linux/4.1.6-1-ARCH; KDE/4.14.11; x86_64; ; ) In-Reply-To: <20160224144313.GF19616@bricha3-MOBL3> References: <20160224144313.GF19616@bricha3-MOBL3> MIME-Version: 1.0 Content-Transfer-Encoding: 7Bit Content-Type: text/plain; charset="us-ascii" Cc: dev@dpdk.org, Kumar Sanghvi , Nirranjan Kirubaharan Subject: Re: [dpdk-dev] [PATCH 01/10] ethdev: add a generic flow and new behavior switch to fdir 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: Wed, 24 Feb 2016 15:04:17 -0000 2016-02-24 14:43, Bruce Richardson: > On Wed, Feb 03, 2016 at 02:02:22PM +0530, Rahul Lakkireddy wrote: > > Add a new raw packet flow that allows specifying generic flow input. > > > > Add the ability to provide masks for fields in flow to allow range of > > values. > > > > Add a new behavior switch. > > > > Add the ability to provide behavior arguments to allow rewriting matched > > fields with new values. Ex: allows to provide new ip and port addresses > > to rewrite the fields of packets matching a filter rule before NAT'ing. > > > Thomas, any comments as ethdev maintainer? Yes, some comments. First, there are several different changes in the same patch. It must be split. Then I don't understand at all the raw flow filter. What is a raw flow? How behavior_arg must be used?