Home
last modified time | relevance | path

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

12

/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.c510 struct xfrm_replay_state *replay; in verify_newsa_info() local
512 replay = nla_data(attrs[XFRMA_REPLAY_VAL]); in verify_newsa_info()
514 if (replay->seq || replay->bitmap) { in verify_newsa_info()
821 sizeof(x->replay.bitmap) * 8); in copy_from_user_state()
856 struct xfrm_replay_state *replay; in xfrm_update_ae_params() local
857 replay = nla_data(rp); in xfrm_update_ae_params()
858 memcpy(&x->replay, replay, sizeof(*replay)); in xfrm_update_ae_params()
859 memcpy(&x->preplay, replay, sizeof(*replay)); in xfrm_update_ae_params()
1144 put_unaligned(x->stats.replay, &p->stats.replay); in copy_to_user_state()
1405 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/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/fs/ubifs/
H A DMakefile5 ubifs-y += tnc.o master.o scan.o replay.o log.o commit.o gc.o orphan.o
/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}
494 OPTIONS for 'perf sched replay'
/linux/drivers/hid/usbhid/
H A Dhid-pidff.c525 effect->replay.length); in pidff_set_effect_report()
548 effect->replay.delay); in pidff_set_effect_report()
560 return effect->replay.length != old->replay.length || in pidff_needs_set_effect()
564 effect->replay.delay != old->replay.delay; in pidff_needs_set_effect()
952 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.pl3156 my $replay = $bisect_replay;
3192 if (defined($replay)) {
3196 $replay = update_bisect_replay;
3200 $replay = update_bisect_replay;
3241 if (defined($replay)) {
3242 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.h215 struct mlx5e_ipsec_drop replay; member
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()
/linux/drivers/gpu/drm/amd/display/dc/resource/dcn314/
H A Ddcn314_resource.c1579 if (pool->base.replay != NULL) in dcn314_resource_destruct()
1580 dmub_replay_destroy(&pool->base.replay); in dcn314_resource_destruct()
2084 pool->base.replay = dmub_replay_create(ctx); in dcn314_resource_construct()
2085 if (pool->base.replay == NULL) { in dcn314_resource_construct()
/linux/drivers/gpu/drm/amd/display/dc/resource/dcn35/
H A Ddcn35_resource.c1588 if (pool->base.replay != NULL) in dcn35_resource_destruct()
1589 dmub_replay_destroy(&pool->base.replay); in dcn35_resource_destruct()
2140 pool->base.replay = dmub_replay_create(ctx); in dcn35_resource_construct()
2141 if (pool->base.replay == NULL) { in dcn35_resource_construct()
/linux/drivers/gpu/drm/amd/display/dc/resource/dcn31/
H A Ddcn31_resource.c1521 if (pool->base.replay != NULL) in dcn31_resource_destruct()
1522 dmub_replay_destroy(&pool->base.replay); in dcn31_resource_destruct()
2166 pool->base.replay = dmub_replay_create(ctx); in dcn31_resource_construct()
2167 if (pool->base.replay == NULL) { in dcn31_resource_construct()
/linux/drivers/gpu/drm/amd/display/dc/resource/dcn315/
H A Ddcn315_resource.c1522 if (pool->base.replay != NULL) in dcn315_resource_destruct()
1523 dmub_replay_destroy(&pool->base.replay); in dcn315_resource_destruct()
2116 pool->base.replay = dmub_replay_create(ctx); in dcn315_resource_construct()
2117 if (pool->base.replay == NULL) { in dcn315_resource_construct()
/linux/drivers/gpu/drm/amd/display/dc/resource/dcn36/
H A Ddcn36_resource.c1575 if (pool->base.replay != NULL) in dcn36_resource_destruct()
1576 dmub_replay_destroy(&pool->base.replay); in dcn36_resource_destruct()
2110 pool->base.replay = dmub_replay_create(ctx); in dcn36_resource_construct()
2111 if (pool->base.replay == NULL) { in dcn36_resource_construct()
/linux/drivers/gpu/drm/amd/display/dc/resource/dcn351/
H A Ddcn351_resource.c1568 if (pool->base.replay != NULL) in dcn351_resource_destruct()
1569 dmub_replay_destroy(&pool->base.replay); in dcn351_resource_destruct()
2112 pool->base.replay = dmub_replay_create(ctx); in dcn351_resource_construct()
2113 if (pool->base.replay == NULL) { in dcn351_resource_construct()

12