From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-wm0-f49.google.com (mail-wm0-f49.google.com [74.125.82.49]) by dpdk.org (Postfix) with ESMTP id 219C095A3 for ; Fri, 13 Nov 2015 17:33:41 +0100 (CET) Received: by wmdw130 with SMTP id w130so36118034wmd.0 for ; Fri, 13 Nov 2015 08:33:41 -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=6H5wa9jvaclq2R/RZbXLkGG1ZzB08X6kGq0dkFssUbc=; b=LAhcFybz83gr9ZlbN5lvQVu98IPZywiHNi3eSdt4dDomYvjUOxNkOe1mdEMxlbVXRa n8lpnEHNbtD1t6VJb6JuOwqcD6AYRuQIPmzWAZl8ya9YVty+xL3YJAHMw/k9zHVjCuZ7 QGEwQ94DGiXP+K61ZGvwf4P0qpp09sWUO7YmHzpvrmMnbDwBm81wqusUMjHFglFhCr5w rwT4Rz6l6lQ61xLLGlCNwn9d7CKBEc1rFOlDKAgcSDExYcWOicJrVYiKIo2jzwjp5ml4 aOLcGSe3lCVuVr18XKbcP034ZMfXdwNqY9YSCJ1vGj10UiTb6OAxkOdYbu/8NDp3Hs23 UqsQ== 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=6H5wa9jvaclq2R/RZbXLkGG1ZzB08X6kGq0dkFssUbc=; b=hb+smoQWz8BIh2xQipDxWzcVk/uUv1N9WYS5n37gpseLYA6Z91RCdzl0Rh7M4UyN8Y DoNTnehCS22yGIJInxASeCoSHPcVxcXtFFk3sRJwU//mGK432lM7IBHnxy5GJjmxnUyO jv+xy5Ls1tIT3Wy1fKwp5ZWFMqo4fX1Gqqk/LYmYXeRhMEhA+uOff3lY2ZAz/WJRCn6c VGkfuilrDjCNXvRVwV4HgmmiTSiQ3Ba4qcLHAV252ZW+aaDz8uugYqkaNEM6U7FRmbjt lMMdrtp5tNd+HzzFQjkYNFOiY1ep+ctJq5lfjeRSA8FmuTK8ghXcz7bVzwn7hpEoVs/o lK1w== X-Gm-Message-State: ALoCoQlb1Bu26N2WEA0I+SmHRpxN1EgZrsUf5alB9Zq2cw6w2DaxvGxm61l7mQZmQokFizxn1tr9 X-Received: by 10.28.21.9 with SMTP id 9mr5071394wmv.22.1447432420976; Fri, 13 Nov 2015 08:33:40 -0800 (PST) Received: from xps13.localnet (136-92-190-109.dsl.ovh.fr. [109.190.92.136]) by smtp.gmail.com with ESMTPSA id s189sm4678707wmf.16.2015.11.13.08.33.38 (version=TLSv1/SSLv3 cipher=OTHER); Fri, 13 Nov 2015 08:33:38 -0800 (PST) From: Thomas Monjalon To: dev@dpdk.org, Fan Zhang Date: Fri, 13 Nov 2015 17:32:25 +0100 Message-ID: <3632155.sWGWsa4oGk@xps13> Organization: 6WIND User-Agent: KMail/4.14.10 (Linux/4.1.6-1-ARCH; KDE/4.14.11; x86_64; ; ) In-Reply-To: <1447432188-5033-1-git-send-email-roy.fan.zhang@intel.com> References: <1447432188-5033-1-git-send-email-roy.fan.zhang@intel.com> MIME-Version: 1.0 Content-Transfer-Encoding: 7Bit Content-Type: text/plain; charset="us-ascii" Cc: Maciej Gajdzica Subject: Re: [dpdk-dev] [PATCH v2] ip_pipeline: add flow actions pipeline 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, 13 Nov 2015 16:33:41 -0000 2015-11-13 16:29, Fan Zhang: > examples/ip_pipeline/Makefile | 2 + > examples/ip_pipeline/app.h | 1 + > examples/ip_pipeline/init.c | 4 + > .../ip_pipeline/pipeline/pipeline_actions_common.h | 83 + > examples/ip_pipeline/pipeline/pipeline_common_fe.h | 5 +- > examples/ip_pipeline/pipeline/pipeline_firewall.c | 10 +- > .../ip_pipeline/pipeline/pipeline_flow_actions.c | 1814 ++++++++++++++++++++ > .../ip_pipeline/pipeline/pipeline_flow_actions.h | 78 + > .../pipeline/pipeline_flow_actions_be.c | 973 +++++++++++ > .../pipeline/pipeline_flow_actions_be.h | 168 ++ > .../pipeline/pipeline_flow_classification.c | 18 +- > examples/ip_pipeline/pipeline/pipeline_routing.c | 22 +- > 12 files changed, 3155 insertions(+), 23 deletions(-) It is a huge patch, especially for an example. It may cause some code update more difficult to maintain. I wonder wether we should have some line number limits for the examples?