2024-04-16 14:46:57 +00:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0 */
|
|
|
|
|
|
|
|
#ifndef __PAGE_POOL_PRIV_H
|
|
|
|
#define __PAGE_POOL_PRIV_H
|
|
|
|
|
2024-04-16 14:46:59 +00:00
|
|
|
s32 page_pool_inflight(const struct page_pool *pool, bool strict);
|
|
|
|
|
2024-04-16 14:46:57 +00:00
|
|
|
int page_pool_list(struct page_pool *pool);
|
2024-04-16 14:46:59 +00:00
|
|
|
void page_pool_detached(struct page_pool *pool);
|
2024-04-16 14:46:57 +00:00
|
|
|
void page_pool_unlist(struct page_pool *pool);
|
|
|
|
|
|
|
|
#endif
|