From: Saeed Mahameed <saeedm@nvidia.com>
To: Jakub Kicinski <kuba@kernel.org>
Cc: "David S. Miller" <davem@davemloft.net>, <netdev@vger.kernel.org>,
"Saeed Mahameed" <saeedm@nvidia.com>
Subject: [pull request][net-next V2 00/15] mlx5 updates 2020-12-01
Date: Wed, 2 Dec 2020 20:20:53 -0800 [thread overview]
Message-ID: <20201203042108.232706-1-saeedm@nvidia.com> (raw)
Hi Jakub,
v1->v2: Removed merge commit of mlx5-next.
This series adds port tx timestamping support and some misc updates.
For more information please see tag log below.
Please pull and let me know if there is any problem.
Thanks,
Saeed.
---
The following changes since commit cec85994c6b4fa6beb5de61dcd03e23001b9deb5:
bareudp: constify device_type declaration (2020-12-02 18:00:18 -0800)
are available in the Git repository at:
git://git.kernel.org/pub/scm/linux/kernel/git/saeed/linux.git tags/mlx5-updates-2020-12-01
for you to fetch changes up to f5c3fd7ba638e4fa5908144b3995dcb6854fba60:
net/mlx5e: Fill mlx5e_create_cq_param in a function (2020-12-02 20:14:42 -0800)
----------------------------------------------------------------
mlx5-updates-2020-12-01
mlx5e port TX timestamping support and MISC updates
1) Add support for port TX timestamping, for better PTP accuracy.
Currently in mlx5 HW TX timestamping is done on CQE (TX completion)
generation, which much earlier than when the packet actually goes out to
the wire, in this series Eran implements the option to do timestamping on
the port using a special SQ (Send Queue), such Send Queue will generate 2
CQEs (TX completions), the original one and a new one when the packet
leaves the port, due to the nature of this special handling, such mechanism
is an opt-in only and it is off by default to avoid any performance
degradation on normal traffic flows.
2) Misc updates and trivial improvements.
----------------------------------------------------------------
Aya Levin (3):
net/mlx5e: Allow CQ outside of channel context
net/mlx5e: Allow RQ outside of channel context
net/mlx5e: Split between RX/TX tunnel FW support indication
Eran Ben Elisha (6):
net/mlx5e: Allow SQ outside of channel context
net/mlx5e: Change skb fifo push/pop API to be used without SQ
net/mlx5e: Split SW group counters update function
net/mlx5e: Move MLX5E_RX_ERR_CQE macro
net/mlx5e: Add TX PTP port object support
net/mlx5e: Add TX port timestamp support
Maxim Mikityanskiy (1):
net/mlx5e: Fill mlx5e_create_cq_param in a function
Shay Drory (1):
net/mlx5: Arm only EQs with EQEs
Tariq Toukan (1):
net/mlx5e: Free drop RQ in a dedicated function
YueHaibing (2):
net/mlx5e: Remove duplicated include
net/mlx5: Fix passing zero to 'PTR_ERR'
Zhu Yanjun (1):
net/mlx5e: remove unnecessary memset
drivers/net/ethernet/mellanox/mlx5/core/Makefile | 2 +-
drivers/net/ethernet/mellanox/mlx5/core/en.h | 63 ++-
drivers/net/ethernet/mellanox/mlx5/core/en/fs.h | 3 +-
.../net/ethernet/mellanox/mlx5/core/en/health.c | 16 +-
.../net/ethernet/mellanox/mlx5/core/en/health.h | 7 +-
.../net/ethernet/mellanox/mlx5/core/en/params.h | 10 +
drivers/net/ethernet/mellanox/mlx5/core/en/ptp.c | 529 +++++++++++++++++++++
drivers/net/ethernet/mellanox/mlx5/core/en/ptp.h | 63 +++
.../ethernet/mellanox/mlx5/core/en/reporter_rx.c | 52 +-
.../ethernet/mellanox/mlx5/core/en/reporter_tx.c | 215 +++++++--
drivers/net/ethernet/mellanox/mlx5/core/en/txrx.h | 19 +-
.../net/ethernet/mellanox/mlx5/core/en/xsk/setup.c | 9 +-
.../mellanox/mlx5/core/en_accel/tls_rxtx.c | 2 +-
.../net/ethernet/mellanox/mlx5/core/en_ethtool.c | 33 ++
drivers/net/ethernet/mellanox/mlx5/core/en_fs.c | 20 +-
drivers/net/ethernet/mellanox/mlx5/core/en_main.c | 252 ++++++----
drivers/net/ethernet/mellanox/mlx5/core/en_rx.c | 29 +-
drivers/net/ethernet/mellanox/mlx5/core/en_stats.c | 403 +++++++++++-----
drivers/net/ethernet/mellanox/mlx5/core/en_stats.h | 11 +
drivers/net/ethernet/mellanox/mlx5/core/en_tx.c | 77 ++-
drivers/net/ethernet/mellanox/mlx5/core/en_txrx.c | 5 +-
drivers/net/ethernet/mellanox/mlx5/core/eq.c | 6 +-
.../mellanox/mlx5/core/esw/acl/egress_lgcy.c | 2 +-
.../mellanox/mlx5/core/esw/acl/egress_ofld.c | 2 +-
.../mellanox/mlx5/core/esw/acl/ingress_lgcy.c | 2 +-
.../mellanox/mlx5/core/esw/acl/ingress_ofld.c | 2 +-
.../ethernet/mellanox/mlx5/core/eswitch_offloads.c | 1 -
27 files changed, 1485 insertions(+), 350 deletions(-)
create mode 100644 drivers/net/ethernet/mellanox/mlx5/core/en/ptp.c
create mode 100644 drivers/net/ethernet/mellanox/mlx5/core/en/ptp.h
next reply other threads:[~2020-12-03 4:22 UTC|newest]
Thread overview: 41+ messages / expand[flat|nested] mbox.gz Atom feed top
2020-12-03 4:20 Saeed Mahameed [this message]
2020-12-03 4:20 ` [net-next V2 01/15] net/mlx5e: Free drop RQ in a dedicated function Saeed Mahameed
2020-12-03 4:20 ` [net-next V2 02/15] net/mlx5e: Allow CQ outside of channel context Saeed Mahameed
2020-12-03 4:20 ` [net-next V2 03/15] net/mlx5e: Allow RQ " Saeed Mahameed
2020-12-03 4:20 ` [net-next V2 04/15] net/mlx5e: Allow SQ " Saeed Mahameed
2020-12-03 4:20 ` [net-next V2 05/15] net/mlx5e: Change skb fifo push/pop API to be used without SQ Saeed Mahameed
2020-12-03 4:20 ` [net-next V2 06/15] net/mlx5e: Split SW group counters update function Saeed Mahameed
2020-12-03 4:21 ` [net-next V2 07/15] net/mlx5e: Move MLX5E_RX_ERR_CQE macro Saeed Mahameed
2020-12-03 4:21 ` [net-next V2 08/15] net/mlx5e: Add TX PTP port object support Saeed Mahameed
2020-12-04 2:29 ` Jakub Kicinski
2020-12-04 19:33 ` Saeed Mahameed
2020-12-04 20:26 ` Jakub Kicinski
2020-12-04 21:57 ` Saeed Mahameed
2020-12-04 22:52 ` Jakub Kicinski
2020-12-05 0:55 ` Vladimir Oltean
2020-12-07 6:22 ` Saeed Mahameed
2020-12-04 23:17 ` Jakub Kicinski
2020-12-04 23:57 ` Saeed Mahameed
2020-12-05 0:24 ` Jakub Kicinski
2020-12-06 13:37 ` Eran Ben Elisha
2020-12-06 17:08 ` Richard Cochran
2020-12-07 8:37 ` Saeed Mahameed
2020-12-07 11:05 ` Eran Ben Elisha
2020-12-07 15:19 ` Richard Cochran
2020-12-07 20:42 ` Jakub Kicinski
2020-12-07 22:04 ` Saeed Mahameed
2020-12-08 13:02 ` Richard Cochran
2020-12-06 13:36 ` Eran Ben Elisha
2020-12-07 20:29 ` Jakub Kicinski
2020-12-06 13:33 ` Eran Ben Elisha
2020-12-05 1:49 ` Vladimir Oltean
2020-12-05 2:10 ` Jakub Kicinski
2020-12-05 13:20 ` Richard Cochran
2020-12-07 5:50 ` Saeed Mahameed
2020-12-03 4:21 ` [net-next V2 09/15] net/mlx5e: Add TX port timestamp support Saeed Mahameed
2020-12-03 4:21 ` [net-next V2 10/15] net/mlx5e: remove unnecessary memset Saeed Mahameed
2020-12-03 4:21 ` [net-next V2 11/15] net/mlx5e: Remove duplicated include Saeed Mahameed
2020-12-03 4:21 ` [net-next V2 12/15] net/mlx5: Arm only EQs with EQEs Saeed Mahameed
2020-12-03 4:21 ` [net-next V2 13/15] net/mlx5: Fix passing zero to 'PTR_ERR' Saeed Mahameed
2020-12-03 4:21 ` [net-next V2 14/15] net/mlx5e: Split between RX/TX tunnel FW support indication Saeed Mahameed
2020-12-03 4:21 ` [net-next V2 15/15] net/mlx5e: Fill mlx5e_create_cq_param in a function 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=20201203042108.232706-1-saeedm@nvidia.com \
--to=saeedm@nvidia.com \
--cc=davem@davemloft.net \
--cc=kuba@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;
as well as URLs for NNTP newsgroup(s).