mirror of
https://github.com/torvalds/linux.git
synced 2024-11-10 22:21:40 +00:00
d27a662290
zero_copy_allocator has been removed back when Bjorn Topel introduced xsk_buff_pool. Remove references to it that were dangling in the tree. Signed-off-by: Maciej Fijalkowski <maciej.fijalkowski@intel.com> Signed-off-by: Daniel Borkmann <daniel@iogearbox.net> Acked-by: Magnus Karlsson <magnus.karlsson@intel.com> Link: https://lore.kernel.org/bpf/20211210171511.11574-1-maciej.fijalkowski@intel.com
19 lines
406 B
C
19 lines
406 B
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
#ifndef __LINUX_NET_XDP_PRIV_H__
|
|
#define __LINUX_NET_XDP_PRIV_H__
|
|
|
|
#include <linux/rhashtable.h>
|
|
|
|
/* Private to net/core/xdp.c, but used by trace/events/xdp.h */
|
|
struct xdp_mem_allocator {
|
|
struct xdp_mem_info mem;
|
|
union {
|
|
void *allocator;
|
|
struct page_pool *page_pool;
|
|
};
|
|
struct rhash_head node;
|
|
struct rcu_head rcu;
|
|
};
|
|
|
|
#endif /* __LINUX_NET_XDP_PRIV_H__ */
|