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