blob: c17ea092b4ab145bf7eae9a2cba592e0132c88c0 (
plain)
1
2
3
4
5
6
7
8
9
|
/* SPDX-License-Identifier: GPL-2.0 */
#ifndef __PAGE_POOL_PRIV_H
#define __PAGE_POOL_PRIV_H
int page_pool_list(struct page_pool *pool);
void page_pool_unlist(struct page_pool *pool);
#endif
|