[dpdk-dev] [PATCH v7 2/2] examples/vdpa: introduce a new sample for vDPA

Ye Xiaolong xiaolong.ye at intel.com
Fri Sep 28 16:33:53 CEST 2018


On 09/28, Maxime Coquelin wrote:
>> +	ret = rte_eal_init(argc, argv);
>> +	if (ret < 0)
>> +		rte_exit(EXIT_FAILURE, "eal init failed\n");
>> +	argc -= ret;
>> +	argv += ret;
>> +
>> +	data_init();
>
>You need to check return from data_init().
>If this is fine for you, I can change to below code when applying:
>
>ret = data_init();
>if (ret < 0)
>    rte_exit(EXIT_FAILURE, "data init failed\n");
>
> 

I'm fine with this change.

Thanks,
Xiaolong


More information about the dev mailing list