Commit 0ad45e5f authored by Piotr Stankiewicz's avatar Piotr Stankiewicz Committed by Jason Gunthorpe

IB/hfi1: Enable the transmit side of the datagram ipoib netdev

This patch hooks the transmit side of the datagram netdev with
ipoib by setting the rdma_netdev_get_params function for the
hfi1 ib_device_ops structue. It also enables the receiving side
by adding the AIP capability into the default capabilities.

Link: https://lore.kernel.org/r/20200511160712.173205.65700.stgit@awfm-01.aw.intel.comReviewed-by: default avatarMike Marciniszyn <mike.marciniszyn@intel.com>
Reviewed-by: default avatarDennis Dalessandro <dennis.dalessandro@intel.com>
Signed-off-by: default avatarPiotr Stankiewicz <piotr.stankiewicz@intel.com>
Signed-off-by: default avatarKaike Wan <kaike.wan@intel.com>
Signed-off-by: default avatarDennis Dalessandro <dennis.dalessandro@intel.com>
Signed-off-by: default avatarJason Gunthorpe <jgg@mellanox.com>
parent 8f149b68
...@@ -160,6 +160,7 @@ ...@@ -160,6 +160,7 @@
HFI1_CAP_PKEY_CHECK | \ HFI1_CAP_PKEY_CHECK | \
HFI1_CAP_MULTI_PKT_EGR | \ HFI1_CAP_MULTI_PKT_EGR | \
HFI1_CAP_EXTENDED_PSN | \ HFI1_CAP_EXTENDED_PSN | \
HFI1_CAP_AIP | \
((HFI1_CAP_HDRSUPP | \ ((HFI1_CAP_HDRSUPP | \
HFI1_CAP_MULTI_PKT_EGR | \ HFI1_CAP_MULTI_PKT_EGR | \
HFI1_CAP_STATIC_RATE_CTRL | \ HFI1_CAP_STATIC_RATE_CTRL | \
......
...@@ -66,6 +66,7 @@ ...@@ -66,6 +66,7 @@
#include "vnic.h" #include "vnic.h"
#include "fault.h" #include "fault.h"
#include "affinity.h" #include "affinity.h"
#include "ipoib.h"
static unsigned int hfi1_lkey_table_size = 16; static unsigned int hfi1_lkey_table_size = 16;
module_param_named(lkey_table_size, hfi1_lkey_table_size, uint, module_param_named(lkey_table_size, hfi1_lkey_table_size, uint,
...@@ -1795,6 +1796,7 @@ static const struct ib_device_ops hfi1_dev_ops = { ...@@ -1795,6 +1796,7 @@ static const struct ib_device_ops hfi1_dev_ops = {
.modify_device = modify_device, .modify_device = modify_device,
/* keep process mad in the driver */ /* keep process mad in the driver */
.process_mad = hfi1_process_mad, .process_mad = hfi1_process_mad,
.rdma_netdev_get_params = hfi1_ipoib_rn_get_params,
}; };
/** /**
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment