4 * Interface to Linux SCSI midlayer.
6 * Copyright IBM Corp. 2002, 2013
9 #define KMSG_COMPONENT "zfcp"
10 #define pr_fmt(fmt) KMSG_COMPONENT ": " fmt
12 #include <linux/module.h>
13 #include <linux/types.h>
14 #include <linux/slab.h>
15 #include <scsi/fc/fc_fcp.h>
16 #include <scsi/scsi_eh.h>
17 #include <linux/atomic.h>
21 #include "zfcp_reqlist.h"
23 static unsigned int default_depth
= 32;
24 module_param_named(queue_depth
, default_depth
, uint
, 0600);
25 MODULE_PARM_DESC(queue_depth
, "Default queue depth for new SCSI devices");
27 static bool enable_dif
;
28 module_param_named(dif
, enable_dif
, bool, 0400);
29 MODULE_PARM_DESC(dif
, "Enable DIF/DIX data integrity support");
31 static bool allow_lun_scan
= 1;
32 module_param(allow_lun_scan
, bool, 0600);
33 MODULE_PARM_DESC(allow_lun_scan
, "For NPIV, scan and attach all storage LUNs");
35 static void zfcp_scsi_slave_destroy(struct scsi_device
*sdev
)
37 struct zfcp_scsi_dev
*zfcp_sdev
= sdev_to_zfcp(sdev
);
39 /* if previous slave_alloc returned early, there is nothing to do */
43 zfcp_erp_lun_shutdown_wait(sdev
, "scssd_1");
44 put_device(&zfcp_sdev
->port
->dev
);
47 static int zfcp_scsi_slave_configure(struct scsi_device
*sdp
)
49 if (sdp
->tagged_supported
)
50 scsi_change_queue_depth(sdp
, default_depth
);
54 static void zfcp_scsi_command_fail(struct scsi_cmnd
*scpnt
, int result
)
56 set_host_byte(scpnt
, result
);
57 zfcp_dbf_scsi_fail_send(scpnt
);
58 scpnt
->scsi_done(scpnt
);
62 int zfcp_scsi_queuecommand(struct Scsi_Host
*shost
, struct scsi_cmnd
*scpnt
)
64 struct zfcp_scsi_dev
*zfcp_sdev
= sdev_to_zfcp(scpnt
->device
);
65 struct fc_rport
*rport
= starget_to_rport(scsi_target(scpnt
->device
));
66 int status
, scsi_result
, ret
;
68 /* reset the status for this request */
70 scpnt
->host_scribble
= NULL
;
72 scsi_result
= fc_remote_port_chkready(rport
);
73 if (unlikely(scsi_result
)) {
74 scpnt
->result
= scsi_result
;
75 zfcp_dbf_scsi_fail_send(scpnt
);
76 scpnt
->scsi_done(scpnt
);
80 status
= atomic_read(&zfcp_sdev
->status
);
81 if (unlikely(status
& ZFCP_STATUS_COMMON_ERP_FAILED
) &&
82 !(atomic_read(&zfcp_sdev
->port
->status
) &
83 ZFCP_STATUS_COMMON_ERP_FAILED
)) {
84 /* only LUN access denied, but port is good
85 * not covered by FC transport, have to fail here */
86 zfcp_scsi_command_fail(scpnt
, DID_ERROR
);
90 if (unlikely(!(status
& ZFCP_STATUS_COMMON_UNBLOCKED
))) {
91 /* This could be either
92 * open LUN pending: this is temporary, will result in
93 * open LUN or ERP_FAILED, so retry command
94 * call to rport_delete pending: mimic retry from
95 * fc_remote_port_chkready until rport is BLOCKED
97 zfcp_scsi_command_fail(scpnt
, DID_IMM_RETRY
);
101 ret
= zfcp_fsf_fcp_cmnd(scpnt
);
102 if (unlikely(ret
== -EBUSY
))
103 return SCSI_MLQUEUE_DEVICE_BUSY
;
104 else if (unlikely(ret
< 0))
105 return SCSI_MLQUEUE_HOST_BUSY
;
110 static int zfcp_scsi_slave_alloc(struct scsi_device
*sdev
)
112 struct fc_rport
*rport
= starget_to_rport(scsi_target(sdev
));
113 struct zfcp_adapter
*adapter
=
114 (struct zfcp_adapter
*) sdev
->host
->hostdata
[0];
115 struct zfcp_scsi_dev
*zfcp_sdev
= sdev_to_zfcp(sdev
);
116 struct zfcp_port
*port
;
117 struct zfcp_unit
*unit
;
118 int npiv
= adapter
->connection_features
& FSF_FEATURE_NPIV_MODE
;
120 port
= zfcp_get_port_by_wwpn(adapter
, rport
->port_name
);
124 unit
= zfcp_unit_find(port
, zfcp_scsi_dev_lun(sdev
));
126 put_device(&unit
->dev
);
128 if (!unit
&& !(allow_lun_scan
&& npiv
)) {
129 put_device(&port
->dev
);
133 zfcp_sdev
->port
= port
;
134 zfcp_sdev
->latencies
.write
.channel
.min
= 0xFFFFFFFF;
135 zfcp_sdev
->latencies
.write
.fabric
.min
= 0xFFFFFFFF;
136 zfcp_sdev
->latencies
.read
.channel
.min
= 0xFFFFFFFF;
137 zfcp_sdev
->latencies
.read
.fabric
.min
= 0xFFFFFFFF;
138 zfcp_sdev
->latencies
.cmd
.channel
.min
= 0xFFFFFFFF;
139 zfcp_sdev
->latencies
.cmd
.fabric
.min
= 0xFFFFFFFF;
140 spin_lock_init(&zfcp_sdev
->latencies
.lock
);
142 zfcp_erp_set_lun_status(sdev
, ZFCP_STATUS_COMMON_RUNNING
);
143 zfcp_erp_lun_reopen(sdev
, 0, "scsla_1");
144 zfcp_erp_wait(port
->adapter
);
149 static int zfcp_scsi_eh_abort_handler(struct scsi_cmnd
*scpnt
)
151 struct Scsi_Host
*scsi_host
= scpnt
->device
->host
;
152 struct zfcp_adapter
*adapter
=
153 (struct zfcp_adapter
*) scsi_host
->hostdata
[0];
154 struct zfcp_fsf_req
*old_req
, *abrt_req
;
156 unsigned long old_reqid
= (unsigned long) scpnt
->host_scribble
;
157 int retval
= SUCCESS
, ret
;
161 /* avoid race condition between late normal completion and abort */
162 write_lock_irqsave(&adapter
->abort_lock
, flags
);
164 old_req
= zfcp_reqlist_find(adapter
->req_list
, old_reqid
);
166 write_unlock_irqrestore(&adapter
->abort_lock
, flags
);
167 zfcp_dbf_scsi_abort("abrt_or", scpnt
, NULL
);
168 return FAILED
; /* completion could be in progress */
170 old_req
->data
= NULL
;
172 /* don't access old fsf_req after releasing the abort_lock */
173 write_unlock_irqrestore(&adapter
->abort_lock
, flags
);
176 abrt_req
= zfcp_fsf_abort_fcp_cmnd(scpnt
);
180 zfcp_erp_wait(adapter
);
181 ret
= fc_block_scsi_eh(scpnt
);
183 zfcp_dbf_scsi_abort("abrt_bl", scpnt
, NULL
);
186 if (!(atomic_read(&adapter
->status
) &
187 ZFCP_STATUS_COMMON_RUNNING
)) {
188 zfcp_dbf_scsi_abort("abrt_ru", scpnt
, NULL
);
193 zfcp_dbf_scsi_abort("abrt_ar", scpnt
, NULL
);
197 wait_for_completion(&abrt_req
->completion
);
199 if (abrt_req
->status
& ZFCP_STATUS_FSFREQ_ABORTSUCCEEDED
)
201 else if (abrt_req
->status
& ZFCP_STATUS_FSFREQ_ABORTNOTNEEDED
)
207 zfcp_dbf_scsi_abort(dbf_tag
, scpnt
, abrt_req
);
208 zfcp_fsf_req_free(abrt_req
);
212 static int zfcp_task_mgmt_function(struct scsi_cmnd
*scpnt
, u8 tm_flags
)
214 struct zfcp_scsi_dev
*zfcp_sdev
= sdev_to_zfcp(scpnt
->device
);
215 struct zfcp_adapter
*adapter
= zfcp_sdev
->port
->adapter
;
216 struct zfcp_fsf_req
*fsf_req
= NULL
;
217 int retval
= SUCCESS
, ret
;
221 fsf_req
= zfcp_fsf_fcp_task_mgmt(scpnt
, tm_flags
);
225 zfcp_erp_wait(adapter
);
226 ret
= fc_block_scsi_eh(scpnt
);
230 if (!(atomic_read(&adapter
->status
) &
231 ZFCP_STATUS_COMMON_RUNNING
)) {
232 zfcp_dbf_scsi_devreset("nres", scpnt
, tm_flags
);
239 wait_for_completion(&fsf_req
->completion
);
241 if (fsf_req
->status
& ZFCP_STATUS_FSFREQ_TMFUNCFAILED
) {
242 zfcp_dbf_scsi_devreset("fail", scpnt
, tm_flags
);
245 zfcp_dbf_scsi_devreset("okay", scpnt
, tm_flags
);
247 zfcp_fsf_req_free(fsf_req
);
251 static int zfcp_scsi_eh_device_reset_handler(struct scsi_cmnd
*scpnt
)
253 return zfcp_task_mgmt_function(scpnt
, FCP_TMF_LUN_RESET
);
256 static int zfcp_scsi_eh_target_reset_handler(struct scsi_cmnd
*scpnt
)
258 return zfcp_task_mgmt_function(scpnt
, FCP_TMF_TGT_RESET
);
261 static int zfcp_scsi_eh_host_reset_handler(struct scsi_cmnd
*scpnt
)
263 struct zfcp_scsi_dev
*zfcp_sdev
= sdev_to_zfcp(scpnt
->device
);
264 struct zfcp_adapter
*adapter
= zfcp_sdev
->port
->adapter
;
267 zfcp_erp_adapter_reopen(adapter
, 0, "schrh_1");
268 zfcp_erp_wait(adapter
);
269 ret
= fc_block_scsi_eh(scpnt
);
276 struct scsi_transport_template
*zfcp_scsi_transport_template
;
278 static struct scsi_host_template zfcp_scsi_host_template
= {
279 .module
= THIS_MODULE
,
281 .queuecommand
= zfcp_scsi_queuecommand
,
282 .eh_abort_handler
= zfcp_scsi_eh_abort_handler
,
283 .eh_device_reset_handler
= zfcp_scsi_eh_device_reset_handler
,
284 .eh_target_reset_handler
= zfcp_scsi_eh_target_reset_handler
,
285 .eh_host_reset_handler
= zfcp_scsi_eh_host_reset_handler
,
286 .slave_alloc
= zfcp_scsi_slave_alloc
,
287 .slave_configure
= zfcp_scsi_slave_configure
,
288 .slave_destroy
= zfcp_scsi_slave_destroy
,
289 .change_queue_depth
= scsi_change_queue_depth
,
293 .sg_tablesize
= (((QDIO_MAX_ELEMENTS_PER_BUFFER
- 1)
294 * ZFCP_QDIO_MAX_SBALS_PER_REQ
) - 2),
295 /* GCD, adjusted later */
296 .max_sectors
= (((QDIO_MAX_ELEMENTS_PER_BUFFER
- 1)
297 * ZFCP_QDIO_MAX_SBALS_PER_REQ
) - 2) * 8,
298 /* GCD, adjusted later */
299 .dma_boundary
= ZFCP_QDIO_SBALE_LEN
- 1,
301 .shost_attrs
= zfcp_sysfs_shost_attrs
,
302 .sdev_attrs
= zfcp_sysfs_sdev_attrs
,
303 .track_queue_depth
= 1,
307 * zfcp_scsi_adapter_register - Register SCSI and FC host with SCSI midlayer
308 * @adapter: The zfcp adapter to register with the SCSI midlayer
310 int zfcp_scsi_adapter_register(struct zfcp_adapter
*adapter
)
312 struct ccw_dev_id dev_id
;
314 if (adapter
->scsi_host
)
317 ccw_device_get_id(adapter
->ccw_device
, &dev_id
);
318 /* register adapter as SCSI host with mid layer of SCSI stack */
319 adapter
->scsi_host
= scsi_host_alloc(&zfcp_scsi_host_template
,
320 sizeof (struct zfcp_adapter
*));
321 if (!adapter
->scsi_host
) {
322 dev_err(&adapter
->ccw_device
->dev
,
323 "Registering the FCP device with the "
324 "SCSI stack failed\n");
328 /* tell the SCSI stack some characteristics of this adapter */
329 adapter
->scsi_host
->max_id
= 511;
330 adapter
->scsi_host
->max_lun
= 0xFFFFFFFF;
331 adapter
->scsi_host
->max_channel
= 0;
332 adapter
->scsi_host
->unique_id
= dev_id
.devno
;
333 adapter
->scsi_host
->max_cmd_len
= 16; /* in struct fcp_cmnd */
334 adapter
->scsi_host
->transportt
= zfcp_scsi_transport_template
;
336 adapter
->scsi_host
->hostdata
[0] = (unsigned long) adapter
;
338 if (scsi_add_host(adapter
->scsi_host
, &adapter
->ccw_device
->dev
)) {
339 scsi_host_put(adapter
->scsi_host
);
347 * zfcp_scsi_adapter_unregister - Unregister SCSI and FC host from SCSI midlayer
348 * @adapter: The zfcp adapter to unregister.
350 void zfcp_scsi_adapter_unregister(struct zfcp_adapter
*adapter
)
352 struct Scsi_Host
*shost
;
353 struct zfcp_port
*port
;
355 shost
= adapter
->scsi_host
;
359 read_lock_irq(&adapter
->port_list_lock
);
360 list_for_each_entry(port
, &adapter
->port_list
, list
)
362 read_unlock_irq(&adapter
->port_list_lock
);
364 fc_remove_host(shost
);
365 scsi_remove_host(shost
);
366 scsi_host_put(shost
);
367 adapter
->scsi_host
= NULL
;
370 static struct fc_host_statistics
*
371 zfcp_init_fc_host_stats(struct zfcp_adapter
*adapter
)
373 struct fc_host_statistics
*fc_stats
;
375 if (!adapter
->fc_stats
) {
376 fc_stats
= kmalloc(sizeof(*fc_stats
), GFP_KERNEL
);
379 adapter
->fc_stats
= fc_stats
; /* freed in adapter_release */
381 memset(adapter
->fc_stats
, 0, sizeof(*adapter
->fc_stats
));
382 return adapter
->fc_stats
;
385 static void zfcp_adjust_fc_host_stats(struct fc_host_statistics
*fc_stats
,
386 struct fsf_qtcb_bottom_port
*data
,
387 struct fsf_qtcb_bottom_port
*old
)
389 fc_stats
->seconds_since_last_reset
=
390 data
->seconds_since_last_reset
- old
->seconds_since_last_reset
;
391 fc_stats
->tx_frames
= data
->tx_frames
- old
->tx_frames
;
392 fc_stats
->tx_words
= data
->tx_words
- old
->tx_words
;
393 fc_stats
->rx_frames
= data
->rx_frames
- old
->rx_frames
;
394 fc_stats
->rx_words
= data
->rx_words
- old
->rx_words
;
395 fc_stats
->lip_count
= data
->lip
- old
->lip
;
396 fc_stats
->nos_count
= data
->nos
- old
->nos
;
397 fc_stats
->error_frames
= data
->error_frames
- old
->error_frames
;
398 fc_stats
->dumped_frames
= data
->dumped_frames
- old
->dumped_frames
;
399 fc_stats
->link_failure_count
= data
->link_failure
- old
->link_failure
;
400 fc_stats
->loss_of_sync_count
= data
->loss_of_sync
- old
->loss_of_sync
;
401 fc_stats
->loss_of_signal_count
=
402 data
->loss_of_signal
- old
->loss_of_signal
;
403 fc_stats
->prim_seq_protocol_err_count
=
404 data
->psp_error_counts
- old
->psp_error_counts
;
405 fc_stats
->invalid_tx_word_count
=
406 data
->invalid_tx_words
- old
->invalid_tx_words
;
407 fc_stats
->invalid_crc_count
= data
->invalid_crcs
- old
->invalid_crcs
;
408 fc_stats
->fcp_input_requests
=
409 data
->input_requests
- old
->input_requests
;
410 fc_stats
->fcp_output_requests
=
411 data
->output_requests
- old
->output_requests
;
412 fc_stats
->fcp_control_requests
=
413 data
->control_requests
- old
->control_requests
;
414 fc_stats
->fcp_input_megabytes
= data
->input_mb
- old
->input_mb
;
415 fc_stats
->fcp_output_megabytes
= data
->output_mb
- old
->output_mb
;
418 static void zfcp_set_fc_host_stats(struct fc_host_statistics
*fc_stats
,
419 struct fsf_qtcb_bottom_port
*data
)
421 fc_stats
->seconds_since_last_reset
= data
->seconds_since_last_reset
;
422 fc_stats
->tx_frames
= data
->tx_frames
;
423 fc_stats
->tx_words
= data
->tx_words
;
424 fc_stats
->rx_frames
= data
->rx_frames
;
425 fc_stats
->rx_words
= data
->rx_words
;
426 fc_stats
->lip_count
= data
->lip
;
427 fc_stats
->nos_count
= data
->nos
;
428 fc_stats
->error_frames
= data
->error_frames
;
429 fc_stats
->dumped_frames
= data
->dumped_frames
;
430 fc_stats
->link_failure_count
= data
->link_failure
;
431 fc_stats
->loss_of_sync_count
= data
->loss_of_sync
;
432 fc_stats
->loss_of_signal_count
= data
->loss_of_signal
;
433 fc_stats
->prim_seq_protocol_err_count
= data
->psp_error_counts
;
434 fc_stats
->invalid_tx_word_count
= data
->invalid_tx_words
;
435 fc_stats
->invalid_crc_count
= data
->invalid_crcs
;
436 fc_stats
->fcp_input_requests
= data
->input_requests
;
437 fc_stats
->fcp_output_requests
= data
->output_requests
;
438 fc_stats
->fcp_control_requests
= data
->control_requests
;
439 fc_stats
->fcp_input_megabytes
= data
->input_mb
;
440 fc_stats
->fcp_output_megabytes
= data
->output_mb
;
443 static struct fc_host_statistics
*zfcp_get_fc_host_stats(struct Scsi_Host
*host
)
445 struct zfcp_adapter
*adapter
;
446 struct fc_host_statistics
*fc_stats
;
447 struct fsf_qtcb_bottom_port
*data
;
450 adapter
= (struct zfcp_adapter
*)host
->hostdata
[0];
451 fc_stats
= zfcp_init_fc_host_stats(adapter
);
455 data
= kzalloc(sizeof(*data
), GFP_KERNEL
);
459 ret
= zfcp_fsf_exchange_port_data_sync(adapter
->qdio
, data
);
465 if (adapter
->stats_reset
&&
466 ((jiffies
/HZ
- adapter
->stats_reset
) <
467 data
->seconds_since_last_reset
))
468 zfcp_adjust_fc_host_stats(fc_stats
, data
,
469 adapter
->stats_reset_data
);
471 zfcp_set_fc_host_stats(fc_stats
, data
);
477 static void zfcp_reset_fc_host_stats(struct Scsi_Host
*shost
)
479 struct zfcp_adapter
*adapter
;
480 struct fsf_qtcb_bottom_port
*data
;
483 adapter
= (struct zfcp_adapter
*)shost
->hostdata
[0];
484 data
= kzalloc(sizeof(*data
), GFP_KERNEL
);
488 ret
= zfcp_fsf_exchange_port_data_sync(adapter
->qdio
, data
);
492 adapter
->stats_reset
= jiffies
/HZ
;
493 kfree(adapter
->stats_reset_data
);
494 adapter
->stats_reset_data
= data
; /* finally freed in
499 static void zfcp_get_host_port_state(struct Scsi_Host
*shost
)
501 struct zfcp_adapter
*adapter
=
502 (struct zfcp_adapter
*)shost
->hostdata
[0];
503 int status
= atomic_read(&adapter
->status
);
505 if ((status
& ZFCP_STATUS_COMMON_RUNNING
) &&
506 !(status
& ZFCP_STATUS_ADAPTER_LINK_UNPLUGGED
))
507 fc_host_port_state(shost
) = FC_PORTSTATE_ONLINE
;
508 else if (status
& ZFCP_STATUS_ADAPTER_LINK_UNPLUGGED
)
509 fc_host_port_state(shost
) = FC_PORTSTATE_LINKDOWN
;
510 else if (status
& ZFCP_STATUS_COMMON_ERP_FAILED
)
511 fc_host_port_state(shost
) = FC_PORTSTATE_ERROR
;
513 fc_host_port_state(shost
) = FC_PORTSTATE_UNKNOWN
;
516 static void zfcp_set_rport_dev_loss_tmo(struct fc_rport
*rport
, u32 timeout
)
518 rport
->dev_loss_tmo
= timeout
;
522 * zfcp_scsi_terminate_rport_io - Terminate all I/O on a rport
523 * @rport: The FC rport where to teminate I/O
525 * Abort all pending SCSI commands for a port by closing the
526 * port. Using a reopen avoids a conflict with a shutdown
527 * overwriting a reopen. The "forced" ensures that a disappeared port
528 * is not opened again as valid due to the cached plogi data in
531 static void zfcp_scsi_terminate_rport_io(struct fc_rport
*rport
)
533 struct zfcp_port
*port
;
534 struct Scsi_Host
*shost
= rport_to_shost(rport
);
535 struct zfcp_adapter
*adapter
=
536 (struct zfcp_adapter
*)shost
->hostdata
[0];
538 port
= zfcp_get_port_by_wwpn(adapter
, rport
->port_name
);
541 zfcp_erp_port_forced_reopen(port
, 0, "sctrpi1");
542 put_device(&port
->dev
);
546 static void zfcp_scsi_rport_register(struct zfcp_port
*port
)
548 struct fc_rport_identifiers ids
;
549 struct fc_rport
*rport
;
554 ids
.node_name
= port
->wwnn
;
555 ids
.port_name
= port
->wwpn
;
556 ids
.port_id
= port
->d_id
;
557 ids
.roles
= FC_RPORT_ROLE_FCP_TARGET
;
559 rport
= fc_remote_port_add(port
->adapter
->scsi_host
, 0, &ids
);
561 dev_err(&port
->adapter
->ccw_device
->dev
,
562 "Registering port 0x%016Lx failed\n",
563 (unsigned long long)port
->wwpn
);
567 rport
->maxframe_size
= port
->maxframe_size
;
568 rport
->supported_classes
= port
->supported_classes
;
570 port
->starget_id
= rport
->scsi_target_id
;
572 zfcp_unit_queue_scsi_scan(port
);
575 static void zfcp_scsi_rport_block(struct zfcp_port
*port
)
577 struct fc_rport
*rport
= port
->rport
;
580 fc_remote_port_delete(rport
);
585 void zfcp_scsi_schedule_rport_register(struct zfcp_port
*port
)
587 get_device(&port
->dev
);
588 port
->rport_task
= RPORT_ADD
;
590 if (!queue_work(port
->adapter
->work_queue
, &port
->rport_work
))
591 put_device(&port
->dev
);
594 void zfcp_scsi_schedule_rport_block(struct zfcp_port
*port
)
596 get_device(&port
->dev
);
597 port
->rport_task
= RPORT_DEL
;
599 if (port
->rport
&& queue_work(port
->adapter
->work_queue
,
603 put_device(&port
->dev
);
606 void zfcp_scsi_schedule_rports_block(struct zfcp_adapter
*adapter
)
609 struct zfcp_port
*port
;
611 read_lock_irqsave(&adapter
->port_list_lock
, flags
);
612 list_for_each_entry(port
, &adapter
->port_list
, list
)
613 zfcp_scsi_schedule_rport_block(port
);
614 read_unlock_irqrestore(&adapter
->port_list_lock
, flags
);
617 void zfcp_scsi_rport_work(struct work_struct
*work
)
619 struct zfcp_port
*port
= container_of(work
, struct zfcp_port
,
622 while (port
->rport_task
) {
623 if (port
->rport_task
== RPORT_ADD
) {
624 port
->rport_task
= RPORT_NONE
;
625 zfcp_scsi_rport_register(port
);
627 port
->rport_task
= RPORT_NONE
;
628 zfcp_scsi_rport_block(port
);
632 put_device(&port
->dev
);
636 * zfcp_scsi_set_prot - Configure DIF/DIX support in scsi_host
637 * @adapter: The adapter where to configure DIF/DIX for the SCSI host
639 void zfcp_scsi_set_prot(struct zfcp_adapter
*adapter
)
641 unsigned int mask
= 0;
642 unsigned int data_div
;
643 struct Scsi_Host
*shost
= adapter
->scsi_host
;
645 data_div
= atomic_read(&adapter
->status
) &
646 ZFCP_STATUS_ADAPTER_DATA_DIV_ENABLED
;
649 adapter
->adapter_features
& FSF_FEATURE_DIF_PROT_TYPE1
)
650 mask
|= SHOST_DIF_TYPE1_PROTECTION
;
652 if (enable_dif
&& data_div
&&
653 adapter
->adapter_features
& FSF_FEATURE_DIX_PROT_TCPIP
) {
654 mask
|= SHOST_DIX_TYPE1_PROTECTION
;
655 scsi_host_set_guard(shost
, SHOST_DIX_GUARD_IP
);
656 shost
->sg_prot_tablesize
= adapter
->qdio
->max_sbale_per_req
/ 2;
657 shost
->sg_tablesize
= adapter
->qdio
->max_sbale_per_req
/ 2;
658 shost
->max_sectors
= shost
->sg_tablesize
* 8;
661 scsi_host_set_prot(shost
, mask
);
665 * zfcp_scsi_dif_sense_error - Report DIF/DIX error as driver sense error
666 * @scmd: The SCSI command to report the error for
667 * @ascq: The ASCQ to put in the sense buffer
669 * See the error handling in sd_done for the sense codes used here.
670 * Set DID_SOFT_ERROR to retry the request, if possible.
672 void zfcp_scsi_dif_sense_error(struct scsi_cmnd
*scmd
, int ascq
)
674 scsi_build_sense_buffer(1, scmd
->sense_buffer
,
675 ILLEGAL_REQUEST
, 0x10, ascq
);
676 set_driver_byte(scmd
, DRIVER_SENSE
);
677 scmd
->result
|= SAM_STAT_CHECK_CONDITION
;
678 set_host_byte(scmd
, DID_SOFT_ERROR
);
681 struct fc_function_template zfcp_transport_functions
= {
682 .show_starget_port_id
= 1,
683 .show_starget_port_name
= 1,
684 .show_starget_node_name
= 1,
685 .show_rport_supported_classes
= 1,
686 .show_rport_maxframe_size
= 1,
687 .show_rport_dev_loss_tmo
= 1,
688 .show_host_node_name
= 1,
689 .show_host_port_name
= 1,
690 .show_host_permanent_port_name
= 1,
691 .show_host_supported_classes
= 1,
692 .show_host_supported_fc4s
= 1,
693 .show_host_supported_speeds
= 1,
694 .show_host_maxframe_size
= 1,
695 .show_host_serial_number
= 1,
696 .get_fc_host_stats
= zfcp_get_fc_host_stats
,
697 .reset_fc_host_stats
= zfcp_reset_fc_host_stats
,
698 .set_rport_dev_loss_tmo
= zfcp_set_rport_dev_loss_tmo
,
699 .get_host_port_state
= zfcp_get_host_port_state
,
700 .terminate_rport_io
= zfcp_scsi_terminate_rport_io
,
701 .show_host_port_state
= 1,
702 .show_host_active_fc4s
= 1,
703 .bsg_request
= zfcp_fc_exec_bsg_job
,
704 .bsg_timeout
= zfcp_fc_timeout_bsg_job
,
705 /* no functions registered for following dynamic attributes but
706 directly set by LLDD */
707 .show_host_port_type
= 1,
708 .show_host_symbolic_name
= 1,
709 .show_host_speed
= 1,
710 .show_host_port_id
= 1,
711 .dd_bsg_size
= sizeof(struct zfcp_fsf_ct_els
),