netdev.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [pull request][net-next 00/16] Mellanox, mlx5e updates 2018-05-14
@ 2018-05-14 22:19 Saeed Mahameed
  2018-05-14 22:19 ` [net-next 01/16] net/mlx5e: Remove redundant vport context vlan update Saeed Mahameed
                   ` (16 more replies)
  0 siblings, 17 replies; 18+ messages in thread
From: Saeed Mahameed @ 2018-05-14 22:19 UTC (permalink / raw)
  To: David S. Miller; +Cc: netdev, Saeed Mahameed

Hi Dave,

The following series contains misc 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 7cfac881660ac7b7229950e0a942201be63c15d1:

  cxgb4: do not fail vf instatiation in slave mode (2018-05-14 16:42:09 -0400)

are available in the Git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/saeed/linux.git tags/mlx5e-updates-2018-05-14

for you to fetch changes up to 0e5c04f6b52b248cfdb7e791fd5702f12270df7b:

  net/mlx5e: Remove MLX5E_TEST_BIT macro (2018-05-14 15:10:21 -0700)

----------------------------------------------------------------
mlx5e-updates-2018-05-14

Misc update for mlx5e netdevice driver

>From Gal Pressman:
 - Remove MLX5E_TEST_BIT macros and use test_bit instead
 - Use __set_bit when possible

>From Eran Ben Elisha:
  - Improve debug print on initial RX posting timeout

>From Or Gerlitz:
 - Support offloaded TC flows with no matches on headers
 - mlx5e TC cleanups

Trivial cleanups From Roi, Tariq and Saeed:
  - Use bool as return type for mlx5e_xdp_handle
  - Use u8 instead of int for LRO number of segments
  - Skip redundant checks when providing NUD lastuse feedback
  - Remove redundant vport context vlan update

----------------------------------------------------------------
Eran Ben Elisha (1):
      net/mlx5e: Report all channels with min RX WQEs timeout

Gal Pressman (3):
      net/mlx5e: Use __set_bit for adaptive-moderation bit in RQ state
      net/mlx5e: Use test bit in en accel xmit flow
      net/mlx5e: Remove MLX5E_TEST_BIT macro

Or Gerlitz (8):
      net/mlx5e: Remove double defined DMAC header re-write element
      net/mlx5e: Clean static checker complaints on TC offload and VF reps code
      net/mlx5e: Avoid redundant zeroing of offloaded TC flow attributes
      net/mlx5e: Return success when TC offloaded fdb actions parsed ok
      net/mlx5e: Use local actions var while processing offloaded TC flow actions
      net/mlx5e: Properly order min inline mode setup while parsing TC matches
      net/mlx5e: Get the required HW match level while parsing TC flow matches
      net/mlx5e: Support offloaded TC flows with no matches on headers

Roi Dayan (1):
      net/mlx5e: Skip redundant checks when providing NUD lastuse feedback

Saeed Mahameed (1):
      net/mlx5e: Remove redundant vport context vlan update

Tariq Toukan (2):
      net/mlx5e: Use u8 instead of int for LRO number of segments
      net/mlx5e: Use bool as return type for mlx5e_xdp_handle

 drivers/net/ethernet/mellanox/mlx5/core/en.h       |   2 -
 .../mellanox/mlx5/core/en_accel/en_accel.h         |   4 +-
 drivers/net/ethernet/mellanox/mlx5/core/en_fs.c    |   1 -
 drivers/net/ethernet/mellanox/mlx5/core/en_main.c  |  25 ++-
 drivers/net/ethernet/mellanox/mlx5/core/en_rep.c   |   8 +-
 drivers/net/ethernet/mellanox/mlx5/core/en_rx.c    |  19 +-
 drivers/net/ethernet/mellanox/mlx5/core/en_tc.c    | 224 ++++++++++++---------
 drivers/net/ethernet/mellanox/mlx5/core/en_tx.c    |   2 +-
 drivers/net/ethernet/mellanox/mlx5/core/en_txrx.c  |   4 +-
 drivers/net/ethernet/mellanox/mlx5/core/eswitch.h  |   8 +
 .../ethernet/mellanox/mlx5/core/eswitch_offloads.c |   8 +-
 11 files changed, 173 insertions(+), 132 deletions(-)

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

end of thread, other threads:[~2018-05-16 15:37 UTC | newest]

Thread overview: 18+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-05-14 22:19 [pull request][net-next 00/16] Mellanox, mlx5e updates 2018-05-14 Saeed Mahameed
2018-05-14 22:19 ` [net-next 01/16] net/mlx5e: Remove redundant vport context vlan update Saeed Mahameed
2018-05-14 22:19 ` [net-next 02/16] net/mlx5e: Skip redundant checks when providing NUD lastuse feedback Saeed Mahameed
2018-05-14 22:19 ` [net-next 03/16] net/mlx5e: Use u8 instead of int for LRO number of segments Saeed Mahameed
2018-05-14 22:19 ` [net-next 04/16] net/mlx5e: Use bool as return type for mlx5e_xdp_handle Saeed Mahameed
2018-05-14 22:19 ` [net-next 05/16] net/mlx5e: Remove double defined DMAC header re-write element Saeed Mahameed
2018-05-14 22:19 ` [net-next 06/16] net/mlx5e: Clean static checker complaints on TC offload and VF reps code Saeed Mahameed
2018-05-14 22:19 ` [net-next 07/16] net/mlx5e: Avoid redundant zeroing of offloaded TC flow attributes Saeed Mahameed
2018-05-14 22:19 ` [net-next 08/16] net/mlx5e: Return success when TC offloaded fdb actions parsed ok Saeed Mahameed
2018-05-14 22:19 ` [net-next 09/16] net/mlx5e: Use local actions var while processing offloaded TC flow actions Saeed Mahameed
2018-05-14 22:19 ` [net-next 10/16] net/mlx5e: Properly order min inline mode setup while parsing TC matches Saeed Mahameed
2018-05-14 22:19 ` [net-next 11/16] net/mlx5e: Get the required HW match level while parsing TC flow matches Saeed Mahameed
2018-05-14 22:19 ` [net-next 12/16] net/mlx5e: Support offloaded TC flows with no matches on headers Saeed Mahameed
2018-05-14 22:19 ` [net-next 13/16] net/mlx5e: Report all channels with min RX WQEs timeout Saeed Mahameed
2018-05-14 22:19 ` [net-next 14/16] net/mlx5e: Use __set_bit for adaptive-moderation bit in RQ state Saeed Mahameed
2018-05-14 22:19 ` [net-next 15/16] net/mlx5e: Use test bit in en accel xmit flow Saeed Mahameed
2018-05-14 22:19 ` [net-next 16/16] net/mlx5e: Remove MLX5E_TEST_BIT macro Saeed Mahameed
2018-05-16 15:37 ` [pull request][net-next 00/16] Mellanox, mlx5e updates 2018-05-14 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).