Due to many instances of creating CQ SQ and RQ on DevX, they move to common.
v1: Initial release v2: Bug fix (sending wrong umem id to FW). Michael Baum (17): net/mlx5: fix ASO SQ creation error flow common/mlx5: share DevX CQ creation regex/mlx5: move DevX CQ creation to common vdpa/mlx5: move DevX CQ creation to common net/mlx5: move rearm and clock queue CQ creation to common net/mlx5: move ASO CQ creation to common net/mlx5: move Tx CQ creation to common net/mlx5: move Rx CQ creation to common common/mlx5: enhance page size configuration common/mlx5: share DevX SQ creation regex/mlx5: move DevX SQ creation to common net/mlx5: move rearm and clock queue SQ creation to common net/mlx5: move Tx SQ creation to common net/mlx5: move ASO SQ creation to common common/mlx5: share DevX RQ creation net/mlx5: move Rx RQ creation to common common/mlx5: remove doorbell allocation API drivers/common/mlx5/meson.build | 1 + drivers/common/mlx5/mlx5_common.c | 122 ------ drivers/common/mlx5/mlx5_common.h | 23 -- drivers/common/mlx5/mlx5_common_devx.c | 395 +++++++++++++++++++ drivers/common/mlx5/mlx5_common_devx.h | 56 +++ drivers/common/mlx5/mlx5_devx_cmds.c | 53 ++- drivers/net/mlx5/mlx5.c | 8 - drivers/net/mlx5/mlx5.h | 54 +-- drivers/net/mlx5/mlx5_devx.c | 643 +++++++------------------------ drivers/net/mlx5/mlx5_flow_age.c | 172 +++------ drivers/net/mlx5/mlx5_rxtx.c | 2 +- drivers/net/mlx5/mlx5_rxtx.h | 8 - drivers/net/mlx5/mlx5_txpp.c | 294 ++++---------- drivers/regex/mlx5/mlx5_regex.c | 6 - drivers/regex/mlx5/mlx5_regex.h | 17 +- drivers/regex/mlx5/mlx5_regex_control.c | 242 +++--------- drivers/regex/mlx5/mlx5_regex_fastpath.c | 18 +- drivers/vdpa/mlx5/mlx5_vdpa.h | 10 +- drivers/vdpa/mlx5/mlx5_vdpa_event.c | 81 ++-- drivers/vdpa/mlx5/mlx5_vdpa_virtq.c | 2 +- 20 files changed, 839 insertions(+), 1368 deletions(-) create mode 100644 drivers/common/mlx5/mlx5_common_devx.c create mode 100644 drivers/common/mlx5/mlx5_common_devx.h -- 1.8.3.1