diff options
author | Swen Schillig <swen@vnet.ibm.com> | 2009-08-18 09:43:21 -0400 |
---|---|---|
committer | James Bottomley <James.Bottomley@suse.de> | 2009-09-05 09:49:30 -0400 |
commit | 5771710bd5edfafcb8656f49b93690a6fae5a4d2 (patch) | |
tree | f7ca88bc0f3d780794aa564855c0ed0ddeb9af18 /drivers/s390/scsi/zfcp_qdio.c | |
parent | 799b76d09aeee558d18c1f5b93e63f58f1d1fc11 (diff) |
[SCSI] zfcp: Update dbf calls
Change the dbf data and functions to use the zfcp_dbf prefix
throughout the code. Also change the calls to dbf to use zfcp_dbf
instead of zfcp_adapter.
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@suse.de>
Diffstat (limited to 'drivers/s390/scsi/zfcp_qdio.c')
-rw-r--r-- | drivers/s390/scsi/zfcp_qdio.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/drivers/s390/scsi/zfcp_qdio.c b/drivers/s390/scsi/zfcp_qdio.c index 0b3f634509bf..84527ebbbe58 100644 --- a/drivers/s390/scsi/zfcp_qdio.c +++ b/drivers/s390/scsi/zfcp_qdio.c | |||
@@ -101,7 +101,8 @@ static void zfcp_qdio_int_req(struct ccw_device *cdev, unsigned int qdio_err, | |||
101 | struct zfcp_qdio_queue *queue = &qdio->req_q; | 101 | struct zfcp_qdio_queue *queue = &qdio->req_q; |
102 | 102 | ||
103 | if (unlikely(qdio_err)) { | 103 | if (unlikely(qdio_err)) { |
104 | zfcp_hba_dbf_event_qdio(qdio, qdio_err, first, count); | 104 | zfcp_dbf_hba_qdio(qdio->adapter->dbf, qdio_err, first, |
105 | count); | ||
105 | zfcp_qdio_handler_error(qdio, "qdireq1"); | 106 | zfcp_qdio_handler_error(qdio, "qdireq1"); |
106 | return; | 107 | return; |
107 | } | 108 | } |
@@ -143,7 +144,8 @@ static void zfcp_qdio_int_resp(struct ccw_device *cdev, unsigned int qdio_err, | |||
143 | int sbal_idx, sbal_no; | 144 | int sbal_idx, sbal_no; |
144 | 145 | ||
145 | if (unlikely(qdio_err)) { | 146 | if (unlikely(qdio_err)) { |
146 | zfcp_hba_dbf_event_qdio(qdio, qdio_err, first, count); | 147 | zfcp_dbf_hba_qdio(qdio->adapter->dbf, qdio_err, first, |
148 | count); | ||
147 | zfcp_qdio_handler_error(qdio, "qdires1"); | 149 | zfcp_qdio_handler_error(qdio, "qdires1"); |
148 | return; | 150 | return; |
149 | } | 151 | } |