|
@@ -385,8 +385,7 @@ static int c2_alloc_qpn(struct c2_dev *c2dev, struct c2_qp *qp)
|
|
|
idr_preload(GFP_KERNEL);
|
|
|
spin_lock_irq(&c2dev->qp_table.lock);
|
|
|
|
|
|
- ret = idr_alloc(&c2dev->qp_table.idr, qp, c2dev->qp_table.last++, 0,
|
|
|
- GFP_NOWAIT);
|
|
|
+ ret = idr_alloc_cyclic(&c2dev->qp_table.idr, qp, 0, 0, GFP_NOWAIT);
|
|
|
if (ret >= 0)
|
|
|
qp->qpn = ret;
|
|
|
|