From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from dpdk.org (dpdk.org [92.243.14.124]) by inbox.dpdk.org (Postfix) with ESMTP id 2501FA0597; Fri, 10 Apr 2020 01:13:17 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 62C8F1D14A; Fri, 10 Apr 2020 01:13:16 +0200 (CEST) Received: from mail-lf1-f51.google.com (mail-lf1-f51.google.com [209.85.167.51]) by dpdk.org (Postfix) with ESMTP id A7EDA1C238 for ; Fri, 10 Apr 2020 01:13:14 +0200 (CEST) Received: by mail-lf1-f51.google.com with SMTP id h6so176645lfc.0 for ; Thu, 09 Apr 2020 16:13:14 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=semihalf-com.20150623.gappssmtp.com; s=20150623; h=subject:references:to:from:message-id:date:user-agent:mime-version :in-reply-to:content-language:content-transfer-encoding; bh=CgzddY2xEf56my7XEI7py00yOUuhm+LqPpdPyAQJxpg=; b=UkcKfmNi9zz7WHAR9da8jAIJykysp7er7sF7aguVcLDAmBnzzYmUkIaeBrcqGtbpPg 8iTdcwe8QjwGsF+R4uAp/QkgJzRDYWHZ2Vz8+NfLusVjiGq2Hig2o+OikbyebuqhfGpn DSX0ZZiIWMeBw7qByPlT3ZQy/dVnlQsgVxK4XfGxgFeGWt9i7217+N8QT5m3qyljGYjR zNKRxuxD65VenJ3We+KPzT2y63GLhMcyWCn+WnfvYZ6dmdyC8UcgUQWAO7udAAhLkGdT /DlI6bZEZBuhJfYayvbu/oTyCM83ZHI5Ji/qq397HusaKKKCkNe2eaGjMB1y7+bG1ppv vlAw== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:subject:references:to:from:message-id:date :user-agent:mime-version:in-reply-to:content-language :content-transfer-encoding; bh=CgzddY2xEf56my7XEI7py00yOUuhm+LqPpdPyAQJxpg=; b=L90aO178+tZuZ/HffWIR6M6mxP0G8LT1lWYRHvuQPwXg5NZXwfDM94A0LFyDS6YRtq Js+lM7g5nK8FiFqdjxoTwZO6VMklx7zBDqN2njP/ryamiZlib2Bx47l0QHp5+OTZWdnG KVy7Zw8KHeJFbLFPu/cT6GMfPcliut8+9FNEj4ml/a/UqqSfTkbFSJKjv5nSyfqhS79Y v2Xvs5tEQU+Kvf1eb/9oEEhX1Zw85ekG5PFkyHFMX4L4jPeLTCjoPYcYK0br6OODOjR9 xa4xpcgoQYdlD2b+PzYInhFnJuLx5MfhtOb262DZrBfAdPckvllF60NigVK6/C19lsoq o+0w== X-Gm-Message-State: AGi0PuZXyhaj5+lMPba4bjnHL9cgBk/MfijB3F7q/MHg41M9bD4xyimK TwcUw7kVHjdIRcO6ihasLo/fCKe7ypE= X-Google-Smtp-Source: APiQypKjEX4IlPIuNRZ21m3FW2yedOA3SYZ57azLrhrStN31PuJYM4fkEKEQQfIW7B4W5XW1iE8QHw== X-Received: by 2002:a05:6512:6c4:: with SMTP id u4mr925649lff.89.1586473993977; Thu, 09 Apr 2020 16:13:13 -0700 (PDT) Received: from [192.168.8.100] (user-5-173-33-152.play-internet.pl. [5.173.33.152]) by smtp.gmail.com with ESMTPSA id x17sm101087ljc.33.2020.04.09.16.13.13 (version=TLS1_3 cipher=TLS_AES_128_GCM_SHA256 bits=128/128); Thu, 09 Apr 2020 16:13:13 -0700 (PDT) References: <20200331192945.2466880-1-jerinj@marvell.com> <20200405085613.1336841-1-jerinj@marvell.com> To: Jerin Jacob Kollanukkaran , dev From: Andrzej Ostruszka Message-ID: <7c6e060b-8277-6419-b730-06864259053c@semihalf.com> Date: Fri, 10 Apr 2020 01:13:09 +0200 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:68.0) Gecko/20100101 Firefox/68.0 Thunderbird/68.4.1 MIME-Version: 1.0 In-Reply-To: <20200405085613.1336841-1-jerinj@marvell.com> Content-Type: text/plain; charset=utf-8 Content-Language: en-US Content-Transfer-Encoding: 8bit Subject: Re: [dpdk-dev] [PATCH v4 00/29] graph: introduce graph subsystem 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: , Errors-To: dev-bounces@dpdk.org Sender: "dev" On 4/5/20 10:55 AM, jerinj@marvell.com wrote: > From: Jerin Jacob > > Using graph traversal for packet processing is a proven architecture > that has been implemented in various open source libraries. > > Graph architecture for packet processing enables abstracting the data > processing functions as “nodes” and “links” them together to create a > complex “graph” to create reusable/modular data processing functions. > > The patchset further includes performance enhancements and modularity > to the DPDK as discussed in more detail below. [...] Jerin et al. I have finished the review and have no more comments ... apart from that I like it :). With regards Andrzej Ostruszka