diff options
author | Mike Christie <michaelc@cs.wisc.edu> | 2008-09-24 11:46:11 -0500 |
---|---|---|
committer | James Bottomley <James.Bottomley@HansenPartnership.com> | 2008-10-13 09:28:59 -0400 |
commit | 21536062d98938dfcfbae593a26c154e359749dc (patch) | |
tree | 4615523a9c38cfc502c9f830832d76e37f725511 /include | |
parent | e5bd7b54e93ef7151469a12b8c28d863b9f8a088 (diff) | |
download | kernel_goldelico_gta04-21536062d98938dfcfbae593a26c154e359749dc.zip kernel_goldelico_gta04-21536062d98938dfcfbae593a26c154e359749dc.tar.gz kernel_goldelico_gta04-21536062d98938dfcfbae593a26c154e359749dc.tar.bz2 |
[SCSI] iscsi class: fix endpoint id handling
Some endpoint code was using unsigned int and some
was using uint64_t. This converts it all to uint64_t.
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/scsi_transport_iscsi.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/scsi/scsi_transport_iscsi.h b/include/scsi/scsi_transport_iscsi.h index 8749d4d..c667cc3 100644 --- a/include/scsi/scsi_transport_iscsi.h +++ b/include/scsi/scsi_transport_iscsi.h @@ -208,7 +208,7 @@ extern void iscsi_host_for_each_session(struct Scsi_Host *shost, struct iscsi_endpoint { void *dd_data; /* LLD private data */ struct device dev; - unsigned int id; + uint64_t id; }; /* |