net/e1000: fix bitmask of supported Tx flags
Add missed PKT_TX_IEEE1588_TMST to bitmask of all supported
packet Tx flags.
Fixes: 2b76648872
("net/e1000: add Tx preparation")
Signed-off-by: Jingjing Wu <jingjing.wu@intel.com>
Acked-by: Konstantin Ananyev <konstantin.ananyev@intel.com>
This commit is contained in:
parent
859a17db7e
commit
c65e0f76ed
@ -72,12 +72,18 @@
|
||||
#include "base/e1000_api.h"
|
||||
#include "e1000_ethdev.h"
|
||||
|
||||
#ifdef RTE_LIBRTE_IEEE1588
|
||||
#define IGB_TX_IEEE1588_TMST PKT_TX_IEEE1588_TMST
|
||||
#else
|
||||
#define IGB_TX_IEEE1588_TMST 0
|
||||
#endif
|
||||
/* Bit Mask to indicate what bits required for building TX context */
|
||||
#define IGB_TX_OFFLOAD_MASK ( \
|
||||
PKT_TX_VLAN_PKT | \
|
||||
PKT_TX_IP_CKSUM | \
|
||||
PKT_TX_L4_MASK | \
|
||||
PKT_TX_TCP_SEG)
|
||||
PKT_TX_TCP_SEG | \
|
||||
IGB_TX_IEEE1588_TMST)
|
||||
|
||||
#define IGB_TX_OFFLOAD_NOTSUP_MASK \
|
||||
(PKT_TX_OFFLOAD_MASK ^ IGB_TX_OFFLOAD_MASK)
|
||||
|
Loading…
Reference in New Issue
Block a user