On Fri, 27 Apr 2018 01:03:31 +0300 Medvedkin Vladimir <[email protected]> wrote:
> +static inline int __attribute__((pure))
> +rte_rib_is_right_node(struct rte_rib_node *node)
> +{
> + return (node->parent->right == node);
> +}
> +
Minor nit (repeated in several places).
DPDK uses Linux (not BSD) style where extra paranthesis are not needed on
return statement.

