All of lore.kernel.org
 help / color / mirror / Atom feed
* [Intel-wired-lan] [net-next PATCH v2 0/6] i40e: Add VF Port representator support for SR-IOV VFs
@ 2017-01-03 18:07 ` Sridhar Samudrala
  0 siblings, 0 replies; 41+ messages in thread
From: Sridhar Samudrala @ 2017-01-03 18:07 UTC (permalink / raw)
  To: intel-wired-lan

- Patch 1 introduces devlink interface to get/set the mode of SRIOV switch.
- Patch 2 adds support to create VF port representor(VFPR) netdevs associated
  with SR-IOV VFs that can be used to control/configure VFs from PF name space.
- Patch 3 enables syncing link state between VFs and VFPRs.
- Patch 4 adds a new type to metadata_dst to allow passing VF id to lower device.
- Patch 5 adds TX and RX support to VFPR netdevs.
- Patch 6 enables HW and SW VFPR statistics to be exposed via netlink on VFPR
  netdevs.

v2:
- handle i40e_alloc_vfpr_netdev() failures.
- minor comment/commit msg updates.

Jakub Kicinski (1):
  net: store port/representator id in metadata_dst

Sridhar Samudrala (5):
  i40e: Introduce devlink interface.
  i40e: Introduce VF Port Representator(VFPR) netdevs.
  i40e: Sync link state between VFs and VFPRs
  i40e: Add TX and RX support in switchdev mode.
  i40e: Add support for exposing VF port statistics via VFPR netdev on
    the host.

 drivers/net/ethernet/intel/Kconfig                 |   1 +
 drivers/net/ethernet/intel/i40e/i40e.h             |   4 +
 drivers/net/ethernet/intel/i40e/i40e_main.c        | 103 ++++++-
 drivers/net/ethernet/intel/i40e/i40e_txrx.c        | 132 ++++++++-
 drivers/net/ethernet/intel/i40e/i40e_txrx.h        |   1 +
 drivers/net/ethernet/intel/i40e/i40e_type.h        |   3 +
 drivers/net/ethernet/intel/i40e/i40e_virtchnl_pf.c | 324 ++++++++++++++++++++-
 drivers/net/ethernet/intel/i40e/i40e_virtchnl_pf.h |  25 ++
 include/net/dst_metadata.h                         |  35 ++-
 net/core/dst.c                                     |  15 +-
 net/core/filter.c                                  |   1 +
 net/ipv4/ip_tunnel_core.c                          |   6 +-
 net/openvswitch/flow_netlink.c                     |   4 +-
 13 files changed, 620 insertions(+), 34 deletions(-)

-- 
2.5.5


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

end of thread, other threads:[~2017-01-07  8:27 UTC | newest]

Thread overview: 41+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-01-03 18:07 [Intel-wired-lan] [net-next PATCH v2 0/6] i40e: Add VF Port representator support for SR-IOV VFs Sridhar Samudrala
2017-01-03 18:07 ` Sridhar Samudrala
2017-01-03 18:07 ` [Intel-wired-lan] [net-next PATCH v2 1/6] i40e: Introduce devlink interface Sridhar Samudrala
2017-01-03 18:07   ` Sridhar Samudrala
2017-01-03 18:07 ` [Intel-wired-lan] [net-next PATCH v2 2/6] i40e: Introduce VF Port Representator(VFPR) netdevs Sridhar Samudrala
2017-01-03 18:07   ` Sridhar Samudrala
2017-01-05 12:44   ` [Intel-wired-lan] " Jiri Pirko
2017-01-05 12:44     ` Jiri Pirko
2017-01-05 21:46   ` [Intel-wired-lan] " Jeff Kirsher
2017-01-05 21:46     ` Jeff Kirsher
2017-01-06  0:42     ` Samudrala, Sridhar
2017-01-06  0:42       ` Samudrala, Sridhar
2017-01-03 18:07 ` [Intel-wired-lan] [net-next PATCH v2 3/6] i40e: Sync link state between VFs and VFPRs Sridhar Samudrala
2017-01-03 18:07   ` Sridhar Samudrala
2017-01-03 18:07 ` [Intel-wired-lan] [net-next PATCH v2 4/6] net: store port/representator id in metadata_dst Sridhar Samudrala
2017-01-03 18:07 ` [Intel-wired-lan] [net-next PATCH v2 5/6] i40e: Add TX and RX support in switchdev mode Sridhar Samudrala
2017-01-03 18:07   ` Sridhar Samudrala
2017-01-05 12:08   ` [Intel-wired-lan] " Or Gerlitz
2017-01-05 12:08     ` Or Gerlitz
2017-01-05 16:33     ` [Intel-wired-lan] " Jakub Kicinski
2017-01-05 16:33       ` Jakub Kicinski
2017-01-05 12:56   ` [Intel-wired-lan] " Jiri Pirko
2017-01-05 12:56     ` Jiri Pirko
2017-01-06  0:27     ` [Intel-wired-lan] " Samudrala, Sridhar
2017-01-06  0:27       ` Samudrala, Sridhar
2017-01-06 17:30       ` [Intel-wired-lan] " Jiri Pirko
2017-01-06 17:30         ` Jiri Pirko
2017-01-06 19:08         ` [Intel-wired-lan] " Jakub Kicinski
2017-01-06 19:08           ` Jakub Kicinski
2017-01-07  8:27           ` [Intel-wired-lan] " Jiri Pirko
2017-01-07  8:27             ` Jiri Pirko
2017-01-03 18:07 ` [Intel-wired-lan] [net-next PATCH v2 6/6] i40e: Add support for exposing VF port statistics via VFPR netdev on the host Sridhar Samudrala
2017-01-03 18:07   ` Sridhar Samudrala
2017-01-03 19:48 ` [Intel-wired-lan] [net-next PATCH v2 0/6] i40e: Add VF Port representator support for SR-IOV VFs Or Gerlitz
2017-01-03 19:48   ` Or Gerlitz
2017-01-03 20:04   ` [Intel-wired-lan] " Alexander Duyck
2017-01-03 20:04     ` Alexander Duyck
2017-01-03 20:24     ` Samudrala, Sridhar
2017-01-03 20:24       ` Samudrala, Sridhar
2017-01-03 20:45       ` Jakub Kicinski
2017-01-03 20:45         ` Jakub Kicinski

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.