All of lore.kernel.org
 help / color / mirror / Atom feed
* [pull request][net-next 00/12] Mellanox, mlx5e updates 2018-06-28
@ 2018-06-28 21:50 Saeed Mahameed
  2018-06-28 21:50 ` [net-next 01/12] net/mlx5e: Add UDP GSO support Saeed Mahameed
                   ` (12 more replies)
  0 siblings, 13 replies; 22+ messages in thread
From: Saeed Mahameed @ 2018-06-28 21:50 UTC (permalink / raw)
  To: David S. Miller; +Cc: netdev, Or Gerlitz, Saeed Mahameed

Hi Dave,

The following pull request includes updates for mlx5e netdevice driver.
For more information please see tag log below.

Please pull and let me know if there's any problem.

Thanks,
Saeed.

---

The following changes since commit 7861552cedd81a164c0d5d1c89fe2cb45a3ed41b:

  netlink: Return extack message if attribute validation fails (2018-06-28 16:18:04 +0900)

are available in the Git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/saeed/linux.git tags/mlx5e-updates-2018-06-28

for you to fetch changes up to ed56c5193ad89d1097cdbdc87abeb062e03a06eb:

  net/mlx5e: Update NIC HW stats on demand only (2018-06-28 14:44:38 -0700)

----------------------------------------------------------------
mlx5e-updates-2018-06-28

mlx5e netdevice driver updates:

- Boris Pismenny added the support for UDP GSO in the first two patches.
  Impressive performance numbers are included in the commit message,
  @Line rate with ~half of the cpu utilization compared to non offload
  or no GSO at all.

- From Tariq Toukan:
  - Convert large order kzalloc allocations to kvzalloc.
  - Added performance diagnostic statistics to several places in data path.

>From Saeed and Eran,
  - Update NIC HW stats on demand only, this is to eliminate the background
    thread needed to update some HW statistics in the driver cache in
    order to report error and drop counters from HW in ndo_get_stats.

----------------------------------------------------------------
Boris Pismenny (2):
      net/mlx5e: Add UDP GSO support
      net/mlx5e: Add UDP GSO remaining counter

Saeed Mahameed (1):
      net/mlx5e: Update NIC HW stats on demand only

Tariq Toukan (9):
      net/mlx5e: Convert large order kzalloc allocations to kvzalloc
      net/mlx5e: RX, Use existing WQ local variable
      net/mlx5e: Add TX completions statistics
      net/mlx5e: Add XDP_TX completions statistics
      net/mlx5e: Add NAPI statistics
      net/mlx5e: Add a counter for congested UMRs
      net/mlx5e: Add channel events counter
      net/mlx5e: Add counter for MPWQE filler strides
      net/mlx5e: Add counter for total num of NOP operations

 drivers/net/ethernet/mellanox/mlx5/core/Makefile   |   4 +-
 drivers/net/ethernet/mellanox/mlx5/core/en.h       |   1 -
 .../mellanox/mlx5/core/en_accel/en_accel.h         |  11 ++-
 .../ethernet/mellanox/mlx5/core/en_accel/rxtx.c    | 109 +++++++++++++++++++++
 .../ethernet/mellanox/mlx5/core/en_accel/rxtx.h    |  14 +++
 drivers/net/ethernet/mellanox/mlx5/core/en_main.c  |  57 ++++++-----
 drivers/net/ethernet/mellanox/mlx5/core/en_rep.c   |   3 +
 drivers/net/ethernet/mellanox/mlx5/core/en_rx.c    |  11 ++-
 drivers/net/ethernet/mellanox/mlx5/core/en_stats.c |  34 ++++++-
 drivers/net/ethernet/mellanox/mlx5/core/en_stats.h |  25 ++++-
 drivers/net/ethernet/mellanox/mlx5/core/en_tx.c    |  17 +++-
 drivers/net/ethernet/mellanox/mlx5/core/en_txrx.c  |   9 +-
 drivers/net/ethernet/mellanox/mlx5/core/wq.h       |   5 +
 13 files changed, 252 insertions(+), 48 deletions(-)
 create mode 100644 drivers/net/ethernet/mellanox/mlx5/core/en_accel/rxtx.c
 create mode 100644 drivers/net/ethernet/mellanox/mlx5/core/en_accel/rxtx.h

^ permalink raw reply	[flat|nested] 22+ messages in thread

end of thread, other threads:[~2018-07-02 19:17 UTC | newest]

Thread overview: 22+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-06-28 21:50 [pull request][net-next 00/12] Mellanox, mlx5e updates 2018-06-28 Saeed Mahameed
2018-06-28 21:50 ` [net-next 01/12] net/mlx5e: Add UDP GSO support Saeed Mahameed
2018-06-29 22:19   ` Willem de Bruijn
2018-06-30 16:06     ` Boris Pismenny
2018-06-30 19:40       ` Boris Pismenny
     [not found]         ` <CAKgT0UfFMG+i9z_nxB0vkJesDE4CHWbudCh6kJ_1+=Vd1hv=wA@mail.gmail.com>
2018-07-02  1:45           ` Willem de Bruijn
2018-07-02  5:29             ` Boris Pismenny
2018-07-02 13:34               ` Willem de Bruijn
2018-07-02 14:45                 ` Willem de Bruijn
     [not found]                   ` <CAKgT0UdC2c04JagxW8S==-ymBfDZVd6f=7DcLUGjRqiiZA3BwA@mail.gmail.com>
2018-07-02 19:17                     ` Boris Pismenny
2018-06-28 21:50 ` [net-next 02/12] net/mlx5e: Add UDP GSO remaining counter Saeed Mahameed
2018-06-28 21:50 ` [net-next 03/12] net/mlx5e: Convert large order kzalloc allocations to kvzalloc Saeed Mahameed
2018-06-28 21:50 ` [net-next 04/12] net/mlx5e: RX, Use existing WQ local variable Saeed Mahameed
2018-06-28 21:50 ` [net-next 05/12] net/mlx5e: Add TX completions statistics Saeed Mahameed
2018-06-28 21:50 ` [net-next 06/12] net/mlx5e: Add XDP_TX " Saeed Mahameed
2018-06-28 21:50 ` [net-next 07/12] net/mlx5e: Add NAPI statistics Saeed Mahameed
2018-06-28 21:50 ` [net-next 08/12] net/mlx5e: Add a counter for congested UMRs Saeed Mahameed
2018-06-28 21:51 ` [net-next 09/12] net/mlx5e: Add channel events counter Saeed Mahameed
2018-06-28 21:51 ` [net-next 10/12] net/mlx5e: Add counter for MPWQE filler strides Saeed Mahameed
2018-06-28 21:51 ` [net-next 11/12] net/mlx5e: Add counter for total num of NOP operations Saeed Mahameed
2018-06-28 21:51 ` [net-next 12/12] net/mlx5e: Update NIC HW stats on demand only Saeed Mahameed
2018-06-29 14:56 ` [pull request][net-next 00/12] Mellanox, mlx5e updates 2018-06-28 David Miller

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.