IB/iser: Start connection after enabling iSER

When a connection is started (a new connection or a recovered one),
iSER should prepare its resources for full-featured mode and only then
notify the iSCSI layer that it is ready to start queueing commands.

Signed-off-by: Erez Zilber <erezz@voltaire.com>
Signed-off-by: Roland Dreier <rolandd@cisco.com>
This commit is contained in:
Erez Zilber 2006-10-22 10:28:38 +02:00 committed by Roland Dreier
parent ae99a78af3
commit 2e7a742628
1 changed files with 2 additions and 2 deletions

View File

@ -363,11 +363,11 @@ iscsi_iser_conn_start(struct iscsi_cls_conn *cls_conn)
struct iscsi_conn *conn = cls_conn->dd_data;
int err;
err = iscsi_conn_start(cls_conn);
err = iser_conn_set_full_featured_mode(conn);
if (err)
return err;
return iser_conn_set_full_featured_mode(conn);
return iscsi_conn_start(cls_conn);
}
static struct iscsi_transport iscsi_iser_transport;