From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from out4-smtp.messagingengine.com (out4-smtp.messagingengine.com [66.111.4.28]) by dpdk.org (Postfix) with ESMTP id C08E1DD2 for ; Wed, 25 Oct 2017 12:35:26 +0200 (CEST) Received: from compute1.internal (compute1.nyi.internal [10.202.2.41]) by mailout.nyi.internal (Postfix) with ESMTP id 12537223E2; Wed, 25 Oct 2017 06:35:26 -0400 (EDT) Received: from frontend1 ([10.202.2.160]) by compute1.internal (MEProxy); Wed, 25 Oct 2017 06:35:26 -0400 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=monjalon.net; h= cc:content-transfer-encoding:content-type:date:from:in-reply-to :message-id:mime-version:references:subject:to:x-me-sender :x-me-sender:x-sasl-enc; s=mesmtp; bh=vFb81YVg+rrjrne/G1iv/nxkrc TuR4/n59a70nXVh20=; b=c4dolwWlo0Mv/+2o07HD3ltVUhV1nHe42o3t3PL1S4 h+b9RXlRdnFuKkGfyl4xs47UceEc0UQt7SQgy0DbX7Tg1Vwh+8etO3YkcTg9HPEe Qd5TQKd7TE9DMAxOo4iJkloQRHqECQFZoG56MAFOVJmmyjWhYkN7ifNKipT3SCbm M= DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d= messagingengine.com; h=cc:content-transfer-encoding:content-type :date:from:in-reply-to:message-id:mime-version:references :subject:to:x-me-sender:x-me-sender:x-sasl-enc; s=fm1; bh=vFb81Y Vg+rrjrne/G1iv/nxkrcTuR4/n59a70nXVh20=; b=AotX0vLl4pL1WpXhXkenWd Do+uH2cGKSsuQ0njdWaiPcj/+Ord/urieSSdTFTM5CjdF2N2qCJ/R3HrhNw3C+HZ z2//IBZEJkFLG8RkEMfi3uHlI3+iWatVihzXUE8vVWbAwG41ugnzgS3opiUtWcwm xNYrjj70oJYraPKxe72bYJ8OTtk9Zo7RI7tBgdgoWlgDPqgm6De8CiWEU8GWLdt6 YrxoG39VEYOm773mxLsjfMxnZn+mLX09jKOb6+ym56iHtsGSAZlAPD5T65UzYESi wxG491bGsEogOMkHqQv9/f21RjLt/bl09l3GVbETbMMHiPqmvCb74UidUwvM51XQ == X-ME-Sender: Received: from xps.localnet (184.203.134.77.rev.sfr.net [77.134.203.184]) by mail.messagingengine.com (Postfix) with ESMTPA id BADE27FA78; Wed, 25 Oct 2017 06:35:25 -0400 (EDT) From: Thomas Monjalon To: Ori Kam Cc: dev@dpdk.org, adrien.mazarguil@6wind.com, john.mcnamara@intel.com Date: Wed, 25 Oct 2017 12:35:24 +0200 Message-ID: <1840091.2XWlWDJWeC@xps> In-Reply-To: <1508408108-8672-1-git-send-email-orika@mellanox.com> References: <1508408108-8672-1-git-send-email-orika@mellanox.com> MIME-Version: 1.0 Content-Transfer-Encoding: 7Bit Content-Type: text/plain; charset="us-ascii" Subject: Re: [dpdk-dev] [PATCH 1/2] examples/flow_filtering: demo of simple rte flow 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: Wed, 25 Oct 2017 10:35:26 -0000 Hi, 19/10/2017 12:15, Ori Kam: > examples/flow_filtering/Makefile | 17 +++ > examples/flow_filtering/flow_blocks.c | 150 +++++++++++++++++++++ > examples/flow_filtering/main.c | 244 ++++++++++++++++++++++++++++++++++ You must add this example in examples/Makefile. You must also add an entry in the MAINTAINERS file. You can probably squash this patch with the doc patch. > --- /dev/null > +++ b/examples/flow_filtering/flow_blocks.c > @@ -0,0 +1,150 @@ > +/*- > + * BSD LICENSE > + * > + * Copyright 2017 Mellanox. > + * > + * Redistribution and use in source and binary forms, with or without > + * modification, are permitted provided that the following conditions > + * are met: > + * > + * * Redistributions of source code must retain the above copyright > + * notice, this list of conditions and the following disclaimer. > + * * Redistributions in binary form must reproduce the above copyright > + * notice, this list of conditions and the following disclaimer in > + * the documentation and/or other materials provided with the > + * distribution. > + * * Neither the name of 6WIND S.A. nor the names of its I guess you mean Mellanox here.