diff options
author | Mike Christie <michaelc@cs.wisc.edu> | 2008-09-24 11:46:13 -0500 |
---|---|---|
committer | James Bottomley <James.Bottomley@HansenPartnership.com> | 2008-10-13 09:29:00 -0400 |
commit | 6f481e3cefeb33094e87af176587e6a3027f104e (patch) | |
tree | 676ee530f74210d0518b519036594a7bdb64e1af /include | |
parent | 8e12452549ba2dfa17db97bc495172fac221a7ab (diff) | |
download | kernel_goldelico_gta04-6f481e3cefeb33094e87af176587e6a3027f104e.zip kernel_goldelico_gta04-6f481e3cefeb33094e87af176587e6a3027f104e.tar.gz kernel_goldelico_gta04-6f481e3cefeb33094e87af176587e6a3027f104e.tar.bz2 |
[SCSI] iscsi_tcp: return a descriptive error value during connection errors
The segment->done functions return a iscsi error value which gives
a lot more info than conn failed, so this patch has us return
that value. I also add a new one for xmit failures.
Signed-off-by: Mike Christie <michaelc@cs.wisc.edu>
Signed-off-by: James Bottomley <James.Bottomley@HansenPartnership.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/scsi/iscsi_if.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/scsi/iscsi_if.h b/include/scsi/iscsi_if.h index f274d24..0c9514d 100644 --- a/include/scsi/iscsi_if.h +++ b/include/scsi/iscsi_if.h @@ -214,6 +214,7 @@ enum iscsi_err { ISCSI_ERR_PARAM_NOT_FOUND = ISCSI_ERR_BASE + 16, ISCSI_ERR_NO_SCSI_CMD = ISCSI_ERR_BASE + 17, ISCSI_ERR_INVALID_HOST = ISCSI_ERR_BASE + 18, + ISCSI_ERR_XMIT_FAILED = ISCSI_ERR_BASE + 19, }; /* |