|
@@ -382,20 +382,21 @@ static int cm_init_av_by_path(struct ib_sa_path_rec *path, struct cm_av *av)
|
|
|
static int cm_alloc_id(struct cm_id_private *cm_id_priv)
|
|
|
{
|
|
|
unsigned long flags;
|
|
|
- int ret, id;
|
|
|
+ int id;
|
|
|
static int next_id;
|
|
|
|
|
|
- do {
|
|
|
- spin_lock_irqsave(&cm.lock, flags);
|
|
|
- ret = idr_get_new_above(&cm.local_id_table, cm_id_priv,
|
|
|
- next_id, &id);
|
|
|
- if (!ret)
|
|
|
- next_id = ((unsigned) id + 1) & MAX_IDR_MASK;
|
|
|
- spin_unlock_irqrestore(&cm.lock, flags);
|
|
|
- } while( (ret == -EAGAIN) && idr_pre_get(&cm.local_id_table, GFP_KERNEL) );
|
|
|
+ idr_preload(GFP_KERNEL);
|
|
|
+ spin_lock_irqsave(&cm.lock, flags);
|
|
|
+
|
|
|
+ id = idr_alloc(&cm.local_id_table, cm_id_priv, next_id, 0, GFP_NOWAIT);
|
|
|
+ if (id >= 0)
|
|
|
+ next_id = ((unsigned) id + 1) & MAX_IDR_MASK;
|
|
|
+
|
|
|
+ spin_unlock_irqrestore(&cm.lock, flags);
|
|
|
+ idr_preload_end();
|
|
|
|
|
|
cm_id_priv->id.local_id = (__force __be32)id ^ cm.random_id_operand;
|
|
|
- return ret;
|
|
|
+ return id < 0 ? id : 0;
|
|
|
}
|
|
|
|
|
|
static void cm_free_id(__be32 local_id)
|
|
@@ -3844,7 +3845,6 @@ static int __init ib_cm_init(void)
|
|
|
cm.remote_sidr_table = RB_ROOT;
|
|
|
idr_init(&cm.local_id_table);
|
|
|
get_random_bytes(&cm.random_id_operand, sizeof cm.random_id_operand);
|
|
|
- idr_pre_get(&cm.local_id_table, GFP_KERNEL);
|
|
|
INIT_LIST_HEAD(&cm.timewait_list);
|
|
|
|
|
|
ret = class_register(&cm_class);
|