2017-02-07 05:55:42 +08:00
|
|
|
/* Broadcom NetXtreme-C/E network driver.
|
|
|
|
*
|
|
|
|
* Copyright (c) 2016-2017 Broadcom Limited
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef BNXT_XDP_H
|
|
|
|
#define BNXT_XDP_H
|
|
|
|
|
2017-04-05 06:14:13 +08:00
|
|
|
void bnxt_xmit_xdp(struct bnxt *bp, struct bnxt_tx_ring_info *txr,
|
|
|
|
dma_addr_t mapping, u32 len, u16 rx_prod);
|
2017-02-07 05:55:43 +08:00
|
|
|
void bnxt_tx_int_xdp(struct bnxt *bp, struct bnxt_napi *bnapi, int nr_pkts);
|
2017-02-07 05:55:42 +08:00
|
|
|
bool bnxt_rx_xdp(struct bnxt *bp, struct bnxt_rx_ring_info *rxr, u16 cons,
|
|
|
|
struct page *page, u8 **data_ptr, unsigned int *len,
|
|
|
|
u8 *event);
|
2017-11-04 04:56:16 +08:00
|
|
|
int bnxt_xdp(struct net_device *dev, struct netdev_bpf *xdp);
|
2017-02-07 05:55:42 +08:00
|
|
|
|
|
|
|
#endif
|