Re: [dpdk-dev] [PATCH v2 4/4] net/mlx5: move locally used functions to static

2019-05-02 Thread Yongseok Koh
> On May 2, 2019, at 8:01 AM, Dekel Peled wrote: > > Multiple functions were declared in header file mlx5_rxtx.h, > inplemented in mlx5_rxq.c, and called only in mlx5_rxq.c. > > This patch moves all these functions declarations into mlx5_rxq.c, > as static functions. > Some functions implement

[dpdk-dev] [PATCH v2 4/4] net/mlx5: move locally used functions to static

2019-05-02 Thread Dekel Peled
Multiple functions were declared in header file mlx5_rxtx.h, inplemented in mlx5_rxq.c, and called only in mlx5_rxq.c. This patch moves all these functions declarations into mlx5_rxq.c, as static functions. Some functions implementation was copied higher in the file to precede the functions calls.