* [PATCH 1/2 net-next] net: Don't return pfmemalloc pages to the page pool.
@ 2018-12-20 22:21 Jonathan Lemon
2018-12-20 22:21 ` [PATCH 2/2 net-next] net: Use the __page_pool_return_page API Jonathan Lemon
2019-01-05 15:46 ` [PATCH 1/2 net-next] net: Don't return pfmemalloc pages to the page pool Jesper Dangaard Brouer
0 siblings, 2 replies; 4+ messages in thread
From: Jonathan Lemon @ 2018-12-20 22:21 UTC (permalink / raw)
To: netdev
Return pfmemalloc pages back to the page allocator, instead of holding them
in the page pool.
Signed-off-by: Jonathan Lemon <jonathan.lemon@gmail.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 43a932cb609b..364b893be66f 100644
--- a/net/core/page_pool.c
+++ b/net/core/page_pool.c
@@ -233,7 +233,7 @@ void __page_pool_put_page(struct page_pool *pool,
*
* refcnt == 1 means page_pool owns page, and can recycle it.
*/
- if (likely(page_ref_count(page) == 1)) {
+ if (likely(page_ref_count(page) == 1 && !page_is_pfmemalloc(page))) {
/* Read barrier done in page_ref_count / READ_ONCE */
if (allow_direct && in_serving_softirq())
--
2.17.1
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [PATCH 2/2 net-next] net: Use the __page_pool_return_page API
2018-12-20 22:21 [PATCH 1/2 net-next] net: Don't return pfmemalloc pages to the page pool Jonathan Lemon
@ 2018-12-20 22:21 ` Jonathan Lemon
2019-01-05 15:46 ` [PATCH 1/2 net-next] net: Don't return pfmemalloc pages to the page pool Jesper Dangaard Brouer
1 sibling, 0 replies; 4+ messages in thread
From: Jonathan Lemon @ 2018-12-20 22:21 UTC (permalink / raw)
To: netdev
Use the __page_pool_return_page API instead of re-rolling our own.
Signed-off-by: Jonathan Lemon <jonathan.lemon@gmail.com>
---
net/core/page_pool.c | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)
diff --git a/net/core/page_pool.c b/net/core/page_pool.c
index 364b893be66f..091007ff14a3 100644
--- a/net/core/page_pool.c
+++ b/net/core/page_pool.c
@@ -259,8 +259,7 @@ void __page_pool_put_page(struct page_pool *pool,
* doing refcnt based recycle tricks, meaning another process
* will be invoking put_page.
*/
- __page_pool_clean_page(pool, page);
- put_page(page);
+ __page_pool_return_page(pool, page);
}
EXPORT_SYMBOL(__page_pool_put_page);
--
2.17.1
^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: [PATCH 1/2 net-next] net: Don't return pfmemalloc pages to the page pool.
2018-12-20 22:21 [PATCH 1/2 net-next] net: Don't return pfmemalloc pages to the page pool Jonathan Lemon
2018-12-20 22:21 ` [PATCH 2/2 net-next] net: Use the __page_pool_return_page API Jonathan Lemon
@ 2019-01-05 15:46 ` Jesper Dangaard Brouer
2019-01-07 19:10 ` Jonathan Lemon
1 sibling, 1 reply; 4+ messages in thread
From: Jesper Dangaard Brouer @ 2019-01-05 15:46 UTC (permalink / raw)
To: Jonathan Lemon
Cc: brouer, netdev, Alexander Duyck, Alexei Starovoitov, kernel-team,
Jes Sorensen, Saeed Mahameed, David Miller
On Thu, 20 Dec 2018 14:21:32 -0800
Jonathan Lemon <jonathan.lemon@gmail.com> wrote:
> Return pfmemalloc pages back to the page allocator, instead of holding them
> in the page pool.
>
> Signed-off-by: Jonathan Lemon <jonathan.lemon@gmail.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 43a932cb609b..364b893be66f 100644
> --- a/net/core/page_pool.c
> +++ b/net/core/page_pool.c
> @@ -233,7 +233,7 @@ void __page_pool_put_page(struct page_pool *pool,
> *
> * refcnt == 1 means page_pool owns page, and can recycle it.
> */
> - if (likely(page_ref_count(page) == 1)) {
> + if (likely(page_ref_count(page) == 1 && !page_is_pfmemalloc(page))) {
I took at closer look at the page_pool issue recycling pages from
emergency reserve (pfmemalloc), and it actually cannot happen, because
page_pool does not use the __GFP_MEMALLOC gfp_t flag. Thus, page_pool
are not allowed to get pages from the emergency reserve in the first
place (unless ksoftirqd current->flags have PF_MEMALLOC, which I don't
think it have).
See: page_pool_dev_alloc_pages() compared to __dev_alloc_pages().
The doc for:
/* %__GFP_MEMALLOC allows access to all memory. This should only be used when
* the caller guarantees the allocation will allow more memory to be freed
* very shortly e.g. process exiting or swapping. Users either should
* be the MM or co-ordinating closely with the VM (e.g. swap over NFS).
*/
With that desc, I don't understand why we actually allow dev_alloc_pages()
to get emergency reserve (pfmemalloc) pages, as we store these in an
RX-ring queue (usual size 512-1024) that isn't used until N-packets
later... even if used as a signal to network stack, to free other
resources, this happens at a later point-in-time, not "very shortly".
--
Best regards,
Jesper Dangaard Brouer
MSc.CS, Principal Kernel Engineer at Red Hat
LinkedIn: http://www.linkedin.com/in/brouer
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH 1/2 net-next] net: Don't return pfmemalloc pages to the page pool.
2019-01-05 15:46 ` [PATCH 1/2 net-next] net: Don't return pfmemalloc pages to the page pool Jesper Dangaard Brouer
@ 2019-01-07 19:10 ` Jonathan Lemon
0 siblings, 0 replies; 4+ messages in thread
From: Jonathan Lemon @ 2019-01-07 19:10 UTC (permalink / raw)
To: Jesper Dangaard Brouer
Cc: netdev, Alexander Duyck, Alexei Starovoitov, kernel-team,
Jes Sorensen, Saeed Mahameed, David Miller
On 5 Jan 2019, at 7:46, Jesper Dangaard Brouer wrote:
> On Thu, 20 Dec 2018 14:21:32 -0800
> Jonathan Lemon <jonathan.lemon@gmail.com> wrote:
>
>> Return pfmemalloc pages back to the page allocator, instead of
>> holding them
>> in the page pool.
>>
>> Signed-off-by: Jonathan Lemon <jonathan.lemon@gmail.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 43a932cb609b..364b893be66f 100644
>> --- a/net/core/page_pool.c
>> +++ b/net/core/page_pool.c
>> @@ -233,7 +233,7 @@ void __page_pool_put_page(struct page_pool *pool,
>> *
>> * refcnt == 1 means page_pool owns page, and can recycle it.
>> */
>> - if (likely(page_ref_count(page) == 1)) {
>> + if (likely(page_ref_count(page) == 1 && !page_is_pfmemalloc(page)))
>> {
>
> I took at closer look at the page_pool issue recycling pages from
> emergency reserve (pfmemalloc), and it actually cannot happen, because
> page_pool does not use the __GFP_MEMALLOC gfp_t flag. Thus, page_pool
> are not allowed to get pages from the emergency reserve in the first
> place (unless ksoftirqd current->flags have PF_MEMALLOC, which I don't
> think it have).
page_pool_dev_alloc_pages() sets GFP_ATOMIC | __GFP_NOWARN. If the
page pool really doesn't want to allow emergency reserves, then
shouldn't
it set __GFP_NOMEMALLOC as well?
> See: page_pool_dev_alloc_pages() compared to __dev_alloc_pages().
>
> The doc for:
> /* %__GFP_MEMALLOC allows access to all memory. This should only be
> used when
> * the caller guarantees the allocation will allow more memory to be
> freed
> * very shortly e.g. process exiting or swapping. Users either should
> * be the MM or co-ordinating closely with the VM (e.g. swap over
> NFS).
> */
>
> With that desc, I don't understand why we actually allow
> dev_alloc_pages()
> to get emergency reserve (pfmemalloc) pages, as we store these in an
> RX-ring queue (usual size 512-1024) that isn't used until N-packets
> later... even if used as a signal to network stack, to free other
> resources, this happens at a later point-in-time, not "very shortly".
>
> --
> Best regards,
> Jesper Dangaard Brouer
> MSc.CS, Principal Kernel Engineer at Red Hat
> LinkedIn: http://www.linkedin.com/in/brouer
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2019-01-07 19:10 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-12-20 22:21 [PATCH 1/2 net-next] net: Don't return pfmemalloc pages to the page pool Jonathan Lemon
2018-12-20 22:21 ` [PATCH 2/2 net-next] net: Use the __page_pool_return_page API Jonathan Lemon
2019-01-05 15:46 ` [PATCH 1/2 net-next] net: Don't return pfmemalloc pages to the page pool Jesper Dangaard Brouer
2019-01-07 19:10 ` Jonathan Lemon
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).