Swen Schillig | 41fa2ada | 2007-09-07 09:15:31 +0200 | [diff] [blame] | 1 | /* |
Christof Schmitt | 553448f | 2008-06-10 18:20:58 +0200 | [diff] [blame] | 2 | * zfcp device driver |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3 | * |
Christof Schmitt | 553448f | 2008-06-10 18:20:58 +0200 | [diff] [blame] | 4 | * Interface to Linux SCSI midlayer. |
Swen Schillig | 41fa2ada | 2007-09-07 09:15:31 +0200 | [diff] [blame] | 5 | * |
Christof Schmitt | a2fa0ae | 2009-03-02 13:09:08 +0100 | [diff] [blame^] | 6 | * Copyright IBM Corporation 2002, 2009 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7 | */ |
| 8 | |
Christof Schmitt | ecf39d4 | 2008-12-25 13:39:53 +0100 | [diff] [blame] | 9 | #define KMSG_COMPONENT "zfcp" |
| 10 | #define pr_fmt(fmt) KMSG_COMPONENT ": " fmt |
| 11 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 12 | #include "zfcp_ext.h" |
Christof Schmitt | 5f852be | 2007-05-08 11:16:52 +0200 | [diff] [blame] | 13 | #include <asm/atomic.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 14 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 15 | /* Find start of Sense Information in FCP response unit*/ |
Martin Petermann | f76af7d7 | 2008-07-02 10:56:36 +0200 | [diff] [blame] | 16 | char *zfcp_get_fcp_sns_info_ptr(struct fcp_rsp_iu *fcp_rsp_iu) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 17 | { |
| 18 | char *fcp_sns_info_ptr; |
| 19 | |
Martin Petermann | f76af7d7 | 2008-07-02 10:56:36 +0200 | [diff] [blame] | 20 | fcp_sns_info_ptr = (unsigned char *) &fcp_rsp_iu[1]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 21 | if (fcp_rsp_iu->validity.bits.fcp_rsp_len_valid) |
Martin Petermann | f76af7d7 | 2008-07-02 10:56:36 +0200 | [diff] [blame] | 22 | fcp_sns_info_ptr += fcp_rsp_iu->fcp_rsp_len; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 23 | |
| 24 | return fcp_sns_info_ptr; |
| 25 | } |
| 26 | |
Andreas Herrmann | f6c0e7a | 2006-08-02 11:05:52 +0200 | [diff] [blame] | 27 | static void zfcp_scsi_slave_destroy(struct scsi_device *sdpnt) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 28 | { |
| 29 | struct zfcp_unit *unit = (struct zfcp_unit *) sdpnt->hostdata; |
Christof Schmitt | 26816f1 | 2008-11-04 16:35:05 +0100 | [diff] [blame] | 30 | unit->device = NULL; |
Swen Schillig | 5ffd51a | 2009-03-02 13:09:04 +0100 | [diff] [blame] | 31 | zfcp_erp_unit_failed(unit, "scslvd1", NULL); |
Christof Schmitt | 26816f1 | 2008-11-04 16:35:05 +0100 | [diff] [blame] | 32 | zfcp_unit_put(unit); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 33 | } |
| 34 | |
Martin Petermann | f76af7d7 | 2008-07-02 10:56:36 +0200 | [diff] [blame] | 35 | static int zfcp_scsi_slave_configure(struct scsi_device *sdp) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 36 | { |
| 37 | if (sdp->tagged_supported) |
Martin Petermann | f76af7d7 | 2008-07-02 10:56:36 +0200 | [diff] [blame] | 38 | scsi_adjust_queue_depth(sdp, MSG_SIMPLE_TAG, 32); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 39 | else |
| 40 | scsi_adjust_queue_depth(sdp, 0, 1); |
| 41 | return 0; |
| 42 | } |
| 43 | |
Martin Petermann | f76af7d7 | 2008-07-02 10:56:36 +0200 | [diff] [blame] | 44 | static void zfcp_scsi_command_fail(struct scsi_cmnd *scpnt, int result) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 45 | { |
Martin Petermann | feac6a0 | 2008-07-02 10:56:35 +0200 | [diff] [blame] | 46 | set_host_byte(scpnt, result); |
Maxim Shchetynin | 8a36e45 | 2005-09-13 21:50:38 +0200 | [diff] [blame] | 47 | if ((scpnt->device != NULL) && (scpnt->device->host != NULL)) |
| 48 | zfcp_scsi_dbf_event_result("fail", 4, |
| 49 | (struct zfcp_adapter*) scpnt->device->host->hostdata[0], |
Maxim Shchetynin | ed829ad | 2006-02-11 01:42:58 +0100 | [diff] [blame] | 50 | scpnt, NULL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 51 | /* return directly */ |
| 52 | scpnt->scsi_done(scpnt); |
| 53 | } |
| 54 | |
Martin Petermann | f76af7d7 | 2008-07-02 10:56:36 +0200 | [diff] [blame] | 55 | static int zfcp_scsi_queuecommand(struct scsi_cmnd *scpnt, |
| 56 | void (*done) (struct scsi_cmnd *)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 57 | { |
| 58 | struct zfcp_unit *unit; |
| 59 | struct zfcp_adapter *adapter; |
Christof Schmitt | a2fa0ae | 2009-03-02 13:09:08 +0100 | [diff] [blame^] | 60 | int status, scsi_result, ret; |
| 61 | struct fc_rport *rport = starget_to_rport(scsi_target(scpnt->device)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 62 | |
| 63 | /* reset the status for this request */ |
| 64 | scpnt->result = 0; |
| 65 | scpnt->host_scribble = NULL; |
| 66 | scpnt->scsi_done = done; |
| 67 | |
| 68 | /* |
| 69 | * figure out adapter and target device |
| 70 | * (stored there by zfcp_scsi_slave_alloc) |
| 71 | */ |
| 72 | adapter = (struct zfcp_adapter *) scpnt->device->host->hostdata[0]; |
Martin Petermann | f76af7d7 | 2008-07-02 10:56:36 +0200 | [diff] [blame] | 73 | unit = scpnt->device->hostdata; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 74 | |
Martin Petermann | f76af7d7 | 2008-07-02 10:56:36 +0200 | [diff] [blame] | 75 | BUG_ON(!adapter || (adapter != unit->port->adapter)); |
| 76 | BUG_ON(!scpnt->scsi_done); |
| 77 | |
| 78 | if (unlikely(!unit)) { |
| 79 | zfcp_scsi_command_fail(scpnt, DID_NO_CONNECT); |
| 80 | return 0; |
| 81 | } |
| 82 | |
Christof Schmitt | a2fa0ae | 2009-03-02 13:09:08 +0100 | [diff] [blame^] | 83 | scsi_result = fc_remote_port_chkready(rport); |
| 84 | if (unlikely(scsi_result)) { |
| 85 | scpnt->result = scsi_result; |
| 86 | zfcp_scsi_dbf_event_result("fail", 4, adapter, scpnt, NULL); |
| 87 | scpnt->scsi_done(scpnt); |
| 88 | return 0; |
| 89 | } |
| 90 | |
Martin Petermann | f76af7d7 | 2008-07-02 10:56:36 +0200 | [diff] [blame] | 91 | status = atomic_read(&unit->status); |
| 92 | if (unlikely((status & ZFCP_STATUS_COMMON_ERP_FAILED) || |
| 93 | !(status & ZFCP_STATUS_COMMON_RUNNING))) { |
| 94 | zfcp_scsi_command_fail(scpnt, DID_ERROR); |
| 95 | return 0;; |
| 96 | } |
| 97 | |
Christof Schmitt | 63caf36 | 2009-03-02 13:09:00 +0100 | [diff] [blame] | 98 | ret = zfcp_fsf_send_fcp_command_task(unit, scpnt); |
Martin Petermann | f76af7d7 | 2008-07-02 10:56:36 +0200 | [diff] [blame] | 99 | if (unlikely(ret == -EBUSY)) |
Swen Schillig | f7a65e9 | 2008-11-27 11:44:07 +0100 | [diff] [blame] | 100 | return SCSI_MLQUEUE_DEVICE_BUSY; |
Martin Petermann | f76af7d7 | 2008-07-02 10:56:36 +0200 | [diff] [blame] | 101 | else if (unlikely(ret < 0)) |
| 102 | return SCSI_MLQUEUE_HOST_BUSY; |
| 103 | |
| 104 | return ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 105 | } |
| 106 | |
Martin Petermann | f76af7d7 | 2008-07-02 10:56:36 +0200 | [diff] [blame] | 107 | static struct zfcp_unit *zfcp_unit_lookup(struct zfcp_adapter *adapter, |
| 108 | int channel, unsigned int id, |
| 109 | unsigned int lun) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 110 | { |
| 111 | struct zfcp_port *port; |
Martin Petermann | f76af7d7 | 2008-07-02 10:56:36 +0200 | [diff] [blame] | 112 | struct zfcp_unit *unit; |
Christof Schmitt | 0406289 | 2008-10-01 12:42:20 +0200 | [diff] [blame] | 113 | int scsi_lun; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 114 | |
| 115 | list_for_each_entry(port, &adapter->port_list_head, list) { |
Andreas Herrmann | 3859f6a | 2005-08-27 11:07:54 -0700 | [diff] [blame] | 116 | if (!port->rport || (id != port->rport->scsi_target_id)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 117 | continue; |
Christof Schmitt | 0406289 | 2008-10-01 12:42:20 +0200 | [diff] [blame] | 118 | list_for_each_entry(unit, &port->unit_list_head, list) { |
| 119 | scsi_lun = scsilun_to_int( |
| 120 | (struct scsi_lun *)&unit->fcp_lun); |
| 121 | if (lun == scsi_lun) |
Martin Petermann | f76af7d7 | 2008-07-02 10:56:36 +0200 | [diff] [blame] | 122 | return unit; |
Christof Schmitt | 0406289 | 2008-10-01 12:42:20 +0200 | [diff] [blame] | 123 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 124 | } |
Martin Petermann | f76af7d7 | 2008-07-02 10:56:36 +0200 | [diff] [blame] | 125 | |
| 126 | return NULL; |
| 127 | } |
| 128 | |
| 129 | static int zfcp_scsi_slave_alloc(struct scsi_device *sdp) |
| 130 | { |
| 131 | struct zfcp_adapter *adapter; |
| 132 | struct zfcp_unit *unit; |
| 133 | unsigned long flags; |
| 134 | int retval = -ENXIO; |
| 135 | |
| 136 | adapter = (struct zfcp_adapter *) sdp->host->hostdata[0]; |
| 137 | if (!adapter) |
| 138 | goto out; |
| 139 | |
| 140 | read_lock_irqsave(&zfcp_data.config_lock, flags); |
| 141 | unit = zfcp_unit_lookup(adapter, sdp->channel, sdp->id, sdp->lun); |
Christof Schmitt | 86f8a1b | 2009-03-02 13:08:55 +0100 | [diff] [blame] | 142 | if (unit) { |
Martin Petermann | f76af7d7 | 2008-07-02 10:56:36 +0200 | [diff] [blame] | 143 | sdp->hostdata = unit; |
| 144 | unit->device = sdp; |
| 145 | zfcp_unit_get(unit); |
| 146 | retval = 0; |
| 147 | } |
| 148 | read_unlock_irqrestore(&zfcp_data.config_lock, flags); |
| 149 | out: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 150 | return retval; |
| 151 | } |
| 152 | |
Heiko Carstens | 2b67fc4 | 2007-02-05 21:16:47 +0100 | [diff] [blame] | 153 | static int zfcp_scsi_eh_abort_handler(struct scsi_cmnd *scpnt) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 154 | { |
Christof Schmitt | 63caf36 | 2009-03-02 13:09:00 +0100 | [diff] [blame] | 155 | struct Scsi_Host *scsi_host = scpnt->device->host; |
| 156 | struct zfcp_adapter *adapter = |
| 157 | (struct zfcp_adapter *) scsi_host->hostdata[0]; |
| 158 | struct zfcp_unit *unit = scpnt->device->hostdata; |
| 159 | struct zfcp_fsf_req *old_req, *abrt_req; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 160 | unsigned long flags; |
Martin Petermann | f76af7d7 | 2008-07-02 10:56:36 +0200 | [diff] [blame] | 161 | unsigned long old_req_id = (unsigned long) scpnt->host_scribble; |
Andreas Herrmann | 4eff4a3 | 2006-09-18 22:29:20 +0200 | [diff] [blame] | 162 | int retval = SUCCESS; |
Christof Schmitt | 63caf36 | 2009-03-02 13:09:00 +0100 | [diff] [blame] | 163 | int retry = 3; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 164 | |
Andreas Herrmann | 059c97d | 2005-09-13 21:47:52 +0200 | [diff] [blame] | 165 | /* avoid race condition between late normal completion and abort */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 166 | write_lock_irqsave(&adapter->abort_lock, flags); |
| 167 | |
Andreas Herrmann | 4eff4a3 | 2006-09-18 22:29:20 +0200 | [diff] [blame] | 168 | spin_lock(&adapter->req_list_lock); |
Christof Schmitt | 63caf36 | 2009-03-02 13:09:00 +0100 | [diff] [blame] | 169 | old_req = zfcp_reqlist_find(adapter, old_req_id); |
Andreas Herrmann | 4eff4a3 | 2006-09-18 22:29:20 +0200 | [diff] [blame] | 170 | spin_unlock(&adapter->req_list_lock); |
Christof Schmitt | 63caf36 | 2009-03-02 13:09:00 +0100 | [diff] [blame] | 171 | if (!old_req) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 172 | write_unlock_irqrestore(&adapter->abort_lock, flags); |
Christof Schmitt | 63caf36 | 2009-03-02 13:09:00 +0100 | [diff] [blame] | 173 | zfcp_scsi_dbf_event_abort("lte1", adapter, scpnt, NULL, |
| 174 | old_req_id); |
| 175 | return SUCCESS; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 176 | } |
Christof Schmitt | 63caf36 | 2009-03-02 13:09:00 +0100 | [diff] [blame] | 177 | old_req->data = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 178 | |
Andreas Herrmann | 4eff4a3 | 2006-09-18 22:29:20 +0200 | [diff] [blame] | 179 | /* don't access old fsf_req after releasing the abort_lock */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 180 | write_unlock_irqrestore(&adapter->abort_lock, flags); |
Andreas Herrmann | 4eff4a3 | 2006-09-18 22:29:20 +0200 | [diff] [blame] | 181 | |
Christof Schmitt | 63caf36 | 2009-03-02 13:09:00 +0100 | [diff] [blame] | 182 | while (retry--) { |
| 183 | abrt_req = zfcp_fsf_abort_fcp_command(old_req_id, unit); |
| 184 | if (abrt_req) |
| 185 | break; |
| 186 | |
| 187 | zfcp_erp_wait(adapter); |
| 188 | if (!(atomic_read(&adapter->status) & |
| 189 | ZFCP_STATUS_COMMON_RUNNING)) { |
| 190 | zfcp_scsi_dbf_event_abort("nres", adapter, scpnt, NULL, |
| 191 | old_req_id); |
| 192 | return SUCCESS; |
| 193 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 194 | } |
Christof Schmitt | 63caf36 | 2009-03-02 13:09:00 +0100 | [diff] [blame] | 195 | if (!abrt_req) |
| 196 | return FAILED; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 197 | |
Christof Schmitt | 63caf36 | 2009-03-02 13:09:00 +0100 | [diff] [blame] | 198 | wait_event(abrt_req->completion_wq, |
| 199 | abrt_req->status & ZFCP_STATUS_FSFREQ_COMPLETED); |
Andreas Herrmann | 059c97d | 2005-09-13 21:47:52 +0200 | [diff] [blame] | 200 | |
Christof Schmitt | 63caf36 | 2009-03-02 13:09:00 +0100 | [diff] [blame] | 201 | if (abrt_req->status & ZFCP_STATUS_FSFREQ_ABORTSUCCEEDED) |
| 202 | zfcp_scsi_dbf_event_abort("okay", adapter, scpnt, abrt_req, 0); |
| 203 | else if (abrt_req->status & ZFCP_STATUS_FSFREQ_ABORTNOTNEEDED) |
| 204 | zfcp_scsi_dbf_event_abort("lte2", adapter, scpnt, abrt_req, 0); |
| 205 | else { |
| 206 | zfcp_scsi_dbf_event_abort("fail", adapter, scpnt, abrt_req, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 207 | retval = FAILED; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 208 | } |
Christof Schmitt | 63caf36 | 2009-03-02 13:09:00 +0100 | [diff] [blame] | 209 | zfcp_fsf_req_free(abrt_req); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 210 | return retval; |
| 211 | } |
| 212 | |
Christof Schmitt | 63caf36 | 2009-03-02 13:09:00 +0100 | [diff] [blame] | 213 | static int zfcp_task_mgmt_function(struct scsi_cmnd *scpnt, u8 tm_flags) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 214 | { |
Christof Schmitt | 63caf36 | 2009-03-02 13:09:00 +0100 | [diff] [blame] | 215 | struct zfcp_unit *unit = scpnt->device->hostdata; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 216 | struct zfcp_adapter *adapter = unit->port->adapter; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 217 | struct zfcp_fsf_req *fsf_req; |
Martin Petermann | f76af7d7 | 2008-07-02 10:56:36 +0200 | [diff] [blame] | 218 | int retval = SUCCESS; |
Christof Schmitt | 63caf36 | 2009-03-02 13:09:00 +0100 | [diff] [blame] | 219 | int retry = 3; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 220 | |
Christof Schmitt | 63caf36 | 2009-03-02 13:09:00 +0100 | [diff] [blame] | 221 | while (retry--) { |
| 222 | fsf_req = zfcp_fsf_send_fcp_ctm(unit, tm_flags); |
| 223 | if (fsf_req) |
| 224 | break; |
| 225 | |
| 226 | zfcp_erp_wait(adapter); |
| 227 | if (!(atomic_read(&adapter->status) & |
| 228 | ZFCP_STATUS_COMMON_RUNNING)) { |
| 229 | zfcp_scsi_dbf_event_devreset("nres", tm_flags, unit, |
| 230 | scpnt); |
| 231 | return SUCCESS; |
| 232 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 233 | } |
Christof Schmitt | 63caf36 | 2009-03-02 13:09:00 +0100 | [diff] [blame] | 234 | if (!fsf_req) |
| 235 | return FAILED; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 236 | |
Christof Schmitt | 63caf36 | 2009-03-02 13:09:00 +0100 | [diff] [blame] | 237 | wait_event(fsf_req->completion_wq, |
| 238 | fsf_req->status & ZFCP_STATUS_FSFREQ_COMPLETED); |
Andreas Herrmann | 77eb169 | 2005-09-13 21:48:33 +0200 | [diff] [blame] | 239 | |
Maxim Shchetynin | 8a36e45 | 2005-09-13 21:50:38 +0200 | [diff] [blame] | 240 | if (fsf_req->status & ZFCP_STATUS_FSFREQ_TMFUNCFAILED) { |
| 241 | zfcp_scsi_dbf_event_devreset("fail", tm_flags, unit, scpnt); |
Martin Petermann | f76af7d7 | 2008-07-02 10:56:36 +0200 | [diff] [blame] | 242 | retval = FAILED; |
Maxim Shchetynin | 8a36e45 | 2005-09-13 21:50:38 +0200 | [diff] [blame] | 243 | } else if (fsf_req->status & ZFCP_STATUS_FSFREQ_TMFUNCNOTSUPP) { |
| 244 | zfcp_scsi_dbf_event_devreset("nsup", tm_flags, unit, scpnt); |
Martin Petermann | f76af7d7 | 2008-07-02 10:56:36 +0200 | [diff] [blame] | 245 | retval = FAILED; |
Maxim Shchetynin | 8a36e45 | 2005-09-13 21:50:38 +0200 | [diff] [blame] | 246 | } else |
| 247 | zfcp_scsi_dbf_event_devreset("okay", tm_flags, unit, scpnt); |
Andreas Herrmann | 77eb169 | 2005-09-13 21:48:33 +0200 | [diff] [blame] | 248 | |
| 249 | zfcp_fsf_req_free(fsf_req); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 250 | return retval; |
| 251 | } |
| 252 | |
Martin Petermann | f76af7d7 | 2008-07-02 10:56:36 +0200 | [diff] [blame] | 253 | static int zfcp_scsi_eh_device_reset_handler(struct scsi_cmnd *scpnt) |
| 254 | { |
Christof Schmitt | 63caf36 | 2009-03-02 13:09:00 +0100 | [diff] [blame] | 255 | return zfcp_task_mgmt_function(scpnt, FCP_LOGICAL_UNIT_RESET); |
Martin Petermann | f76af7d7 | 2008-07-02 10:56:36 +0200 | [diff] [blame] | 256 | } |
| 257 | |
| 258 | static int zfcp_scsi_eh_target_reset_handler(struct scsi_cmnd *scpnt) |
| 259 | { |
Christof Schmitt | 63caf36 | 2009-03-02 13:09:00 +0100 | [diff] [blame] | 260 | return zfcp_task_mgmt_function(scpnt, FCP_TARGET_RESET); |
Martin Petermann | f76af7d7 | 2008-07-02 10:56:36 +0200 | [diff] [blame] | 261 | } |
| 262 | |
Heiko Carstens | 2b67fc4 | 2007-02-05 21:16:47 +0100 | [diff] [blame] | 263 | static int zfcp_scsi_eh_host_reset_handler(struct scsi_cmnd *scpnt) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 264 | { |
Christof Schmitt | 63caf36 | 2009-03-02 13:09:00 +0100 | [diff] [blame] | 265 | struct zfcp_unit *unit = scpnt->device->hostdata; |
| 266 | struct zfcp_adapter *adapter = unit->port->adapter; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 267 | |
Swen Schillig | 5ffd51a | 2009-03-02 13:09:04 +0100 | [diff] [blame] | 268 | zfcp_erp_adapter_reopen(adapter, 0, "schrh_1", scpnt); |
Andreas Herrmann | 8165428 | 2006-09-18 22:30:36 +0200 | [diff] [blame] | 269 | zfcp_erp_wait(adapter); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 270 | |
Andreas Herrmann | 810f1e3e | 2005-09-13 21:49:52 +0200 | [diff] [blame] | 271 | return SUCCESS; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 272 | } |
| 273 | |
Martin Petermann | f76af7d7 | 2008-07-02 10:56:36 +0200 | [diff] [blame] | 274 | int zfcp_adapter_scsi_register(struct zfcp_adapter *adapter) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 275 | { |
Martin Petermann | f76af7d7 | 2008-07-02 10:56:36 +0200 | [diff] [blame] | 276 | struct ccw_dev_id dev_id; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 277 | |
Michael Loehr | 9f28745 | 2007-05-09 11:01:24 +0200 | [diff] [blame] | 278 | if (adapter->scsi_host) |
Martin Petermann | f76af7d7 | 2008-07-02 10:56:36 +0200 | [diff] [blame] | 279 | return 0; |
Michael Loehr | 9f28745 | 2007-05-09 11:01:24 +0200 | [diff] [blame] | 280 | |
Martin Petermann | f76af7d7 | 2008-07-02 10:56:36 +0200 | [diff] [blame] | 281 | ccw_device_get_id(adapter->ccw_device, &dev_id); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 282 | /* register adapter as SCSI host with mid layer of SCSI stack */ |
| 283 | adapter->scsi_host = scsi_host_alloc(&zfcp_data.scsi_host_template, |
| 284 | sizeof (struct zfcp_adapter *)); |
| 285 | if (!adapter->scsi_host) { |
Christof Schmitt | 553448f | 2008-06-10 18:20:58 +0200 | [diff] [blame] | 286 | dev_err(&adapter->ccw_device->dev, |
Christof Schmitt | ff3b24f | 2008-10-01 12:42:15 +0200 | [diff] [blame] | 287 | "Registering the FCP device with the " |
| 288 | "SCSI stack failed\n"); |
Martin Petermann | f76af7d7 | 2008-07-02 10:56:36 +0200 | [diff] [blame] | 289 | return -EIO; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 290 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 291 | |
| 292 | /* tell the SCSI stack some characteristics of this adapter */ |
| 293 | adapter->scsi_host->max_id = 1; |
| 294 | adapter->scsi_host->max_lun = 1; |
| 295 | adapter->scsi_host->max_channel = 0; |
Martin Petermann | f76af7d7 | 2008-07-02 10:56:36 +0200 | [diff] [blame] | 296 | adapter->scsi_host->unique_id = dev_id.devno; |
| 297 | adapter->scsi_host->max_cmd_len = 255; |
Heiko Carstens | dd52e0e | 2006-09-18 22:28:49 +0200 | [diff] [blame] | 298 | adapter->scsi_host->transportt = zfcp_data.scsi_transport_template; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 299 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 300 | adapter->scsi_host->hostdata[0] = (unsigned long) adapter; |
| 301 | |
| 302 | if (scsi_add_host(adapter->scsi_host, &adapter->ccw_device->dev)) { |
| 303 | scsi_host_put(adapter->scsi_host); |
Martin Petermann | f76af7d7 | 2008-07-02 10:56:36 +0200 | [diff] [blame] | 304 | return -EIO; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 305 | } |
Martin Petermann | f76af7d7 | 2008-07-02 10:56:36 +0200 | [diff] [blame] | 306 | |
| 307 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 308 | } |
| 309 | |
Martin Petermann | f76af7d7 | 2008-07-02 10:56:36 +0200 | [diff] [blame] | 310 | void zfcp_adapter_scsi_unregister(struct zfcp_adapter *adapter) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 311 | { |
| 312 | struct Scsi_Host *shost; |
Andreas Herrmann | 13e1e1f | 2005-09-19 16:56:17 +0200 | [diff] [blame] | 313 | struct zfcp_port *port; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 314 | |
| 315 | shost = adapter->scsi_host; |
| 316 | if (!shost) |
| 317 | return; |
Martin Petermann | f76af7d7 | 2008-07-02 10:56:36 +0200 | [diff] [blame] | 318 | |
Andreas Herrmann | 13e1e1f | 2005-09-19 16:56:17 +0200 | [diff] [blame] | 319 | read_lock_irq(&zfcp_data.config_lock); |
| 320 | list_for_each_entry(port, &adapter->port_list_head, list) |
| 321 | if (port->rport) |
| 322 | port->rport = NULL; |
Martin Petermann | f76af7d7 | 2008-07-02 10:56:36 +0200 | [diff] [blame] | 323 | |
Andreas Herrmann | 13e1e1f | 2005-09-19 16:56:17 +0200 | [diff] [blame] | 324 | read_unlock_irq(&zfcp_data.config_lock); |
Andreas Herrmann | 3859f6a | 2005-08-27 11:07:54 -0700 | [diff] [blame] | 325 | fc_remove_host(shost); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 326 | scsi_remove_host(shost); |
| 327 | scsi_host_put(shost); |
| 328 | adapter->scsi_host = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 329 | |
| 330 | return; |
| 331 | } |
| 332 | |
Andreas Herrmann | f6cd94b | 2006-01-05 09:59:34 +0100 | [diff] [blame] | 333 | static struct fc_host_statistics* |
| 334 | zfcp_init_fc_host_stats(struct zfcp_adapter *adapter) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 335 | { |
Andreas Herrmann | f6cd94b | 2006-01-05 09:59:34 +0100 | [diff] [blame] | 336 | struct fc_host_statistics *fc_stats; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 337 | |
Andreas Herrmann | f6cd94b | 2006-01-05 09:59:34 +0100 | [diff] [blame] | 338 | if (!adapter->fc_stats) { |
| 339 | fc_stats = kmalloc(sizeof(*fc_stats), GFP_KERNEL); |
| 340 | if (!fc_stats) |
| 341 | return NULL; |
| 342 | adapter->fc_stats = fc_stats; /* freed in adater_dequeue */ |
| 343 | } |
| 344 | memset(adapter->fc_stats, 0, sizeof(*adapter->fc_stats)); |
| 345 | return adapter->fc_stats; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 346 | } |
| 347 | |
Martin Petermann | f76af7d7 | 2008-07-02 10:56:36 +0200 | [diff] [blame] | 348 | static void zfcp_adjust_fc_host_stats(struct fc_host_statistics *fc_stats, |
| 349 | struct fsf_qtcb_bottom_port *data, |
| 350 | struct fsf_qtcb_bottom_port *old) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 351 | { |
Martin Petermann | f76af7d7 | 2008-07-02 10:56:36 +0200 | [diff] [blame] | 352 | fc_stats->seconds_since_last_reset = |
| 353 | data->seconds_since_last_reset - old->seconds_since_last_reset; |
Andreas Herrmann | f6cd94b | 2006-01-05 09:59:34 +0100 | [diff] [blame] | 354 | fc_stats->tx_frames = data->tx_frames - old->tx_frames; |
| 355 | fc_stats->tx_words = data->tx_words - old->tx_words; |
| 356 | fc_stats->rx_frames = data->rx_frames - old->rx_frames; |
| 357 | fc_stats->rx_words = data->rx_words - old->rx_words; |
| 358 | fc_stats->lip_count = data->lip - old->lip; |
| 359 | fc_stats->nos_count = data->nos - old->nos; |
| 360 | fc_stats->error_frames = data->error_frames - old->error_frames; |
| 361 | fc_stats->dumped_frames = data->dumped_frames - old->dumped_frames; |
| 362 | fc_stats->link_failure_count = data->link_failure - old->link_failure; |
| 363 | fc_stats->loss_of_sync_count = data->loss_of_sync - old->loss_of_sync; |
Martin Petermann | f76af7d7 | 2008-07-02 10:56:36 +0200 | [diff] [blame] | 364 | fc_stats->loss_of_signal_count = |
| 365 | data->loss_of_signal - old->loss_of_signal; |
| 366 | fc_stats->prim_seq_protocol_err_count = |
| 367 | data->psp_error_counts - old->psp_error_counts; |
| 368 | fc_stats->invalid_tx_word_count = |
| 369 | data->invalid_tx_words - old->invalid_tx_words; |
Andreas Herrmann | f6cd94b | 2006-01-05 09:59:34 +0100 | [diff] [blame] | 370 | fc_stats->invalid_crc_count = data->invalid_crcs - old->invalid_crcs; |
Martin Petermann | f76af7d7 | 2008-07-02 10:56:36 +0200 | [diff] [blame] | 371 | fc_stats->fcp_input_requests = |
| 372 | data->input_requests - old->input_requests; |
| 373 | fc_stats->fcp_output_requests = |
| 374 | data->output_requests - old->output_requests; |
| 375 | fc_stats->fcp_control_requests = |
| 376 | data->control_requests - old->control_requests; |
Andreas Herrmann | f6cd94b | 2006-01-05 09:59:34 +0100 | [diff] [blame] | 377 | fc_stats->fcp_input_megabytes = data->input_mb - old->input_mb; |
| 378 | fc_stats->fcp_output_megabytes = data->output_mb - old->output_mb; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 379 | } |
| 380 | |
Martin Petermann | f76af7d7 | 2008-07-02 10:56:36 +0200 | [diff] [blame] | 381 | static void zfcp_set_fc_host_stats(struct fc_host_statistics *fc_stats, |
| 382 | struct fsf_qtcb_bottom_port *data) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 383 | { |
Andreas Herrmann | f6cd94b | 2006-01-05 09:59:34 +0100 | [diff] [blame] | 384 | fc_stats->seconds_since_last_reset = data->seconds_since_last_reset; |
| 385 | fc_stats->tx_frames = data->tx_frames; |
| 386 | fc_stats->tx_words = data->tx_words; |
| 387 | fc_stats->rx_frames = data->rx_frames; |
| 388 | fc_stats->rx_words = data->rx_words; |
| 389 | fc_stats->lip_count = data->lip; |
| 390 | fc_stats->nos_count = data->nos; |
| 391 | fc_stats->error_frames = data->error_frames; |
| 392 | fc_stats->dumped_frames = data->dumped_frames; |
| 393 | fc_stats->link_failure_count = data->link_failure; |
| 394 | fc_stats->loss_of_sync_count = data->loss_of_sync; |
| 395 | fc_stats->loss_of_signal_count = data->loss_of_signal; |
| 396 | fc_stats->prim_seq_protocol_err_count = data->psp_error_counts; |
| 397 | fc_stats->invalid_tx_word_count = data->invalid_tx_words; |
| 398 | fc_stats->invalid_crc_count = data->invalid_crcs; |
| 399 | fc_stats->fcp_input_requests = data->input_requests; |
| 400 | fc_stats->fcp_output_requests = data->output_requests; |
| 401 | fc_stats->fcp_control_requests = data->control_requests; |
| 402 | fc_stats->fcp_input_megabytes = data->input_mb; |
| 403 | fc_stats->fcp_output_megabytes = data->output_mb; |
| 404 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 405 | |
Martin Petermann | f76af7d7 | 2008-07-02 10:56:36 +0200 | [diff] [blame] | 406 | static struct fc_host_statistics *zfcp_get_fc_host_stats(struct Scsi_Host *host) |
Andreas Herrmann | f6cd94b | 2006-01-05 09:59:34 +0100 | [diff] [blame] | 407 | { |
| 408 | struct zfcp_adapter *adapter; |
| 409 | struct fc_host_statistics *fc_stats; |
| 410 | struct fsf_qtcb_bottom_port *data; |
| 411 | int ret; |
| 412 | |
Martin Petermann | f76af7d7 | 2008-07-02 10:56:36 +0200 | [diff] [blame] | 413 | adapter = (struct zfcp_adapter *)host->hostdata[0]; |
Andreas Herrmann | f6cd94b | 2006-01-05 09:59:34 +0100 | [diff] [blame] | 414 | fc_stats = zfcp_init_fc_host_stats(adapter); |
| 415 | if (!fc_stats) |
| 416 | return NULL; |
| 417 | |
Andreas Herrmann | ec4081c | 2006-05-22 18:17:30 +0200 | [diff] [blame] | 418 | data = kzalloc(sizeof(*data), GFP_KERNEL); |
Andreas Herrmann | f6cd94b | 2006-01-05 09:59:34 +0100 | [diff] [blame] | 419 | if (!data) |
| 420 | return NULL; |
Andreas Herrmann | f6cd94b | 2006-01-05 09:59:34 +0100 | [diff] [blame] | 421 | |
Swen Schillig | 52ef11a | 2007-08-28 09:31:09 +0200 | [diff] [blame] | 422 | ret = zfcp_fsf_exchange_port_data_sync(adapter, data); |
Andreas Herrmann | f6cd94b | 2006-01-05 09:59:34 +0100 | [diff] [blame] | 423 | if (ret) { |
| 424 | kfree(data); |
Martin Petermann | f76af7d7 | 2008-07-02 10:56:36 +0200 | [diff] [blame] | 425 | return NULL; |
Andreas Herrmann | f6cd94b | 2006-01-05 09:59:34 +0100 | [diff] [blame] | 426 | } |
| 427 | |
| 428 | if (adapter->stats_reset && |
| 429 | ((jiffies/HZ - adapter->stats_reset) < |
Martin Petermann | f76af7d7 | 2008-07-02 10:56:36 +0200 | [diff] [blame] | 430 | data->seconds_since_last_reset)) |
Andreas Herrmann | f6cd94b | 2006-01-05 09:59:34 +0100 | [diff] [blame] | 431 | zfcp_adjust_fc_host_stats(fc_stats, data, |
| 432 | adapter->stats_reset_data); |
Martin Petermann | f76af7d7 | 2008-07-02 10:56:36 +0200 | [diff] [blame] | 433 | else |
Andreas Herrmann | f6cd94b | 2006-01-05 09:59:34 +0100 | [diff] [blame] | 434 | zfcp_set_fc_host_stats(fc_stats, data); |
| 435 | |
| 436 | kfree(data); |
| 437 | return fc_stats; |
| 438 | } |
| 439 | |
Martin Petermann | f76af7d7 | 2008-07-02 10:56:36 +0200 | [diff] [blame] | 440 | static void zfcp_reset_fc_host_stats(struct Scsi_Host *shost) |
Andreas Herrmann | f6cd94b | 2006-01-05 09:59:34 +0100 | [diff] [blame] | 441 | { |
| 442 | struct zfcp_adapter *adapter; |
Martin Petermann | f76af7d7 | 2008-07-02 10:56:36 +0200 | [diff] [blame] | 443 | struct fsf_qtcb_bottom_port *data; |
Andreas Herrmann | f6cd94b | 2006-01-05 09:59:34 +0100 | [diff] [blame] | 444 | int ret; |
| 445 | |
| 446 | adapter = (struct zfcp_adapter *)shost->hostdata[0]; |
Andreas Herrmann | ec4081c | 2006-05-22 18:17:30 +0200 | [diff] [blame] | 447 | data = kzalloc(sizeof(*data), GFP_KERNEL); |
Andreas Herrmann | f6cd94b | 2006-01-05 09:59:34 +0100 | [diff] [blame] | 448 | if (!data) |
| 449 | return; |
Andreas Herrmann | f6cd94b | 2006-01-05 09:59:34 +0100 | [diff] [blame] | 450 | |
Swen Schillig | 52ef11a | 2007-08-28 09:31:09 +0200 | [diff] [blame] | 451 | ret = zfcp_fsf_exchange_port_data_sync(adapter, data); |
Martin Petermann | f76af7d7 | 2008-07-02 10:56:36 +0200 | [diff] [blame] | 452 | if (ret) |
Heiko Carstens | 83f6d6d | 2007-08-08 10:47:02 +0200 | [diff] [blame] | 453 | kfree(data); |
Martin Petermann | f76af7d7 | 2008-07-02 10:56:36 +0200 | [diff] [blame] | 454 | else { |
Andreas Herrmann | f6cd94b | 2006-01-05 09:59:34 +0100 | [diff] [blame] | 455 | adapter->stats_reset = jiffies/HZ; |
Martin Petermann | f76af7d7 | 2008-07-02 10:56:36 +0200 | [diff] [blame] | 456 | kfree(adapter->stats_reset_data); |
Andreas Herrmann | f6cd94b | 2006-01-05 09:59:34 +0100 | [diff] [blame] | 457 | adapter->stats_reset_data = data; /* finally freed in |
Martin Petermann | f76af7d7 | 2008-07-02 10:56:36 +0200 | [diff] [blame] | 458 | adapter_dequeue */ |
Andreas Herrmann | f6cd94b | 2006-01-05 09:59:34 +0100 | [diff] [blame] | 459 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 460 | } |
| 461 | |
Sven Schuetz | 85a8239 | 2008-06-10 18:20:59 +0200 | [diff] [blame] | 462 | static void zfcp_get_host_port_state(struct Scsi_Host *shost) |
| 463 | { |
| 464 | struct zfcp_adapter *adapter = |
| 465 | (struct zfcp_adapter *)shost->hostdata[0]; |
| 466 | int status = atomic_read(&adapter->status); |
| 467 | |
| 468 | if ((status & ZFCP_STATUS_COMMON_RUNNING) && |
| 469 | !(status & ZFCP_STATUS_ADAPTER_LINK_UNPLUGGED)) |
| 470 | fc_host_port_state(shost) = FC_PORTSTATE_ONLINE; |
| 471 | else if (status & ZFCP_STATUS_ADAPTER_LINK_UNPLUGGED) |
| 472 | fc_host_port_state(shost) = FC_PORTSTATE_LINKDOWN; |
| 473 | else if (status & ZFCP_STATUS_COMMON_ERP_FAILED) |
| 474 | fc_host_port_state(shost) = FC_PORTSTATE_ERROR; |
| 475 | else |
| 476 | fc_host_port_state(shost) = FC_PORTSTATE_UNKNOWN; |
| 477 | } |
| 478 | |
Andreas Herrmann | 338151e | 2006-05-22 18:25:56 +0200 | [diff] [blame] | 479 | static void zfcp_set_rport_dev_loss_tmo(struct fc_rport *rport, u32 timeout) |
| 480 | { |
| 481 | rport->dev_loss_tmo = timeout; |
| 482 | } |
| 483 | |
Christof Schmitt | a2fa0ae | 2009-03-02 13:09:08 +0100 | [diff] [blame^] | 484 | /** |
| 485 | * zfcp_scsi_dev_loss_tmo_callbk - Free any reference to rport |
| 486 | * @rport: The rport that is about to be deleted. |
| 487 | */ |
| 488 | static void zfcp_scsi_dev_loss_tmo_callbk(struct fc_rport *rport) |
| 489 | { |
| 490 | struct zfcp_port *port = rport->dd_data; |
| 491 | |
| 492 | write_lock_irq(&zfcp_data.config_lock); |
| 493 | port->rport = NULL; |
| 494 | write_unlock_irq(&zfcp_data.config_lock); |
| 495 | } |
| 496 | |
| 497 | /** |
| 498 | * zfcp_scsi_terminate_rport_io - Terminate all I/O on a rport |
| 499 | * @rport: The FC rport where to teminate I/O |
| 500 | * |
| 501 | * Abort all pending SCSI commands for a port by closing the |
| 502 | * port. Using a reopen for avoids a conflict with a shutdown |
| 503 | * overwriting a reopen. |
| 504 | */ |
| 505 | static void zfcp_scsi_terminate_rport_io(struct fc_rport *rport) |
| 506 | { |
| 507 | struct zfcp_port *port = rport->dd_data; |
| 508 | |
| 509 | zfcp_erp_port_reopen(port, 0, "sctrpi1", NULL); |
| 510 | } |
| 511 | |
| 512 | static void zfcp_scsi_rport_register(struct zfcp_port *port) |
| 513 | { |
| 514 | struct fc_rport_identifiers ids; |
| 515 | struct fc_rport *rport; |
| 516 | |
| 517 | ids.node_name = port->wwnn; |
| 518 | ids.port_name = port->wwpn; |
| 519 | ids.port_id = port->d_id; |
| 520 | ids.roles = FC_RPORT_ROLE_FCP_TARGET; |
| 521 | |
| 522 | rport = fc_remote_port_add(port->adapter->scsi_host, 0, &ids); |
| 523 | if (!rport) { |
| 524 | dev_err(&port->adapter->ccw_device->dev, |
| 525 | "Registering port 0x%016Lx failed\n", |
| 526 | (unsigned long long)port->wwpn); |
| 527 | return; |
| 528 | } |
| 529 | |
| 530 | rport->dd_data = port; |
| 531 | rport->maxframe_size = port->maxframe_size; |
| 532 | rport->supported_classes = port->supported_classes; |
| 533 | port->rport = rport; |
| 534 | } |
| 535 | |
| 536 | static void zfcp_scsi_rport_block(struct zfcp_port *port) |
| 537 | { |
| 538 | if (port->rport) |
| 539 | fc_remote_port_delete(port->rport); |
| 540 | } |
| 541 | |
| 542 | void zfcp_scsi_schedule_rport_register(struct zfcp_port *port) |
| 543 | { |
| 544 | zfcp_port_get(port); |
| 545 | port->rport_task = RPORT_ADD; |
| 546 | |
| 547 | if (!queue_work(zfcp_data.work_queue, &port->rport_work)) |
| 548 | zfcp_port_put(port); |
| 549 | } |
| 550 | |
| 551 | void zfcp_scsi_schedule_rport_block(struct zfcp_port *port) |
| 552 | { |
| 553 | zfcp_port_get(port); |
| 554 | port->rport_task = RPORT_DEL; |
| 555 | |
| 556 | if (!queue_work(zfcp_data.work_queue, &port->rport_work)) |
| 557 | zfcp_port_put(port); |
| 558 | } |
| 559 | |
| 560 | void zfcp_scsi_schedule_rports_block(struct zfcp_adapter *adapter) |
| 561 | { |
| 562 | struct zfcp_port *port; |
| 563 | |
| 564 | list_for_each_entry(port, &adapter->port_list_head, list) |
| 565 | zfcp_scsi_schedule_rport_block(port); |
| 566 | } |
| 567 | |
| 568 | void zfcp_scsi_rport_work(struct work_struct *work) |
| 569 | { |
| 570 | struct zfcp_port *port = container_of(work, struct zfcp_port, |
| 571 | rport_work); |
| 572 | |
| 573 | while (port->rport_task) { |
| 574 | if (port->rport_task == RPORT_ADD) { |
| 575 | port->rport_task = RPORT_NONE; |
| 576 | zfcp_scsi_rport_register(port); |
| 577 | } else { |
| 578 | port->rport_task = RPORT_NONE; |
| 579 | zfcp_scsi_rport_block(port); |
| 580 | } |
| 581 | } |
| 582 | |
| 583 | zfcp_port_put(port); |
| 584 | } |
| 585 | |
| 586 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 587 | struct fc_function_template zfcp_transport_functions = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 588 | .show_starget_port_id = 1, |
| 589 | .show_starget_port_name = 1, |
| 590 | .show_starget_node_name = 1, |
Andreas Herrmann | 3859f6a | 2005-08-27 11:07:54 -0700 | [diff] [blame] | 591 | .show_rport_supported_classes = 1, |
Ralph Wuerthner | 75bfc28 | 2006-05-22 18:24:33 +0200 | [diff] [blame] | 592 | .show_rport_maxframe_size = 1, |
Andreas Herrmann | 338151e | 2006-05-22 18:25:56 +0200 | [diff] [blame] | 593 | .show_rport_dev_loss_tmo = 1, |
Andreas Herrmann | 3859f6a | 2005-08-27 11:07:54 -0700 | [diff] [blame] | 594 | .show_host_node_name = 1, |
| 595 | .show_host_port_name = 1, |
Andreas Herrmann | ad757cd | 2006-01-13 02:26:11 +0100 | [diff] [blame] | 596 | .show_host_permanent_port_name = 1, |
Andreas Herrmann | 3859f6a | 2005-08-27 11:07:54 -0700 | [diff] [blame] | 597 | .show_host_supported_classes = 1, |
Andreas Herrmann | ad757cd | 2006-01-13 02:26:11 +0100 | [diff] [blame] | 598 | .show_host_supported_speeds = 1, |
Andreas Herrmann | 13e1e1f | 2005-09-19 16:56:17 +0200 | [diff] [blame] | 599 | .show_host_maxframe_size = 1, |
Andreas Herrmann | 3859f6a | 2005-08-27 11:07:54 -0700 | [diff] [blame] | 600 | .show_host_serial_number = 1, |
Andreas Herrmann | f6cd94b | 2006-01-05 09:59:34 +0100 | [diff] [blame] | 601 | .get_fc_host_stats = zfcp_get_fc_host_stats, |
| 602 | .reset_fc_host_stats = zfcp_reset_fc_host_stats, |
Andreas Herrmann | 338151e | 2006-05-22 18:25:56 +0200 | [diff] [blame] | 603 | .set_rport_dev_loss_tmo = zfcp_set_rport_dev_loss_tmo, |
Sven Schuetz | 85a8239 | 2008-06-10 18:20:59 +0200 | [diff] [blame] | 604 | .get_host_port_state = zfcp_get_host_port_state, |
Christof Schmitt | a2fa0ae | 2009-03-02 13:09:08 +0100 | [diff] [blame^] | 605 | .dev_loss_tmo_callbk = zfcp_scsi_dev_loss_tmo_callbk, |
| 606 | .terminate_rport_io = zfcp_scsi_terminate_rport_io, |
Sven Schuetz | 85a8239 | 2008-06-10 18:20:59 +0200 | [diff] [blame] | 607 | .show_host_port_state = 1, |
Andreas Herrmann | f6cd94b | 2006-01-05 09:59:34 +0100 | [diff] [blame] | 608 | /* no functions registered for following dynamic attributes but |
| 609 | directly set by LLDD */ |
Andreas Herrmann | ad757cd | 2006-01-13 02:26:11 +0100 | [diff] [blame] | 610 | .show_host_port_type = 1, |
Andreas Herrmann | 13e1e1f | 2005-09-19 16:56:17 +0200 | [diff] [blame] | 611 | .show_host_speed = 1, |
| 612 | .show_host_port_id = 1, |
Swen Schillig | 52ef11a | 2007-08-28 09:31:09 +0200 | [diff] [blame] | 613 | .disable_target_scan = 1, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 614 | }; |
| 615 | |
Martin Petermann | f76af7d7 | 2008-07-02 10:56:36 +0200 | [diff] [blame] | 616 | struct zfcp_data zfcp_data = { |
| 617 | .scsi_host_template = { |
| 618 | .name = "zfcp", |
| 619 | .module = THIS_MODULE, |
| 620 | .proc_name = "zfcp", |
| 621 | .slave_alloc = zfcp_scsi_slave_alloc, |
| 622 | .slave_configure = zfcp_scsi_slave_configure, |
| 623 | .slave_destroy = zfcp_scsi_slave_destroy, |
| 624 | .queuecommand = zfcp_scsi_queuecommand, |
| 625 | .eh_abort_handler = zfcp_scsi_eh_abort_handler, |
| 626 | .eh_device_reset_handler = zfcp_scsi_eh_device_reset_handler, |
| 627 | .eh_target_reset_handler = zfcp_scsi_eh_target_reset_handler, |
| 628 | .eh_host_reset_handler = zfcp_scsi_eh_host_reset_handler, |
| 629 | .can_queue = 4096, |
| 630 | .this_id = -1, |
| 631 | .sg_tablesize = ZFCP_MAX_SBALES_PER_REQ, |
| 632 | .cmd_per_lun = 1, |
| 633 | .use_clustering = 1, |
| 634 | .sdev_attrs = zfcp_sysfs_sdev_attrs, |
| 635 | .max_sectors = (ZFCP_MAX_SBALES_PER_REQ * 8), |
Swen Schillig | 6022192 | 2008-07-02 10:56:38 +0200 | [diff] [blame] | 636 | .shost_attrs = zfcp_sysfs_shost_attrs, |
Martin Petermann | f76af7d7 | 2008-07-02 10:56:36 +0200 | [diff] [blame] | 637 | }, |
| 638 | }; |