mirror of https://github.com/F-Stack/f-stack.git
14 lines
387 B
C
14 lines
387 B
C
|
/* SPDX-License-Identifier: BSD-3-Clause
|
||
|
* Copyright(C) 2022 Marvell.
|
||
|
*/
|
||
|
|
||
|
#include "cn10k_ethdev.h"
|
||
|
#include "cn10k_rx.h"
|
||
|
|
||
|
#define R(name, flags) \
|
||
|
NIX_RX_RECV(cn10k_nix_recv_pkts_##name, flags) \
|
||
|
NIX_RX_RECV(cn10k_nix_recv_pkts_reas_##name, flags | NIX_RX_REAS_F)
|
||
|
|
||
|
NIX_RX_FASTPATH_MODES_48_63
|
||
|
#undef R
|