From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-8.8 required=3.0 tests=BAYES_00, HEADER_FROM_DIFFERENT_DOMAINS,INCLUDES_CR_TRAILER,MAILING_LIST_MULTI, SPF_HELO_NONE,SPF_PASS,URIBL_BLOCKED autolearn=ham autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 124D0C433ED for ; Thu, 1 Apr 2021 23:42:55 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id CDAE161108 for ; Thu, 1 Apr 2021 23:42:54 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S235953AbhDAXmy (ORCPT ); Thu, 1 Apr 2021 19:42:54 -0400 Received: from vps0.lunn.ch ([185.16.172.187]:59490 "EHLO vps0.lunn.ch" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S233789AbhDAXmw (ORCPT ); Thu, 1 Apr 2021 19:42:52 -0400 Received: from andrew by vps0.lunn.ch with local (Exim 4.94) (envelope-from ) id 1lS6xd-00EPu7-5E; Fri, 02 Apr 2021 01:42:49 +0200 Date: Fri, 2 Apr 2021 01:42:49 +0200 From: Andrew Lunn To: Ioana Ciornei Cc: davem@davemloft.net, kuba@kernel.org, netdev@vger.kernel.org, ruxandra.radulescu@nxp.com, Ioana Ciornei Subject: Re: [PATCH net-next 1/3] dpaa2-eth: rename dpaa2_eth_xdp_release_buf into dpaa2_eth_recycle_buf Message-ID: References: <20210401163956.766628-1-ciorneiioana@gmail.com> <20210401163956.766628-2-ciorneiioana@gmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20210401163956.766628-2-ciorneiioana@gmail.com> Precedence: bulk List-ID: X-Mailing-List: netdev@vger.kernel.org On Thu, Apr 01, 2021 at 07:39:54PM +0300, Ioana Ciornei wrote: > From: Ioana Ciornei > > Rename the dpaa2_eth_xdp_release_buf function into dpaa2_eth_recycle_buf > since in the next patches we'll be using the same recycle mechanism for > the normal stack path beside for XDP_DROP. > > Also, rename the array which holds the buffers to be recycled so that it > does not have any reference to XDP. > > Signed-off-by: Ioana Ciornei Reviewed-by: Andrew Lunn Andrew