Home
last modified time | relevance | path

Searched full:recover (Results 1 – 25 of 870) sorted by relevance

12345678910>>...35

/Linux-v6.1/Documentation/networking/device_drivers/ethernet/marvell/
Docteontx2.rst192 …state healthy error 2872 recover 2872 last_dump_date 2020-12-10 last_dump_time 09:39:09 grace_peri…
194 …state healthy error 2872 recover 2872 last_dump_date 2020-12-11 last_dump_time 04:43:04 grace_peri…
196 …state healthy error 2871 recover 2871 last_dump_date 2020-12-10 last_dump_time 09:39:17 grace_peri…
198 …state healthy error 0 recover 0 last_dump_date 2020-12-10 last_dump_time 09:32:40 grace_period 0 a…
254 state healthy error 0 recover 0 grace_period 0 auto_recover true auto_dump true
256 state healthy error 0 recover 0 grace_period 0 auto_recover true auto_dump true
258 state healthy error 0 recover 0 grace_period 0 auto_recover true auto_dump true
260 state healthy error 0 recover 0 grace_period 0 auto_recover true auto_dump true
262 …state healthy error 1121 recover 1121 last_dump_date 2021-01-19 last_dump_time 05:42:26 grace_peri…
264 …state healthy error 949 recover 949 last_dump_date 2021-01-19 last_dump_time 05:42:43 grace_period…
[all …]
/Linux-v6.1/drivers/ata/
Dlibata-pata-timings.c68 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()
Dpata_cmd640.c77 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()
Dpata_cmd64x.c134 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()
Dpata_legacy.c389 u8 active, recover; in ht6560a_set_piomode() local
396 recover = clamp_val(t.recover, 4, 15); in ht6560a_set_piomode()
403 iowrite8(recover << 4 | active, ap->ioaddr.device_addr); in ht6560a_set_piomode()
423 u8 active, recover; in ht6560b_set_piomode() local
430 recover = clamp_val(t.recover, 2, 16) & 0x0F; in ht6560b_set_piomode()
437 iowrite8(recover << 4 | active, ap->ioaddr.device_addr); in ht6560b_set_piomode()
487 u8 active, recover, setup; in opti82c611a_set_piomode() local
514 recover = clamp_val(t.recover, 1, 16) - 1; in opti82c611a_set_piomode()
524 iowrite8(active << 4 | recover, ap->ioaddr.error_addr); in opti82c611a_set_piomode()
535 iowrite8(active << 4 | recover, ap->ioaddr.data_addr); in opti82c611a_set_piomode()
[all …]
Dpata_ns87410.c81 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()
Dlibata-pmp.c293 * 5 drives under test will timeout, get reset, and recover. in sata_pmp_configure()
446 * otherwise. Don't try hard to recover it. in sata_pmp_quirks()
729 * sata_pmp_eh_recover_pmp - recover PMP
736 * Recover PMP attached to @ap. Recovery procedure is somewhat
816 "failed to recover PMP after %d tries, giving up\n", in sata_pmp_eh_recover_pmp()
886 "failed to recover link after %d tries, disabling\n", in sata_pmp_handle_link_fail()
901 * sata_pmp_eh_recover - recover PMP-enabled port
902 * @ap: ATA port to recover
954 /* recover pmp */ in sata_pmp_eh_recover()
981 /* recover links */ in sata_pmp_eh_recover()
[all …]
/Linux-v6.1/tools/testing/selftests/drivers/net/netdevsim/
Ddevlink.sh386 devlink health recover $DL_HANDLE reporter empty
387 check_err $? "Failed recover empty reporter"
412 local recover=`echo $show | jq -r ".recover"`
413 [ "$recover" == "$expected_recover" ]
414 check_err $? "Unexpected \"recover\" value (got $recover, expected $expected_recover)"
453 devlink health recover $DL_HANDLE reporter dummy
454 check_err $? "Failed recover dummy reporter"
488 devlink health recover $DL_HANDLE reporter dummy
489 check_fail $? "Unexpected success of dummy reporter recover"
494 devlink health recover $DL_HANDLE reporter dummy
[all …]
/Linux-v6.1/drivers/gpu/drm/nouveau/nvkm/engine/fifo/
Dtu102.c121 struct gk104_fifo *fifo = container_of(w, typeof(*fifo), recover.work); in tu102_fifo_recover_work()
129 runm = fifo->recover.runm; in tu102_fifo_recover_work()
130 engm = fifo->recover.engm; in tu102_fifo_recover_work()
131 fifo->recover.engm = 0; in tu102_fifo_recover_work()
132 fifo->recover.runm = 0; in tu102_fifo_recover_work()
160 if (fifo->recover.runm & runm) in tu102_fifo_recover_runl()
162 fifo->recover.runm |= runm; in tu102_fifo_recover_runl()
169 schedule_work(&fifo->recover.work); in tu102_fifo_recover_runl()
249 if (fifo->recover.engm & engm) in tu102_fifo_recover_engn()
251 fifo->recover.engm |= engm; in tu102_fifo_recover_engn()
[all …]
/Linux-v6.1/Documentation/PCI/
Dpci-error-recovery.rst100 PCI_ERS_RESULT_CAN_RECOVER, /* Device driver can recover without slot reset */
114 The actual steps taken by a platform to recover from a PCI error
144 Driver returns this if it thinks it might be able to recover
149 Driver returns this if it can't recover without a
152 Driver returns this if it doesn't want to recover at all.
165 If the platform is unable to recover the slot, the next step
198 all drivers on a segment agree that they can try to recover and if no automatic
349 A "permanent failure" has occurred, and the platform cannot recover
375 recover (disconnect them) and try to let other cards on the same segment
376 recover. Keep in mind that in most real life cases, though, there will
/Linux-v6.1/fs/ubifs/
Drecovery.c12 * This file implements functions needed to recover from unclean un-mounts.
21 * corruptions which could be caused by power cuts, but it refuses to recover
23 * between these 2 reasons of corruptions and silently recover in the former
219 * ubifs_recover_master_node - recover the master node.
312 * We had to recover the master node, which means there was an in ubifs_recover_master_node()
323 * recover the master node from the second LEB in ubifs_recover_master_node()
329 * mount code will be confused and won't recover the master in ubifs_recover_master_node()
352 ubifs_err(c, "failed to recover master node"); in ubifs_recover_master_node()
609 * ubifs_recover_leb - scan and recover a LEB.
618 * been caused by the unclean unmount from which we are attempting to recover.
[all …]
/Linux-v6.1/fs/xfs/
Dxfs_buf_item_recover.c303 "Trying to recover dquots without QUOTA support built in!"); in xlog_recover_validate_buf_type()
532 * (ie. USR or GRP), then just toss this buffer away; don't recover it.
693 * The magic number might not match the buffer type we are going to recover
698 * so can recover the buffer.
704 * stale metadata block from an old filesystem instance that we need to recover
721 /* v4 filesystems always recover immediately */ in xlog_recover_get_buf_lsn()
727 * UUIDs, so we must recover them immediately. in xlog_recover_get_buf_lsn()
841 * recover all inode buffer types immediately. This problem will be in xlog_recover_get_buf_lsn()
853 /* unknown buffer contents, recover immediately */ in xlog_recover_get_buf_lsn()
864 * in that we only recover a specific set of data from them, namely
[all …]
Dxfs_dquot_item_recover.c57 * Recover a dquot record
136 * If the dquot has an LSN in it, recover the dquot only if it's less in xlog_recover_dquot_commit_pass2()
171 * Recover QUOTAOFF records. We simply make a note of it in the xlog
/Linux-v6.1/drivers/net/ethernet/mellanox/mlx5/core/en/
Dreporter_rx.c119 rq->stats->recover++; in mlx5e_rx_reporter_err_icosq_cqe_recover()
123 xskrq->stats->recover++; in mlx5e_rx_reporter_err_icosq_cqe_recover()
149 rq->stats->recover++; in mlx5e_rx_reporter_err_rq_cqe_recover()
175 return err_ctx->recover(err_ctx->ctx); in mlx5e_rx_reporter_recover_from_ctx()
674 err_ctx.recover = mlx5e_rx_reporter_timeout_recover; in mlx5e_reporter_rx_timeout()
693 err_ctx.recover = mlx5e_rx_reporter_err_rq_cqe_recover; in mlx5e_reporter_rq_cqe_err()
707 err_ctx.recover = mlx5e_rx_reporter_err_icosq_cqe_recover; in mlx5e_reporter_icosq_cqe_err()
726 .recover = mlx5e_rx_reporter_recover,
/Linux-v6.1/drivers/misc/lkdtm/
Dpowerpc.c39 * This triggers exception, If handled correctly we must recover in inject_vmalloc_slb_multihit()
58 * This triggers exception, If handled correctly we must recover in inject_kmalloc_slb_multihit()
109 * much same thing. In any case we must recover from the in lkdtm_PPC_SLB_MULTIHIT()
/Linux-v6.1/Documentation/networking/device_drivers/ethernet/mellanox/
Dmlx5.rst469 Recover by searching lost interrupts.
472 Recover by flushing the TX queue and reset it.
485 - Show number of tx errors indicated, number of recover flows ended successfully,
486 is autorecover enabled and graceful period from last recover::
501 Recover (if needed) by flushing the related queue and reset it.
512 - Show number of rx errors indicated, number of recover flows ended successfully,
513 is autorecover enabled and graceful period from last recover::
540 The fw fatal reporter implements dump and recover callbacks.
541 It follows fatal errors indications by CR-space dump and recover flow.
544 The recover function runs recover flow which reloads the driver and triggers fw
[all …]
/Linux-v6.1/tools/testing/selftests/powerpc/eeh/
Deeh-basic.sh12 # goes to plan we should get them back once the recover process
52 echo "$failed devices failed to recover ($dev_count tested)"
/Linux-v6.1/fs/ocfs2/
Dquota.h38 /* Description of one chunk to recover in memory */
42 unsigned long *rc_bitmap; /* Bitmap of entries to recover */
46 struct list_head r_list[OCFS2_MAXQUOTAS]; /* List of chunks to recover */
/Linux-v6.1/Documentation/networking/devlink/
Ddevlink-health.rst53 - Grace period vs. time passed since last recover
101 driver devlink |recover,
111 | | | | (recover, dump) |
/Linux-v6.1/arch/s390/pci/
Dpci_event.c89 pr_debug("%s: Driver needs reset to recover\n", pci_name(pdev)); in zpci_event_notify_error_detected()
116 pr_debug("%s: Driver needs reset to recover\n", pci_name(pdev)); in zpci_event_do_error_state_clear()
154 /* zpci_event_attempt_error_recovery - Try to recover the given PCI function
155 * @pdev: PCI function to recover currently in the error state
239 * we will inject the error event and let the guest recover the device in zpci_event_io_failure()
/Linux-v6.1/Documentation/admin-guide/media/
Drcar-fdp1.rst27 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-v6.1/lib/raid6/
Drecov.c19 /* Recover two failed data blocks. */
63 /* Recover failure of one data block plus the P block */
107 /* Recover two failed blocks. */
/Linux-v6.1/fs/f2fs/
Drecovery.c28 * -> Recover to the latest dnode(F), and drop the last inode(x)
593 /* step 1: recover xattr */ in do_recover_data()
605 /* step 2: recover inline data */ in do_recover_data()
613 /* step 3: recover data indices */ in do_recover_data()
690 /* dest is valid block, try to recover from src to dest */ in do_recover_data()
739 inode->i_ino, file_keep_isize(inode) ? "keep" : "recover", in do_recover_data()
833 f2fs_info(sbi, "recover fsync data on readonly fs"); in f2fs_recover_fsync_data()
861 /* step #2: recover data */ in f2fs_recover_fsync_data()
883 * If fsync data succeeds or there is no fsync data to recover, in f2fs_recover_fsync_data()
/Linux-v6.1/drivers/net/ethernet/sfc/falcon/
Denum.h136 * @RESET_TYPE_RECOVER_OR_ALL: Try to recover. Apply RESET_TYPE_ALL
140 * @RESET_TYPE_RECOVER_OR_DISABLE: Try to recover. Apply RESET_TYPE_DISABLE if
146 * @RESET_TYPE_RX_RECOVERY: reset to recover from RX datapath errors
/Linux-v6.1/include/linux/
Dsuspend.h172 * @recover: Recover the platform from a suspend failure.
187 void (*recover)(void); member
373 * All the methods below, except for @recover(), must be implemented.
414 * @recover: Recover the platform from a failure to suspend devices.
429 void (*recover)(void); member

12345678910>>...35