On Tue, 8 Sep 2020 21:17:50 +0100
Cristian Dumitrescu <cristian.dumitrescu at intel.com> wrote:
> +/*
> + * Pipeline.
> + */
> +struct rte_swx_pipeline {
> + int build_done;
> + int numa_node;
> +};
> +
> +
Is int the right type for these.
build_done seems like a boolean
and numa_node should be unsigned?