Netdev List
 help / color / mirror / Atom feed
* [PATCH net-next V1 00/12] QoS and VxLAN offloads support for Mellanox 100G mlx5 driver
@ 2016-02-18 10:32 Saeed Mahameed
  2016-02-18 10:32 ` [PATCH net-next V1 01/12] net/mlx5: Introduce a new header file for physical port functions Saeed Mahameed
                   ` (11 more replies)
  0 siblings, 12 replies; 20+ messages in thread
From: Saeed Mahameed @ 2016-02-18 10:32 UTC (permalink / raw)
  To: David S. Miller
  Cc: netdev, Or Gerlitz, Tal Alon, Eran Ben Elisha, Tariq Toukan,
	Rana Shahout, Yevgeny Petrilin, Matthew Finlay, Saeed Mahameed

Hi Dave,

This patch series introduces QoS IEEE dcbnl support for
PFC, ETS and max rate.

In addition we added VxLAN support and introduced a patch
that modifies the driver to report checksum complete in RX path 
for all IP (tunneled and non-tunneled) traffic which is non HW LRO.

This series is applied on top of the latest mlx5_ifc and NDO fixes 
we sent to the net tree:
	net/mlx5e: Use static constant netdevice ndos
	net/mlx5e: Remove select queue ndo initialization
	net/mlx5: Use offset based reserved field names in the IFC header file

The QoS patches depend on the IFC change since they expose new fields in 
the driver/firmware API. Both QoS and VxLAN patches depend on the NDO changes,
since they add new ndo entries.

Changes from V0:
	- Added change log comments on default_vlan_prio and why we use 
          MLX5E_MAX_NUM_TC on netdev creation.
	- Fixed Copyright notes to 2016 for new files.
	- Fixed a copy-paste bug in "Add TX stateless offloads for tunneling" 
          to use inner_tcp_hdrlen(skb) rather than tcp_hdrlen(skb) for 
          encapsulated LSO packets.

Saeed.

Achiad Shochat (3):
  net/mlx5: Introduce a new header file for physical port functions
  net/mlx5: Introduce physical port PFC access functions
  net/mlx5e: Support DCBNL IEEE PFC

Matthew Finlay (5):
  net/mlx5e: Move to checksum complete
  net/mlx5e: Protect en header file from redefinitions
  net/mlx5e: Add netdev support for VXLAN tunneling
  net/mlx5e: Add TX stateless offloads for tunneling
  net/mlx5e: Add tx inner packet counters

Saeed Mahameed (2):
  net/mlx5: Introduce physical port TC/prio access functions
  net/mlx5e: Support DCBNL IEEE ETS

Tariq Toukan (2):
  net/mlx5e: Implement DCBNL IEEE max rate
  net/mlx5e: Wake On LAN support

 drivers/infiniband/hw/mlx5/main.c                  |    1 +
 drivers/net/ethernet/mellanox/mlx5/core/Kconfig    |   12 +
 drivers/net/ethernet/mellanox/mlx5/core/Makefile   |    5 +-
 drivers/net/ethernet/mellanox/mlx5/core/cmd.c      |   14 +-
 drivers/net/ethernet/mellanox/mlx5/core/en.h       |   44 +++-
 drivers/net/ethernet/mellanox/mlx5/core/en_dcbnl.c |  296 ++++++++++++++++++++
 .../net/ethernet/mellanox/mlx5/core/en_ethtool.c   |  125 ++++++++
 drivers/net/ethernet/mellanox/mlx5/core/en_main.c  |  198 +++++++++++++-
 drivers/net/ethernet/mellanox/mlx5/core/en_rx.c    |    9 +-
 drivers/net/ethernet/mellanox/mlx5/core/en_tx.c    |   40 ++-
 drivers/net/ethernet/mellanox/mlx5/core/port.c     |  216 ++++++++++++++
 drivers/net/ethernet/mellanox/mlx5/core/vxlan.c    |  170 +++++++++++
 drivers/net/ethernet/mellanox/mlx5/core/vxlan.h    |   54 ++++
 include/linux/mlx5/device.h                        |   17 ++
 include/linux/mlx5/driver.h                        |   33 +--
 include/linux/mlx5/mlx5_ifc.h                      |  109 +++++++-
 include/linux/mlx5/port.h                          |   87 ++++++
 17 files changed, 1364 insertions(+), 66 deletions(-)
 create mode 100644 drivers/net/ethernet/mellanox/mlx5/core/en_dcbnl.c
 create mode 100644 drivers/net/ethernet/mellanox/mlx5/core/vxlan.c
 create mode 100644 drivers/net/ethernet/mellanox/mlx5/core/vxlan.h
 create mode 100644 include/linux/mlx5/port.h

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

end of thread, other threads:[~2016-02-21 17:25 UTC | newest]

Thread overview: 20+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-02-18 10:32 [PATCH net-next V1 00/12] QoS and VxLAN offloads support for Mellanox 100G mlx5 driver Saeed Mahameed
2016-02-18 10:32 ` [PATCH net-next V1 01/12] net/mlx5: Introduce a new header file for physical port functions Saeed Mahameed
2016-02-18 10:32 ` [PATCH net-next V1 02/12] net/mlx5: Introduce physical port PFC access functions Saeed Mahameed
2016-02-18 10:32 ` [PATCH net-next V1 03/12] net/mlx5: Introduce physical port TC/prio " Saeed Mahameed
2016-02-18 10:32 ` [PATCH net-next V1 04/12] net/mlx5e: Support DCBNL IEEE ETS Saeed Mahameed
2016-02-18 15:30   ` John Fastabend
2016-02-18 15:58     ` Saeed Mahameed
2016-02-18 17:02   ` Or Gerlitz
2016-02-21 12:16     ` Saeed Mahameed
2016-02-18 10:32 ` [PATCH net-next V1 05/12] net/mlx5e: Support DCBNL IEEE PFC Saeed Mahameed
2016-02-18 10:32 ` [PATCH net-next V1 06/12] net/mlx5e: Implement DCBNL IEEE max rate Saeed Mahameed
2016-02-18 10:32 ` [PATCH net-next V1 07/12] net/mlx5e: Wake On LAN support Saeed Mahameed
2016-02-18 10:32 ` [PATCH net-next V1 08/12] net/mlx5e: Move to checksum complete Saeed Mahameed
2016-02-19  2:25   ` Tom Herbert
2016-02-19  8:20     ` Or Gerlitz
2016-02-19  8:21     ` Or Gerlitz
2016-02-18 10:32 ` [PATCH net-next V1 09/12] net/mlx5e: Protect en header file from redefinitions Saeed Mahameed
2016-02-18 10:32 ` [PATCH net-next V1 10/12] net/mlx5e: Add netdev support for VXLAN tunneling Saeed Mahameed
2016-02-18 10:32 ` [PATCH net-next V1 11/12] net/mlx5e: Add TX stateless offloads for tunneling Saeed Mahameed
2016-02-18 10:32 ` [PATCH net-next V1 12/12] net/mlx5e: Add tx inner packet counters Saeed Mahameed

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox