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 3B43FA0352; Mon, 4 Nov 2019 18:12:12 +0100 (CET) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 8F2632D13; Mon, 4 Nov 2019 18:12:11 +0100 (CET) Received: from mail-il1-f195.google.com (mail-il1-f195.google.com [209.85.166.195]) by dpdk.org (Postfix) with ESMTP id 5D76F2986 for ; Mon, 4 Nov 2019 18:12:10 +0100 (CET) Received: by mail-il1-f195.google.com with SMTP id m16so15463999iln.13 for ; Mon, 04 Nov 2019 09:12:10 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20161025; h=mime-version:references:in-reply-to:from:date:message-id:subject:to :cc; bh=4p7rUy2ZWHaZhdJAwFqvbAu/wY7DTVdVf8UjylRRJ7Y=; b=VHLq7drpKted/SanfhGSsKUjIHwQ2lxix3e7hje5x/rd5qEfPzvX440Rnir5CwjQKj IMG25xLStzrxtHezE1hYW+4zqwtPnVjSm4iSmAvxFNyOGldkdpsSKvYjUOMMWg3gRwd4 lafsOexhqXOTjiKaFc1SLx6psBDY3IAigXcr0KFyV+F9F1H6Gi9zuHq/+ynY4YkzliiM CFgcEP6bWmXxzqjvyumL+0FLEG7lq9q6gWDbTZsjPiqHxa9rW2YEussbSU7qpr3Czcrh hyTjwzqFDOf4acXxow+MVIU8SRN6Rh3icfIqrlStYES6QlHm9daPaeVupM5un/fxZ8oe kmhg== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:mime-version:references:in-reply-to:from:date :message-id:subject:to:cc; bh=4p7rUy2ZWHaZhdJAwFqvbAu/wY7DTVdVf8UjylRRJ7Y=; b=Yn5dyrKCuqc2fcgtex9KQBIGiuhcKddwCNt7pQQEdN1Ho8Z5DVNZJ07H47aH2eu92h QGmiAtHeoDvnyTnNpD0o7RbFVDomhiR+mT4XM4b9OWCE7kKzDflQdibGYJA3OUKDsqtT H/lD+1OcNE6GfJtFu2SC3W2T+hI+Q6pn27G6ZYf8d84JC78stHE6x8kGX/Bkiu6A+ouB vsEf5Y8vky7flvtq9D7+WT2nUZ72K8hGYN62N3cCTud4/+Kzzau1s2ShOSWOM5NQFYZU iA9S5qf4FZGU/guIFDlFp00rjttcVZ16DddWYaPexJ6ZUX/N8vwDaHrHFmQB5GtezE6H gW6g== X-Gm-Message-State: APjAAAUn4Qs/zaur0WPcdZ2Ou4GnjKZufhvYpETvy10QUEf7uXv7XXYi goBErGoMd+EAdYR6CHTvq9Qtlg6E8TCp9+CgH9Q= X-Google-Smtp-Source: APXvYqwa0Pq1QRSuXvIKG0A4ggv5h4VIDMbFKEFKjqkclc+qD00zlCKDXcRvNi6uYL2oOJnjXk06ZoeawzINWMCeOjA= X-Received: by 2002:a92:aa48:: with SMTP id j69mr29542437ili.162.1572887529461; Mon, 04 Nov 2019 09:12:09 -0800 (PST) MIME-Version: 1.0 References: <20191030162651.3001-1-pbhagavatula@marvell.com> In-Reply-To: From: Jerin Jacob Date: Mon, 4 Nov 2019 22:41:53 +0530 Message-ID: To: Pavan Nikhilesh , Nipun Gupta , Sunil Kumar Kori , "Rao, Nikhil" , Hemant Agrawal Cc: Jerin Jacob , dpdk-dev Content-Type: text/plain; charset="UTF-8" Subject: Re: [dpdk-dev] [PATCH v8 00/10] example/l2fwd-event: introduce l2fwd-event example 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 Wed, Oct 30, 2019 at 11:47 PM Jerin Jacob wrote: > > On Wed, Oct 30, 2019 at 9:57 PM wrote: > > > > From: Pavan Nikhilesh > > > > This patchset adds a new application to demonstrate the usage of event > > mode. The poll mode is also available to help with the transition. > > > > The following new command line parameters are added: > > --mode: Dictates the mode of operation either poll or event. > > --eventq_sched: Dictates event scheduling mode ordered, atomic or > > parallel. > > > > Based on event device capability the configuration is done as follows: > > - A single event device is enabled. > > - The number of event ports is equal to the number of worker > > cores enabled in the core mask. Additional event ports might > > be configured based on Rx/Tx adapter capability. > > - The number of event queues is equal to the number of ethernet > > ports. If Tx adapter doesn't have internal port capability then > > an additional single link event queue is used to enqueue events > > to Tx adapter. > > - Each event port is linked to all existing event queues. > > - Dedicated Rx/Tx adapters for each Ethernet port. > > > Forgot to add the Nipun Gupta ACK > I will add his ACK on apply. > > Series Acked-by: Jerin Jacob Series applied to dpdk-next-eventdev/master. Thanks.