From: Jesper Dangaard Brouer <hawk@kernel.org>
To: Jakub Kicinski <kuba@kernel.org>, davem@davemloft.net
Cc: netdev@vger.kernel.org, edumazet@google.com, pabeni@redhat.com,
Alexander Lobakin <aleksander.lobakin@intel.com>,
Ilias Apalodimas <ilias.apalodimas@linaro.org>,
asml.silence@gmail.com, almasrymina@google.com
Subject: Re: [PATCH net-next v2] net: page_pool: rename page_pool_is_last_ref()
Date: Mon, 16 Dec 2024 09:52:03 +0100 [thread overview]
Message-ID: <9e55f21d-e246-45d2-bad1-b1bcde95b4e6@kernel.org> (raw)
In-Reply-To: <20241215212938.99210-1-kuba@kernel.org>
On 15/12/2024 22.29, Jakub Kicinski wrote:
> page_pool_is_last_ref() releases a reference while the name,
> to me at least, suggests it just checks if the refcount is 1.
> The semantics of the function are the same as those of
> atomic_dec_and_test() and refcount_dec_and_test(), so just
> use the _and_test() suffix.
>
> Reviewed-by: Alexander Lobakin <aleksander.lobakin@intel.com>
> Reviewed-by: Ilias Apalodimas <ilias.apalodimas@linaro.org>
> Signed-off-by: Jakub Kicinski <kuba@kernel.org>
> ---
> Hopefully this doesn't conflict with anyone's work, I've been
> deferring sending this rename forever because I always look
> at it while reviewing an in-flight series and then I'm worried
> it will conflict.
>
> v2:
> - rebased on Olek's changes
> v1: https://lore.kernel.org/20241213153759.3086474-1-kuba@kernel.org
>
> CC: hawk@kernel.org
> CC: ilias.apalodimas@linaro.org
> CC: aleksander.lobakin@intel.com
> CC: asml.silence@gmail.com
> CC: almasrymina@google.com
> ---
> include/net/page_pool/helpers.h | 4 ++--
> net/core/page_pool.c | 2 +-
> 2 files changed, 3 insertions(+), 3 deletions(-)
Looks good to me.
Acked-by: Jesper Dangaard Brouer <hawk@kernel.org>
> diff --git a/include/net/page_pool/helpers.h b/include/net/page_pool/helpers.h
> index e555921e5233..776a3008ac28 100644
> --- a/include/net/page_pool/helpers.h
> +++ b/include/net/page_pool/helpers.h
> @@ -306,7 +306,7 @@ static inline void page_pool_ref_page(struct page *page)
> page_pool_ref_netmem(page_to_netmem(page));
> }
>
> -static inline bool page_pool_is_last_ref(netmem_ref netmem)
> +static inline bool page_pool_unref_and_test(netmem_ref netmem)
> {
> /* If page_pool_unref_page() returns 0, we were the last user */
> return page_pool_unref_netmem(netmem, 1) == 0;
> @@ -321,7 +321,7 @@ static inline void page_pool_put_netmem(struct page_pool *pool,
> * allow registering MEM_TYPE_PAGE_POOL, but shield linker.
> */
> #ifdef CONFIG_PAGE_POOL
> - if (!page_pool_is_last_ref(netmem))
> + if (!page_pool_unref_and_test(netmem))
> return;
>
> page_pool_put_unrefed_netmem(pool, netmem, dma_sync_size, allow_direct);
> diff --git a/net/core/page_pool.c b/net/core/page_pool.c
> index e07ad7315955..9733206d6406 100644
> --- a/net/core/page_pool.c
> +++ b/net/core/page_pool.c
> @@ -897,7 +897,7 @@ void page_pool_put_netmem_bulk(netmem_ref *data, u32 count)
> for (u32 i = 0; i < count; i++) {
> netmem_ref netmem = netmem_compound_head(data[i]);
>
> - if (page_pool_is_last_ref(netmem))
> + if (page_pool_unref_and_test(netmem))
> data[bulk_len++] = netmem;
> }
>
next prev parent reply other threads:[~2024-12-16 8:52 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-12-15 21:29 [PATCH net-next v2] net: page_pool: rename page_pool_is_last_ref() Jakub Kicinski
2024-12-16 8:52 ` Jesper Dangaard Brouer [this message]
2024-12-18 2:00 ` patchwork-bot+netdevbpf
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=9e55f21d-e246-45d2-bad1-b1bcde95b4e6@kernel.org \
--to=hawk@kernel.org \
--cc=aleksander.lobakin@intel.com \
--cc=almasrymina@google.com \
--cc=asml.silence@gmail.com \
--cc=davem@davemloft.net \
--cc=edumazet@google.com \
--cc=ilias.apalodimas@linaro.org \
--cc=kuba@kernel.org \
--cc=netdev@vger.kernel.org \
--cc=pabeni@redhat.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).