Add support for packet type lookup on Rx to translate HW specific types to RTE_PTYPE_* defines Signed-off-by: Nithin Dabilpuram <ndabilpuram@marvell.com>
13 lines
216 B
C
13 lines
216 B
C
/* SPDX-License-Identifier: BSD-3-Clause
|
|
* Copyright(C) 2021 Marvell.
|
|
*/
|
|
|
|
#ifndef __CN9K_RX_H__
|
|
#define __CN9K_RX_H__
|
|
|
|
#include <rte_ether.h>
|
|
|
|
#define NIX_RX_OFFLOAD_PTYPE_F BIT(1)
|
|
|
|
#endif /* __CN9K_RX_H__ */
|