blob: a9d5b7603b89e6a5b0fbd28e03f8143e14cf43cb [file] [log] [blame]
Jesper Dangaard Brouerf033b682019-06-18 15:05:58 +02001/* SPDX-License-Identifier: GPL-2.0 */
2#ifndef __LINUX_NET_XDP_PRIV_H__
3#define __LINUX_NET_XDP_PRIV_H__
4
5#include <linux/rhashtable.h>
6
7/* Private to net/core/xdp.c, but used by trace/events/xdp.h */
8struct xdp_mem_allocator {
9 struct xdp_mem_info mem;
10 union {
11 void *allocator;
12 struct page_pool *page_pool;
13 struct zero_copy_allocator *zc_alloc;
14 };
Jesper Dangaard Brouerf033b682019-06-18 15:05:58 +020015 struct rhash_head node;
16 struct rcu_head rcu;
Jesper Dangaard Brouerf033b682019-06-18 15:05:58 +020017};
18
19#endif /* __LINUX_NET_XDP_PRIV_H__ */