Make cleanup sequence mirror of init sequence for cleaning up reps
and freeing vports.
Also when reps initialization fails, there is no need to perform reps
cleanup.
Signed-off-by: Parav Pandit <parav@nvidia.com>
Signed-off-by: Saeed Mahameed <saeedm@nvidia.com>
 abort:
        if (esw->work_queue)
                destroy_workqueue(esw->work_queue);
-       esw_offloads_cleanup_reps(esw);
        kfree(esw->vports);
        kfree(esw);
        return err;
 
        esw->dev->priv.eswitch = NULL;
        destroy_workqueue(esw->work_queue);
-       esw_offloads_cleanup_reps(esw);
        mutex_destroy(&esw->state_lock);
        WARN_ON(!xa_empty(&esw->offloads.vhca_map));
        xa_destroy(&esw->offloads.vhca_map);
        mlx5e_mod_hdr_tbl_destroy(&esw->offloads.mod_hdr);
        mutex_destroy(&esw->offloads.encap_tbl_lock);
        mutex_destroy(&esw->offloads.decap_tbl_lock);
+       esw_offloads_cleanup_reps(esw);
        kfree(esw->vports);
        kfree(esw);
 }