[dpdk-dev] [PATCH v4 3/5] app/procinfo: add Rx buffer size to --show-port

Stephen Hemminger stephen at networkplumber.org
Sat Sep 5 18:59:57 CEST 2020


On Sat, 5 Sep 2020 17:07:32 +0800
Chengchang Tang <tangchengchang at huawei.com> wrote:

>  				printf("\t  -- queue %d rx scatter %d"
>  						" descriptors %d"
> +						" rx buffer size %d"
>  						" offloads 0x%"PRIx64
>  						" mempool socket %d\n",
>  						j,
>  						queue_info.scattered_rx,
>  						queue_info.nb_desc,
> +						queue_info.rx_buf_size,
>  						queue_info.conf.offloads,
>  						queue_info.mp->socket_id);
>  			}

These should be using %u and need space after " for PRIx64
Why not:
  				printf("\t  -- queue %u rx scatter %u"
  						" descriptors %u"
 						" rx buffer size %u"
  						" offloads %#" PRIx64
  						" mempool socket %d\n",


More information about the dev mailing list