Home
last modified time | relevance | path

Searched refs:replay (Results 1 - 25 of 78) sorted by relevance

1234

/kernel/linux/linux-6.6/drivers/gpu/drm/amd/display/dc/link/protocols/
H A Dlink_edp_panel_control.c874 struct dmub_replay *replay = dc->res_pool->replay; in edp_set_replay_allow_active() local
877 if (replay == NULL && force_static) in edp_set_replay_allow_active()
885 if (replay != NULL && link->replay_settings.replay_feature_enabled && in edp_set_replay_allow_active()
886 replay->funcs->replay_set_power_opt) { in edp_set_replay_allow_active()
887 replay->funcs->replay_set_power_opt(replay, *power_opts, panel_inst); in edp_set_replay_allow_active()
896 if (replay != NULL && link->replay_settings.replay_feature_enabled) in edp_set_replay_allow_active()
897 replay->funcs->replay_enable(replay, *allow_activ in edp_set_replay_allow_active()
907 struct dmub_replay *replay = dc->res_pool->replay; edp_get_replay_state() local
925 struct dmub_replay *replay; edp_setup_replay() local
1000 struct dmub_replay *replay = dc->res_pool->replay; edp_set_coasting_vtotal() local
1021 struct dmub_replay *replay = dc->res_pool->replay; edp_replay_residency() local
[all...]
/kernel/linux/linux-5.10/drivers/infiniband/core/
H A Duverbs_std_types_flow_action.c91 static int flow_action_esp_replay_none(struct ib_flow_action_attrs_esp_replays *replay, in flow_action_esp_replay_none() argument
95 * replay protection to a disabled one. This is only supported via in flow_action_esp_replay_none()
102 static int flow_action_esp_replay_def_ok(struct ib_flow_action_attrs_esp_replays *replay, in flow_action_esp_replay_def_ok() argument
105 /* Some replay protections could always be enabled without validating in flow_action_esp_replay_def_ok()
111 static int (* const flow_action_esp_replay_validate[])(struct ib_flow_action_attrs_esp_replays *replay,
221 struct ib_flow_action_attrs_esp_replays replay; member
279 esp_attr->replay.protocol = in parse_flow_action_esp()
283 ret = uverbs_copy_from_or_zero(&esp_attr->replay.replay, in parse_flow_action_esp()
289 ret = flow_action_esp_replay_validate[esp_attr->replay in parse_flow_action_esp()
[all...]
/kernel/linux/linux-5.10/net/xfrm/
H A Dxfrm_replay.c3 * xfrm_replay.c - xfrm replay detection, derived from xfrm_state.c.
54 ((x->replay.seq - x->preplay.seq < x->replay_maxdiff) && in xfrm_replay_notify()
55 (x->replay.oseq - x->preplay.oseq < x->replay_maxdiff))) { in xfrm_replay_notify()
65 if (memcmp(&x->replay, &x->preplay, in xfrm_replay_notify()
74 memcpy(&x->preplay, &x->replay, sizeof(struct xfrm_replay_state)); in xfrm_replay_notify()
90 XFRM_SKB_CB(skb)->seq.output.low = ++x->replay.oseq; in xfrm_replay_overflow()
92 if (unlikely(x->replay.oseq == 0) && in xfrm_replay_overflow()
94 x->replay.oseq--; in xfrm_replay_overflow()
119 if (likely(seq > x->replay.seq)) in xfrm_replay_check()
122 diff = x->replay in xfrm_replay_check()
[all...]
H A Dxfrm_user.c505 sizeof(x->replay.bitmap) * 8); in copy_from_user_state()
540 struct xfrm_replay_state *replay; in xfrm_update_ae_params() local
541 replay = nla_data(rp); in xfrm_update_ae_params()
542 memcpy(&x->replay, replay, sizeof(*replay)); in xfrm_update_ae_params()
543 memcpy(&x->preplay, replay, sizeof(*replay)); in xfrm_update_ae_params()
803 put_unaligned(x->stats.replay, &p->stats.replay); in copy_to_user_state()
[all...]
/kernel/linux/linux-6.6/net/xfrm/
H A Dxfrm_replay.c3 * xfrm_replay.c - xfrm replay detection, derived from xfrm_state.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 in xfrm_replay_check_legacy()
[all...]
/kernel/linux/linux-5.10/tools/testing/selftests/net/
H A Dvrf-xfrm-tests.sh266 replay-window 4 replay-oseq 0x4 \
273 replay-window 4 replay-oseq 0x4 \
281 replay-window 4 replay-oseq 0x4 \
288 replay-window 4 replay-oseq 0x4 \
296 replay-window 4 replay
[all...]
/kernel/linux/linux-6.6/tools/testing/selftests/net/
H A Dvrf-xfrm-tests.sh266 replay-window 4 replay-oseq 0x4 \
273 replay-window 4 replay-oseq 0x4 \
281 replay-window 4 replay-oseq 0x4 \
288 replay-window 4 replay-oseq 0x4 \
296 replay-window 4 replay
[all...]
/kernel/linux/linux-6.6/drivers/gpu/drm/amd/display/dc/dce/
H A Ddmub_replay.c134 * Setup Replay by programming phy registers and sending replay hw context values to firmware.
273 static void dmub_replay_construct(struct dmub_replay *replay, struct dc_context *ctx) in dmub_replay_construct() argument
275 replay->ctx = ctx; in dmub_replay_construct()
276 replay->funcs = &replay_funcs; in dmub_replay_construct()
284 struct dmub_replay *replay = kzalloc(sizeof(struct dmub_replay), GFP_KERNEL); in dmub_replay_create() local
286 if (replay == NULL) { in dmub_replay_create()
291 dmub_replay_construct(replay, ctx); in dmub_replay_create()
293 return replay; in dmub_replay_create()
/kernel/linux/linux-5.10/drivers/input/
H A Dff-memless.c90 if (state->effect->replay.length) { in calculate_next_time()
171 } else if (envelope->fade_length && effect->replay.length && in apply_envelope()
367 } else if (effect->replay.length && in ml_get_combo_effect()
376 msecs_to_jiffies(effect->replay.delay); in ml_get_combo_effect()
378 msecs_to_jiffies(effect->replay.length); in ml_get_combo_effect()
446 msecs_to_jiffies(state->effect->replay.delay); in ml_ff_playback()
448 msecs_to_jiffies(state->effect->replay.length); in ml_ff_playback()
476 msecs_to_jiffies(state->effect->replay.delay); in ml_ff_upload()
478 msecs_to_jiffies(state->effect->replay.length); in ml_ff_upload()
H A Dinput-compat.h43 struct ff_replay replay; member
/kernel/linux/linux-6.6/drivers/input/
H A Dff-memless.c87 if (state->effect->replay.length) { in calculate_next_time()
168 } else if (envelope->fade_length && effect->replay.length && in apply_envelope()
364 } else if (effect->replay.length && in ml_get_combo_effect()
373 msecs_to_jiffies(effect->replay.delay); in ml_get_combo_effect()
375 msecs_to_jiffies(effect->replay.length); in ml_get_combo_effect()
443 msecs_to_jiffies(state->effect->replay.delay); in ml_ff_playback()
445 msecs_to_jiffies(state->effect->replay.length); in ml_ff_playback()
473 msecs_to_jiffies(state->effect->replay.delay); in ml_ff_upload()
475 msecs_to_jiffies(state->effect->replay.length); in ml_ff_upload()
H A Dinput-compat.h43 struct ff_replay replay; member
/kernel/linux/linux-5.10/drivers/input/joystick/iforce/
H A Diforce-ff.c281 || old->replay.length != new->replay.length in need_core()
282 || old->replay.delay != new->replay.delay) in need_core()
327 /* BUG: perhaps we should replay n times, instead of 1. But we do not know n */ in make_core()
386 effect->replay.length, in iforce_upload_periodic()
387 effect->replay.delay, in iforce_upload_periodic()
446 effect->replay.length, in iforce_upload_constant()
447 effect->replay.delay, in iforce_upload_constant()
512 effect->replay in iforce_upload_condition()
[all...]
/kernel/linux/linux-6.6/drivers/input/joystick/iforce/
H A Diforce-ff.c281 || old->replay.length != new->replay.length in need_core()
282 || old->replay.delay != new->replay.delay) in need_core()
327 /* BUG: perhaps we should replay n times, instead of 1. But we do not know n */ in make_core()
386 effect->replay.length, in iforce_upload_periodic()
387 effect->replay.delay, in iforce_upload_periodic()
446 effect->replay.length, in iforce_upload_constant()
447 effect->replay.delay, in iforce_upload_constant()
512 effect->replay in iforce_upload_condition()
[all...]
/kernel/linux/linux-5.10/drivers/gpu/drm/nouveau/nvkm/subdev/mmu/
H A Dvmmgp100.c566 if (vmm->replay) { in gp100_vmm_join()
604 bool replay; in gp100_vmm_new_() local
607 replay = args->v0.fault_replay != 0; in gp100_vmm_new_()
610 replay = false; in gp100_vmm_new_()
618 (*pvmm)->replay = replay; in gp100_vmm_new_()
/kernel/linux/linux-6.6/drivers/gpu/drm/nouveau/nvkm/subdev/mmu/
H A Dvmmgp100.c572 if (vmm->replay) { in gp100_vmm_join()
610 bool replay; in gp100_vmm_new_() local
613 replay = args->v0.fault_replay != 0; in gp100_vmm_new_()
616 replay = false; in gp100_vmm_new_()
624 (*pvmm)->replay = replay; in gp100_vmm_new_()
/kernel/linux/linux-6.6/sound/firewire/
H A Damdtp-stream.c575 if (!d->replay.enable || !s->ctx_data.rx.replay_target) { in pool_seq_descs()
578 if (!d->replay.on_the_fly) { in pool_seq_descs()
939 // sequence replay. in generate_tx_packet_descs()
950 // asynchronous transaction. The sequence replay is impossible due in generate_tx_packet_descs()
1284 if (d->replay.enable) in process_rx_packets_intermediately()
1327 if (d->replay.enable) in process_tx_packets()
1570 if (d->replay.enable && !d->replay.on_the_fly) { in irq_target_callback_skip()
1716 if (s->domain->replay.enable) { in amdtp_stream_start()
1826 if (s->domain->replay in amdtp_stream_start()
[all...]
/kernel/linux/linux-5.10/net/netfilter/
H A Dnfnetlink.c195 replay: in nfnetlink_rcv_msg()
260 goto replay; in nfnetlink_rcv_msg()
334 replay: in nfnetlink_rcv_batch()
507 goto replay; in nfnetlink_rcv_batch()
/kernel/linux/linux-6.6/net/netfilter/
H A Dnfnetlink.c229 replay: in nfnetlink_rcv_msg()
311 goto replay; in nfnetlink_rcv_msg()
385 replay: in nfnetlink_rcv_batch()
567 goto replay; in nfnetlink_rcv_batch()
/kernel/linux/linux-5.10/include/linux/mlx5/
H A Daccel.h90 } replay; member
/kernel/linux/linux-5.10/drivers/hid/usbhid/
H A Dhid-pidff.c304 pidff->set_effect[PID_DURATION].value[0] = effect->replay.length; in pidff_set_effect_report()
314 pidff->set_effect[PID_START_DELAY].value[0] = effect->replay.delay; in pidff_set_effect_report()
326 return effect->replay.length != old->replay.length || in pidff_needs_set_effect()
330 effect->replay.delay != old->replay.delay; in pidff_needs_set_effect()
/kernel/linux/linux-6.6/drivers/hid/usbhid/
H A Dhid-pidff.c304 pidff->set_effect[PID_DURATION].value[0] = effect->replay.length; in pidff_set_effect_report()
314 pidff->set_effect[PID_START_DELAY].value[0] = effect->replay.delay; in pidff_set_effect_report()
326 return effect->replay.length != old->replay.length || in pidff_needs_set_effect()
330 effect->replay.delay != old->replay.delay; in pidff_needs_set_effect()
/kernel/linux/linux-6.6/drivers/infiniband/sw/rxe/
H A Drxe_resp.c609 res->replay = 0; in rxe_prepare_res()
650 if (res && res->replay) in process_flush()
699 if (!res->replay) { in atomic_reply()
736 if (res->replay) in atomic_write_reply()
884 if (!res->replay || qp->resp.length == 0) { in read_reply()
956 if (!res->replay) in read_reply()
1289 res->replay = 1; in duplicate_request()
1333 res->replay = 1; in duplicate_request()
1351 res->replay = 1; in duplicate_request()
/kernel/linux/linux-5.10/drivers/gpu/drm/nouveau/include/nvkm/subdev/
H A Dmmu.h49 bool replay; member
/kernel/linux/linux-6.6/drivers/gpu/drm/nouveau/include/nvkm/subdev/
H A Dmmu.h65 bool replay; member

Completed in 25 milliseconds

1234