Hi, This series provides misc low level updates to mlx5 core driver, to be shared between rdma and net-next trees. 1) From Aya: Enable general events on all physical link types and restrict general event handling of subtype DELAY_DROP_TIMEOUT in mlx5 rdma driver to ethernet links only as it was intended. 2) From Eli: Introduce low level bits for prio tag mode 3) From Maor: Low level steering updates to support RDMA RX flow steering and enables RoCE loopback traffic when switchdev is enabled. 4) From Vu and Parav: Two small mlx5 core cleanups 5) From Yevgeny add HW definitions of geneve offloads In case of no objections this series will be applied to mlx5-next branch. v2: - Address comments from Leon. - Static checker fixes. Thanks, Saeed. --- Aya Levin (2): IB/mlx5: Restrict 'DELAY_DROP_TIMEOUT' subtype to Ethernet interfaces net/mlx5: Enable general events on all interfaces Eli Britstein (1): net/mlx5: E-Switch: Introduce prio tag mode Maor Gottlieb (4): net/mlx5: Pass flow steering objects to fs_cmd net/mlx5: Add support in RDMA RX steering net/mlx5: Add new miss flow table action net/mlx5: Eswitch, enable RoCE loopback traffic Parav Pandit (1): net/mlx5: Get rid of storing copy of device name Vu Pham (1): net/mlx5: Separate and generalize dma device from pci device Yevgeny Kliteynik (2): net/mlx5: Geneve, Add basic Geneve encap/decap flow table capabilities net/mlx5: Geneve, Add flow table capabilities for Geneve decap with TLV options drivers/infiniband/hw/mlx5/main.c | 16 +- .../net/ethernet/mellanox/mlx5/core/Makefile | 2 +- .../net/ethernet/mellanox/mlx5/core/alloc.c | 19 +- drivers/net/ethernet/mellanox/mlx5/core/cmd.c | 9 +- .../mlx5/core/diag/fw_tracer_tracepoint.h | 5 +- .../net/ethernet/mellanox/mlx5/core/en_main.c | 14 +- .../net/ethernet/mellanox/mlx5/core/en_rep.c | 2 +- .../net/ethernet/mellanox/mlx5/core/en_tc.c | 5 +- drivers/net/ethernet/mellanox/mlx5/core/eq.c | 3 +- .../net/ethernet/mellanox/mlx5/core/eswitch.h | 8 +- .../mellanox/mlx5/core/eswitch_offloads.c | 4 + .../ethernet/mellanox/mlx5/core/fpga/ipsec.c | 86 +++++---- .../net/ethernet/mellanox/mlx5/core/fs_cmd.c | 113 ++++++----- .../net/ethernet/mellanox/mlx5/core/fs_cmd.h | 33 ++-- .../net/ethernet/mellanox/mlx5/core/fs_core.c | 73 ++++--- .../net/ethernet/mellanox/mlx5/core/fs_core.h | 5 +- .../net/ethernet/mellanox/mlx5/core/health.c | 2 +- .../net/ethernet/mellanox/mlx5/core/main.c | 15 +- .../ethernet/mellanox/mlx5/core/mlx5_core.h | 65 ++++--- .../ethernet/mellanox/mlx5/core/pagealloc.c | 20 +- .../net/ethernet/mellanox/mlx5/core/rdma.c | 182 ++++++++++++++++++ .../net/ethernet/mellanox/mlx5/core/rdma.h | 20 ++ include/linux/mlx5/device.h | 10 +- include/linux/mlx5/driver.h | 10 +- include/linux/mlx5/fs.h | 1 + include/linux/mlx5/mlx5_ifc.h | 82 ++++++-- 26 files changed, 566 insertions(+), 238 deletions(-) create mode 100644 drivers/net/ethernet/mellanox/mlx5/core/rdma.c create mode 100644 drivers/net/ethernet/mellanox/mlx5/core/rdma.h -- 2.20.1