dpdk: use local logger
Type: fix Change-Id: I44922f70aef6a3c53f0f56c6d0656502c8fd69b2 Signed-off-by: Paul Vinciguerra <pvinci@vinciconsulting.com>
This commit is contained in:

committed by
Dave Wallace

parent
60013b5501
commit
59c110736b
@ -158,7 +158,7 @@ dpdk_port_crc_strip_enabled (dpdk_device_t * xd)
|
|||||||
return !(xd->port_conf.rxmode.offloads & DEV_RX_OFFLOAD_KEEP_CRC);
|
return !(xd->port_conf.rxmode.offloads & DEV_RX_OFFLOAD_KEEP_CRC);
|
||||||
}
|
}
|
||||||
|
|
||||||
/* The funciton check_l3cache helps check if Level 3 cache exists or not on current CPUs
|
/* The function check_l3cache helps check if Level 3 cache exists or not on current CPUs
|
||||||
return value 1: exist.
|
return value 1: exist.
|
||||||
return value 0: not exist.
|
return value 0: not exist.
|
||||||
*/
|
*/
|
||||||
@ -242,7 +242,7 @@ dpdk_lib_init (dpdk_main_t * dm)
|
|||||||
|
|
||||||
if (nports < 1)
|
if (nports < 1)
|
||||||
{
|
{
|
||||||
dpdk_log_notice ("DPDK drivers found no ports...");
|
dpdk_log_notice ("DPDK drivers found no Ethernet devices...");
|
||||||
}
|
}
|
||||||
|
|
||||||
if (CLIB_DEBUG > 0)
|
if (CLIB_DEBUG > 0)
|
||||||
@ -284,7 +284,7 @@ dpdk_lib_init (dpdk_main_t * dm)
|
|||||||
|
|
||||||
if (dev_info.device == 0)
|
if (dev_info.device == 0)
|
||||||
{
|
{
|
||||||
clib_warning ("DPDK bug: missing device info. Skipping %s device",
|
dpdk_log_notice ("DPDK bug: missing device info. Skipping %s device",
|
||||||
dev_info.driver_name);
|
dev_info.driver_name);
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
@ -830,7 +830,7 @@ dpdk_lib_init (dpdk_main_t * dm)
|
|||||||
hi->max_packet_bytes = xd->port_conf.rxmode.max_rx_pkt_len
|
hi->max_packet_bytes = xd->port_conf.rxmode.max_rx_pkt_len
|
||||||
- sizeof (ethernet_header_t);
|
- sizeof (ethernet_header_t);
|
||||||
else
|
else
|
||||||
clib_warning ("hi NULL");
|
dpdk_log_warn ("hi NULL");
|
||||||
|
|
||||||
if (dm->conf->no_multi_seg)
|
if (dm->conf->no_multi_seg)
|
||||||
mtu = mtu > ETHER_MAX_LEN ? ETHER_MAX_LEN : mtu;
|
mtu = mtu > ETHER_MAX_LEN ? ETHER_MAX_LEN : mtu;
|
||||||
@ -951,7 +951,7 @@ dpdk_bind_devices_to_uio (dpdk_config_main_t * conf)
|
|||||||
/* Chelsio T4/T5 */
|
/* Chelsio T4/T5 */
|
||||||
else if (d->vendor_id == 0x1425 && (d->device_id & 0xe000) == 0x4000)
|
else if (d->vendor_id == 0x1425 && (d->device_id & 0xe000) == 0x4000)
|
||||||
;
|
;
|
||||||
/* Amazen Elastic Network Adapter */
|
/* Amazon Elastic Network Adapter */
|
||||||
else if (d->vendor_id == 0x1d0f && d->device_id >= 0xec20 && d->device_id <= 0xec21)
|
else if (d->vendor_id == 0x1d0f && d->device_id >= 0xec20 && d->device_id <= 0xec21)
|
||||||
;
|
;
|
||||||
/* Cavium Network Adapter */
|
/* Cavium Network Adapter */
|
||||||
|
Reference in New Issue
Block a user