netdev.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [pull request][net-next 00/15] Mellanox mlx5 updates and cleanups 2017-06-16
@ 2017-06-15 21:42 Saeed Mahameed
  2017-06-15 21:42 ` [net-next 01/15] net/mlx5: Update eqe_type_str() event names Saeed Mahameed
                   ` (15 more replies)
  0 siblings, 16 replies; 21+ messages in thread
From: Saeed Mahameed @ 2017-06-15 21:42 UTC (permalink / raw)
  To: David S. Miller; +Cc: netdev, Saeed Mahameed

Hi Dave,

This series provides updates and cleanups to mlx5 driver.

For more details please see tag log below.

Please pull and let me know if there's any problem.
*This series doesn't introduce any conflict with the ongoing net
pull request.

Thanks,
Saeed.

---

The following changes since commit 3715c47bcda8bb56f7e2be27276282a2d0d48c09:

  Merge branch 'r8152-support-new-chips' (2017-06-15 14:31:56 -0400)

are available in the git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/saeed/linux.git tags/mlx5-updates-2017-06-16

for you to fetch changes up to 8812c24d28f4972c4f2b9998bf30b1f2a1b62adf:

  net/mlx5: Add fast unload support in shutdown flow (2017-06-16 00:19:44 +0300)

----------------------------------------------------------------
mlx5-updates-2017-06-16

This series provide some updates and cleanups for mlx5 core and netdevice
driver.

>From Eli Cohen, add a missing event string.
>From Or Gerlitz, some checkpatch cleanups.
>From Moni, Disalbe HW level LAG when SRIOV is enabled.
>From Tariq, A code reuse cleanup in aRFS flow.
>From Itay Aveksis, Typo fix.
>From Gal Pressman, ethtool statistics updates and "update stats" deferred work optimizations.
>From Majd Dibbiny, Fast unload support on kernel shutdown.

----------------------------------------------------------------
Eli Cohen (1):
      net/mlx5: Update eqe_type_str() event names

Gal Pressman (4):
      net/mlx5e: Rename physical symbol errors counter
      net/mlx5e: Reduce number of heap allocated buffers for update stats
      net/mlx5e: Move and optimize query out of buffer function
      net/mlx5e: Optimize update stats work

Itay Aveksis (1):
      net/mlx5e: Fix typo in warning if CQ moderation is not supported

Majd Dibbiny (2):
      net/mlx5: Expose command polling interface
      net/mlx5: Add fast unload support in shutdown flow

Moni Shoua (1):
      net/mlx5: Undo LAG upon request to create virtual functions

Or Gerlitz (5):
      net/mlx5: Fix some spelling mistakes
      net/mlx5: Avoid using multiple blank lines
      net/mlx5: Avoid blank lines before/after closing/opening braces
      net/mlx5: Align to match opening parenthesis
      net/mlx5: Avoid space after casting

Tariq Toukan (1):
      net/mlx5e: Use function to map aRFS into traffic type

 drivers/infiniband/hw/mlx5/main.c                  |  2 +-
 drivers/net/ethernet/mellanox/mlx5/core/alloc.c    |  1 -
 drivers/net/ethernet/mellanox/mlx5/core/cmd.c      | 36 +++++++----
 drivers/net/ethernet/mellanox/mlx5/core/debugfs.c  |  3 -
 drivers/net/ethernet/mellanox/mlx5/core/en.h       |  2 +-
 drivers/net/ethernet/mellanox/mlx5/core/en_arfs.c  | 21 +++----
 .../net/ethernet/mellanox/mlx5/core/en_common.c    |  1 -
 .../net/ethernet/mellanox/mlx5/core/en_ethtool.c   |  2 +-
 drivers/net/ethernet/mellanox/mlx5/core/en_fs.c    |  1 -
 drivers/net/ethernet/mellanox/mlx5/core/en_main.c  | 52 ++++++++--------
 drivers/net/ethernet/mellanox/mlx5/core/en_rep.c   |  1 -
 drivers/net/ethernet/mellanox/mlx5/core/en_stats.h |  2 +-
 drivers/net/ethernet/mellanox/mlx5/core/en_tx.c    |  2 +-
 drivers/net/ethernet/mellanox/mlx5/core/eq.c       |  6 +-
 drivers/net/ethernet/mellanox/mlx5/core/eswitch.c  |  1 -
 .../ethernet/mellanox/mlx5/core/eswitch_offloads.c |  4 +-
 drivers/net/ethernet/mellanox/mlx5/core/fs_core.c  |  2 +-
 drivers/net/ethernet/mellanox/mlx5/core/fw.c       | 28 +++++++++
 drivers/net/ethernet/mellanox/mlx5/core/health.c   |  4 +-
 drivers/net/ethernet/mellanox/mlx5/core/lag.c      | 71 +++++++++++++++++++---
 drivers/net/ethernet/mellanox/mlx5/core/main.c     | 43 ++++++++++---
 .../net/ethernet/mellanox/mlx5/core/mlx5_core.h    |  6 +-
 .../net/ethernet/mellanox/mlx5/core/pagealloc.c    |  1 -
 drivers/net/ethernet/mellanox/mlx5/core/qp.c       | 21 -------
 drivers/net/ethernet/mellanox/mlx5/core/sriov.c    | 15 +++--
 include/linux/mlx5/driver.h                        |  3 +
 include/linux/mlx5/mlx5_ifc.h                      | 18 ++++--
 include/linux/mlx5/qp.h                            |  2 -
 28 files changed, 227 insertions(+), 124 deletions(-)

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

end of thread, other threads:[~2017-06-21  8:56 UTC | newest]

Thread overview: 21+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-06-15 21:42 [pull request][net-next 00/15] Mellanox mlx5 updates and cleanups 2017-06-16 Saeed Mahameed
2017-06-15 21:42 ` [net-next 01/15] net/mlx5: Update eqe_type_str() event names Saeed Mahameed
2017-06-15 23:49   ` Joe Perches
2017-06-21  8:56     ` Saeed Mahameed
2017-06-15 21:42 ` [net-next 02/15] net/mlx5: Fix some spelling mistakes Saeed Mahameed
2017-06-15 21:42 ` [net-next 03/15] net/mlx5: Avoid using multiple blank lines Saeed Mahameed
2017-06-15 21:42 ` [net-next 04/15] net/mlx5: Avoid blank lines before/after closing/opening braces Saeed Mahameed
2017-06-15 21:42 ` [net-next 05/15] net/mlx5: Align to match opening parenthesis Saeed Mahameed
2017-06-15 21:42 ` [net-next 06/15] net/mlx5: Avoid space after casting Saeed Mahameed
2017-06-15 21:42 ` [net-next 07/15] net/mlx5: Undo LAG upon request to create virtual functions Saeed Mahameed
2017-06-15 21:42 ` [net-next 08/15] net/mlx5e: Use function to map aRFS into traffic type Saeed Mahameed
2017-06-15 21:42 ` [net-next 09/15] net/mlx5e: Fix typo in warning if CQ moderation is not supported Saeed Mahameed
2017-06-15 21:42 ` [net-next 10/15] net/mlx5e: Rename physical symbol errors counter Saeed Mahameed
2017-06-15 21:42 ` [net-next 11/15] net/mlx5e: Reduce number of heap allocated buffers for update stats Saeed Mahameed
2017-06-20 12:36   ` David Laight
2017-06-21  8:12     ` Gal Pressman
2017-06-15 21:42 ` [net-next 12/15] net/mlx5e: Move and optimize query out of buffer function Saeed Mahameed
2017-06-15 21:42 ` [net-next 13/15] net/mlx5e: Optimize update stats work Saeed Mahameed
2017-06-15 21:42 ` [net-next 14/15] net/mlx5: Expose command polling interface Saeed Mahameed
2017-06-15 21:42 ` [net-next 15/15] net/mlx5: Add fast unload support in shutdown flow Saeed Mahameed
2017-06-16 19:25 ` [pull request][net-next 00/15] Mellanox mlx5 updates and cleanups 2017-06-16 David Miller

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).