public inbox for linux-rdma@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH rdma-next V2 00/10] IB SR-IOV support
@ 2016-03-08 16:36 Eli Cohen
       [not found] ` <1457455018-17638-1-git-send-email-eli-VPRAkNaXOzVWk0Htik3J/w@public.gmane.org>
  0 siblings, 1 reply; 13+ messages in thread
From: Eli Cohen @ 2016-03-08 16:36 UTC (permalink / raw)
  To: dledford-H+wXaHxf7aLQT0dZR+AlfA
  Cc: linux-rdma-u79uwXL29TY76Z2rM5mHXA, liranl-VPRAkNaXOzVWk0Htik3J/w,
	eitan-VPRAkNaXOzVWk0Htik3J/w, Eli Cohen

Hi Doug, Dave

The following series adds support for managing SRIOV IB VFs in a standard
way (rtnetlink, iproute2) through IPoIB ndo entries which translate to
corresponding verbs calls.

In IB networks, 64 bit GUIDs are used as the primary means of identification.
To support that for VFs, we added a set_vf_guid ndo which is used to program
the VF node and port GUID from the PF.

Those verbs are implemented by the mlx5 driver along with some more changes
needed in the driver, IPoIB and the IB core to support IB virtualization.

We've copied netdev only on the 1st patch of the series, as the rest of it just
uses the patch along with the existing ndos in IPoIB plus add things which
are internal to the IB stack.

The series is rebased against Doug's mlx5 branch and Leon's patch that extends
the kernel ib device attr caps field to u64:
https://patchwork.kernel.org/patch/8388931/

Eli

Changes from V1:
1. Modify the patch handlign subnet prefix so it is implemented in the IB/core
   layer dropping the implementation in hardware driver layer.

Eli Cohen (10):
  net/core: Add support for configuring VF GUIDs
  IB/mlx5: Fix decision on using MAD_IFC
  IB/core: Add subnet prefix to port info
  IB/core: Support accessing SA in virtualized environment
  IB/core: Add interfaces to control VF attributes
  IB/ipoib: Add ndo operations for configuring VFs
  net/mlx5_core: Add VF param when querying vport counter
  net/mlx5_core: Implement modify HCA vport command
  IB/mlx5: Implement callbacks for manipulating VFs
  IB/ipoib: Allow mcast packets from other VFs

 drivers/infiniband/core/device.c                |  15 +-
 drivers/infiniband/core/sa_query.c              |   5 +
 drivers/infiniband/core/verbs.c                 |  40 +++++
 drivers/infiniband/hw/mlx5/Makefile             |   2 +-
 drivers/infiniband/hw/mlx5/ib_virt.c            | 194 ++++++++++++++++++++++++
 drivers/infiniband/hw/mlx5/mad.c                |   2 +-
 drivers/infiniband/hw/mlx5/main.c               |  12 +-
 drivers/infiniband/hw/mlx5/mlx5_ib.h            |   8 +
 drivers/infiniband/ulp/ipoib/ipoib_ib.c         |  27 +++-
 drivers/infiniband/ulp/ipoib/ipoib_main.c       |  65 +++++++-
 drivers/net/ethernet/mellanox/mlx5/core/cmd.c   |   6 +
 drivers/net/ethernet/mellanox/mlx5/core/vport.c |  72 ++++++++-
 include/linux/mlx5/driver.h                     |   5 +-
 include/linux/mlx5/mlx5_ifc.h                   |   6 +
 include/linux/mlx5/vport.h                      |   7 +-
 include/linux/netdevice.h                       |   3 +
 include/rdma/ib_verbs.h                         |  25 +++
 include/uapi/linux/if_link.h                    |   7 +
 net/core/rtnetlink.c                            |  36 +++++
 19 files changed, 520 insertions(+), 17 deletions(-)
 create mode 100644 drivers/infiniband/hw/mlx5/ib_virt.c

-- 
1.8.3.1

--
To unsubscribe from this list: send the line "unsubscribe linux-rdma" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

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

end of thread, other threads:[~2016-03-08 18:04 UTC | newest]

Thread overview: 13+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-03-08 16:36 [PATCH rdma-next V2 00/10] IB SR-IOV support Eli Cohen
     [not found] ` <1457455018-17638-1-git-send-email-eli-VPRAkNaXOzVWk0Htik3J/w@public.gmane.org>
2016-03-08 16:36   ` [PATCH rdma-next V2 01/10] net/core: Add support for configuring VF GUIDs Eli Cohen
2016-03-08 16:36   ` [PATCH rdma-next V2 02/10] IB/mlx5: Fix decision on using MAD_IFC Eli Cohen
2016-03-08 16:36   ` [PATCH rdma-next V2 03/10] IB/core: Add subnet prefix to port info Eli Cohen
     [not found]     ` <1457455018-17638-4-git-send-email-eli-VPRAkNaXOzVWk0Htik3J/w@public.gmane.org>
2016-03-08 17:57       ` Jason Gunthorpe
     [not found]         ` <20160308175752.GD10805-ePGOBjL8dl3ta4EC/59zMFaTQe2KTcn/@public.gmane.org>
2016-03-08 18:04           ` Eli Cohen
2016-03-08 16:36   ` [PATCH rdma-next V2 04/10] IB/core: Support accessing SA in virtualized environment Eli Cohen
2016-03-08 16:36   ` [PATCH rdma-next V2 05/10] IB/core: Add interfaces to control VF attributes Eli Cohen
2016-03-08 16:36   ` [PATCH rdma-next V2 06/10] IB/ipoib: Add ndo operations for configuring VFs Eli Cohen
2016-03-08 16:36   ` [PATCH rdma-next V2 07/10] net/mlx5_core: Add VF param when querying vport counter Eli Cohen
2016-03-08 16:36   ` [PATCH rdma-next V2 08/10] net/mlx5_core: Implement modify HCA vport command Eli Cohen
2016-03-08 16:36   ` [PATCH rdma-next V2 09/10] IB/mlx5: Implement callbacks for manipulating VFs Eli Cohen
2016-03-08 16:36   ` [PATCH rdma-next V2 10/10] IB/ipoib: Allow mcast packets from other VFs Eli Cohen

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