| /linux/drivers/ata/ |
| H A D | libata-pata-timings.c | 68 q->recover = EZ(t->recover, T); in ata_timing_quantize() 88 m->recover = max(a->recover, b->recover); in ata_timing_merge() 177 if (t->active + t->recover < t->cycle) { in ata_timing_compute() 178 t->active += (t->cycle - (t->active + t->recover)) / 2; in ata_timing_compute() 179 t->recover = t->cycle - t->active; in ata_timing_compute() 187 if (t->active + t->recover > t->cycle) in ata_timing_compute() 188 t->cycle = t->active + t->recover; in ata_timing_compute()
|
| H A D | pata_cmd640.c | 77 if (t.recover > 16) { in cmd640_set_piomode() 78 t.active += t.recover - 16; in cmd640_set_piomode() 79 t.recover = 16; in cmd640_set_piomode() 87 if (t.recover > 1) in cmd640_set_piomode() 88 t.recover--; /* 640B only */ in cmd640_set_piomode() 90 t.recover = 15; in cmd640_set_piomode() 107 pci_write_config_byte(pdev, arttim + 1, (t.active << 4) | t.recover); in cmd640_set_piomode() 116 timing->reg58[adev->devno] = (t.active << 4) | t.recover; in cmd640_set_piomode()
|
| H A D | pata_cmd64x.c | 134 t.active, t.recover, t.setup); in cmd64x_set_timing() 135 if (t.recover > 16) { in cmd64x_set_timing() 136 t.active += t.recover - 16; in cmd64x_set_timing() 137 t.recover = 16; in cmd64x_set_timing() 145 if (t.recover == 16) in cmd64x_set_timing() 146 t.recover = 0; in cmd64x_set_timing() 147 else if (t.recover > 1) in cmd64x_set_timing() 148 t.recover--; in cmd64x_set_timing() 150 t.recover = 15; in cmd64x_set_timing() 166 pci_write_config_byte(pdev, drwtim, (t.active << 4) | t.recover); in cmd64x_set_timing() [all...] |
| H A D | pata_ns87410.c | 81 at.recover = clamp_val(at.recover, 1, 12) - 1; in ns87410_set_piomode() 83 idetcr = (at.setup << 6) | (recoverbits[at.recover] << 3) | activebits[at.active]; in ns87410_set_piomode()
|
| H A D | pata_icside.c | 205 if (t.active <= 50 && t.recover <= 375 && t.cycle <= 425) { in pata_icside_set_dmamode() 208 } else if (t.active <= 125 && t.recover <= 375 && t.cycle <= 500) { in pata_icside_set_dmamode() 211 } else if (t.active <= 200 && t.recover <= 550 && t.cycle <= 750) { in pata_icside_set_dmamode() 220 t.active, t.recover, t.cycle, iomd_type); in pata_icside_set_dmamode()
|
| H A D | pata_ali.c | 185 t->recover = clamp_val(t->recover, 1, 16) & 15; in ali_program_modes() 189 pci_write_config_byte(pdev, drwt, (t->active << 4) | t->recover); in ali_program_modes()
|
| /linux/drivers/net/ethernet/mellanox/mlx5/core/en/ |
| H A D | reporter_rx.c | 134 rq->stats->recover++; in mlx5e_rx_reporter_err_icosq_cqe_recover() 138 xskrq->stats->recover++; in mlx5e_rx_reporter_err_icosq_cqe_recover() 164 rq->stats->recover++; in mlx5e_rx_reporter_err_rq_cqe_recover() 208 return err_ctx->recover(err_ctx->ctx); in mlx5e_rx_reporter_recover_from_ctx() 618 err_ctx.recover = mlx5e_rx_reporter_timeout_recover; in mlx5e_reporter_rx_timeout() 637 err_ctx.recover = mlx5e_rx_reporter_err_rq_cqe_recover; in mlx5e_reporter_rq_cqe_err() 651 err_ctx.recover = mlx5e_rx_reporter_err_icosq_cqe_recover; in mlx5e_reporter_icosq_cqe_err() 673 .recover = mlx5e_rx_reporter_recover,
|
| H A D | reporter_tx.c | 121 sq->stats->recover++; in mlx5e_tx_reporter_err_cqe_recover() 248 return err_ctx->recover(err_ctx->ctx); in mlx5e_tx_reporter_recover_from_ctx() 540 err_ctx.recover = mlx5e_tx_reporter_err_cqe_recover; in mlx5e_reporter_tx_err_cqe() 556 err_ctx.recover = mlx5e_tx_reporter_timeout_recover; in mlx5e_reporter_tx_timeout() 577 err_ctx.recover = mlx5e_tx_reporter_ptpsq_unhealthy_recover; in mlx5e_reporter_tx_ptpsq_unhealthy() 591 .recover = mlx5e_tx_reporter_recover,
|
| H A D | health.h | 40 int (*recover)(void *ctx); member
|
| /linux/tools/testing/selftests/drivers/net/netdevsim/ |
| H A D | devlink.sh | 568 devlink health recover $DL_HANDLE reporter empty 569 check_err $? "Failed recover empty reporter" 594 local recover=`echo $show | jq -r ".recover"` 595 [ "$recover" == "$expected_recover" ] 596 check_err $? "Unexpected \"recover\" value (got $recover, expected $expected_recover)" 635 devlink health recover $DL_HANDLE reporter dummy 636 check_err $? "Failed recover dummy reporter" 670 devlink health recover [all...] |
| /linux/scripts/ |
| H A D | Makefile.kasan | 52 -Zsanitizer-recover=kernel-address \ 75 -Zsanitizer-recover=kernel-hwaddress
|
| /linux/drivers/target/iscsi/ |
| H A D | iscsi_target_erl0.c | 363 goto recover; in iscsit_dataout_check_datasn() 373 recover: in iscsit_dataout_check_datasn() 410 goto recover; in iscsit_dataout_pre_datapduinorder_yes() 420 goto recover; in iscsit_dataout_pre_datapduinorder_yes() 433 recover: in iscsit_dataout_pre_datapduinorder_yes() 653 goto recover; in iscsit_dataout_post_crc_failed() 672 recover: in iscsit_dataout_post_crc_failed()
|
| /linux/Documentation/admin-guide/media/ |
| H A D | rcar-fdp1.rst | 27 recover missing lines. This method is also known as blending or Line 30 - The previous and next fields are averaged to recover lines missing from
|
| /linux/net/devlink/ |
| H A D | health.c | 116 if (WARN_ON(ops->default_graceful_period && !ops->recover)) in __devlink_health_reporter_create() 131 reporter->auto_recover = !!ops->recover; in __devlink_health_reporter_create() 295 if (reporter->ops->recover && in devlink_nl_health_reporter_fill() 299 if (reporter->ops->recover && in devlink_nl_health_reporter_fill() 303 if (reporter->ops->recover && in devlink_nl_health_reporter_fill() 466 if (!reporter->ops->recover && in devlink_nl_health_reporter_set_doit() 568 if (!reporter->ops->recover) in devlink_health_reporter_recover() 571 err = reporter->ops->recover(reporter, priv_ctx, extack); in devlink_health_reporter_recover()
|
| /linux/tools/testing/selftests/ublk/ |
| H A D | test_generic_17.sh | 21 ${UBLK_PROG} recover -n "${dev_id}" --foreground -t fault_inject --die_during_fetch 1
|
| /linux/fs/dlm/ |
| H A D | Makefile | 15 recover.o \
|
| /linux/drivers/usb/musb/ |
| H A D | musb_core.h | 184 int (*recover)(struct musb *musb); member 547 if (!musb->ops->recover) in musb_platform_recover() 550 return musb->ops->recover(musb); in musb_platform_recover()
|
| /linux/Documentation/PCI/ |
| H A D | pcieaer-howto.rst | 133 interface. The PCIe protocol can recover without any software 185 the interface. The PCIe protocol can recover without any 193 The AER driver performs a Secondary Bus Reset to recover from 216 whether it can recover without a reset, considers the device unrecoverable 218 recover without a reset, it is skipped. Should one driver request a reset,
|
| /linux/drivers/net/ethernet/marvell/octeontx2/af/ |
| H A D | rvu_devlink.h | 14 .recover = rvu_ ## _name ## _recover, \
|
| /linux/drivers/i2c/busses/ |
| H A D | i2c-bcm-iproc.c | 331 bool recover = false; in bcm_iproc_i2c_check_slave_status() local 345 recover = true; in bcm_iproc_i2c_check_slave_status() 354 recover = true; in bcm_iproc_i2c_check_slave_status() 357 if (recover) { in bcm_iproc_i2c_check_slave_status() 364 return recover; in bcm_iproc_i2c_check_slave_status()
|
| /linux/kernel/power/ |
| H A D | hibernate.c | 278 if (platform_mode && hibernation_ops && hibernation_ops->recover) in platform_recover() 279 hibernation_ops->recover(); in platform_recover() 610 if (hibernation_ops->recover) in hibernation_restore() 611 hibernation_ops->recover(); in hibernation_restore() 1103 * attempts to recover gracefully and make the kernel return to the normal mode in software_resume()
|
| H A D | suspend.c | 327 if (state != PM_SUSPEND_TO_IDLE && suspend_ops->recover) in platform_recover() 328 suspend_ops->recover(); in platform_recover()
|
| /linux/drivers/net/usb/ |
| H A D | cdc_subset.c | 93 .recover = m5632_recover,
|
| /linux/Documentation/ABI/removed/ |
| H A D | sysfs-mce | 21 configures how hard the kernel tries to recover even at some
|
| /linux/drivers/gpu/drm/nouveau/nvkm/engine/fifo/ |
| H A D | gp100.c | 81 .recover = gf100_fifo_mmu_fault_recover,
|