diff options
author | Swen Schillig <swen@vnet.ibm.com> | 2008-07-02 04:56:39 -0400 |
---|---|---|
committer | James Bottomley <James.Bottomley@HansenPartnership.com> | 2008-07-12 09:22:35 -0400 |
commit | c41f8cbddd4e0e72951e0575165dea8ea26f1c4b (patch) | |
tree | 67eaa89161e594ff2b45dbc9c1bdaee7176b2a32 /drivers/s390/scsi/zfcp_ext.h | |
parent | 60221920706a01bef89af2577f9a90a8eeb4e662 (diff) |
[SCSI] zfcp: zfcp_fsf cleanup.
Code cleanup for the zfcp_fsf.c file.
Signed-off-by: Swen Schillig <swen@vnet.ibm.com>
Signed-off-by: Christof Schmitt <christof.schmitt@de.ibm.com>
Signed-off-by: James Bottomley <James.Bottomley@HansenPartnership.com>
Diffstat (limited to 'drivers/s390/scsi/zfcp_ext.h')
-rw-r--r-- | drivers/s390/scsi/zfcp_ext.h | 12 |
1 files changed, 5 insertions, 7 deletions
diff --git a/drivers/s390/scsi/zfcp_ext.h b/drivers/s390/scsi/zfcp_ext.h index f0d6947ae073..2845693413fb 100644 --- a/drivers/s390/scsi/zfcp_ext.h +++ b/drivers/s390/scsi/zfcp_ext.h | |||
@@ -70,21 +70,19 @@ extern struct zfcp_fsf_req *zfcp_fsf_control_file(struct zfcp_adapter *adapter, | |||
70 | extern void zfcp_fsf_start_timer(struct zfcp_fsf_req *, unsigned long); | 70 | extern void zfcp_fsf_start_timer(struct zfcp_fsf_req *, unsigned long); |
71 | extern void zfcp_erp_start_timer(struct zfcp_fsf_req *); | 71 | extern void zfcp_erp_start_timer(struct zfcp_fsf_req *); |
72 | extern void zfcp_fsf_req_dismiss_all(struct zfcp_adapter *); | 72 | extern void zfcp_fsf_req_dismiss_all(struct zfcp_adapter *); |
73 | extern int zfcp_fsf_status_read(struct zfcp_adapter *, int); | 73 | extern int zfcp_fsf_status_read(struct zfcp_adapter *); |
74 | extern int zfcp_status_read_refill(struct zfcp_adapter *adapter); | 74 | extern int zfcp_status_read_refill(struct zfcp_adapter *adapter); |
75 | extern int zfcp_fsf_req_create(struct zfcp_adapter *, u32, int, mempool_t *, | ||
76 | unsigned long *, struct zfcp_fsf_req **) | ||
77 | __acquires(adapter->req_q.lock); | ||
78 | extern int zfcp_fsf_send_ct(struct zfcp_send_ct *, mempool_t *, | 75 | extern int zfcp_fsf_send_ct(struct zfcp_send_ct *, mempool_t *, |
79 | struct zfcp_erp_action *); | 76 | struct zfcp_erp_action *); |
80 | extern int zfcp_fsf_send_els(struct zfcp_send_els *); | 77 | extern int zfcp_fsf_send_els(struct zfcp_send_els *); |
81 | extern int zfcp_fsf_send_fcp_command_task(struct zfcp_adapter *, | 78 | extern int zfcp_fsf_send_fcp_command_task(struct zfcp_adapter *, |
82 | struct zfcp_unit *, | 79 | struct zfcp_unit *, |
83 | struct scsi_cmnd *, int, int); | 80 | struct scsi_cmnd *, int, int); |
84 | extern int zfcp_fsf_req_complete(struct zfcp_fsf_req *); | 81 | extern void zfcp_fsf_req_complete(struct zfcp_fsf_req *); |
85 | extern void zfcp_fsf_req_free(struct zfcp_fsf_req *); | 82 | extern void zfcp_fsf_req_free(struct zfcp_fsf_req *); |
86 | extern struct zfcp_fsf_req *zfcp_fsf_send_fcp_command_task_management( | 83 | extern struct zfcp_fsf_req *zfcp_fsf_send_fcp_ctm(struct zfcp_adapter *, |
87 | struct zfcp_adapter *, struct zfcp_unit *, u8, int); | 84 | struct zfcp_unit *, u8, |
85 | int); | ||
88 | extern struct zfcp_fsf_req *zfcp_fsf_abort_fcp_command( | 86 | extern struct zfcp_fsf_req *zfcp_fsf_abort_fcp_command( |
89 | unsigned long, struct zfcp_adapter *, struct zfcp_unit *, int); | 87 | unsigned long, struct zfcp_adapter *, struct zfcp_unit *, int); |
90 | 88 | ||