diff options
author | FUJITA Tomonori <tomof@acm.org> | 2007-07-11 02:08:22 -0400 |
---|---|---|
committer | James Bottomley <jejb@mulgrave.localdomain> | 2007-10-12 14:38:01 -0400 |
commit | bfb743740e1598d3030c4972a8808f2bb5b95b6b (patch) | |
tree | 107bb8f17faa3f90bafc64dd6581bbf751ee30c9 /include/scsi/scsi_transport.h | |
parent | 17b0bcfad795913b1f2a3926cd238fa2ad5522a2 (diff) |
[SCSI] tgt: move tsk_mgmt_response callback to transport class
This moves tsk_mgmt_response callback in struct scsi_host_template to
struct scsi_transport_template since struct scsi_transport_template is
more suitable for the task management stuff.
Signed-off-by: FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
Signed-off-by: Mike Christie <michaelc@cs.wisc.edu>
Signed-off-by: James Bottomley <James.Bottomley@SteelEye.com>
Diffstat (limited to 'include/scsi/scsi_transport.h')
-rw-r--r-- | include/scsi/scsi_transport.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/include/scsi/scsi_transport.h b/include/scsi/scsi_transport.h index af5b3e15e64e..0dfef752f0e2 100644 --- a/include/scsi/scsi_transport.h +++ b/include/scsi/scsi_transport.h | |||
@@ -71,6 +71,12 @@ struct scsi_transport_template { | |||
71 | * for target drivers. | 71 | * for target drivers. |
72 | */ | 72 | */ |
73 | int (* it_nexus_response)(struct Scsi_Host *, u64, int); | 73 | int (* it_nexus_response)(struct Scsi_Host *, u64, int); |
74 | |||
75 | /* | ||
76 | * Used as callback for the completion of task management | ||
77 | * request for target drivers. | ||
78 | */ | ||
79 | int (* tsk_mgmt_response)(struct Scsi_Host *, u64, u64, int); | ||
74 | }; | 80 | }; |
75 | 81 | ||
76 | #define transport_class_to_shost(tc) \ | 82 | #define transport_class_to_shost(tc) \ |