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 117D9A3168 for ; Wed, 16 Oct 2019 09:19:55 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id C42891E8D6; Wed, 16 Oct 2019 09:19:53 +0200 (CEST) Received: from mail-io1-f67.google.com (mail-io1-f67.google.com [209.85.166.67]) by dpdk.org (Postfix) with ESMTP id E845A1D44C for ; Wed, 16 Oct 2019 09:19:51 +0200 (CEST) Received: by mail-io1-f67.google.com with SMTP id q10so52604827iop.2 for ; Wed, 16 Oct 2019 00:19: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=rLObXyKDm+FmySP4b6hpWVmDmr5mNmz1amABxN3T/Pk=; b=X92KnYeJBclV9LRiAHcZsFF3tCcXFbxEi7bHT3ywCwtK5pVBD8oGUiqPxUrhGud6hG dio9VHda/sk/TBdLOX2KjMnMgrFarNpQTDH0ePi8SahEwUdDw9qYawEcX2wp29O0gxOG cv+a2Cpu10p4ee3cJ6Y5+WAugVcK4rqUvBIx/iFTRAQz8dM4Is1t8yXJOPzPq75NCQf8 6odedXAtXciCPpIp5z04A9iGSDmJgD8tEyew26+Qi8lWTqrY/31dnGZbDJwInrv00S9A xbTJT3f1qOKi4OtTjqf+s9M9lAcoML0H9my8ASUgMe0zsIdPiQuC714qOxIhUH5Vpass x4/Q== 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=rLObXyKDm+FmySP4b6hpWVmDmr5mNmz1amABxN3T/Pk=; b=KvcFzSQackZVHXcYNHM52UIP/7J1qQynA8dFfyG8shbYG9sca6zO2a6tYv0mw/2UPX Y2IRUla63/8LyimA+99jOhmWLbM7sDOvKGvcwAItlcbkHoyp0AilQ0XOn7Zx/C9kWVsq /P93dDhcbEcjWuLuhJNqqVb1BxWJoqNOxRtS45HrX3QbdnTyWnjiJqkCLB2QkDnA78DD jIdh38r3CAsbadTUaCu8iJ/OyPfmQDzhahsoJSStfUFB2m9qxuegkp6+jYOhSa0zn3x+ 1dogomB+TUTOKioEh+8OAQwzZjJd6PC+4QmxZzgNwJiojxHWRVkPhZVxuWHIonuo4y1a k/9w== X-Gm-Message-State: APjAAAU+uen4MzJiHYCj6+dlBy2X7WB10Uq7rcBAsVosZcYCK6fl0Gjx 6GatD8YZ/XDJbt9OnwxgbktN2PKTa9NZVp+u7GA= X-Google-Smtp-Source: APXvYqxTJ0iH7Z4ohzMyDeRNiifeDwgsgBerTkudzomEOmdiXwPBil1p1m4u00UgOFPQy4u/RxytKD7hRKRvzF40zxw= X-Received: by 2002:a6b:c701:: with SMTP id x1mr44272150iof.162.1571210391072; Wed, 16 Oct 2019 00:19:51 -0700 (PDT) MIME-Version: 1.0 References: <20191001064641.28404-1-nipun.gupta@nxp.com> <20191011130306.11276-1-nipun.gupta@nxp.com> In-Reply-To: <20191011130306.11276-1-nipun.gupta@nxp.com> From: Jerin Jacob Date: Wed, 16 Oct 2019 12:49:39 +0530 Message-ID: To: Nipun Gupta Cc: dpdk-dev , Jerin Jacob , aconole@redhat.com, Pavan Nikhilesh , Sunil Kumar Kori , Hemant Agrawal , "Richardson, Bruce" , Marko Kovacevic , Ori Kam , Radu Nicolau , Tomasz Kantecki , "Van Haaren, Harry" , "Rao, Nikhil" Content-Type: text/plain; charset="UTF-8" Subject: Re: [dpdk-dev] [PATCH v5] eventdev: flag to identify same destined packets enqueue 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 Fri, Oct 11, 2019 at 6:48 PM Nipun Gupta wrote: > > This patch introduces a `flag` in the Eth TX adapter enqueue API. > Some drivers may support burst functionality only with the packets > having same destination device and queue. > > The flag `RTE_EVENT_ETH_TX_ADAPTER_ENQUEUE_SAME_DEST` can be used > to indicate this so the underlying driver, for drivers to utilize > burst functionality appropriately. > > Signed-off-by: Nipun Gupta > Acked-by: Jerin Jacob > Acked-by: Hemant Agrawal Applied to dpdk-next-eventdev/master. Thanks.