linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH net-next 0/7] vmxnet3: upgrade to version 6
@ 2021-07-16 22:36 Ronak Doshi
  2021-07-16 22:36 ` [PATCH net-next 1/7] vmxnet3: prepare for version 6 changes Ronak Doshi
                   ` (7 more replies)
  0 siblings, 8 replies; 10+ messages in thread
From: Ronak Doshi @ 2021-07-16 22:36 UTC (permalink / raw)
  To: netdev
  Cc: Ronak Doshi, maintainer:VMWARE VMXNET3 ETHERNET DRIVER,
	David S. Miller, Jakub Kicinski, open list

vmxnet3 emulation has recently added several new features which includes
increase in queues supported, remove power of 2 limitation on queues,
add RSS for ESP IPv6, etc. This patch series extends the vmxnet3 driver
to leverage these new features.

Compatibility is maintained using existing vmxnet3 versioning mechanism as
follows:
- new features added to vmxnet3 emulation are associated with new vmxnet3
   version viz. vmxnet3 version 6.
- emulation advertises all the versions it supports to the driver.
- during initialization, vmxnet3 driver picks the highest version number
supported by both the emulation and the driver and configures emulation
to run at that version.

In particular, following changes are introduced:

Patch 1:
  This patch introduces utility macros for vmxnet3 version 6 comparison
  and updates Copyright information.

Patch 2:
  This patch adds support to increase maximum Tx/Rx queues from 8 to 32.

Patch 3:
  This patch removes the limitation of power of 2 on the queues.

Patch 4:
  Uses existing get_rss_hash_opts and set_rss_hash_opts methods to add
  support for ESP IPv6 RSS.

Patch 5:
  This patch reports correct RSS hash type based on the type of RSS
  performed.

Patch 6:
  This patch updates maximum configurable mtu to 9190.

Patch 7:
  With all vmxnet3 version 6 changes incorporated in the vmxnet3 driver,
  with this patch, the driver can configure emulation to run at vmxnet3
  version 6.

Ronak Doshi (7):
  vmxnet3: prepare for version 6 changes
  vmxnet3: add support for 32 Tx/Rx queues
  vmxnet3: remove power of 2 limitation on the queues
  vmxnet3: add support for ESP IPv6 RSS
  vmxnet3: set correct hash type based on rss information
  vmxnet3: increase maximum configurable mtu to 9190
  vmxnet3: update to version 6

 drivers/net/vmxnet3/Makefile          |   2 +-
 drivers/net/vmxnet3/upt1_defs.h       |   2 +-
 drivers/net/vmxnet3/vmxnet3_defs.h    |  50 ++++++--
 drivers/net/vmxnet3/vmxnet3_drv.c     | 221 ++++++++++++++++++++++++----------
 drivers/net/vmxnet3/vmxnet3_ethtool.c |  20 +++
 drivers/net/vmxnet3/vmxnet3_int.h     |  22 +++-
 6 files changed, 235 insertions(+), 82 deletions(-)

-- 
2.11.0


^ permalink raw reply	[flat|nested] 10+ messages in thread
* [PATCH net-next 0/7] vmxnet3: upgrade to version 6
@ 2021-07-06 20:03 Ronak Doshi
  2021-07-06 20:03 ` [PATCH net-next 7/7] vmxnet3: update " Ronak Doshi
  0 siblings, 1 reply; 10+ messages in thread
From: Ronak Doshi @ 2021-07-06 20:03 UTC (permalink / raw)
  To: netdev
  Cc: Ronak Doshi, maintainer:VMWARE VMXNET3 ETHERNET DRIVER,
	David S. Miller, Jakub Kicinski, open list

vmxnet3 emulation has recently added several new features which includes
increase in queues supported, remove power of 2 limitation on queues,
add RSS for ESP IPv6, etc. This patch series extends the vmxnet3 driver
to leverage these new features.

Compatibility is maintained using existing vmxnet3 versioning mechanism as
follows:
 - new features added to vmxnet3 emulation are associated with new vmxnet3
   version viz. vmxnet3 version 6.
 - emulation advertises all the versions it supports to the driver.
 - during initialization, vmxnet3 driver picks the highest version number
 supported by both the emulation and the driver and configures emulation
 to run at that version.

In particular, following changes are introduced:

Patch 1:
  This patch introduces utility macros for vmxnet3 version 6 comparison
  and updates Copyright information.

Patch 2:
  This patch adds support to increase maximum Tx/Rx queues from 8 to 32.

Patch 3:
  This patch removes the limitation of power of 2 on the queues.

Patch 4:
  Uses existing get_rss_hash_opts and set_rss_hash_opts methods to add
  support for ESP IPv6 RSS.

Patch 5:
  This patch reports correct RSS hash type based on the type of RSS
  performed.

Patch 6:
  This patch updates maximum configurable mtu to 9190.

Patch 7:
  With all vmxnet3 version 6 changes incorporated in the vmxnet3 driver,
  with this patch, the driver can configure emulation to run at vmxnet3
  version 6.


Ronak Doshi (7):
  vmxnet3: prepare for version 6 changes
  vmxnet3: add support for 32 Tx/Rx queues
  vmxnet3: remove power of 2 limitation on the queues
  vmxnet3: add support for ESP IPv6 RSS
  vmxnet3: set correct hash type based on rss information
  vmxnet3: increase maximum configurable mtu to 9190
  vmxnet3: update to version 6

 drivers/net/vmxnet3/Makefile          |   2 +-
 drivers/net/vmxnet3/upt1_defs.h       |   2 +-
 drivers/net/vmxnet3/vmxnet3_defs.h    |  50 ++++++--
 drivers/net/vmxnet3/vmxnet3_drv.c     | 221 ++++++++++++++++++++++++----------
 drivers/net/vmxnet3/vmxnet3_ethtool.c |  22 +++-
 drivers/net/vmxnet3/vmxnet3_int.h     |  22 +++-
 6 files changed, 236 insertions(+), 83 deletions(-)

-- 
2.11.0


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

end of thread, other threads:[~2021-07-17  1:40 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-07-16 22:36 [PATCH net-next 0/7] vmxnet3: upgrade to version 6 Ronak Doshi
2021-07-16 22:36 ` [PATCH net-next 1/7] vmxnet3: prepare for version 6 changes Ronak Doshi
2021-07-16 22:36 ` [PATCH net-next 2/7] vmxnet3: add support for 32 Tx/Rx queues Ronak Doshi
2021-07-16 22:36 ` [PATCH net-next 3/7] vmxnet3: remove power of 2 limitation on the queues Ronak Doshi
2021-07-16 22:36 ` [PATCH net-next 4/7] vmxnet3: add support for ESP IPv6 RSS Ronak Doshi
2021-07-16 22:36 ` [PATCH net-next 5/7] vmxnet3: set correct hash type based on rss information Ronak Doshi
2021-07-16 22:36 ` [PATCH net-next 6/7] vmxnet3: increase maximum configurable mtu to 9190 Ronak Doshi
2021-07-16 22:36 ` [PATCH net-next 7/7] vmxnet3: update to version 6 Ronak Doshi
2021-07-17  1:40 ` [PATCH net-next 0/7] vmxnet3: upgrade " patchwork-bot+netdevbpf
  -- strict thread matches above, loose matches on Subject: below --
2021-07-06 20:03 Ronak Doshi
2021-07-06 20:03 ` [PATCH net-next 7/7] vmxnet3: update " Ronak Doshi

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