xref: /linux/drivers/net/ethernet/intel/igc/igc_xdp.h (revision 02680c23d7b3febe45ea3d4f9818c2b2dc89020a)
1 /* SPDX-License-Identifier: GPL-2.0 */
2 /* Copyright (c) 2020, Intel Corporation. */
3 
4 #ifndef _IGC_XDP_H_
5 #define _IGC_XDP_H_
6 
7 int igc_xdp_set_prog(struct igc_adapter *adapter, struct bpf_prog *prog,
8 		     struct netlink_ext_ack *extack);
9 
10 int igc_xdp_register_rxq_info(struct igc_ring *ring);
11 void igc_xdp_unregister_rxq_info(struct igc_ring *ring);
12 
13 #endif /* _IGC_XDP_H_ */
14