blob: 0ecec9c1b490fc34c9ce02e1535119e56e08c621 [file] [log] [blame]
Swen Schillig41fa2ad2007-09-07 09:15:31 +02001/*
Christof Schmitt553448f2008-06-10 18:20:58 +02002 * zfcp device driver
Linus Torvalds1da177e2005-04-16 15:20:36 -07003 *
Christof Schmitt553448f2008-06-10 18:20:58 +02004 * Interface to Linux SCSI midlayer.
Swen Schillig41fa2ad2007-09-07 09:15:31 +02005 *
Christof Schmitta2fa0ae2009-03-02 13:09:08 +01006 * Copyright IBM Corporation 2002, 2009
Linus Torvalds1da177e2005-04-16 15:20:36 -07007 */
8
Christof Schmittecf39d42008-12-25 13:39:53 +01009#define KMSG_COMPONENT "zfcp"
10#define pr_fmt(fmt) KMSG_COMPONENT ": " fmt
11
Christof Schmitt5f852be2007-05-08 11:16:52 +020012#include <asm/atomic.h>
Christof Schmittdcd20e22009-08-18 15:43:08 +020013#include "zfcp_ext.h"
14#include "zfcp_dbf.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070015
Christof Schmitta40a1ba2009-05-15 13:18:16 +020016static unsigned int default_depth = 32;
17module_param_named(queue_depth, default_depth, uint, 0600);
18MODULE_PARM_DESC(queue_depth, "Default queue depth for new SCSI devices");
19
Linus Torvalds1da177e2005-04-16 15:20:36 -070020/* Find start of Sense Information in FCP response unit*/
Martin Petermannf76af7d72008-07-02 10:56:36 +020021char *zfcp_get_fcp_sns_info_ptr(struct fcp_rsp_iu *fcp_rsp_iu)
Linus Torvalds1da177e2005-04-16 15:20:36 -070022{
23 char *fcp_sns_info_ptr;
24
Martin Petermannf76af7d72008-07-02 10:56:36 +020025 fcp_sns_info_ptr = (unsigned char *) &fcp_rsp_iu[1];
Linus Torvalds1da177e2005-04-16 15:20:36 -070026 if (fcp_rsp_iu->validity.bits.fcp_rsp_len_valid)
Martin Petermannf76af7d72008-07-02 10:56:36 +020027 fcp_sns_info_ptr += fcp_rsp_iu->fcp_rsp_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -070028
29 return fcp_sns_info_ptr;
30}
31
Mike Christiee881a172009-10-15 17:46:39 -070032static int zfcp_scsi_change_queue_depth(struct scsi_device *sdev, int depth,
33 int reason)
Christof Schmitta40a1ba2009-05-15 13:18:16 +020034{
Christof Schmitt42e62a72009-10-15 17:47:11 -070035 switch (reason) {
36 case SCSI_QDEPTH_DEFAULT:
37 scsi_adjust_queue_depth(sdev, scsi_get_tag_type(sdev), depth);
38 break;
39 case SCSI_QDEPTH_QFULL:
40 scsi_track_queue_full(sdev, depth);
41 break;
42 case SCSI_QDEPTH_RAMP_UP:
43 scsi_adjust_queue_depth(sdev, scsi_get_tag_type(sdev), depth);
44 break;
45 default:
Mike Christiee881a172009-10-15 17:46:39 -070046 return -EOPNOTSUPP;
Christof Schmitt42e62a72009-10-15 17:47:11 -070047 }
Christof Schmitta40a1ba2009-05-15 13:18:16 +020048 return sdev->queue_depth;
49}
50
Andreas Herrmannf6c0e7a2006-08-02 11:05:52 +020051static void zfcp_scsi_slave_destroy(struct scsi_device *sdpnt)
Linus Torvalds1da177e2005-04-16 15:20:36 -070052{
53 struct zfcp_unit *unit = (struct zfcp_unit *) sdpnt->hostdata;
Christof Schmitt26816f12008-11-04 16:35:05 +010054 unit->device = NULL;
Swen Schilligf3450c72009-11-24 16:53:59 +010055 put_device(&unit->sysfs_device);
Linus Torvalds1da177e2005-04-16 15:20:36 -070056}
57
Martin Petermannf76af7d72008-07-02 10:56:36 +020058static int zfcp_scsi_slave_configure(struct scsi_device *sdp)
Linus Torvalds1da177e2005-04-16 15:20:36 -070059{
60 if (sdp->tagged_supported)
Christof Schmitta40a1ba2009-05-15 13:18:16 +020061 scsi_adjust_queue_depth(sdp, MSG_SIMPLE_TAG, default_depth);
Linus Torvalds1da177e2005-04-16 15:20:36 -070062 else
63 scsi_adjust_queue_depth(sdp, 0, 1);
64 return 0;
65}
66
Martin Petermannf76af7d72008-07-02 10:56:36 +020067static void zfcp_scsi_command_fail(struct scsi_cmnd *scpnt, int result)
Linus Torvalds1da177e2005-04-16 15:20:36 -070068{
Swen Schillig57717102009-08-18 15:43:21 +020069 struct zfcp_adapter *adapter =
70 (struct zfcp_adapter *) scpnt->device->host->hostdata[0];
Martin Petermannfeac6a02008-07-02 10:56:35 +020071 set_host_byte(scpnt, result);
Maxim Shchetynin8a36e452005-09-13 21:50:38 +020072 if ((scpnt->device != NULL) && (scpnt->device->host != NULL))
Swen Schillig57717102009-08-18 15:43:21 +020073 zfcp_dbf_scsi_result("fail", 4, adapter->dbf, scpnt, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -070074 /* return directly */
75 scpnt->scsi_done(scpnt);
76}
77
Martin Petermannf76af7d72008-07-02 10:56:36 +020078static int zfcp_scsi_queuecommand(struct scsi_cmnd *scpnt,
79 void (*done) (struct scsi_cmnd *))
Linus Torvalds1da177e2005-04-16 15:20:36 -070080{
81 struct zfcp_unit *unit;
82 struct zfcp_adapter *adapter;
Christof Schmitta2fa0ae2009-03-02 13:09:08 +010083 int status, scsi_result, ret;
84 struct fc_rport *rport = starget_to_rport(scsi_target(scpnt->device));
Linus Torvalds1da177e2005-04-16 15:20:36 -070085
86 /* reset the status for this request */
87 scpnt->result = 0;
88 scpnt->host_scribble = NULL;
89 scpnt->scsi_done = done;
90
91 /*
92 * figure out adapter and target device
93 * (stored there by zfcp_scsi_slave_alloc)
94 */
95 adapter = (struct zfcp_adapter *) scpnt->device->host->hostdata[0];
Martin Petermannf76af7d72008-07-02 10:56:36 +020096 unit = scpnt->device->hostdata;
Linus Torvalds1da177e2005-04-16 15:20:36 -070097
Martin Petermannf76af7d72008-07-02 10:56:36 +020098 BUG_ON(!adapter || (adapter != unit->port->adapter));
99 BUG_ON(!scpnt->scsi_done);
100
101 if (unlikely(!unit)) {
102 zfcp_scsi_command_fail(scpnt, DID_NO_CONNECT);
103 return 0;
104 }
105
Christof Schmitta2fa0ae2009-03-02 13:09:08 +0100106 scsi_result = fc_remote_port_chkready(rport);
107 if (unlikely(scsi_result)) {
108 scpnt->result = scsi_result;
Swen Schillig57717102009-08-18 15:43:21 +0200109 zfcp_dbf_scsi_result("fail", 4, adapter->dbf, scpnt, NULL);
Christof Schmitta2fa0ae2009-03-02 13:09:08 +0100110 scpnt->scsi_done(scpnt);
111 return 0;
112 }
113
Martin Petermannf76af7d72008-07-02 10:56:36 +0200114 status = atomic_read(&unit->status);
Christof Schmitt88302712009-11-24 16:54:07 +0100115 if (unlikely(status & ZFCP_STATUS_COMMON_ERP_FAILED) &&
116 !(atomic_read(&unit->port->status) &
117 ZFCP_STATUS_COMMON_ERP_FAILED)) {
118 /* only unit access denied, but port is good
119 * not covered by FC transport, have to fail here */
Martin Petermannf76af7d72008-07-02 10:56:36 +0200120 zfcp_scsi_command_fail(scpnt, DID_ERROR);
Joe Perchesa419aef2009-08-18 11:18:35 -0700121 return 0;
Martin Petermannf76af7d72008-07-02 10:56:36 +0200122 }
123
Christof Schmitt88302712009-11-24 16:54:07 +0100124 if (unlikely(!(status & ZFCP_STATUS_COMMON_UNBLOCKED))) {
125 /* This could be either
126 * open unit pending: this is temporary, will result in
127 * open unit or ERP_FAILED, so retry command
128 * call to rport_delete pending: mimic retry from
129 * fc_remote_port_chkready until rport is BLOCKED
130 */
131 zfcp_scsi_command_fail(scpnt, DID_IMM_RETRY);
132 return 0;
133 }
134
Christof Schmitt63caf362009-03-02 13:09:00 +0100135 ret = zfcp_fsf_send_fcp_command_task(unit, scpnt);
Martin Petermannf76af7d72008-07-02 10:56:36 +0200136 if (unlikely(ret == -EBUSY))
Swen Schilligf7a65e92008-11-27 11:44:07 +0100137 return SCSI_MLQUEUE_DEVICE_BUSY;
Martin Petermannf76af7d72008-07-02 10:56:36 +0200138 else if (unlikely(ret < 0))
139 return SCSI_MLQUEUE_HOST_BUSY;
140
141 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142}
143
Martin Petermannf76af7d72008-07-02 10:56:36 +0200144static struct zfcp_unit *zfcp_unit_lookup(struct zfcp_adapter *adapter,
Swen Schilligecf0c772009-11-24 16:53:58 +0100145 unsigned int id, u64 lun)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146{
Swen Schilligecf0c772009-11-24 16:53:58 +0100147 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148 struct zfcp_port *port;
Swen Schilligecf0c772009-11-24 16:53:58 +0100149 struct zfcp_unit *unit = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150
Swen Schilligecf0c772009-11-24 16:53:58 +0100151 read_lock_irqsave(&adapter->port_list_lock, flags);
152 list_for_each_entry(port, &adapter->port_list, list) {
Andreas Herrmann3859f6a2005-08-27 11:07:54 -0700153 if (!port->rport || (id != port->rport->scsi_target_id))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154 continue;
Swen Schilligecf0c772009-11-24 16:53:58 +0100155 unit = zfcp_get_unit_by_lun(port, lun);
156 if (unit)
157 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158 }
Swen Schilligecf0c772009-11-24 16:53:58 +0100159 read_unlock_irqrestore(&adapter->port_list_lock, flags);
Martin Petermannf76af7d72008-07-02 10:56:36 +0200160
Swen Schilligecf0c772009-11-24 16:53:58 +0100161 return unit;
Martin Petermannf76af7d72008-07-02 10:56:36 +0200162}
163
164static int zfcp_scsi_slave_alloc(struct scsi_device *sdp)
165{
166 struct zfcp_adapter *adapter;
167 struct zfcp_unit *unit;
Swen Schilligecf0c772009-11-24 16:53:58 +0100168 u64 lun;
Martin Petermannf76af7d72008-07-02 10:56:36 +0200169
170 adapter = (struct zfcp_adapter *) sdp->host->hostdata[0];
171 if (!adapter)
172 goto out;
173
Swen Schilligecf0c772009-11-24 16:53:58 +0100174 int_to_scsilun(sdp->lun, (struct scsi_lun *)&lun);
175 unit = zfcp_unit_lookup(adapter, sdp->id, lun);
Christof Schmitt86f8a1b2009-03-02 13:08:55 +0100176 if (unit) {
Martin Petermannf76af7d72008-07-02 10:56:36 +0200177 sdp->hostdata = unit;
178 unit->device = sdp;
Swen Schilligecf0c772009-11-24 16:53:58 +0100179 return 0;
Martin Petermannf76af7d72008-07-02 10:56:36 +0200180 }
Martin Petermannf76af7d72008-07-02 10:56:36 +0200181out:
Swen Schilligecf0c772009-11-24 16:53:58 +0100182 return -ENXIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183}
184
Heiko Carstens2b67fc42007-02-05 21:16:47 +0100185static int zfcp_scsi_eh_abort_handler(struct scsi_cmnd *scpnt)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186{
Christof Schmitt63caf362009-03-02 13:09:00 +0100187 struct Scsi_Host *scsi_host = scpnt->device->host;
188 struct zfcp_adapter *adapter =
189 (struct zfcp_adapter *) scsi_host->hostdata[0];
190 struct zfcp_unit *unit = scpnt->device->hostdata;
191 struct zfcp_fsf_req *old_req, *abrt_req;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192 unsigned long flags;
Christof Schmitta11a52b2009-07-13 15:06:14 +0200193 unsigned long old_reqid = (unsigned long) scpnt->host_scribble;
Andreas Herrmann4eff4a32006-09-18 22:29:20 +0200194 int retval = SUCCESS;
Christof Schmitt63caf362009-03-02 13:09:00 +0100195 int retry = 3;
Christof Schmitta11a52b2009-07-13 15:06:14 +0200196 char *dbf_tag;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197
Andreas Herrmann059c97d2005-09-13 21:47:52 +0200198 /* avoid race condition between late normal completion and abort */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199 write_lock_irqsave(&adapter->abort_lock, flags);
200
Andreas Herrmann4eff4a32006-09-18 22:29:20 +0200201 spin_lock(&adapter->req_list_lock);
Christof Schmitta11a52b2009-07-13 15:06:14 +0200202 old_req = zfcp_reqlist_find(adapter, old_reqid);
Andreas Herrmann4eff4a32006-09-18 22:29:20 +0200203 spin_unlock(&adapter->req_list_lock);
Christof Schmitt63caf362009-03-02 13:09:00 +0100204 if (!old_req) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205 write_unlock_irqrestore(&adapter->abort_lock, flags);
Swen Schillig57717102009-08-18 15:43:21 +0200206 zfcp_dbf_scsi_abort("lte1", adapter->dbf, scpnt, NULL,
207 old_reqid);
Christof Schmittc6936e72009-04-17 15:08:11 +0200208 return FAILED; /* completion could be in progress */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209 }
Christof Schmitt63caf362009-03-02 13:09:00 +0100210 old_req->data = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211
Andreas Herrmann4eff4a32006-09-18 22:29:20 +0200212 /* don't access old fsf_req after releasing the abort_lock */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213 write_unlock_irqrestore(&adapter->abort_lock, flags);
Andreas Herrmann4eff4a32006-09-18 22:29:20 +0200214
Christof Schmitt63caf362009-03-02 13:09:00 +0100215 while (retry--) {
Christof Schmitta11a52b2009-07-13 15:06:14 +0200216 abrt_req = zfcp_fsf_abort_fcp_command(old_reqid, unit);
Christof Schmitt63caf362009-03-02 13:09:00 +0100217 if (abrt_req)
218 break;
219
220 zfcp_erp_wait(adapter);
221 if (!(atomic_read(&adapter->status) &
222 ZFCP_STATUS_COMMON_RUNNING)) {
Swen Schillig57717102009-08-18 15:43:21 +0200223 zfcp_dbf_scsi_abort("nres", adapter->dbf, scpnt, NULL,
224 old_reqid);
Christof Schmitt63caf362009-03-02 13:09:00 +0100225 return SUCCESS;
226 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227 }
Christof Schmitt63caf362009-03-02 13:09:00 +0100228 if (!abrt_req)
229 return FAILED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230
Swen Schillig058b8642009-08-18 15:43:14 +0200231 wait_for_completion(&abrt_req->completion);
Andreas Herrmann059c97d2005-09-13 21:47:52 +0200232
Christof Schmitt63caf362009-03-02 13:09:00 +0100233 if (abrt_req->status & ZFCP_STATUS_FSFREQ_ABORTSUCCEEDED)
Christof Schmitta11a52b2009-07-13 15:06:14 +0200234 dbf_tag = "okay";
Christof Schmitt63caf362009-03-02 13:09:00 +0100235 else if (abrt_req->status & ZFCP_STATUS_FSFREQ_ABORTNOTNEEDED)
Christof Schmitta11a52b2009-07-13 15:06:14 +0200236 dbf_tag = "lte2";
Christof Schmitt63caf362009-03-02 13:09:00 +0100237 else {
Christof Schmitta11a52b2009-07-13 15:06:14 +0200238 dbf_tag = "fail";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239 retval = FAILED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240 }
Swen Schillig57717102009-08-18 15:43:21 +0200241 zfcp_dbf_scsi_abort(dbf_tag, adapter->dbf, scpnt, abrt_req, old_reqid);
Christof Schmitt63caf362009-03-02 13:09:00 +0100242 zfcp_fsf_req_free(abrt_req);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243 return retval;
244}
245
Christof Schmitt63caf362009-03-02 13:09:00 +0100246static int zfcp_task_mgmt_function(struct scsi_cmnd *scpnt, u8 tm_flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247{
Christof Schmitt63caf362009-03-02 13:09:00 +0100248 struct zfcp_unit *unit = scpnt->device->hostdata;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249 struct zfcp_adapter *adapter = unit->port->adapter;
Swen Schillig564e1c82009-08-18 15:43:19 +0200250 struct zfcp_fsf_req *fsf_req = NULL;
Martin Petermannf76af7d72008-07-02 10:56:36 +0200251 int retval = SUCCESS;
Christof Schmitt63caf362009-03-02 13:09:00 +0100252 int retry = 3;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253
Christof Schmitt63caf362009-03-02 13:09:00 +0100254 while (retry--) {
255 fsf_req = zfcp_fsf_send_fcp_ctm(unit, tm_flags);
256 if (fsf_req)
257 break;
258
259 zfcp_erp_wait(adapter);
260 if (!(atomic_read(&adapter->status) &
261 ZFCP_STATUS_COMMON_RUNNING)) {
Swen Schillig57717102009-08-18 15:43:21 +0200262 zfcp_dbf_scsi_devreset("nres", tm_flags, unit, scpnt);
Christof Schmitt63caf362009-03-02 13:09:00 +0100263 return SUCCESS;
264 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265 }
Christof Schmitt63caf362009-03-02 13:09:00 +0100266 if (!fsf_req)
267 return FAILED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268
Swen Schillig058b8642009-08-18 15:43:14 +0200269 wait_for_completion(&fsf_req->completion);
Andreas Herrmann77eb1692005-09-13 21:48:33 +0200270
Maxim Shchetynin8a36e452005-09-13 21:50:38 +0200271 if (fsf_req->status & ZFCP_STATUS_FSFREQ_TMFUNCFAILED) {
Swen Schillig57717102009-08-18 15:43:21 +0200272 zfcp_dbf_scsi_devreset("fail", tm_flags, unit, scpnt);
Martin Petermannf76af7d72008-07-02 10:56:36 +0200273 retval = FAILED;
Maxim Shchetynin8a36e452005-09-13 21:50:38 +0200274 } else if (fsf_req->status & ZFCP_STATUS_FSFREQ_TMFUNCNOTSUPP) {
Swen Schillig57717102009-08-18 15:43:21 +0200275 zfcp_dbf_scsi_devreset("nsup", tm_flags, unit, scpnt);
Martin Petermannf76af7d72008-07-02 10:56:36 +0200276 retval = FAILED;
Maxim Shchetynin8a36e452005-09-13 21:50:38 +0200277 } else
Swen Schillig57717102009-08-18 15:43:21 +0200278 zfcp_dbf_scsi_devreset("okay", tm_flags, unit, scpnt);
Andreas Herrmann77eb1692005-09-13 21:48:33 +0200279
280 zfcp_fsf_req_free(fsf_req);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281 return retval;
282}
283
Martin Petermannf76af7d72008-07-02 10:56:36 +0200284static int zfcp_scsi_eh_device_reset_handler(struct scsi_cmnd *scpnt)
285{
Christof Schmitt63caf362009-03-02 13:09:00 +0100286 return zfcp_task_mgmt_function(scpnt, FCP_LOGICAL_UNIT_RESET);
Martin Petermannf76af7d72008-07-02 10:56:36 +0200287}
288
289static int zfcp_scsi_eh_target_reset_handler(struct scsi_cmnd *scpnt)
290{
Christof Schmitt63caf362009-03-02 13:09:00 +0100291 return zfcp_task_mgmt_function(scpnt, FCP_TARGET_RESET);
Martin Petermannf76af7d72008-07-02 10:56:36 +0200292}
293
Heiko Carstens2b67fc42007-02-05 21:16:47 +0100294static int zfcp_scsi_eh_host_reset_handler(struct scsi_cmnd *scpnt)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295{
Christof Schmitt63caf362009-03-02 13:09:00 +0100296 struct zfcp_unit *unit = scpnt->device->hostdata;
297 struct zfcp_adapter *adapter = unit->port->adapter;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298
Swen Schillig5ffd51a2009-03-02 13:09:04 +0100299 zfcp_erp_adapter_reopen(adapter, 0, "schrh_1", scpnt);
Andreas Herrmann81654282006-09-18 22:30:36 +0200300 zfcp_erp_wait(adapter);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301
Andreas Herrmann810f1e3e2005-09-13 21:49:52 +0200302 return SUCCESS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303}
304
Martin Petermannf76af7d72008-07-02 10:56:36 +0200305int zfcp_adapter_scsi_register(struct zfcp_adapter *adapter)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306{
Martin Petermannf76af7d72008-07-02 10:56:36 +0200307 struct ccw_dev_id dev_id;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308
Michael Loehr9f287452007-05-09 11:01:24 +0200309 if (adapter->scsi_host)
Martin Petermannf76af7d72008-07-02 10:56:36 +0200310 return 0;
Michael Loehr9f287452007-05-09 11:01:24 +0200311
Martin Petermannf76af7d72008-07-02 10:56:36 +0200312 ccw_device_get_id(adapter->ccw_device, &dev_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313 /* register adapter as SCSI host with mid layer of SCSI stack */
314 adapter->scsi_host = scsi_host_alloc(&zfcp_data.scsi_host_template,
315 sizeof (struct zfcp_adapter *));
316 if (!adapter->scsi_host) {
Christof Schmitt553448f2008-06-10 18:20:58 +0200317 dev_err(&adapter->ccw_device->dev,
Christof Schmittff3b24f2008-10-01 12:42:15 +0200318 "Registering the FCP device with the "
319 "SCSI stack failed\n");
Martin Petermannf76af7d72008-07-02 10:56:36 +0200320 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322
323 /* tell the SCSI stack some characteristics of this adapter */
324 adapter->scsi_host->max_id = 1;
325 adapter->scsi_host->max_lun = 1;
326 adapter->scsi_host->max_channel = 0;
Martin Petermannf76af7d72008-07-02 10:56:36 +0200327 adapter->scsi_host->unique_id = dev_id.devno;
328 adapter->scsi_host->max_cmd_len = 255;
Heiko Carstensdd52e0e2006-09-18 22:28:49 +0200329 adapter->scsi_host->transportt = zfcp_data.scsi_transport_template;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331 adapter->scsi_host->hostdata[0] = (unsigned long) adapter;
332
333 if (scsi_add_host(adapter->scsi_host, &adapter->ccw_device->dev)) {
334 scsi_host_put(adapter->scsi_host);
Martin Petermannf76af7d72008-07-02 10:56:36 +0200335 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336 }
Martin Petermannf76af7d72008-07-02 10:56:36 +0200337
338 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339}
340
Martin Petermannf76af7d72008-07-02 10:56:36 +0200341void zfcp_adapter_scsi_unregister(struct zfcp_adapter *adapter)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342{
343 struct Scsi_Host *shost;
Andreas Herrmann13e1e1f2005-09-19 16:56:17 +0200344 struct zfcp_port *port;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345
346 shost = adapter->scsi_host;
347 if (!shost)
348 return;
Martin Petermannf76af7d72008-07-02 10:56:36 +0200349
Swen Schilligecf0c772009-11-24 16:53:58 +0100350 read_lock_irq(&adapter->port_list_lock);
351 list_for_each_entry(port, &adapter->port_list, list)
Swen Schilligf3450c72009-11-24 16:53:59 +0100352 port->rport = NULL;
Swen Schilligecf0c772009-11-24 16:53:58 +0100353 read_unlock_irq(&adapter->port_list_lock);
Martin Petermannf76af7d72008-07-02 10:56:36 +0200354
Andreas Herrmann3859f6a2005-08-27 11:07:54 -0700355 fc_remove_host(shost);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356 scsi_remove_host(shost);
357 scsi_host_put(shost);
358 adapter->scsi_host = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359
360 return;
361}
362
Andreas Herrmannf6cd94b2006-01-05 09:59:34 +0100363static struct fc_host_statistics*
364zfcp_init_fc_host_stats(struct zfcp_adapter *adapter)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365{
Andreas Herrmannf6cd94b2006-01-05 09:59:34 +0100366 struct fc_host_statistics *fc_stats;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367
Andreas Herrmannf6cd94b2006-01-05 09:59:34 +0100368 if (!adapter->fc_stats) {
369 fc_stats = kmalloc(sizeof(*fc_stats), GFP_KERNEL);
370 if (!fc_stats)
371 return NULL;
Swen Schilligf3450c72009-11-24 16:53:59 +0100372 adapter->fc_stats = fc_stats; /* freed in adapter_release */
Andreas Herrmannf6cd94b2006-01-05 09:59:34 +0100373 }
374 memset(adapter->fc_stats, 0, sizeof(*adapter->fc_stats));
375 return adapter->fc_stats;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376}
377
Martin Petermannf76af7d72008-07-02 10:56:36 +0200378static void zfcp_adjust_fc_host_stats(struct fc_host_statistics *fc_stats,
379 struct fsf_qtcb_bottom_port *data,
380 struct fsf_qtcb_bottom_port *old)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381{
Martin Petermannf76af7d72008-07-02 10:56:36 +0200382 fc_stats->seconds_since_last_reset =
383 data->seconds_since_last_reset - old->seconds_since_last_reset;
Andreas Herrmannf6cd94b2006-01-05 09:59:34 +0100384 fc_stats->tx_frames = data->tx_frames - old->tx_frames;
385 fc_stats->tx_words = data->tx_words - old->tx_words;
386 fc_stats->rx_frames = data->rx_frames - old->rx_frames;
387 fc_stats->rx_words = data->rx_words - old->rx_words;
388 fc_stats->lip_count = data->lip - old->lip;
389 fc_stats->nos_count = data->nos - old->nos;
390 fc_stats->error_frames = data->error_frames - old->error_frames;
391 fc_stats->dumped_frames = data->dumped_frames - old->dumped_frames;
392 fc_stats->link_failure_count = data->link_failure - old->link_failure;
393 fc_stats->loss_of_sync_count = data->loss_of_sync - old->loss_of_sync;
Martin Petermannf76af7d72008-07-02 10:56:36 +0200394 fc_stats->loss_of_signal_count =
395 data->loss_of_signal - old->loss_of_signal;
396 fc_stats->prim_seq_protocol_err_count =
397 data->psp_error_counts - old->psp_error_counts;
398 fc_stats->invalid_tx_word_count =
399 data->invalid_tx_words - old->invalid_tx_words;
Andreas Herrmannf6cd94b2006-01-05 09:59:34 +0100400 fc_stats->invalid_crc_count = data->invalid_crcs - old->invalid_crcs;
Martin Petermannf76af7d72008-07-02 10:56:36 +0200401 fc_stats->fcp_input_requests =
402 data->input_requests - old->input_requests;
403 fc_stats->fcp_output_requests =
404 data->output_requests - old->output_requests;
405 fc_stats->fcp_control_requests =
406 data->control_requests - old->control_requests;
Andreas Herrmannf6cd94b2006-01-05 09:59:34 +0100407 fc_stats->fcp_input_megabytes = data->input_mb - old->input_mb;
408 fc_stats->fcp_output_megabytes = data->output_mb - old->output_mb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409}
410
Martin Petermannf76af7d72008-07-02 10:56:36 +0200411static void zfcp_set_fc_host_stats(struct fc_host_statistics *fc_stats,
412 struct fsf_qtcb_bottom_port *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413{
Andreas Herrmannf6cd94b2006-01-05 09:59:34 +0100414 fc_stats->seconds_since_last_reset = data->seconds_since_last_reset;
415 fc_stats->tx_frames = data->tx_frames;
416 fc_stats->tx_words = data->tx_words;
417 fc_stats->rx_frames = data->rx_frames;
418 fc_stats->rx_words = data->rx_words;
419 fc_stats->lip_count = data->lip;
420 fc_stats->nos_count = data->nos;
421 fc_stats->error_frames = data->error_frames;
422 fc_stats->dumped_frames = data->dumped_frames;
423 fc_stats->link_failure_count = data->link_failure;
424 fc_stats->loss_of_sync_count = data->loss_of_sync;
425 fc_stats->loss_of_signal_count = data->loss_of_signal;
426 fc_stats->prim_seq_protocol_err_count = data->psp_error_counts;
427 fc_stats->invalid_tx_word_count = data->invalid_tx_words;
428 fc_stats->invalid_crc_count = data->invalid_crcs;
429 fc_stats->fcp_input_requests = data->input_requests;
430 fc_stats->fcp_output_requests = data->output_requests;
431 fc_stats->fcp_control_requests = data->control_requests;
432 fc_stats->fcp_input_megabytes = data->input_mb;
433 fc_stats->fcp_output_megabytes = data->output_mb;
434}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435
Martin Petermannf76af7d72008-07-02 10:56:36 +0200436static struct fc_host_statistics *zfcp_get_fc_host_stats(struct Scsi_Host *host)
Andreas Herrmannf6cd94b2006-01-05 09:59:34 +0100437{
438 struct zfcp_adapter *adapter;
439 struct fc_host_statistics *fc_stats;
440 struct fsf_qtcb_bottom_port *data;
441 int ret;
442
Martin Petermannf76af7d72008-07-02 10:56:36 +0200443 adapter = (struct zfcp_adapter *)host->hostdata[0];
Andreas Herrmannf6cd94b2006-01-05 09:59:34 +0100444 fc_stats = zfcp_init_fc_host_stats(adapter);
445 if (!fc_stats)
446 return NULL;
447
Andreas Herrmannec4081c2006-05-22 18:17:30 +0200448 data = kzalloc(sizeof(*data), GFP_KERNEL);
Andreas Herrmannf6cd94b2006-01-05 09:59:34 +0100449 if (!data)
450 return NULL;
Andreas Herrmannf6cd94b2006-01-05 09:59:34 +0100451
Swen Schillig564e1c82009-08-18 15:43:19 +0200452 ret = zfcp_fsf_exchange_port_data_sync(adapter->qdio, data);
Andreas Herrmannf6cd94b2006-01-05 09:59:34 +0100453 if (ret) {
454 kfree(data);
Martin Petermannf76af7d72008-07-02 10:56:36 +0200455 return NULL;
Andreas Herrmannf6cd94b2006-01-05 09:59:34 +0100456 }
457
458 if (adapter->stats_reset &&
459 ((jiffies/HZ - adapter->stats_reset) <
Martin Petermannf76af7d72008-07-02 10:56:36 +0200460 data->seconds_since_last_reset))
Andreas Herrmannf6cd94b2006-01-05 09:59:34 +0100461 zfcp_adjust_fc_host_stats(fc_stats, data,
462 adapter->stats_reset_data);
Martin Petermannf76af7d72008-07-02 10:56:36 +0200463 else
Andreas Herrmannf6cd94b2006-01-05 09:59:34 +0100464 zfcp_set_fc_host_stats(fc_stats, data);
465
466 kfree(data);
467 return fc_stats;
468}
469
Martin Petermannf76af7d72008-07-02 10:56:36 +0200470static void zfcp_reset_fc_host_stats(struct Scsi_Host *shost)
Andreas Herrmannf6cd94b2006-01-05 09:59:34 +0100471{
472 struct zfcp_adapter *adapter;
Martin Petermannf76af7d72008-07-02 10:56:36 +0200473 struct fsf_qtcb_bottom_port *data;
Andreas Herrmannf6cd94b2006-01-05 09:59:34 +0100474 int ret;
475
476 adapter = (struct zfcp_adapter *)shost->hostdata[0];
Andreas Herrmannec4081c2006-05-22 18:17:30 +0200477 data = kzalloc(sizeof(*data), GFP_KERNEL);
Andreas Herrmannf6cd94b2006-01-05 09:59:34 +0100478 if (!data)
479 return;
Andreas Herrmannf6cd94b2006-01-05 09:59:34 +0100480
Swen Schillig564e1c82009-08-18 15:43:19 +0200481 ret = zfcp_fsf_exchange_port_data_sync(adapter->qdio, data);
Martin Petermannf76af7d72008-07-02 10:56:36 +0200482 if (ret)
Heiko Carstens83f6d6d2007-08-08 10:47:02 +0200483 kfree(data);
Martin Petermannf76af7d72008-07-02 10:56:36 +0200484 else {
Andreas Herrmannf6cd94b2006-01-05 09:59:34 +0100485 adapter->stats_reset = jiffies/HZ;
Martin Petermannf76af7d72008-07-02 10:56:36 +0200486 kfree(adapter->stats_reset_data);
Andreas Herrmannf6cd94b2006-01-05 09:59:34 +0100487 adapter->stats_reset_data = data; /* finally freed in
Swen Schilligf3450c72009-11-24 16:53:59 +0100488 adapter_release */
Andreas Herrmannf6cd94b2006-01-05 09:59:34 +0100489 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490}
491
Sven Schuetz85a82392008-06-10 18:20:59 +0200492static void zfcp_get_host_port_state(struct Scsi_Host *shost)
493{
494 struct zfcp_adapter *adapter =
495 (struct zfcp_adapter *)shost->hostdata[0];
496 int status = atomic_read(&adapter->status);
497
498 if ((status & ZFCP_STATUS_COMMON_RUNNING) &&
499 !(status & ZFCP_STATUS_ADAPTER_LINK_UNPLUGGED))
500 fc_host_port_state(shost) = FC_PORTSTATE_ONLINE;
501 else if (status & ZFCP_STATUS_ADAPTER_LINK_UNPLUGGED)
502 fc_host_port_state(shost) = FC_PORTSTATE_LINKDOWN;
503 else if (status & ZFCP_STATUS_COMMON_ERP_FAILED)
504 fc_host_port_state(shost) = FC_PORTSTATE_ERROR;
505 else
506 fc_host_port_state(shost) = FC_PORTSTATE_UNKNOWN;
507}
508
Andreas Herrmann338151e2006-05-22 18:25:56 +0200509static void zfcp_set_rport_dev_loss_tmo(struct fc_rport *rport, u32 timeout)
510{
511 rport->dev_loss_tmo = timeout;
512}
513
Christof Schmitta2fa0ae2009-03-02 13:09:08 +0100514/**
Christof Schmitta2fa0ae2009-03-02 13:09:08 +0100515 * zfcp_scsi_terminate_rport_io - Terminate all I/O on a rport
516 * @rport: The FC rport where to teminate I/O
517 *
518 * Abort all pending SCSI commands for a port by closing the
Swen Schilligecf0c772009-11-24 16:53:58 +0100519 * port. Using a reopen avoiding a conflict with a shutdown
Christof Schmitta2fa0ae2009-03-02 13:09:08 +0100520 * overwriting a reopen.
521 */
522static void zfcp_scsi_terminate_rport_io(struct fc_rport *rport)
523{
Christof Schmitt70932932009-04-17 15:08:15 +0200524 struct zfcp_port *port;
Swen Schilligea945ff2009-08-18 15:43:24 +0200525 struct Scsi_Host *shost = rport_to_shost(rport);
526 struct zfcp_adapter *adapter =
527 (struct zfcp_adapter *)shost->hostdata[0];
Christof Schmitta2fa0ae2009-03-02 13:09:08 +0100528
Swen Schilligea945ff2009-08-18 15:43:24 +0200529 port = zfcp_get_port_by_wwpn(adapter, rport->port_name);
Christof Schmitt70932932009-04-17 15:08:15 +0200530
531 if (port) {
532 zfcp_erp_port_reopen(port, 0, "sctrpi1", NULL);
Swen Schilligf3450c72009-11-24 16:53:59 +0100533 put_device(&port->sysfs_device);
Christof Schmitt70932932009-04-17 15:08:15 +0200534 }
Christof Schmitta2fa0ae2009-03-02 13:09:08 +0100535}
536
537static void zfcp_scsi_rport_register(struct zfcp_port *port)
538{
539 struct fc_rport_identifiers ids;
540 struct fc_rport *rport;
541
Christof Schmitt379d6bf2009-07-13 15:06:11 +0200542 if (port->rport)
543 return;
544
Christof Schmitta2fa0ae2009-03-02 13:09:08 +0100545 ids.node_name = port->wwnn;
546 ids.port_name = port->wwpn;
547 ids.port_id = port->d_id;
548 ids.roles = FC_RPORT_ROLE_FCP_TARGET;
549
550 rport = fc_remote_port_add(port->adapter->scsi_host, 0, &ids);
551 if (!rport) {
552 dev_err(&port->adapter->ccw_device->dev,
553 "Registering port 0x%016Lx failed\n",
554 (unsigned long long)port->wwpn);
555 return;
556 }
557
Christof Schmitta2fa0ae2009-03-02 13:09:08 +0100558 rport->maxframe_size = port->maxframe_size;
559 rport->supported_classes = port->supported_classes;
560 port->rport = rport;
561}
562
563static void zfcp_scsi_rport_block(struct zfcp_port *port)
564{
Christof Schmitt70932932009-04-17 15:08:15 +0200565 struct fc_rport *rport = port->rport;
566
Christof Schmitt379d6bf2009-07-13 15:06:11 +0200567 if (rport) {
Christof Schmitt70932932009-04-17 15:08:15 +0200568 fc_remote_port_delete(rport);
Christof Schmitt379d6bf2009-07-13 15:06:11 +0200569 port->rport = NULL;
570 }
Christof Schmitta2fa0ae2009-03-02 13:09:08 +0100571}
572
573void zfcp_scsi_schedule_rport_register(struct zfcp_port *port)
574{
Swen Schilligf3450c72009-11-24 16:53:59 +0100575 get_device(&port->sysfs_device);
Christof Schmitta2fa0ae2009-03-02 13:09:08 +0100576 port->rport_task = RPORT_ADD;
577
Swen Schillig45446832009-08-18 15:43:17 +0200578 if (!queue_work(port->adapter->work_queue, &port->rport_work))
Swen Schilligf3450c72009-11-24 16:53:59 +0100579 put_device(&port->sysfs_device);
Christof Schmitta2fa0ae2009-03-02 13:09:08 +0100580}
581
582void zfcp_scsi_schedule_rport_block(struct zfcp_port *port)
583{
Swen Schilligf3450c72009-11-24 16:53:59 +0100584 get_device(&port->sysfs_device);
Christof Schmitta2fa0ae2009-03-02 13:09:08 +0100585 port->rport_task = RPORT_DEL;
586
Swen Schillig45446832009-08-18 15:43:17 +0200587 if (port->rport && queue_work(port->adapter->work_queue,
588 &port->rport_work))
Swen Schilliga67417a2009-08-18 15:43:06 +0200589 return;
590
Swen Schilligf3450c72009-11-24 16:53:59 +0100591 put_device(&port->sysfs_device);
Christof Schmitta2fa0ae2009-03-02 13:09:08 +0100592}
593
594void zfcp_scsi_schedule_rports_block(struct zfcp_adapter *adapter)
595{
Swen Schilligecf0c772009-11-24 16:53:58 +0100596 unsigned long flags;
Christof Schmitta2fa0ae2009-03-02 13:09:08 +0100597 struct zfcp_port *port;
598
Swen Schilligecf0c772009-11-24 16:53:58 +0100599 read_lock_irqsave(&adapter->port_list_lock, flags);
600 list_for_each_entry(port, &adapter->port_list, list)
Christof Schmitta2fa0ae2009-03-02 13:09:08 +0100601 zfcp_scsi_schedule_rport_block(port);
Swen Schilligecf0c772009-11-24 16:53:58 +0100602 read_unlock_irqrestore(&adapter->port_list_lock, flags);
Christof Schmitta2fa0ae2009-03-02 13:09:08 +0100603}
604
605void zfcp_scsi_rport_work(struct work_struct *work)
606{
607 struct zfcp_port *port = container_of(work, struct zfcp_port,
608 rport_work);
609
610 while (port->rport_task) {
611 if (port->rport_task == RPORT_ADD) {
612 port->rport_task = RPORT_NONE;
613 zfcp_scsi_rport_register(port);
614 } else {
615 port->rport_task = RPORT_NONE;
616 zfcp_scsi_rport_block(port);
617 }
618 }
619
Swen Schilligf3450c72009-11-24 16:53:59 +0100620 put_device(&port->sysfs_device);
Christof Schmitta2fa0ae2009-03-02 13:09:08 +0100621}
622
623
Swen Schillig92d51932009-04-17 15:08:04 +0200624void zfcp_scsi_scan(struct work_struct *work)
625{
626 struct zfcp_unit *unit = container_of(work, struct zfcp_unit,
627 scsi_work);
628 struct fc_rport *rport;
629
630 flush_work(&unit->port->rport_work);
631 rport = unit->port->rport;
632
633 if (rport && rport->port_state == FC_PORTSTATE_ONLINE)
634 scsi_scan_target(&rport->dev, 0, rport->scsi_target_id,
635 scsilun_to_int((struct scsi_lun *)
636 &unit->fcp_lun), 0);
637
Swen Schilligf3450c72009-11-24 16:53:59 +0100638 put_device(&unit->sysfs_device);
Swen Schillig92d51932009-04-17 15:08:04 +0200639}
640
Sven Schuetz9d544f22009-04-06 18:31:47 +0200641static int zfcp_execute_fc_job(struct fc_bsg_job *job)
642{
643 switch (job->request->msgcode) {
644 case FC_BSG_RPT_ELS:
645 case FC_BSG_HST_ELS_NOLOGIN:
646 return zfcp_fc_execute_els_fc_job(job);
647 case FC_BSG_RPT_CT:
648 case FC_BSG_HST_CT:
649 return zfcp_fc_execute_ct_fc_job(job);
650 default:
651 return -EINVAL;
652 }
653}
654
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655struct fc_function_template zfcp_transport_functions = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656 .show_starget_port_id = 1,
657 .show_starget_port_name = 1,
658 .show_starget_node_name = 1,
Andreas Herrmann3859f6a2005-08-27 11:07:54 -0700659 .show_rport_supported_classes = 1,
Ralph Wuerthner75bfc282006-05-22 18:24:33 +0200660 .show_rport_maxframe_size = 1,
Andreas Herrmann338151e2006-05-22 18:25:56 +0200661 .show_rport_dev_loss_tmo = 1,
Andreas Herrmann3859f6a2005-08-27 11:07:54 -0700662 .show_host_node_name = 1,
663 .show_host_port_name = 1,
Andreas Herrmannad757cd2006-01-13 02:26:11 +0100664 .show_host_permanent_port_name = 1,
Andreas Herrmann3859f6a2005-08-27 11:07:54 -0700665 .show_host_supported_classes = 1,
Andreas Herrmannad757cd2006-01-13 02:26:11 +0100666 .show_host_supported_speeds = 1,
Andreas Herrmann13e1e1f2005-09-19 16:56:17 +0200667 .show_host_maxframe_size = 1,
Andreas Herrmann3859f6a2005-08-27 11:07:54 -0700668 .show_host_serial_number = 1,
Andreas Herrmannf6cd94b2006-01-05 09:59:34 +0100669 .get_fc_host_stats = zfcp_get_fc_host_stats,
670 .reset_fc_host_stats = zfcp_reset_fc_host_stats,
Andreas Herrmann338151e2006-05-22 18:25:56 +0200671 .set_rport_dev_loss_tmo = zfcp_set_rport_dev_loss_tmo,
Sven Schuetz85a82392008-06-10 18:20:59 +0200672 .get_host_port_state = zfcp_get_host_port_state,
Christof Schmitta2fa0ae2009-03-02 13:09:08 +0100673 .terminate_rport_io = zfcp_scsi_terminate_rport_io,
Sven Schuetz85a82392008-06-10 18:20:59 +0200674 .show_host_port_state = 1,
Sven Schuetz9d544f22009-04-06 18:31:47 +0200675 .bsg_request = zfcp_execute_fc_job,
Andreas Herrmannf6cd94b2006-01-05 09:59:34 +0100676 /* no functions registered for following dynamic attributes but
677 directly set by LLDD */
Andreas Herrmannad757cd2006-01-13 02:26:11 +0100678 .show_host_port_type = 1,
Andreas Herrmann13e1e1f2005-09-19 16:56:17 +0200679 .show_host_speed = 1,
680 .show_host_port_id = 1,
Swen Schillig52ef11a2007-08-28 09:31:09 +0200681 .disable_target_scan = 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682};
683
Martin Petermannf76af7d72008-07-02 10:56:36 +0200684struct zfcp_data zfcp_data = {
685 .scsi_host_template = {
686 .name = "zfcp",
687 .module = THIS_MODULE,
688 .proc_name = "zfcp",
Christof Schmitta40a1ba2009-05-15 13:18:16 +0200689 .change_queue_depth = zfcp_scsi_change_queue_depth,
Martin Petermannf76af7d72008-07-02 10:56:36 +0200690 .slave_alloc = zfcp_scsi_slave_alloc,
691 .slave_configure = zfcp_scsi_slave_configure,
692 .slave_destroy = zfcp_scsi_slave_destroy,
693 .queuecommand = zfcp_scsi_queuecommand,
694 .eh_abort_handler = zfcp_scsi_eh_abort_handler,
695 .eh_device_reset_handler = zfcp_scsi_eh_device_reset_handler,
696 .eh_target_reset_handler = zfcp_scsi_eh_target_reset_handler,
697 .eh_host_reset_handler = zfcp_scsi_eh_host_reset_handler,
698 .can_queue = 4096,
699 .this_id = -1,
700 .sg_tablesize = ZFCP_MAX_SBALES_PER_REQ,
701 .cmd_per_lun = 1,
702 .use_clustering = 1,
703 .sdev_attrs = zfcp_sysfs_sdev_attrs,
704 .max_sectors = (ZFCP_MAX_SBALES_PER_REQ * 8),
Swen Schillig60221922008-07-02 10:56:38 +0200705 .shost_attrs = zfcp_sysfs_shost_attrs,
Martin Petermannf76af7d72008-07-02 10:56:36 +0200706 },
707};