From: Saeed Mahameed <saeedm@mellanox.com>
To: Saeed Mahameed <saeedm@mellanox.com>,
Leon Romanovsky <leonro@mellanox.com>
Cc: Jason Gunthorpe <jgg@mellanox.com>,
"netdev@vger.kernel.org" <netdev@vger.kernel.org>,
"linux-rdma@vger.kernel.org" <linux-rdma@vger.kernel.org>
Subject: [PATCH V2 mlx5-next 00/11] Mellanox, mlx5-next updates 2019-04-25
Date: Mon, 29 Apr 2019 18:13:58 +0000 [thread overview]
Message-ID: <20190429181326.6262-1-saeedm@mellanox.com> (raw)
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
next reply other threads:[~2019-04-29 18:13 UTC|newest]
Thread overview: 17+ messages / expand[flat|nested] mbox.gz Atom feed top
2019-04-29 18:13 Saeed Mahameed [this message]
2019-04-29 18:14 ` [PATCH V2 mlx5-next 01/11] net/mlx5: E-Switch: Introduce prio tag mode Saeed Mahameed
2019-04-29 18:14 ` [PATCH V2 mlx5-next 02/11] net/mlx5: Get rid of storing copy of device name Saeed Mahameed
2019-04-29 18:14 ` [PATCH V2 mlx5-next 03/11] net/mlx5: Separate and generalize dma device from pci device Saeed Mahameed
2019-04-29 18:14 ` [PATCH V2 mlx5-next 04/11] IB/mlx5: Restrict 'DELAY_DROP_TIMEOUT' subtype to Ethernet interfaces Saeed Mahameed
2019-04-29 18:14 ` [PATCH V2 mlx5-next 05/11] net/mlx5: Enable general events on all interfaces Saeed Mahameed
2019-04-29 18:14 ` [PATCH V2 mlx5-next 06/11] net/mlx5: Pass flow steering objects to fs_cmd Saeed Mahameed
2019-04-29 18:14 ` [PATCH V2 mlx5-next 07/11] net/mlx5: Add support in RDMA RX steering Saeed Mahameed
2019-04-29 18:14 ` [PATCH V2 mlx5-next 08/11] net/mlx5: Add new miss flow table action Saeed Mahameed
2019-04-29 18:14 ` [PATCH V2 mlx5-next 09/11] net/mlx5: Eswitch, enable RoCE loopback traffic Saeed Mahameed
2019-04-29 18:41 ` Leon Romanovsky
2019-04-29 18:45 ` Parav Pandit
2019-04-29 22:30 ` Mark Bloch
2019-04-29 22:34 ` Parav Pandit
2019-04-29 18:14 ` [PATCH V2 mlx5-next 10/11] net/mlx5: Geneve, Add basic Geneve encap/decap flow table capabilities Saeed Mahameed
2019-04-29 18:14 ` [PATCH V2 mlx5-next 11/11] net/mlx5: Geneve, Add flow table capabilities for Geneve decap with TLV options Saeed Mahameed
2019-04-29 23:56 ` [PATCH V2 mlx5-next 00/11] Mellanox, mlx5-next updates 2019-04-25 Saeed Mahameed
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20190429181326.6262-1-saeedm@mellanox.com \
--to=saeedm@mellanox.com \
--cc=jgg@mellanox.com \
--cc=leonro@mellanox.com \
--cc=linux-rdma@vger.kernel.org \
--cc=netdev@vger.kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox