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 57AE9A00BE; Wed, 30 Oct 2019 19:17:54 +0100 (CET) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 520DE1C0C0; Wed, 30 Oct 2019 19:17:53 +0100 (CET) Received: from mail-io1-f66.google.com (mail-io1-f66.google.com [209.85.166.66]) by dpdk.org (Postfix) with ESMTP id E09781C000 for ; Wed, 30 Oct 2019 19:17:51 +0100 (CET) Received: by mail-io1-f66.google.com with SMTP id h9so3684608ioh.2 for ; Wed, 30 Oct 2019 11:17:51 -0700 (PDT) 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=uot8Uf1Ra1VRRf0/pgD7leSD30MxA7ElHwANXWJ3kj8=; b=emry6kpgApyRjVMv4Fqr/e1m5MIiZ3mWVek2ZmVj2Gg/VFcVLh19fD8pMEiXMTvw3N tB2DFofLJah+ZQg7MvXkZ9QWMsKAVLAfyghBnJbxxYZ8ez47+uNDyjEQF5Aiy+P3SefJ dfrcBhEZv2lHe4fePtMtChpNVg/BnE/luQh/X/bLy33IARkGGBelzp5lW3ejgBiF3uDL 9eIShYMZsEmLbQvdTGIbYVDFeQwPxJXax37OSG6Xt1N3awE36e3Vovx2vOUBKBzAiTTH s1eQMoiB9Jk04lb4uX5xujzIuZIEoJ+rf68qTmoAZlHnrRk3jF3W14HXf4nu4W7bFldZ CHLQ== 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=uot8Uf1Ra1VRRf0/pgD7leSD30MxA7ElHwANXWJ3kj8=; b=s+0R71xPu01smT/AuQOACNmMUrW4+a6RGpW7dePLdPan5tZb5MxE4SFvpFf+3iKYLv w1Pu1jPp42Ntuzcz7542hPMzSbG9O1I3YuZsje1FzZONIsJYoL4dXIAO4zwJr+cB2deD VkU2dc6JDFUxt61Z1zRThiGZ+nJKEh232w/QGMkAMe9posP8yyKxQ1r3jUEG4i9MO2Mc 9oFl5AB/WvppWYuVrPGVE/eMrzhh6Lp4KJQ858ir38VJqqTrjNzfMIKJrc+1Glg3A1DH JxW08Zm14TJ652cJcVq/wOWBV/7c18X41lsKqPMRGEIoIVFmZY+9AHMX/cGoOVYMx/SP hMKw== X-Gm-Message-State: APjAAAU9QSmYSKQ0qWomYtG7CvSSQm81d1odPBdkDnTnSw9WKTj5mRvX nwX8OgNiqWt4Rs9DusYKVw/dM4fo9pFimsBHHrw= X-Google-Smtp-Source: APXvYqySy5ud6Vun++ayqpW7NQtv4bMSk1AZ1qyDtto89lZMWrmnYcNSI3QKWR2ZrwtPsERCuspD5/+nEOtre/tXFIM= X-Received: by 2002:a5d:8598:: with SMTP id f24mr1087392ioj.60.1572459470892; Wed, 30 Oct 2019 11:17:50 -0700 (PDT) MIME-Version: 1.0 References: <20191030162651.3001-1-pbhagavatula@marvell.com> In-Reply-To: <20191030162651.3001-1-pbhagavatula@marvell.com> From: Jerin Jacob Date: Wed, 30 Oct 2019 23:47:34 +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 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