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 CD7C3A054F; Tue, 16 Mar 2021 18:49:08 +0100 (CET) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 7C64B406A2; Tue, 16 Mar 2021 18:49:08 +0100 (CET) Received: from mail-io1-f43.google.com (mail-io1-f43.google.com [209.85.166.43]) by mails.dpdk.org (Postfix) with ESMTP id 2CCF84069F for ; Tue, 16 Mar 2021 18:49:07 +0100 (CET) Received: by mail-io1-f43.google.com with SMTP id m7so19071173iow.7 for ; Tue, 16 Mar 2021 10:49:07 -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=fVKbgegJmje9L8z+ErTgm6YkQAxwD++9daZh6nOH6oI=; b=vOo/kST9vZ5OpdRzLRh3mNTjta29UY04vGe37fQ5BYNik96oCKAeBbSemshRqor4Nf 6Et0kJzHGJUdS5jr++JF+hUqN7qogXyD6FOIAbBOA8udyvBvPdXS/J1EWGi4Hdks/u7i 5Vsj9NIgLte6u+1KNqkkLhz+Byaov8UFz6itSxDbST9VwK8rn46WWL2s+4oEdByxmSBo Ujo7CBQjOsoExuPHeLzobyc7bYEhM9PMhvWmLVlY4NDpFrqV9NCO+05v3i8w0RaCZkqM F6WUp7KYpLUNGsSWXlnmcZ+pjeD6tKta0pUkqervNmkoqw61fmSC87BmqHF5ETrZQWgB e0fg== 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=fVKbgegJmje9L8z+ErTgm6YkQAxwD++9daZh6nOH6oI=; b=JKvHWIglj/FQ/+NGcShTnY/3uDCViKq2BJJWjdZHi3kO1AM9Hq5go79WuNNYsWdjQ+ /Vzclp5XyysJ5qpC1xtg9bJ5B321BA9JeDof03SMVWnTPGfB0J67ElxJhylGVhDoOcRL asirswjuhzftsbNt+28S0j7USkqiZ6Z1KgYo1jxKPK2NUBcLteatMz8TjUunXuefyQqB pvSlyseG17Hzqcrm38rh9AQBtg2y/59ZcFnKSIkK7AjP0hib9t+fJdTx1ZlPYn2/Yk49 Xr7fZ4tWNxT7IJmttVTCrlQeSpVWmfq8bfaGHQioPImS/0XssQ+ykxMdyzoA/0xr/0KG Yduw== X-Gm-Message-State: AOAM532/8oouMrjRmi7jG6NPgEXSoTuePN2mwPt0hUcpoSr/6wci3iDt 56npfFvPM/hdmjr/uK3v/vuUneH8eyAsJu0EdTE= X-Google-Smtp-Source: ABdhPJy4bqlHqPG8mX6XZrIz6jW0+CkHSY3r1wrHfumDLB8C7VbjHi0O4dHQbvgge0nOHR7RZSFMOmWu+4xZ1ln7T+A= X-Received: by 2002:a05:6602:2d95:: with SMTP id k21mr4210309iow.123.1615916946502; Tue, 16 Mar 2021 10:49:06 -0700 (PDT) MIME-Version: 1.0 References: <20210220220957.4583-1-pbhagavatula@marvell.com> <20210316154846.1518-1-pbhagavatula@marvell.com> <20210316154846.1518-2-pbhagavatula@marvell.com> In-Reply-To: <20210316154846.1518-2-pbhagavatula@marvell.com> From: Jerin Jacob Date: Tue, 16 Mar 2021 23:18:50 +0530 Message-ID: To: Pavan Nikhilesh Cc: Jerin Jacob , "Jayatheerthan, Jay" , Erik Gabriel Carrillo , "Gujjar, Abhinandan S" , "McDaniel, Timothy" , Hemant Agrawal , "Van Haaren, Harry" , =?UTF-8?Q?Mattias_R=C3=B6nnblom?= , Liang Ma , Ray Kinsella , Neil Horman , dpdk-dev Content-Type: text/plain; charset="UTF-8" Subject: Re: [dpdk-dev] [PATCH v2 1/8] eventdev: introduce event vector capability 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 Tue, Mar 16, 2021 at 9:19 PM wrote: > > From: Pavan Nikhilesh > > Introduce rte_event_vector datastructure which is capable of holding > multiple uintptr_t of the same flow thereby allowing applications > to vectorize their pipeline and reducing the complexity of pipelining > the events across multiple stages. > This approach also reduces the scheduling overhead on a event device. > > Add a event vector mempool create handler to create mempools based on > the best mempool ops available on a given platform. > > Signed-off-by: Pavan Nikhilesh > -#define RTE_EVENT_DEV_CAP_EVENT_QOS (1ULL << 1) > +#define RTE_EVENT_DEV_CAP_EVENT_QOS (1ULL << 1) A lot of the style changes are accidentally added to this patch. Please resend.