|
@@ -610,7 +610,8 @@ static int qp_has_rq(struct ib_qp_init_attr *attr)
|
|
|
|
|
|
static int create_qp_common(struct mlx4_ib_dev *dev, struct ib_pd *pd,
|
|
|
struct ib_qp_init_attr *init_attr,
|
|
|
- struct ib_udata *udata, int sqpn, struct mlx4_ib_qp **caller_qp)
|
|
|
+ struct ib_udata *udata, int sqpn, struct mlx4_ib_qp **caller_qp,
|
|
|
+ gfp_t gfp)
|
|
|
{
|
|
|
int qpn;
|
|
|
int err;
|
|
@@ -748,14 +749,14 @@ static int create_qp_common(struct mlx4_ib_dev *dev, struct ib_pd *pd,
|
|
|
goto err;
|
|
|
|
|
|
if (qp_has_rq(init_attr)) {
|
|
|
- err = mlx4_db_alloc(dev->dev, &qp->db, 0);
|
|
|
+ err = mlx4_db_alloc(dev->dev, &qp->db, 0, gfp);
|
|
|
if (err)
|
|
|
goto err;
|
|
|
|
|
|
*qp->db.db = 0;
|
|
|
}
|
|
|
|
|
|
- if (mlx4_buf_alloc(dev->dev, qp->buf_size, PAGE_SIZE * 2, &qp->buf)) {
|
|
|
+ if (mlx4_buf_alloc(dev->dev, qp->buf_size, PAGE_SIZE * 2, &qp->buf, gfp)) {
|
|
|
err = -ENOMEM;
|
|
|
goto err_db;
|
|
|
}
|
|
@@ -765,13 +766,12 @@ static int create_qp_common(struct mlx4_ib_dev *dev, struct ib_pd *pd,
|
|
|
if (err)
|
|
|
goto err_buf;
|
|
|
|
|
|
- err = mlx4_buf_write_mtt(dev->dev, &qp->mtt, &qp->buf);
|
|
|
+ err = mlx4_buf_write_mtt(dev->dev, &qp->mtt, &qp->buf, gfp);
|
|
|
if (err)
|
|
|
goto err_mtt;
|
|
|
|
|
|
- qp->sq.wrid = kmalloc(qp->sq.wqe_cnt * sizeof (u64), GFP_KERNEL);
|
|
|
- qp->rq.wrid = kmalloc(qp->rq.wqe_cnt * sizeof (u64), GFP_KERNEL);
|
|
|
-
|
|
|
+ qp->sq.wrid = kmalloc(qp->sq.wqe_cnt * sizeof (u64), gfp);
|
|
|
+ qp->rq.wrid = kmalloc(qp->rq.wqe_cnt * sizeof (u64), gfp);
|
|
|
if (!qp->sq.wrid || !qp->rq.wrid) {
|
|
|
err = -ENOMEM;
|
|
|
goto err_wrid;
|
|
@@ -801,7 +801,7 @@ static int create_qp_common(struct mlx4_ib_dev *dev, struct ib_pd *pd,
|
|
|
goto err_proxy;
|
|
|
}
|
|
|
|
|
|
- err = mlx4_qp_alloc(dev->dev, qpn, &qp->mqp);
|
|
|
+ err = mlx4_qp_alloc(dev->dev, qpn, &qp->mqp, gfp);
|
|
|
if (err)
|
|
|
goto err_qpn;
|
|
|
|
|
@@ -1040,7 +1040,10 @@ struct ib_qp *mlx4_ib_create_qp(struct ib_pd *pd,
|
|
|
struct mlx4_ib_qp *qp = NULL;
|
|
|
int err;
|
|
|
u16 xrcdn = 0;
|
|
|
+ gfp_t gfp;
|
|
|
|
|
|
+ gfp = (init_attr->create_flags & MLX4_IB_QP_CREATE_USE_GFP_NOIO) ?
|
|
|
+ GFP_NOIO : GFP_KERNEL;
|
|
|
/*
|
|
|
* We only support LSO, vendor flag1, and multicast loopback blocking,
|
|
|
* and only for kernel UD QPs.
|
|
@@ -1049,7 +1052,8 @@ struct ib_qp *mlx4_ib_create_qp(struct ib_pd *pd,
|
|
|
MLX4_IB_QP_BLOCK_MULTICAST_LOOPBACK |
|
|
|
MLX4_IB_SRIOV_TUNNEL_QP |
|
|
|
MLX4_IB_SRIOV_SQP |
|
|
|
- MLX4_IB_QP_NETIF))
|
|
|
+ MLX4_IB_QP_NETIF |
|
|
|
+ MLX4_IB_QP_CREATE_USE_GFP_NOIO))
|
|
|
return ERR_PTR(-EINVAL);
|
|
|
|
|
|
if (init_attr->create_flags & IB_QP_CREATE_NETIF_QP) {
|
|
@@ -1059,7 +1063,7 @@ struct ib_qp *mlx4_ib_create_qp(struct ib_pd *pd,
|
|
|
|
|
|
if (init_attr->create_flags &&
|
|
|
(udata ||
|
|
|
- ((init_attr->create_flags & ~MLX4_IB_SRIOV_SQP) &&
|
|
|
+ ((init_attr->create_flags & ~(MLX4_IB_SRIOV_SQP | MLX4_IB_QP_CREATE_USE_GFP_NOIO)) &&
|
|
|
init_attr->qp_type != IB_QPT_UD) ||
|
|
|
((init_attr->create_flags & MLX4_IB_SRIOV_SQP) &&
|
|
|
init_attr->qp_type > IB_QPT_GSI)))
|
|
@@ -1079,7 +1083,7 @@ struct ib_qp *mlx4_ib_create_qp(struct ib_pd *pd,
|
|
|
case IB_QPT_RC:
|
|
|
case IB_QPT_UC:
|
|
|
case IB_QPT_RAW_PACKET:
|
|
|
- qp = kzalloc(sizeof *qp, GFP_KERNEL);
|
|
|
+ qp = kzalloc(sizeof *qp, gfp);
|
|
|
if (!qp)
|
|
|
return ERR_PTR(-ENOMEM);
|
|
|
qp->pri.vid = 0xFFFF;
|
|
@@ -1088,7 +1092,7 @@ struct ib_qp *mlx4_ib_create_qp(struct ib_pd *pd,
|
|
|
case IB_QPT_UD:
|
|
|
{
|
|
|
err = create_qp_common(to_mdev(pd->device), pd, init_attr,
|
|
|
- udata, 0, &qp);
|
|
|
+ udata, 0, &qp, gfp);
|
|
|
if (err)
|
|
|
return ERR_PTR(err);
|
|
|
|
|
@@ -1106,7 +1110,7 @@ struct ib_qp *mlx4_ib_create_qp(struct ib_pd *pd,
|
|
|
|
|
|
err = create_qp_common(to_mdev(pd->device), pd, init_attr, udata,
|
|
|
get_sqp_num(to_mdev(pd->device), init_attr),
|
|
|
- &qp);
|
|
|
+ &qp, gfp);
|
|
|
if (err)
|
|
|
return ERR_PTR(err);
|
|
|
|