Home
last modified time | relevance | path

Searched refs:fast_io_fail_tmo (Results 1 – 11 of 11) sorted by relevance

/linux/drivers/scsi/
H A Dscsi_transport_srp.c84 int srp_tmo_valid(int reconnect_delay, int fast_io_fail_tmo, long dev_loss_tmo) in srp_tmo_valid() argument
86 if (reconnect_delay < 0 && fast_io_fail_tmo < 0 && dev_loss_tmo < 0) in srp_tmo_valid()
90 if (fast_io_fail_tmo > SCSI_DEVICE_BLOCK_MAX_TIMEOUT) in srp_tmo_valid()
92 if (fast_io_fail_tmo < 0 && in srp_tmo_valid()
97 if (fast_io_fail_tmo >= 0 && dev_loss_tmo >= 0 && in srp_tmo_valid()
98 fast_io_fail_tmo >= dev_loss_tmo) in srp_tmo_valid()
230 res = srp_tmo_valid(delay, rport->fast_io_fail_tmo, in store_reconnect_delay()
268 return srp_show_tmo(buf, rport->fast_io_fail_tmo); in show_srp_rport_fast_io_fail_tmo()
277 int fast_io_fail_tmo; in store_srp_rport_fast_io_fail_tmo() local
279 res = srp_parse_tmo(&fast_io_fail_tmo, buf); in store_srp_rport_fast_io_fail_tmo()
[all …]
H A Dscsi_transport_fc.c1165 if (rport->fast_io_fail_tmo == -1 && in fc_rport_set_dev_loss_tmo()
1298 if (rport->fast_io_fail_tmo == -1) in show_fc_rport_fast_io_fail_tmo()
1300 return snprintf(buf, 20, "%d\n", rport->fast_io_fail_tmo); in show_fc_rport_fast_io_fail_tmo()
1317 rport->fast_io_fail_tmo = -1; in store_fc_rport_fast_io_fail_tmo()
1330 rport->fast_io_fail_tmo = val; in store_fc_rport_fast_io_fail_tmo()
1334 static FC_DEVICE_ATTR(rport, fast_io_fail_tmo, S_IRUGO | S_IWUSR,
2730 SETUP_PRIVATE_RPORT_ATTRIBUTE_RW(fast_io_fail_tmo); in fc_attach_transport()
3075 rport->fast_io_fail_tmo = -1; in fc_remote_port_create()
3452 if ((rport->fast_io_fail_tmo != -1) && in fc_remote_port_delete()
3453 (rport->fast_io_fail_tmo < timeout)) in fc_remote_port_delete()
[all …]
/linux/Documentation/scsi/scsi_transport_srp/
H A Drport_state_diagram.dot14 …running -> running_rta [ label = "fast_io_fail_tmo = off and\ndev_loss_tmo = off;\nsrp_start_tl_f…
15 …running_rta -> running [ label = "fast_io_fail_tmo = off and\ndev_loss_tmo = off;\nreconnecting s…
16 …running -> blocked [ label = "fast_io_fail_tmo >= 0 or\ndev_loss_tmo >= 0;\nsrp_start_tl_fail_tim…
17 …running -> failfast [ label = "fast_io_fail_tmo = off and\ndev_loss_tmo = off;\nreconnecting fail…
18 blocked -> failfast [ label = "fast_io_fail_tmo\nexpired or\nreconnecting\nfailed" ];
/linux/include/scsi/
H A Dscsi_transport_srp.h70 int fast_io_fail_tmo; member
98 int *fast_io_fail_tmo; member
114 extern int srp_tmo_valid(int reconnect_delay, int fast_io_fail_tmo,
H A Dscsi_transport_fc.h369 u32 fast_io_fail_tmo; member
/linux/drivers/nvme/host/
H A Dsysfs.c490 if (ctrl->opts->fast_io_fail_tmo == -1) in nvme_ctrl_fast_io_fail_tmo_show()
492 return sysfs_emit(buf, "%d\n", ctrl->opts->fast_io_fail_tmo); in nvme_ctrl_fast_io_fail_tmo_show()
500 int fast_io_fail_tmo, err; in nvme_ctrl_fast_io_fail_tmo_store() local
502 err = kstrtoint(buf, 10, &fast_io_fail_tmo); in nvme_ctrl_fast_io_fail_tmo_store()
506 if (fast_io_fail_tmo < 0) in nvme_ctrl_fast_io_fail_tmo_store()
507 opts->fast_io_fail_tmo = -1; in nvme_ctrl_fast_io_fail_tmo_store()
509 opts->fast_io_fail_tmo = fast_io_fail_tmo; in nvme_ctrl_fast_io_fail_tmo_store()
512 static DEVICE_ATTR(fast_io_fail_tmo, S_IRUGO | S_IWUSR,
H A Dfabrics.h139 int fast_io_fail_tmo; member
H A Dfabrics.c731 opts->fast_io_fail_tmo = NVMF_DEF_FAIL_FAST_TMO; in nvmf_parse_options()
869 opts->fast_io_fail_tmo = token; in nvmf_parse_options()
1078 if (ctrl_loss_tmo < opts->fast_io_fail_tmo) in nvmf_parse_options()
1080 opts->fast_io_fail_tmo, ctrl_loss_tmo); in nvmf_parse_options()
/linux/Documentation/ABI/stable/
H A Dsysfs-transport-srp17 What: /sys/class/srp_remote_ports/port-<h>:<n>/fast_io_fail_tmo
54 the fast_io_fail_tmo timer has not yet fired; "fail-fast"
55 after the fast_io_fail_tmo timer has fired and before the
/linux/drivers/infiniband/ulp/srp/
H A Dib_srp.c107 module_param_cb(fast_io_fail_tmo, &srp_tmo_ops, &srp_fast_io_fail_tmo,
109 MODULE_PARM_DESC(fast_io_fail_tmo,
4122 .fast_io_fail_tmo = &srp_fast_io_fail_tmo,
/linux/drivers/scsi/ibmvscsi/
H A Dibmvfc.c5694 if (rport && rport->fast_io_fail_tmo == -1) in ibmvfc_do_work()