Netdev List
 help / color / mirror / Atom feed
* [PATCH net-next] net: page_pool: rename page_pool_is_last_ref()
@ 2024-12-13 15:37 Jakub Kicinski
  2024-12-13 15:43 ` Alexander Lobakin
  2024-12-13 17:43 ` Ilias Apalodimas
  0 siblings, 2 replies; 3+ messages in thread
From: Jakub Kicinski @ 2024-12-13 15:37 UTC (permalink / raw)
  To: davem
  Cc: netdev, edumazet, pabeni, Jakub Kicinski, hawk, ilias.apalodimas,
	aleksander.lobakin, asml.silence, almasrymina

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.

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.

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(-)

diff --git a/include/net/page_pool/helpers.h b/include/net/page_pool/helpers.h
index 26caa2c20912..ef0e496bcd93 100644
--- a/include/net/page_pool/helpers.h
+++ b/include/net/page_pool/helpers.h
@@ -299,7 +299,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;
@@ -314,7 +314,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 4c85b77cfdac..56efe3f8140b 100644
--- a/net/core/page_pool.c
+++ b/net/core/page_pool.c
@@ -867,7 +867,7 @@ void page_pool_put_netmem_bulk(struct page_pool *pool, netmem_ref *data,
 		netmem_ref netmem = netmem_compound_head(data[i]);
 
 		/* It is not the last user for the page frag case */
-		if (!page_pool_is_last_ref(netmem))
+		if (!page_pool_unref_and_test(netmem))
 			continue;
 
 		netmem = __page_pool_put_page(pool, netmem, -1, allow_direct);
-- 
2.47.1


^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: [PATCH net-next] net: page_pool: rename page_pool_is_last_ref()
  2024-12-13 15:37 [PATCH net-next] net: page_pool: rename page_pool_is_last_ref() Jakub Kicinski
@ 2024-12-13 15:43 ` Alexander Lobakin
  2024-12-13 17:43 ` Ilias Apalodimas
  1 sibling, 0 replies; 3+ messages in thread
From: Alexander Lobakin @ 2024-12-13 15:43 UTC (permalink / raw)
  To: Jakub Kicinski
  Cc: davem, netdev, edumazet, pabeni, hawk, ilias.apalodimas,
	asml.silence, almasrymina

From: Jakub Kicinski <kuba@kernel.org>
Date: Fri, 13 Dec 2024 07:37:59 -0800

> 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.
> 
> Signed-off-by: Jakub Kicinski <kuba@kernel.org>

Makes sense to me, I think I had issues in the past with references
while developing stuff, as I thought this function doesn't modify
anything :D

Reviewed-by: Alexander Lobakin <aleksander.lobakin@intel.com>

> ---
> 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.

Thanks,
Olek

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PATCH net-next] net: page_pool: rename page_pool_is_last_ref()
  2024-12-13 15:37 [PATCH net-next] net: page_pool: rename page_pool_is_last_ref() Jakub Kicinski
  2024-12-13 15:43 ` Alexander Lobakin
@ 2024-12-13 17:43 ` Ilias Apalodimas
  1 sibling, 0 replies; 3+ messages in thread
From: Ilias Apalodimas @ 2024-12-13 17:43 UTC (permalink / raw)
  To: Jakub Kicinski
  Cc: davem, netdev, edumazet, pabeni, hawk, aleksander.lobakin,
	asml.silence, almasrymina

On Fri, 13 Dec 2024 at 17:38, Jakub Kicinski <kuba@kernel.org> 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.
>
> 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.
>
> 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(-)
>
> diff --git a/include/net/page_pool/helpers.h b/include/net/page_pool/helpers.h
> index 26caa2c20912..ef0e496bcd93 100644
> --- a/include/net/page_pool/helpers.h
> +++ b/include/net/page_pool/helpers.h
> @@ -299,7 +299,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;
> @@ -314,7 +314,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 4c85b77cfdac..56efe3f8140b 100644
> --- a/net/core/page_pool.c
> +++ b/net/core/page_pool.c
> @@ -867,7 +867,7 @@ void page_pool_put_netmem_bulk(struct page_pool *pool, netmem_ref *data,
>                 netmem_ref netmem = netmem_compound_head(data[i]);
>
>                 /* It is not the last user for the page frag case */
> -               if (!page_pool_is_last_ref(netmem))
> +               if (!page_pool_unref_and_test(netmem))
>                         continue;
>
>                 netmem = __page_pool_put_page(pool, netmem, -1, allow_direct);
> --
> 2.47.1
>

Reviewed-by: Ilias Apalodimas <ilias.apalodimas@linaro.org>

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2024-12-13 17:43 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-12-13 15:37 [PATCH net-next] net: page_pool: rename page_pool_is_last_ref() Jakub Kicinski
2024-12-13 15:43 ` Alexander Lobakin
2024-12-13 17:43 ` Ilias Apalodimas

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox