brintos

brintos / linux-shallow public Read only

0
0
Text · 525 B · 896dc98 Raw
16 lines · c
1/* SPDX-License-Identifier: GPL-2.0 */2/* Copyright (c) 2021, Intel Corporation. */3 4#ifndef _STMMAC_XDP_H_5#define _STMMAC_XDP_H_6 7#define STMMAC_MAX_RX_BUF_SIZE(num)	(((num) * PAGE_SIZE) - XDP_PACKET_HEADROOM)8#define STMMAC_RX_DMA_ATTR	(DMA_ATTR_SKIP_CPU_SYNC | DMA_ATTR_WEAK_ORDERING)9 10int stmmac_xdp_setup_pool(struct stmmac_priv *priv, struct xsk_buff_pool *pool,11			  u16 queue);12int stmmac_xdp_set_prog(struct stmmac_priv *priv, struct bpf_prog *prog,13			struct netlink_ext_ack *extack);14 15#endif /* _STMMAC_XDP_H_ */16