On Thu, 21 Mar 2019 17:18:41 +0800 Xiaolong Ye <[email protected]> wrote:
> +
> + if (ret < 0)
> + return -EINVAL;
> +
> + return 0;
You could propogate kernel errno into DPDK?
return (ret < 0) ? -errno : 0;
On Thu, 21 Mar 2019 17:18:41 +0800 Xiaolong Ye <[email protected]> wrote:
> +
> + if (ret < 0)
> + return -EINVAL;
> +
> + return 0;
You could propogate kernel errno into DPDK?
return (ret < 0) ? -errno : 0;