Updated to use asynchronous operation model for iSCSI requests

Added CHAP authentication
This commit is contained in:
Michael Brown
2006-11-28 00:29:02 +00:00
parent 82342e0b8f
commit 3f0b4d9ed8
5 changed files with 484 additions and 94 deletions

View File

@@ -37,7 +37,7 @@ static int iscsi_command ( struct scsi_device *scsi,
struct iscsi_device *iscsidev
= container_of ( scsi, struct iscsi_device, scsi );
return iscsi_issue ( &iscsidev->iscsi, command );
return async_wait ( iscsi_issue ( &iscsidev->iscsi, command ) );
}
/**