| /linux/drivers/gpu/drm/amd/display/dc/link/protocols/ |
| H A D | link_edp_panel_control.c | 940 struct dmub_replay *replay = dc->res_pool->replay; in edp_set_replay_allow_active() local 943 if (replay == NULL && force_static) in edp_set_replay_allow_active() 951 if (replay != NULL && link->replay_settings.replay_feature_enabled && in edp_set_replay_allow_active() 952 replay->funcs->replay_set_power_opt) { in edp_set_replay_allow_active() 953 replay->funcs->replay_set_power_opt(replay, *power_opts, panel_inst); in edp_set_replay_allow_active() 962 if (replay != NULL && link->replay_settings.replay_feature_enabled) in edp_set_replay_allow_active() 963 replay->funcs->replay_enable(replay, *allow_active, wait, panel_inst); in edp_set_replay_allow_active() 973 struct dmub_replay *replay = dc->res_pool->replay; in edp_get_replay_state() local 980 if (replay != NULL && link->replay_settings.replay_feature_enabled) in edp_get_replay_state() 981 replay->funcs->replay_get_state(replay, &pr_state, panel_inst); in edp_get_replay_state() [all …]
|
| /linux/Documentation/admin-guide/device-mapper/ |
| H A D | log-writes.rst | 10 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 D | xfrm_replay.c | 68 ((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 D | xfrm_user.c | 501 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 D | vrf-xfrm-tests.sh | 261 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/joystick/iforce/ |
| H A D | iforce-ff.c | 277 || 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 D | dmub_replay.c | 443 static void dmub_replay_construct(struct dmub_replay *replay, struct dc_context *ctx) in dmub_replay_construct() argument 445 replay->ctx = ctx; in dmub_replay_construct() 446 replay->funcs = &replay_funcs; in dmub_replay_construct() 454 struct dmub_replay *replay = kzalloc(sizeof(struct dmub_replay), GFP_KERNEL); in dmub_replay_create() local 456 if (replay == NULL) { in dmub_replay_create() 461 dmub_replay_construct(replay, ctx); in dmub_replay_create() 463 return replay; in dmub_replay_create()
|
| /linux/Documentation/filesystems/ext4/ |
| H A D | journal.rst | 76 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/fs/ubifs/ |
| H A D | Makefile | 5 ubifs-y += tnc.o master.o scan.o replay.o log.o commit.o gc.o orphan.o
|
| /linux/drivers/infiniband/sw/rxe/ |
| H A D | rxe_resp.c | 612 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/drivers/hid/usbhid/ |
| H A D | hid-pidff.c | 524 effect->replay.length); in pidff_set_effect_report() 537 effect->replay.delay); in pidff_set_effect_report() 549 return effect->replay.length != old->replay.length || in pidff_needs_set_effect() 553 effect->replay.delay != old->replay.delay; in pidff_needs_set_effect() 931 pidff_is_duration_infinite(new->replay.length); in pidff_upload_effect()
|
| /linux/Documentation/userspace-api/media/dvb/ |
| H A D | dmx-fwrite.rst | 37 provides the actual DVR functionality. It is used for replay of a
|
| /linux/sound/firewire/ |
| H A D | amdtp-stream.h | 324 } replay; member
|
| /linux/drivers/input/misc/ |
| H A D | cs40l50-vibra.c | 364 usleep_range(work_data->effect->replay.length, in cs40l50_start_worker() 365 work_data->effect->replay.length + 100); in cs40l50_start_worker()
|
| /linux/Documentation/networking/ |
| H A D | mac80211-injection.rst | 71 facilitating replay of captured radiotap headers directly.
|
| /linux/tools/testing/ktest/ |
| H A D | ktest.pl | 3107 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 D | nouveau_svm.c | 727 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 D | ipsec.h | 215 struct mlx5e_ipsec_drop replay; member
|
| H A D | ipsec_fs.c | 321 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/Documentation/security/tpm/ |
| H A D | tpm-security.rst | 51 and completely substitute their own values, producing a replay of 208 prevent replay. If all of these tests pass, the user is now assured
|
| /linux/Documentation/ABI/testing/ |
| H A D | configfs-tsm-report | 6 (WO) Up to 64 bytes of user specified binary data. For replay
|
| /linux/Documentation/arch/x86/ |
| H A D | sgx.rst | 194 anti-replay protection but does not scale to large memory sizes because the time 200 means integrity and replay-attacks are not mitigated. B, it includes
|
| /linux/fs/ext4/ |
| H A D | fast_commit.c | 1715 ext4_lblk_t lblk, ext4_fsblk_t pblk, int len, int replay) in ext4_fc_record_regions() argument 1725 if (replay && state->fc_regions_used != state->fc_regions_valid) in ext4_fc_record_regions() 1747 if (replay) in ext4_fc_record_regions()
|
| /linux/Documentation/input/ |
| H A D | ff.rst | 235 is playing only when it is ok to restart the effect with a replay count of 1.
|
| /linux/Documentation/filesystems/smb/ |
| H A D | ksmbd.rst | 86 replay/retry mechanisms for future.
|