mirror of
https://github.com/torvalds/linux.git
synced 2024-11-17 17:41:44 +00:00
net: page_pool: add helper function to unmap dma addresses
On a previous patch dma addr was stored in 'struct page'. Use that to unmap DMA addresses used by network drivers Signed-off-by: Ilias Apalodimas <ilias.apalodimas@linaro.org> Signed-off-by: Jesper Dangaard Brouer <brouer@redhat.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
0afdeeed08
commit
a25d50bfe6
@ -110,6 +110,7 @@ static inline struct page *page_pool_dev_alloc_pages(struct page_pool *pool)
|
||||
struct page_pool *page_pool_create(const struct page_pool_params *params);
|
||||
|
||||
void page_pool_destroy(struct page_pool *pool);
|
||||
void page_pool_unmap_page(struct page_pool *pool, struct page *page);
|
||||
|
||||
/* Never call this directly, use helpers below */
|
||||
void __page_pool_put_page(struct page_pool *pool,
|
||||
|
@ -190,6 +190,13 @@ static void __page_pool_clean_page(struct page_pool *pool,
|
||||
page->dma_addr = 0;
|
||||
}
|
||||
|
||||
/* unmap the page and clean our state */
|
||||
void page_pool_unmap_page(struct page_pool *pool, struct page *page)
|
||||
{
|
||||
__page_pool_clean_page(pool, page);
|
||||
}
|
||||
EXPORT_SYMBOL(page_pool_unmap_page);
|
||||
|
||||
/* Return a page to the page allocator, cleaning up our state */
|
||||
static void __page_pool_return_page(struct page_pool *pool, struct page *page)
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user