On 4/12/2021 7:32 AM, Michael Baum wrote:
This patch separates Rx function implementations to different source
file as an optional preparation step for further consolidation of Rx
burst functions.

Signed-off-by: Michael Baum <michae...@nvidia.com>
Acked-by: Viacheslav Ovsiienko <viachesl...@nvidia.com>
---
  drivers/net/mlx5/meson.build |    1 +
  drivers/net/mlx5/mlx5_rx.c   | 1203 ++++++++++++++++++++++++++++++++++++++++++
  drivers/net/mlx5/mlx5_rx.h   |    4 +-
  drivers/net/mlx5/mlx5_rxtx.c | 1179 +----------------------------------------
  drivers/net/mlx5/mlx5_rxtx.h |    2 +
  5 files changed, 1209 insertions(+), 1180 deletions(-)
  create mode 100644 drivers/net/mlx5/mlx5_rx.c

diff --git a/drivers/net/mlx5/meson.build b/drivers/net/mlx5/meson.build
index f2fafbd..0a89a27 100644
--- a/drivers/net/mlx5/meson.build
+++ b/drivers/net/mlx5/meson.build
@@ -19,6 +19,7 @@ sources = files(
        'mlx5_mac.c',
        'mlx5_mr.c',
        'mlx5_rss.c',
+    'mlx5_rx.c',

indentation is wrong, same in a few other patches, will fix while merging.

Reply via email to