From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by inbox.dpdk.org (Postfix) with ESMTP id C19AAA0C43; Wed, 20 Oct 2021 18:15:38 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id B0DD841174; Wed, 20 Oct 2021 18:15:38 +0200 (CEST) Received: from mail-io1-f53.google.com (mail-io1-f53.google.com [209.85.166.53]) by mails.dpdk.org (Postfix) with ESMTP id D2AF941143 for ; Wed, 20 Oct 2021 18:15:36 +0200 (CEST) Received: by mail-io1-f53.google.com with SMTP id y67so25260731iof.10 for ; Wed, 20 Oct 2021 09:15:36 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20210112; h=mime-version:references:in-reply-to:from:date:message-id:subject:to :cc; bh=BnVc/l7toldMzzvlDnB0F5nnERvAoMXq28HIZpMZkq4=; b=Yj09yeMmjqDBO0/UYmj9x+Jp/NVasdD0/wnx+WpTJ2Qu1kum7r2Obm+pi+bce4oRGF rIkdZxqwxTouk1KZi1D4ZUo5v4ifMw+xNZpTd5NAGlO3h9Q8BF+sSS2o9L/GUafESo3T 9VMFlvfvDwwM16JiMzfYjr19YYvXckiqhtnwhxD0lGuLeeosKFeEahpQB3OjiOXxi59A 6rQpyK9KQ3DhgAOwCNetMA8CDR9bVmRztEFZSGe0k+SWm4wdu3qMxe/NyUgC8Ub+m67G 74MlvDhO6tOiHgtOxvfm9pFLLHOesDOjxstNF0Jv8Fduyy4AlG6vUOsY9ellLbChQbtZ D3jw== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20210112; h=x-gm-message-state:mime-version:references:in-reply-to:from:date :message-id:subject:to:cc; bh=BnVc/l7toldMzzvlDnB0F5nnERvAoMXq28HIZpMZkq4=; b=n5ecDtb8N6MkgfYek44+4N6Vnub+hT2sykwPNJJAuhVSmhyy1+TSDi0hapytbqJtNi ad6XyKXPxOOF1VhIxOhc4OheT54Tr+hiv/G4S88yHmVeay//IvQtOKD622ohte8PjGWG KjpVbsoAn0W1+NHkmnQWHsx6hDSs4vT3dMjtCyTCfmjeK8MvL+I4MGszp134/oc4/wxA aPMRLXxZaUIR4y6fS7bosNvxdL/MD4A6tEGwizCt9Z96YaXrhKgvYKy1KDJxJZ+XiYFB rum/90XtsGXn3v6st4j3TSEs3hAfeAPzsyJtYttEtMwSNzbZ6ReY0C732tmcsVts/aeR SicA== X-Gm-Message-State: AOAM532AetE28bhPKU3Dl0yqOrD73kisPLwHvNV1tvZ1NJ1SKkIrxssE stzyyCGtqXdETapkufENG5GQOPsVl3ua+VZPCuo= X-Google-Smtp-Source: ABdhPJwzvYWW9MsU/fnSFBYIvSS3VK4W0MDBT0ad/CdiyNsjyee1DMsTiVVcn5OJe+pXw5+IJF4ZESDsYueto0gypRY= X-Received: by 2002:a05:6602:1799:: with SMTP id y25mr133537iox.38.1634746535903; Wed, 20 Oct 2021 09:15:35 -0700 (PDT) MIME-Version: 1.0 References: <87a3db1b522b66efc58f23e2d8e80ed1af4a860b.1630740275.git.sthotton@marvell.com> In-Reply-To: From: Jerin Jacob Date: Wed, 20 Oct 2021 21:45:10 +0530 Message-ID: To: Shijith Thotton Cc: dpdk-dev , Jerin Jacob , Pavan Nikhilesh , Sunil Kumar Kori Content-Type: text/plain; charset="UTF-8" Subject: Re: [dpdk-dev] [PATCH v2] examples/l2fwd-event: changes to use event vector X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.29 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 Mon, Sep 27, 2021 at 11:51 AM Shijith Thotton wrote: > > Added changes to receive packets as event vector. By default this is > disabled and can be enabled using the option --event-vector. Vector > size and timeout to form the vector can be configured using options > --event-vector-size and --event-vector-tmo. > > Example: > dpdk-l2fwd-event -l 0-3 -n 4 -- -p 0x03 --mode=eventdev \ > --eventq-sched=ordered --event-vector --event-vector-size 16 > > Signed-off-by: Shijith Thotton Changed the subject to: examples/l2fwd: support event vector Acked-by: Jerin Jacob Applied to dpdk-next-eventdev/for-main. Thanks.