RDMA/netdev: Hoist alloc_netdev_mqs out of the driver
netdev has several interfaces that expect to call alloc_netdev_mqs from
the core code, with the driver only providing the arguments. This is
incompatible with the rdma_netdev interface that returns the netdev
directly.
Thus re-organize the API used by ipoib so that the verbs core code calls
alloc_netdev_mqs for the driver. This is done by allowing the drivers to
provide the allocation parameters via a 'get_params' callback and then
initializing an allocated netdev as a second step.
Fixes: cd565b4b51
("IB/IPoIB: Support acceleration options callbacks")
Signed-off-by: Jason Gunthorpe <jgg@mellanox.com>
Signed-off-by: Denis Drozdov <denisd@mellanox.com>
Signed-off-by: Saeed Mahameed <saeedm@mellanox.com>
This commit is contained in:

committed by
Saeed Mahameed

vanhempi
a6deaa9959
commit
f6a8a19bb1
@@ -2621,3 +2621,35 @@ void ib_drain_qp(struct ib_qp *qp)
|
||||
ib_drain_rq(qp);
|
||||
}
|
||||
EXPORT_SYMBOL(ib_drain_qp);
|
||||
|
||||
struct net_device *rdma_alloc_netdev(struct ib_device *device, u8 port_num,
|
||||
enum rdma_netdev_t type, const char *name,
|
||||
unsigned char name_assign_type,
|
||||
void (*setup)(struct net_device *))
|
||||
{
|
||||
struct rdma_netdev_alloc_params params;
|
||||
struct net_device *netdev;
|
||||
int rc;
|
||||
|
||||
if (!device->rdma_netdev_get_params)
|
||||
return ERR_PTR(-EOPNOTSUPP);
|
||||
|
||||
rc = device->rdma_netdev_get_params(device, port_num, type, ¶ms);
|
||||
if (rc)
|
||||
return ERR_PTR(rc);
|
||||
|
||||
netdev = alloc_netdev_mqs(params.sizeof_priv, name, name_assign_type,
|
||||
setup, params.txqs, params.rxqs);
|
||||
if (!netdev)
|
||||
return ERR_PTR(-ENOMEM);
|
||||
|
||||
rc = params.initialize_rdma_netdev(device, port_num, netdev,
|
||||
params.param);
|
||||
if (rc) {
|
||||
free_netdev(netdev);
|
||||
return ERR_PTR(rc);
|
||||
}
|
||||
|
||||
return netdev;
|
||||
}
|
||||
EXPORT_SYMBOL(rdma_alloc_netdev);
|
||||
|
@@ -5163,22 +5163,14 @@ done:
|
||||
return num_counters;
|
||||
}
|
||||
|
||||
static struct net_device*
|
||||
mlx5_ib_alloc_rdma_netdev(struct ib_device *hca,
|
||||
u8 port_num,
|
||||
enum rdma_netdev_t type,
|
||||
const char *name,
|
||||
unsigned char name_assign_type,
|
||||
void (*setup)(struct net_device *))
|
||||
static int mlx5_ib_rn_get_params(struct ib_device *device, u8 port_num,
|
||||
enum rdma_netdev_t type,
|
||||
struct rdma_netdev_alloc_params *params)
|
||||
{
|
||||
struct net_device *netdev;
|
||||
|
||||
if (type != RDMA_NETDEV_IPOIB)
|
||||
return ERR_PTR(-EOPNOTSUPP);
|
||||
return -EOPNOTSUPP;
|
||||
|
||||
netdev = mlx5_rdma_netdev_alloc(to_mdev(hca)->mdev, hca,
|
||||
name, setup);
|
||||
return netdev;
|
||||
return mlx5_rdma_rn_get_params(to_mdev(device)->mdev, device, params);
|
||||
}
|
||||
|
||||
static void delay_drop_debugfs_cleanup(struct mlx5_ib_dev *dev)
|
||||
@@ -5824,8 +5816,9 @@ int mlx5_ib_stage_caps_init(struct mlx5_ib_dev *dev)
|
||||
dev->ib_dev.check_mr_status = mlx5_ib_check_mr_status;
|
||||
dev->ib_dev.get_dev_fw_str = get_dev_fw_str;
|
||||
dev->ib_dev.get_vector_affinity = mlx5_ib_get_vector_affinity;
|
||||
if (MLX5_CAP_GEN(mdev, ipoib_enhanced_offloads))
|
||||
dev->ib_dev.alloc_rdma_netdev = mlx5_ib_alloc_rdma_netdev;
|
||||
if (MLX5_CAP_GEN(mdev, ipoib_enhanced_offloads) &&
|
||||
IS_ENABLED(CONFIG_MLX5_CORE_IPOIB))
|
||||
dev->ib_dev.rdma_netdev_get_params = mlx5_ib_rn_get_params;
|
||||
|
||||
if (mlx5_core_is_pf(mdev)) {
|
||||
dev->ib_dev.get_vf_config = mlx5_ib_get_vf_config;
|
||||
|
@@ -2146,20 +2146,15 @@ static struct net_device *ipoib_get_netdev(struct ib_device *hca, u8 port,
|
||||
{
|
||||
struct net_device *dev;
|
||||
|
||||
if (hca->alloc_rdma_netdev) {
|
||||
dev = hca->alloc_rdma_netdev(hca, port,
|
||||
RDMA_NETDEV_IPOIB, name,
|
||||
NET_NAME_UNKNOWN,
|
||||
ipoib_setup_common);
|
||||
if (IS_ERR_OR_NULL(dev) && PTR_ERR(dev) != -EOPNOTSUPP)
|
||||
return NULL;
|
||||
}
|
||||
dev = rdma_alloc_netdev(hca, port, RDMA_NETDEV_IPOIB, name,
|
||||
NET_NAME_UNKNOWN, ipoib_setup_common);
|
||||
if (!IS_ERR(dev))
|
||||
return dev;
|
||||
if (PTR_ERR(dev) != -EOPNOTSUPP)
|
||||
return NULL;
|
||||
|
||||
if (!hca->alloc_rdma_netdev || PTR_ERR(dev) == -EOPNOTSUPP)
|
||||
dev = ipoib_create_netdev_default(hca, name, NET_NAME_UNKNOWN,
|
||||
ipoib_setup_common);
|
||||
|
||||
return dev;
|
||||
return ipoib_create_netdev_default(hca, name, NET_NAME_UNKNOWN,
|
||||
ipoib_setup_common);
|
||||
}
|
||||
|
||||
struct ipoib_dev_priv *ipoib_intf_alloc(struct ib_device *hca, u8 port,
|
||||
|
Viittaa uudesa ongelmassa
Block a user