diff options
author | Yunsheng Lin <linyunsheng@huawei.com> | 2022-10-21 10:58:22 +0800 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2022-10-24 13:03:43 +0100 |
commit | 4727bab4e9bbeafeff6acdfcb077a7a548cbde30 (patch) | |
tree | 81e6f0ad80f05b57f87b507980207ecf5f4a5f97 /include/linux/skbuff.h | |
parent | 127b7218bfdd60205cfe2fa3f06d95e85a2650ed (diff) |
net: skb: move skb_pp_recycle() to skbuff.c
skb_pp_recycle() is only used by skb_free_head() in
skbuff.c, so move it to skbuff.c.
Signed-off-by: Yunsheng Lin <linyunsheng@huawei.com>
Acked-by: Ilias Apalodimas <ilias.apalodimas@linaro.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include/linux/skbuff.h')
-rw-r--r-- | include/linux/skbuff.h | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/include/linux/skbuff.h b/include/linux/skbuff.h index 7be5bb4c94b6..59c9fd55699d 100644 --- a/include/linux/skbuff.h +++ b/include/linux/skbuff.h @@ -5050,12 +5050,5 @@ static inline void skb_mark_for_recycle(struct sk_buff *skb) } #endif -static inline bool skb_pp_recycle(struct sk_buff *skb, void *data) -{ - if (!IS_ENABLED(CONFIG_PAGE_POOL) || !skb->pp_recycle) - return false; - return page_pool_return_skb_page(virt_to_page(data)); -} - #endif /* __KERNEL__ */ #endif /* _LINUX_SKBUFF_H */ |