net/dpaa: improve Rx offload debug message
This patch also align few RX offload support to right category. Signed-off-by: Hemant Agrawal <hemant.agrawal@nxp.com> Reviewed-by: Sachin Saxena <sachin.saxena@nxp.com>
This commit is contained in:
parent
0964a95120
commit
1cd8d4ce5d
@ -59,7 +59,9 @@ static uint64_t dev_rx_offloads_nodis =
|
||||
DEV_RX_OFFLOAD_OUTER_IPV4_CKSUM;
|
||||
|
||||
/* Supported Tx offloads */
|
||||
static uint64_t dev_tx_offloads_sup;
|
||||
static uint64_t dev_tx_offloads_sup =
|
||||
DEV_TX_OFFLOAD_MT_LOCKFREE |
|
||||
DEV_TX_OFFLOAD_MBUF_FAST_FREE;
|
||||
|
||||
/* Tx offloads which cannot be disabled */
|
||||
static uint64_t dev_tx_offloads_nodis =
|
||||
@ -68,9 +70,7 @@ static uint64_t dev_tx_offloads_nodis =
|
||||
DEV_TX_OFFLOAD_TCP_CKSUM |
|
||||
DEV_TX_OFFLOAD_SCTP_CKSUM |
|
||||
DEV_TX_OFFLOAD_OUTER_IPV4_CKSUM |
|
||||
DEV_TX_OFFLOAD_MULTI_SEGS |
|
||||
DEV_TX_OFFLOAD_MT_LOCKFREE |
|
||||
DEV_TX_OFFLOAD_MBUF_FAST_FREE;
|
||||
DEV_TX_OFFLOAD_MULTI_SEGS;
|
||||
|
||||
/* Keep track of whether QMAN and BMAN have been globally initialized */
|
||||
static int is_global_init;
|
||||
@ -196,20 +196,20 @@ dpaa_eth_dev_configure(struct rte_eth_dev *dev)
|
||||
|
||||
PMD_INIT_FUNC_TRACE();
|
||||
|
||||
/* Rx offloads validation */
|
||||
/* Rx offloads which are enabled by default */
|
||||
if (dev_rx_offloads_nodis & ~rx_offloads) {
|
||||
DPAA_PMD_WARN(
|
||||
"Rx offloads non configurable - requested 0x%" PRIx64
|
||||
" ignored 0x%" PRIx64,
|
||||
rx_offloads, dev_rx_offloads_nodis);
|
||||
DPAA_PMD_INFO(
|
||||
"Some of rx offloads enabled by default - requested 0x%" PRIx64
|
||||
" fixed are 0x%" PRIx64,
|
||||
rx_offloads, dev_rx_offloads_nodis);
|
||||
}
|
||||
|
||||
/* Tx offloads validation */
|
||||
/* Tx offloads which are enabled by default */
|
||||
if (dev_tx_offloads_nodis & ~tx_offloads) {
|
||||
DPAA_PMD_WARN(
|
||||
"Tx offloads non configurable - requested 0x%" PRIx64
|
||||
" ignored 0x%" PRIx64,
|
||||
tx_offloads, dev_tx_offloads_nodis);
|
||||
DPAA_PMD_INFO(
|
||||
"Some of tx offloads enabled by default - requested 0x%" PRIx64
|
||||
" fixed are 0x%" PRIx64,
|
||||
tx_offloads, dev_tx_offloads_nodis);
|
||||
}
|
||||
|
||||
if (rx_offloads & DEV_RX_OFFLOAD_JUMBO_FRAME) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user