* [PATCH net-next v10 0/4] skbuff: Optimize SKB coalescing for page pool
@ 2023-12-14 4:28 Liang Chen
2023-12-14 4:28 ` [PATCH net-next v10 2/4] page_pool: halve BIAS_MAX for multiple user references of a fragment Liang Chen
` (2 more replies)
0 siblings, 3 replies; 7+ messages in thread
From: Liang Chen @ 2023-12-14 4:28 UTC (permalink / raw)
To: davem, edumazet, kuba, pabeni, hawk, ilias.apalodimas, linyunsheng
Cc: netdev, linux-mm, jasowang, almasrymina, liangchen.linux
The combination of the following condition was excluded from skb coalescing:
from->pp_recycle = 1
from->cloned = 1
to->pp_recycle = 1
With page pool in use, this combination can be quite common(ex.
NetworkMananger may lead to the additional packet_type being registered,
thus the cloning). In scenarios with a higher number of small packets, it
can significantly affect the success rate of coalescing.
This patchset aims to optimize this scenario and enable coalescing of this
particular combination. That also involves supporting multiple users
referencing the same fragment of a pp page to accomondate the need to
increment the "from" SKB page's pp page reference count.
Changes from v9:
- patch 1 was already applied
- imporve description for patch 2
- make sure skb_pp_frag_ref only work for pp aware skbs
Liang Chen (4):
page_pool: transition to reference count management after page
draining (already applied)
page_pool: halve BIAS_MAX for multiple user references of a fragment
skbuff: Add a function to check if a page belongs to page_pool
skbuff: Optimization of SKB coalescing for page pool
.../net/ethernet/mellanox/mlx5/core/en_rx.c | 4 +-
include/linux/mm_types.h | 2 +-
include/net/page_pool/helpers.h | 65 +++++++++++--------
include/net/page_pool/types.h | 6 +-
net/core/page_pool.c | 14 ++--
net/core/skbuff.c | 59 +++++++++++++----
6 files changed, 98 insertions(+), 52 deletions(-)
--
2.31.1
^ permalink raw reply [flat|nested] 7+ messages in thread
* [PATCH net-next v10 2/4] page_pool: halve BIAS_MAX for multiple user references of a fragment
2023-12-14 4:28 [PATCH net-next v10 0/4] skbuff: Optimize SKB coalescing for page pool Liang Chen
@ 2023-12-14 4:28 ` Liang Chen
2023-12-14 6:11 ` Ilias Apalodimas
2023-12-15 3:08 ` Jakub Kicinski
2023-12-14 4:28 ` [PATCH net-next v10 3/4] skbuff: Add a function to check if a page belongs to page_pool Liang Chen
2023-12-14 4:28 ` [PATCH net-next v10 4/4] skbuff: Optimization of SKB coalescing for page pool Liang Chen
2 siblings, 2 replies; 7+ messages in thread
From: Liang Chen @ 2023-12-14 4:28 UTC (permalink / raw)
To: davem, edumazet, kuba, pabeni, hawk, ilias.apalodimas, linyunsheng
Cc: netdev, linux-mm, jasowang, almasrymina, liangchen.linux, Mina Almasry
Up to now, we were only subtracting from the number of used page fragments
to figure out when a page could be freed or recycled. A following patch
introduces support for multiple users referencing the same fragment. So
reduce the initial page fragments value to half to avoid overflowing.
Signed-off-by: Liang Chen <liangchen.linux@gmail.com>
Reviewed-by: Yunsheng Lin <linyunsheng@huawei.com>
Reviewed-by: Mina Almasry <almarsymina@google.com>
---
net/core/page_pool.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/net/core/page_pool.c b/net/core/page_pool.c
index 106220b1f89c..436f7ffea7b4 100644
--- a/net/core/page_pool.c
+++ b/net/core/page_pool.c
@@ -26,7 +26,7 @@
#define DEFER_TIME (msecs_to_jiffies(1000))
#define DEFER_WARN_INTERVAL (60 * HZ)
-#define BIAS_MAX LONG_MAX
+#define BIAS_MAX (LONG_MAX >> 1)
#ifdef CONFIG_PAGE_POOL_STATS
/* alloc_stat_inc is intended to be used in softirq context */
--
2.31.1
^ permalink raw reply [flat|nested] 7+ messages in thread
* [PATCH net-next v10 3/4] skbuff: Add a function to check if a page belongs to page_pool
2023-12-14 4:28 [PATCH net-next v10 0/4] skbuff: Optimize SKB coalescing for page pool Liang Chen
2023-12-14 4:28 ` [PATCH net-next v10 2/4] page_pool: halve BIAS_MAX for multiple user references of a fragment Liang Chen
@ 2023-12-14 4:28 ` Liang Chen
2023-12-14 4:28 ` [PATCH net-next v10 4/4] skbuff: Optimization of SKB coalescing for page pool Liang Chen
2 siblings, 0 replies; 7+ messages in thread
From: Liang Chen @ 2023-12-14 4:28 UTC (permalink / raw)
To: davem, edumazet, kuba, pabeni, hawk, ilias.apalodimas, linyunsheng
Cc: netdev, linux-mm, jasowang, almasrymina, liangchen.linux, Mina Almasry
Wrap code for checking if a page is a page_pool page into a
function for better readability and ease of reuse.
Signed-off-by: Liang Chen <liangchen.linux@gmail.com>
Reviewed-by: Yunsheng Lin <linyunsheng@huawei.com>
Reviewed-by: Ilias Apalodimas <ilias.apalodimas@linaro.org>
Reviewed-by: Mina Almasry <almarsymina@google.com>
---
net/core/skbuff.c | 7 ++++++-
1 file changed, 6 insertions(+), 1 deletion(-)
diff --git a/net/core/skbuff.c b/net/core/skbuff.c
index b157efea5dea..7e26b56cda38 100644
--- a/net/core/skbuff.c
+++ b/net/core/skbuff.c
@@ -890,6 +890,11 @@ static void skb_clone_fraglist(struct sk_buff *skb)
skb_get(list);
}
+static bool is_pp_page(struct page *page)
+{
+ return (page->pp_magic & ~0x3UL) == PP_SIGNATURE;
+}
+
#if IS_ENABLED(CONFIG_PAGE_POOL)
bool napi_pp_put_page(struct page *page, bool napi_safe)
{
@@ -905,7 +910,7 @@ bool napi_pp_put_page(struct page *page, bool napi_safe)
* and page_is_pfmemalloc() is checked in __page_pool_put_page()
* to avoid recycling the pfmemalloc page.
*/
- if (unlikely((page->pp_magic & ~0x3UL) != PP_SIGNATURE))
+ if (unlikely(!is_pp_page(page)))
return false;
pp = page->pp;
--
2.31.1
^ permalink raw reply [flat|nested] 7+ messages in thread
* [PATCH net-next v10 4/4] skbuff: Optimization of SKB coalescing for page pool
2023-12-14 4:28 [PATCH net-next v10 0/4] skbuff: Optimize SKB coalescing for page pool Liang Chen
2023-12-14 4:28 ` [PATCH net-next v10 2/4] page_pool: halve BIAS_MAX for multiple user references of a fragment Liang Chen
2023-12-14 4:28 ` [PATCH net-next v10 3/4] skbuff: Add a function to check if a page belongs to page_pool Liang Chen
@ 2023-12-14 4:28 ` Liang Chen
2 siblings, 0 replies; 7+ messages in thread
From: Liang Chen @ 2023-12-14 4:28 UTC (permalink / raw)
To: davem, edumazet, kuba, pabeni, hawk, ilias.apalodimas, linyunsheng
Cc: netdev, linux-mm, jasowang, almasrymina, liangchen.linux
In order to address the issues encountered with commit 1effe8ca4e34
("skbuff: fix coalescing for page_pool fragment recycling"), the
combination of the following condition was excluded from skb coalescing:
from->pp_recycle = 1
from->cloned = 1
to->pp_recycle = 1
However, with page pool environments, the aforementioned combination can
be quite common(ex. NetworkMananger may lead to the additional
packet_type being registered, thus the cloning). In scenarios with a
higher number of small packets, it can significantly affect the success
rate of coalescing. For example, considering packets of 256 bytes size,
our comparison of coalescing success rate is as follows:
Without page pool: 70%
With page pool: 13%
Consequently, this has an impact on performance:
Without page pool: 2.57 Gbits/sec
With page pool: 2.26 Gbits/sec
Therefore, it seems worthwhile to optimize this scenario and enable
coalescing of this particular combination. To achieve this, we need to
ensure the correct increment of the "from" SKB page's page pool
reference count (pp_ref_count).
Following this optimization, the success rate of coalescing measured in
our environment has improved as follows:
With page pool: 60%
This success rate is approaching the rate achieved without using page
pool, and the performance has also been improved:
With page pool: 2.52 Gbits/sec
Below is the performance comparison for small packets before and after
this optimization. We observe no impact to packets larger than 4K.
packet size before after improved
(bytes) (Gbits/sec) (Gbits/sec)
128 1.19 1.27 7.13%
256 2.26 2.52 11.75%
512 4.13 4.81 16.50%
1024 6.17 6.73 9.05%
2048 14.54 15.47 6.45%
4096 25.44 27.87 9.52%
Signed-off-by: Liang Chen <liangchen.linux@gmail.com>
Reviewed-by: Yunsheng Lin <linyunsheng@huawei.com>
Suggested-by: Jason Wang <jasowang@redhat.com>
Reviewed-by: Mina Almasry <almasrymina@google.com>
---
include/net/page_pool/helpers.h | 5 ++++
net/core/skbuff.c | 52 +++++++++++++++++++++++++--------
2 files changed, 45 insertions(+), 12 deletions(-)
diff --git a/include/net/page_pool/helpers.h b/include/net/page_pool/helpers.h
index d0c5e7e6857a..0dc8fab43bef 100644
--- a/include/net/page_pool/helpers.h
+++ b/include/net/page_pool/helpers.h
@@ -281,6 +281,11 @@ static inline long page_pool_unref_page(struct page *page, long nr)
return ret;
}
+static inline void page_pool_ref_page(struct page *page)
+{
+ atomic_long_inc(&page->pp_ref_count);
+}
+
static inline bool page_pool_is_last_ref(struct page *page)
{
/* If page_pool_unref_page() returns 0, we were the last user */
diff --git a/net/core/skbuff.c b/net/core/skbuff.c
index 7e26b56cda38..cebdeafe691b 100644
--- a/net/core/skbuff.c
+++ b/net/core/skbuff.c
@@ -947,6 +947,37 @@ static bool skb_pp_recycle(struct sk_buff *skb, void *data, bool napi_safe)
return napi_pp_put_page(virt_to_page(data), napi_safe);
}
+/**
+ * skb_pp_frag_ref() - Increase fragment references of a page pool aware skb
+ * @skb: page pool aware skb
+ *
+ * Increase the fragment reference count (pp_ref_count) of a skb. This is
+ * intended to gain fragment references only for page pool aware skbs,
+ * i.e. when skb->pp_recycle is true, and not for fragments in a
+ * non-pp-recycling skb. It has a fallback to increase references on normal
+ * pages, as page pool aware skbs may also have normal page fragments.
+ */
+static int skb_pp_frag_ref(struct sk_buff *skb)
+{
+ struct skb_shared_info *shinfo;
+ struct page *head_page;
+ int i;
+
+ if (!skb->pp_recycle)
+ return -EINVAL;
+
+ shinfo = skb_shinfo(skb);
+
+ for (i = 0; i < shinfo->nr_frags; i++) {
+ head_page = compound_head(skb_frag_page(&shinfo->frags[i]));
+ if (likely(is_pp_page(head_page)))
+ page_pool_ref_page(head_page);
+ else
+ page_ref_inc(head_page);
+ }
+ return 0;
+}
+
static void skb_kfree_head(void *head, unsigned int end_offset)
{
if (end_offset == SKB_SMALL_HEAD_HEADROOM)
@@ -5769,17 +5800,12 @@ bool skb_try_coalesce(struct sk_buff *to, struct sk_buff *from,
return false;
/* In general, avoid mixing page_pool and non-page_pool allocated
- * pages within the same SKB. Additionally avoid dealing with clones
- * with page_pool pages, in case the SKB is using page_pool fragment
- * references (page_pool_alloc_frag()). Since we only take full page
- * references for cloned SKBs at the moment that would result in
- * inconsistent reference counts.
- * In theory we could take full references if @from is cloned and
- * !@to->pp_recycle but its tricky (due to potential race with
- * the clone disappearing) and rare, so not worth dealing with.
+ * pages within the same SKB. In theory we could take full
+ * references if @from is cloned and !@to->pp_recycle but its
+ * tricky (due to potential race with the clone disappearing) and
+ * rare, so not worth dealing with.
*/
- if (to->pp_recycle != from->pp_recycle ||
- (from->pp_recycle && skb_cloned(from)))
+ if (to->pp_recycle != from->pp_recycle)
return false;
if (len <= skb_tailroom(to)) {
@@ -5836,8 +5862,10 @@ bool skb_try_coalesce(struct sk_buff *to, struct sk_buff *from,
/* if the skb is not cloned this does nothing
* since we set nr_frags to 0.
*/
- for (i = 0; i < from_shinfo->nr_frags; i++)
- __skb_frag_ref(&from_shinfo->frags[i]);
+ if (skb_pp_frag_ref(from)) {
+ for (i = 0; i < from_shinfo->nr_frags; i++)
+ __skb_frag_ref(&from_shinfo->frags[i]);
+ }
to->truesize += delta;
to->len += len;
--
2.31.1
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH net-next v10 2/4] page_pool: halve BIAS_MAX for multiple user references of a fragment
2023-12-14 4:28 ` [PATCH net-next v10 2/4] page_pool: halve BIAS_MAX for multiple user references of a fragment Liang Chen
@ 2023-12-14 6:11 ` Ilias Apalodimas
2023-12-15 3:08 ` Jakub Kicinski
1 sibling, 0 replies; 7+ messages in thread
From: Ilias Apalodimas @ 2023-12-14 6:11 UTC (permalink / raw)
To: Liang Chen
Cc: davem, edumazet, kuba, pabeni, hawk, linyunsheng, netdev,
linux-mm, jasowang, almasrymina, Mina Almasry
On Thu, 14 Dec 2023 at 06:30, Liang Chen <liangchen.linux@gmail.com> wrote:
>
> Up to now, we were only subtracting from the number of used page fragments
> to figure out when a page could be freed or recycled. A following patch
> introduces support for multiple users referencing the same fragment. So
> reduce the initial page fragments value to half to avoid overflowing.
>
> Signed-off-by: Liang Chen <liangchen.linux@gmail.com>
> Reviewed-by: Yunsheng Lin <linyunsheng@huawei.com>
> Reviewed-by: Mina Almasry <almarsymina@google.com>
> ---
> net/core/page_pool.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/net/core/page_pool.c b/net/core/page_pool.c
> index 106220b1f89c..436f7ffea7b4 100644
> --- a/net/core/page_pool.c
> +++ b/net/core/page_pool.c
> @@ -26,7 +26,7 @@
> #define DEFER_TIME (msecs_to_jiffies(1000))
> #define DEFER_WARN_INTERVAL (60 * HZ)
>
> -#define BIAS_MAX LONG_MAX
> +#define BIAS_MAX (LONG_MAX >> 1)
>
> #ifdef CONFIG_PAGE_POOL_STATS
> /* alloc_stat_inc is intended to be used in softirq context */
> --
> 2.31.1
>
Reviewed-by: Ilias Apalodimas <ilias.apalodimas@linaro.org>
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH net-next v10 2/4] page_pool: halve BIAS_MAX for multiple user references of a fragment
2023-12-14 4:28 ` [PATCH net-next v10 2/4] page_pool: halve BIAS_MAX for multiple user references of a fragment Liang Chen
2023-12-14 6:11 ` Ilias Apalodimas
@ 2023-12-15 3:08 ` Jakub Kicinski
2023-12-15 3:17 ` Liang Chen
1 sibling, 1 reply; 7+ messages in thread
From: Jakub Kicinski @ 2023-12-15 3:08 UTC (permalink / raw)
To: Liang Chen
Cc: davem, edumazet, pabeni, hawk, ilias.apalodimas, linyunsheng,
netdev, linux-mm, jasowang, almasrymina, Mina Almasry
On Thu, 14 Dec 2023 12:28:31 +0800 Liang Chen wrote:
> Subject: [PATCH net-next v10 2/4] page_pool: halve BIAS_MAX for multiple user references of a fragment
You do have to re-generate / re-number the patches to 1/3, 2/3, 3/3,
otherwise patchwork thinks that there's patch 1/4 missing and doesn't
kick off automation :)
--
pw-bot: cr
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH net-next v10 2/4] page_pool: halve BIAS_MAX for multiple user references of a fragment
2023-12-15 3:08 ` Jakub Kicinski
@ 2023-12-15 3:17 ` Liang Chen
0 siblings, 0 replies; 7+ messages in thread
From: Liang Chen @ 2023-12-15 3:17 UTC (permalink / raw)
To: Jakub Kicinski
Cc: davem, edumazet, pabeni, hawk, ilias.apalodimas, linyunsheng,
netdev, linux-mm, jasowang, almasrymina, Mina Almasry
On Fri, Dec 15, 2023 at 11:08 AM Jakub Kicinski <kuba@kernel.org> wrote:
>
> On Thu, 14 Dec 2023 12:28:31 +0800 Liang Chen wrote:
> > Subject: [PATCH net-next v10 2/4] page_pool: halve BIAS_MAX for multiple user references of a fragment
>
> You do have to re-generate / re-number the patches to 1/3, 2/3, 3/3,
> otherwise patchwork thinks that there's patch 1/4 missing and doesn't
> kick off automation :)
> --
Sure. Thanks for the reminder!
> pw-bot: cr
^ permalink raw reply [flat|nested] 7+ messages in thread
end of thread, other threads:[~2023-12-15 3:17 UTC | newest]
Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-12-14 4:28 [PATCH net-next v10 0/4] skbuff: Optimize SKB coalescing for page pool Liang Chen
2023-12-14 4:28 ` [PATCH net-next v10 2/4] page_pool: halve BIAS_MAX for multiple user references of a fragment Liang Chen
2023-12-14 6:11 ` Ilias Apalodimas
2023-12-15 3:08 ` Jakub Kicinski
2023-12-15 3:17 ` Liang Chen
2023-12-14 4:28 ` [PATCH net-next v10 3/4] skbuff: Add a function to check if a page belongs to page_pool Liang Chen
2023-12-14 4:28 ` [PATCH net-next v10 4/4] skbuff: Optimization of SKB coalescing for page pool Liang Chen
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox