IB/mlx4: Fix spinlock order to avoid lockdep warnings
[cascardo/linux.git] / drivers / infiniband / hw / mlx4 / cm.c
index 80079e5..dbc99d4 100644 (file)
@@ -268,15 +268,15 @@ static void schedule_delayed(struct ib_device *ibdev, struct id_map_entry *id)
        struct mlx4_ib_sriov *sriov = &to_mdev(ibdev)->sriov;
        unsigned long flags;
 
-       spin_lock_irqsave(&sriov->going_down_lock, flags);
        spin_lock(&sriov->id_map_lock);
+       spin_lock_irqsave(&sriov->going_down_lock, flags);
        /*make sure that there is no schedule inside the scheduled work.*/
        if (!sriov->is_going_down) {
                id->scheduled_delete = 1;
                schedule_delayed_work(&id->timeout, CM_CLEANUP_CACHE_TIMEOUT);
        }
-       spin_unlock(&sriov->id_map_lock);
        spin_unlock_irqrestore(&sriov->going_down_lock, flags);
+       spin_unlock(&sriov->id_map_lock);
 }
 
 int mlx4_ib_multiplex_cm_handler(struct ib_device *ibdev, int port, int slave_id,