Message ID | 937ccc89a82302a06744bcb6d253f0e95651caa2.1605910519.git.lorenzo@kernel.org (mailing list archive) |
---|---|
State | Superseded |
Delegated to: | Netdev Maintainers |
Headers | show |
Series | [net-next] net: page_pool: Add page_pool_put_page_bulk() to page_pool.rst | expand |
Context | Check | Description |
---|---|---|
netdev/cover_letter | success | Link |
netdev/fixes_present | success | Link |
netdev/patch_count | success | Link |
netdev/tree_selection | success | Clearly marked for net-next |
netdev/subject_prefix | success | Link |
netdev/source_inline | success | Was 0 now: 0 |
netdev/verify_signedoff | success | Link |
netdev/module_param | success | Was 0 now: 0 |
netdev/build_32bit | success | Errors and warnings before: 0 this patch: 0 |
netdev/kdoc | success | Errors and warnings before: 0 this patch: 0 |
netdev/verify_fixes | success | Link |
netdev/checkpatch | success | total: 0 errors, 0 warnings, 0 checks, 14 lines checked |
netdev/build_allmodconfig_warn | success | Errors and warnings before: 0 this patch: 0 |
netdev/header_inline | success | Link |
netdev/stable | success | Stable not CCed |
On Fri, Nov 20, 2020 at 11:19:34PM +0100, Lorenzo Bianconi wrote: > Introduce page_pool_put_page_bulk() entry into the API section of > page_pool.rst > > Signed-off-by: Lorenzo Bianconi <lorenzo@kernel.org> > --- > Documentation/networking/page_pool.rst | 8 ++++++++ > 1 file changed, 8 insertions(+) > > diff --git a/Documentation/networking/page_pool.rst b/Documentation/networking/page_pool.rst > index 43088ddf95e4..e848f5b995b8 100644 > --- a/Documentation/networking/page_pool.rst > +++ b/Documentation/networking/page_pool.rst > @@ -97,6 +97,14 @@ a page will cause no race conditions is enough. > > * page_pool_get_dma_dir(): Retrieve the stored DMA direction. > > +* page_pool_put_page_bulk(): It tries to refill a bulk of count pages into the Tries to refill a number of pages sounds better? > + ptr_ring cache holding ptr_ring producer lock. If the ptr_ring is full, > + page_pool_put_page_bulk() will release leftover pages to the page allocator. > + page_pool_put_page_bulk() is suitable to be run inside the driver NAPI tx > + completion loop for the XDP_REDIRECT use case. > + Please consider the caller must not use data area after running s/consider/note/ > + page_pool_put_page_bulk(), as this function overwrites it. > + > Coding examples > =============== > > -- > 2.28.0 > Other than that Acked-by: Ilias Apalodimas <ilias.apalodimas@linaro.org>
> On Fri, Nov 20, 2020 at 11:19:34PM +0100, Lorenzo Bianconi wrote: > > Introduce page_pool_put_page_bulk() entry into the API section of > > page_pool.rst > > > > Signed-off-by: Lorenzo Bianconi <lorenzo@kernel.org> > > --- > > Documentation/networking/page_pool.rst | 8 ++++++++ > > 1 file changed, 8 insertions(+) > > > > diff --git a/Documentation/networking/page_pool.rst b/Documentation/networking/page_pool.rst > > index 43088ddf95e4..e848f5b995b8 100644 > > --- a/Documentation/networking/page_pool.rst > > +++ b/Documentation/networking/page_pool.rst > > @@ -97,6 +97,14 @@ a page will cause no race conditions is enough. > > > > * page_pool_get_dma_dir(): Retrieve the stored DMA direction. > > > > +* page_pool_put_page_bulk(): It tries to refill a bulk of count pages into the > > Tries to refill a number of pages sounds better? ack, will fix it in v2 > > > + ptr_ring cache holding ptr_ring producer lock. If the ptr_ring is full, > > + page_pool_put_page_bulk() will release leftover pages to the page allocator. > > + page_pool_put_page_bulk() is suitable to be run inside the driver NAPI tx > > + completion loop for the XDP_REDIRECT use case. > > + Please consider the caller must not use data area after running > > s/consider/note/ ack, will fix it in v2 Regards, Lorenzo > > > + page_pool_put_page_bulk(), as this function overwrites it. > > + > > Coding examples > > =============== > > > > -- > > 2.28.0 > > > > > Other than that > Acked-by: Ilias Apalodimas <ilias.apalodimas@linaro.org> >
diff --git a/Documentation/networking/page_pool.rst b/Documentation/networking/page_pool.rst index 43088ddf95e4..e848f5b995b8 100644 --- a/Documentation/networking/page_pool.rst +++ b/Documentation/networking/page_pool.rst @@ -97,6 +97,14 @@ a page will cause no race conditions is enough. * page_pool_get_dma_dir(): Retrieve the stored DMA direction. +* page_pool_put_page_bulk(): It tries to refill a bulk of count pages into the + ptr_ring cache holding ptr_ring producer lock. If the ptr_ring is full, + page_pool_put_page_bulk() will release leftover pages to the page allocator. + page_pool_put_page_bulk() is suitable to be run inside the driver NAPI tx + completion loop for the XDP_REDIRECT use case. + Please consider the caller must not use data area after running + page_pool_put_page_bulk(), as this function overwrites it. + Coding examples ===============
Introduce page_pool_put_page_bulk() entry into the API section of page_pool.rst Signed-off-by: Lorenzo Bianconi <lorenzo@kernel.org> --- Documentation/networking/page_pool.rst | 8 ++++++++ 1 file changed, 8 insertions(+)