Home
last modified time | relevance | path

Searched refs:replay (Results 1 – 25 of 54) sorted by relevance

123

/linux/Documentation/admin-guide/device-mapper/
H A Dlog-writes.rst10 that is in the WRITE requests is copied into the log to make the replay happen
18 next REQ_PREFLUSH request. This is to make it easier for userspace to replay
48 If we logged DISCARD when it completed, the replay would look like this:
52 which isn't quite what happened and wouldn't be caught during the log replay.
81 write, but first you need to replay up to the mkfs to make sure
89 This would allow you to replay the log up to the mkfs mark and
90 then replay from that point on doing the fsck check in the
98 There is a userspace tool that will replay the log for you in various ways.
119 replay-log --log /dev/sdc --replay /dev/sdb --end-mark fsync
138 replay-log --log /dev/sdc --replay /dev/sdb --end-mark mkfs
[all …]
/linux/net/xfrm/
H A Dxfrm_replay.c68 ((x->replay.seq - x->preplay.seq < x->replay_maxdiff) && in xfrm_replay_notify()
69 (x->replay.oseq - x->preplay.oseq < x->replay_maxdiff))) { in xfrm_replay_notify()
79 if (memcmp(&x->replay, &x->preplay, in xfrm_replay_notify()
88 memcpy(&x->preplay, &x->replay, sizeof(struct xfrm_replay_state)); in xfrm_replay_notify()
104 XFRM_SKB_CB(skb)->seq.output.low = ++x->replay.oseq; in __xfrm_replay_overflow()
106 if (unlikely(x->replay.oseq == 0) && in __xfrm_replay_overflow()
108 x->replay.oseq--; in __xfrm_replay_overflow()
133 if (likely(seq > x->replay.seq)) in xfrm_replay_check_legacy()
136 diff = x->replay.seq - seq; in xfrm_replay_check_legacy()
142 if (x->replay.bitmap & (1U << diff)) { in xfrm_replay_check_legacy()
[all …]
H A Dxfrm_user.c501 struct xfrm_replay_state *replay; in verify_newsa_info() local
503 replay = nla_data(attrs[XFRMA_REPLAY_VAL]); in verify_newsa_info()
505 if (replay->seq || replay->bitmap) { in verify_newsa_info()
812 sizeof(x->replay.bitmap) * 8); in copy_from_user_state()
847 struct xfrm_replay_state *replay; in xfrm_update_ae_params() local
848 replay = nla_data(rp); in xfrm_update_ae_params()
849 memcpy(&x->replay, replay, sizeof(*replay)); in xfrm_update_ae_params()
850 memcpy(&x->preplay, replay, sizeof(*replay)); in xfrm_update_ae_params()
1135 put_unaligned(x->stats.replay, &p->stats.replay); in copy_to_user_state()
1396 ret = nla_put(skb, XFRMA_REPLAY_VAL, sizeof(x->replay), in copy_to_user_state_extra()
[all …]
/linux/tools/testing/selftests/net/
H A Dvrf-xfrm-tests.sh261 replay-window 4 replay-oseq 0x4 \
268 replay-window 4 replay-oseq 0x4 \
276 replay-window 4 replay-oseq 0x4 \
283 replay-window 4 replay-oseq 0x4 \
291 replay-window 4 replay-oseq 0x4 \
298 replay-window 4 replay-oseq 0x4 \
306 replay-window 4 replay-oseq 0x4 \
313 replay-window 4 replay-oseq 0x4 \
/linux/drivers/input/
H A Dff-memless.c88 if (state->effect->replay.length) { in calculate_next_time()
169 } else if (envelope->fade_length && effect->replay.length && in apply_envelope()
365 } else if (effect->replay.length && in ml_get_combo_effect()
374 msecs_to_jiffies(effect->replay.delay); in ml_get_combo_effect()
376 msecs_to_jiffies(effect->replay.length); in ml_get_combo_effect()
442 msecs_to_jiffies(state->effect->replay.delay); in ml_ff_playback()
444 msecs_to_jiffies(state->effect->replay.length); in ml_ff_playback()
472 msecs_to_jiffies(state->effect->replay.delay); in ml_ff_upload()
474 msecs_to_jiffies(state->effect->replay.length); in ml_ff_upload()
/linux/drivers/input/joystick/iforce/
H A Diforce-ff.c277 || old->replay.length != new->replay.length in need_core()
278 || old->replay.delay != new->replay.delay) in need_core()
382 effect->replay.length, in iforce_upload_periodic()
383 effect->replay.delay, in iforce_upload_periodic()
442 effect->replay.length, in iforce_upload_constant()
443 effect->replay.delay, in iforce_upload_constant()
508 effect->replay.length, effect->replay.delay, in iforce_upload_condition()
/linux/drivers/gpu/drm/amd/display/dc/dce/
H A Ddmub_replay.c430 static void dmub_replay_construct(struct dmub_replay *replay, struct dc_context *ctx) in dmub_replay_construct() argument
432 replay->ctx = ctx; in dmub_replay_construct()
433 replay->funcs = &replay_funcs; in dmub_replay_construct()
441 struct dmub_replay *replay = kzalloc_obj(struct dmub_replay); in dmub_replay_create() local
443 if (replay == NULL) { in dmub_replay_create()
448 dmub_replay_construct(replay, ctx); in dmub_replay_create()
450 return replay; in dmub_replay_create()
/linux/drivers/gpu/drm/amd/display/dc/link/protocols/
H A Dlink_dp_panel_replay.c83 struct dmub_replay *replay; in dp_setup_panel_replay() local
115 replay = dc->res_pool->replay; in dp_setup_panel_replay()
117 if (!replay) in dp_setup_panel_replay()
/linux/Documentation/filesystems/ext4/
H A Djournal.rst76 transaction will be discarded during replay.
521 A revocation block is used to prevent replay of a block in an earlier
525 journal replay after the file block was written to disk will cause
707 system. This is what guarantees idempotence of fast commit replay.
716 If we store this sequence of operations as is then the replay is not idempotent.
717 Let's say while in replay, we crash after (2). During the second replay,
725 inode 11 before the replay)
733 replay, we will remove file A (inode 11). But we will create it back and make
736 replay of last inode 11 tag. Thus, by converting a non-idempotent procedure
738 the replay.
/linux/sound/firewire/
H A Damdtp-stream.c567 if (!d->replay.enable || !s->ctx_data.rx.replay_target) { in pool_seq_descs()
570 if (!d->replay.on_the_fly) { in pool_seq_descs()
1302 if (d->replay.enable) in process_rx_packets_intermediately()
1345 if (d->replay.enable) in process_tx_packets()
1588 if (d->replay.enable && !d->replay.on_the_fly) { in irq_target_callback_skip()
1732 if (s->domain->replay.enable) { in amdtp_stream_start()
1841 if (s->domain->replay.enable) in amdtp_stream_start()
1933 if (s->domain->replay.enable) in amdtp_stream_stop()
2078 d->replay.enable = replay_seq; in amdtp_domain_start()
2079 d->replay.on_the_fly = replay_on_the_fly; in amdtp_domain_start()
H A Damdtp-stream.h324 } replay; member
/linux/drivers/infiniband/sw/rxe/
H A Drxe_resp.c612 res->replay = 0; in rxe_prepare_res()
653 if (res && res->replay) in process_flush()
702 if (!res->replay) { in atomic_reply()
745 if (res->replay) in atomic_write_reply()
902 if (!res->replay || qp->resp.length == 0) { in read_reply()
974 if (!res->replay) in read_reply()
1307 res->replay = 1; in duplicate_request()
1351 res->replay = 1; in duplicate_request()
1369 res->replay = 1; in duplicate_request()
/linux/fs/ubifs/
H A DMakefile5 ubifs-y += tnc.o master.o scan.o replay.o log.o commit.o gc.o orphan.o
/linux/net/netfilter/
H A Dnfnetlink.c229 replay: in nfnetlink_rcv_msg()
311 goto replay; in nfnetlink_rcv_msg()
386 replay: in nfnetlink_rcv_batch()
574 goto replay; in nfnetlink_rcv_batch()
/linux/tools/perf/Documentation/
H A Dperf-sched.txt11 'perf sched' {record|latency|map|replay|script|timehist|stats}
46 'perf sched replay' to simulate the workload that was recorded
49 threads can then replay the timings (CPU runtime and sleep patterns)
342 Applicable to {record|latency|map|replay|script}
491 OPTIONS for 'perf sched replay'
/linux/drivers/hid/usbhid/
H A Dhid-pidff.c524 effect->replay.length); in pidff_set_effect_report()
547 effect->replay.delay); in pidff_set_effect_report()
559 return effect->replay.length != old->replay.length || in pidff_needs_set_effect()
563 effect->replay.delay != old->replay.delay; in pidff_needs_set_effect()
941 pidff_is_duration_infinite(new->replay.length); in pidff_upload_effect()
/linux/Documentation/userspace-api/media/dvb/
H A Ddmx-fwrite.rst37 provides the actual DVR functionality. It is used for replay of a
/linux/drivers/input/misc/
H A Dcs40l50-vibra.c363 usleep_range(work_data->effect->replay.length, in cs40l50_start_worker()
364 work_data->effect->replay.length + 100); in cs40l50_start_worker()
/linux/Documentation/networking/
H A Dmac80211-injection.rst71 facilitating replay of captured radiotap headers directly.
/linux/tools/testing/ktest/
H A Dktest.pl3107 my $replay = $bisect_replay;
3143 if (defined($replay)) {
3147 $replay = update_bisect_replay;
3151 $replay = update_bisect_replay;
3192 if (defined($replay)) {
3193 run_command "git bisect replay $replay" or
/linux/drivers/gpu/drm/nouveau/
H A Dnouveau_svm.c727 int replay = 0, atomic = 0, ret; in nouveau_svm_fault() local
875 replay++; in nouveau_svm_fault()
879 if (replay) in nouveau_svm_fault()
/linux/drivers/net/ethernet/mellanox/mlx5/core/en_accel/
H A Dipsec_fs.c321 sa_entry->ipsec_rule.replay.rule = rule; in rx_add_rule_drop_replay()
322 sa_entry->ipsec_rule.replay.fc = flow_counter; in rx_add_rule_drop_replay()
2136 if (sa_entry->ipsec_rule.replay.rule) { in rx_add_rule()
2137 mlx5_del_flow_rules(sa_entry->ipsec_rule.replay.rule); in rx_add_rule()
2138 mlx5_fc_destroy(mdev, sa_entry->ipsec_rule.replay.fc); in rx_add_rule()
2676 if (ipsec_rule->replay.rule) { in mlx5e_accel_ipsec_fs_del_rule()
2677 mlx5_del_flow_rules(ipsec_rule->replay.rule); in mlx5e_accel_ipsec_fs_del_rule()
2678 mlx5_fc_destroy(mdev, ipsec_rule->replay.fc); in mlx5e_accel_ipsec_fs_del_rule()
H A Dipsec.h215 struct mlx5e_ipsec_drop replay; member
/linux/drivers/gpu/drm/amd/display/dc/resource/dcn314/
H A Ddcn314_resource.c1546 if (pool->base.replay != NULL) in dcn314_resource_destruct()
1547 dmub_replay_destroy(&pool->base.replay); in dcn314_resource_destruct()
2039 pool->base.replay = dmub_replay_create(ctx); in dcn314_resource_construct()
2040 if (pool->base.replay == NULL) { in dcn314_resource_construct()
/linux/drivers/gpu/drm/amd/display/dc/resource/dcn315/
H A Ddcn315_resource.c1489 if (pool->base.replay != NULL) in dcn315_resource_destruct()
1490 dmub_replay_destroy(&pool->base.replay); in dcn315_resource_destruct()
2064 pool->base.replay = dmub_replay_create(ctx); in dcn315_resource_construct()
2065 if (pool->base.replay == NULL) { in dcn315_resource_construct()

123