Home
last modified time | relevance | path

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

/linux-4.4.14/net/xfrm/
Dxfrm_replay.c65 ((x->replay.seq - x->preplay.seq < x->replay_maxdiff) && in xfrm_replay_notify()
66 (x->replay.oseq - x->preplay.oseq < x->replay_maxdiff))) { in xfrm_replay_notify()
76 if (memcmp(&x->replay, &x->preplay, in xfrm_replay_notify()
85 memcpy(&x->preplay, &x->replay, sizeof(struct xfrm_replay_state)); in xfrm_replay_notify()
101 XFRM_SKB_CB(skb)->seq.output.low = ++x->replay.oseq; in xfrm_replay_overflow()
103 if (unlikely(x->replay.oseq == 0)) { in xfrm_replay_overflow()
104 x->replay.oseq--; in xfrm_replay_overflow()
129 if (likely(seq > x->replay.seq)) in xfrm_replay_check()
132 diff = x->replay.seq - seq; in xfrm_replay_check()
138 if (x->replay.bitmap & (1U << diff)) { in xfrm_replay_check()
[all …]
Dxfrm_user.c472 sizeof(x->replay.bitmap) * 8); in copy_from_user_state()
506 struct xfrm_replay_state *replay; in xfrm_update_ae_params() local
507 replay = nla_data(rp); in xfrm_update_ae_params()
508 memcpy(&x->replay, replay, sizeof(*replay)); in xfrm_update_ae_params()
509 memcpy(&x->preplay, replay, sizeof(*replay)); in xfrm_update_ae_params()
733 put_unaligned(x->stats.replay, &p->stats.replay); in copy_to_user_state()
857 ret = nla_put(skb, XFRMA_REPLAY_VAL, sizeof(x->replay), in copy_to_user_state_extra()
858 &x->replay); in copy_to_user_state_extra()
1846 err = nla_put(skb, XFRMA_REPLAY_VAL, sizeof(x->replay), in build_aevent()
1847 &x->replay); in build_aevent()
/linux-4.4.14/Documentation/device-mapper/
Dlog-writes.txt9 that is in the WRITE requests is copied into the log to make the replay happen
17 next REQ_FLUSH request. This is to make it easier for userspace to replay the
47 If we logged DISCARD when it completed, the replay would look like this
51 which isn't quite what happened and wouldn't be caught during the log replay.
76 write, but first you need to replay up to the mkfs to make sure
84 This would allow you to replay the log up to the mkfs mark and
85 then replay from that point on doing the fsck check in the
93 There is a userspace tool that will replay the log for you in various ways.
114 replay-log --log /dev/sdc --replay /dev/sdb --end-mark fsync
133 replay-log --log /dev/sdc --replay /dev/sdb --end-mark mkfs
[all …]
/linux-4.4.14/Documentation/networking/
Dxfrm_sync.txt14 ensure proper decay of SAs) and replay counters to avoid replay attacks
22 know if the replay sequence threshold is reached or 10 secs have passed"
31 - the replay sequence for both inbound and outbound
60 XFRM_AE_RTHR=1, /* replay threshold*/
61 XFRM_AE_RVAL=2, /* replay value */
64 XFRM_AE_CR=16, /* Event cause is replay update */
86 b)replay value (XFRMA_REPLAY_VAL)
87 This TLV carries the running/current counter for replay sequence since
90 c)replay threshold (XFRMA_REPLAY_THRESH)
92 when the replay sequence is exceeded.
[all …]
Dmac80211-injection.txt32 facilitating replay of captured radiotap headers directly.
/linux-4.4.14/drivers/input/
Dff-memless.c102 if (state->effect->replay.length) { in calculate_next_time()
183 } else if (envelope->fade_length && effect->replay.length && in apply_envelope()
379 } else if (effect->replay.length && in ml_get_combo_effect()
388 msecs_to_jiffies(effect->replay.delay); in ml_get_combo_effect()
390 msecs_to_jiffies(effect->replay.length); in ml_get_combo_effect()
458 msecs_to_jiffies(state->effect->replay.delay); in ml_ff_playback()
460 msecs_to_jiffies(state->effect->replay.length); in ml_ff_playback()
488 msecs_to_jiffies(state->effect->replay.delay); in ml_ff_upload()
490 msecs_to_jiffies(state->effect->replay.length); in ml_ff_upload()
Dinput-compat.h57 struct ff_replay replay; member
/linux-4.4.14/drivers/input/joystick/iforce/
Diforce-ff.c300 || old->replay.length != new->replay.length in need_core()
301 || old->replay.delay != new->replay.delay) in need_core()
405 effect->replay.length, in iforce_upload_periodic()
406 effect->replay.delay, in iforce_upload_periodic()
465 effect->replay.length, in iforce_upload_constant()
466 effect->replay.delay, in iforce_upload_constant()
531 effect->replay.length, effect->replay.delay, in iforce_upload_condition()
/linux-4.4.14/tools/perf/Documentation/
Dperf-sched.txt11 'perf sched' {record|latency|map|replay|script}
26 'perf sched replay' to simulate the workload that was recorded
29 threads can then replay the timings (CPU runtime and sleep patterns)
/linux-4.4.14/arch/powerpc/kernel/
Dirq.c205 unsigned int replay; in arch_local_irq_restore() local
261 replay = __check_irq_replay(); in arch_local_irq_restore()
270 if (replay) { in arch_local_irq_restore()
271 __replay_interrupt(replay); in arch_local_irq_restore()
/linux-4.4.14/fs/ubifs/
DMakefile4 ubifs-y += tnc.o master.o scan.o replay.o log.o commit.o gc.o orphan.o
/linux-4.4.14/net/netfilter/
Dnfnetlink.c165 replay: in nfnetlink_rcv_msg()
222 goto replay; in nfnetlink_rcv_msg()
291 replay: in nfnetlink_rcv_batch()
430 goto replay; in nfnetlink_rcv_batch()
/linux-4.4.14/drivers/hid/usbhid/
Dhid-pidff.c316 pidff->set_effect[PID_DURATION].value[0] = effect->replay.length; in pidff_set_effect_report()
326 pidff->set_effect[PID_START_DELAY].value[0] = effect->replay.delay; in pidff_set_effect_report()
338 return effect->replay.length != old->replay.length || in pidff_needs_set_effect()
342 effect->replay.delay != old->replay.delay; in pidff_needs_set_effect()
/linux-4.4.14/include/uapi/linux/
Dinput.h429 struct ff_replay replay; member
Dxfrm.h123 __u32 replay; member
/linux-4.4.14/net/sched/
Dcls_api.c146 replay: in tc_ctl_tfilter()
350 goto replay; in tc_ctl_tfilter()
Dact_api.c996 replay: in tc_ctl_action()
999 goto replay; in tc_ctl_action()
Dsch_api.c1192 replay: in tc_modify_qdisc()
1318 goto replay; in tc_modify_qdisc()
/linux-4.4.14/tools/testing/ktest/
Dktest.pl2835 my $replay = $bisect_replay;
2871 if (defined($replay)) {
2875 $replay = update_bisect_replay;
2879 $replay = update_bisect_replay;
2921 if (defined($replay)) {
2922 run_command "git bisect replay $replay" or
/linux-4.4.14/fs/nfsd/
Dxdr4.h560 struct nfs4_replay * replay; member
Dnfs4proc.c1712 op->replay = &cstate->replay_owner->so_replay; in nfsd4_proc_compound()
1714 status = op->status = op->replay->rp_status; in nfsd4_proc_compound()
Dnfs4xdr.c1846 op->replay = NULL; in nfsd4_decode_compound()
4406 struct nfs4_replay *rp = op->replay; in nfsd4_encode_replay()
/linux-4.4.14/Documentation/input/
Dff.txt193 is playing only when it is ok to restart the effect with a replay count of 1.
/linux-4.4.14/Documentation/filesystems/
Dext4.txt132 replay the journal (and thus write to the
156 skipping the journal replay will lead to the
256 grpjquota=<file> during journal replay. They replace the above
Dxfs-delayed-logging-design.txt287 log replay - all the changes in all the objects in a given transaction must
294 transaction, nor does the log replay code. The only fundamental limit is that
334 checkpoint sequence order is maintained during log replay.
/linux-4.4.14/drivers/staging/lustre/
Dsysfs-fs-lustre301 Controls if client should replay unused locks during recovery
305 0 - replay unused locks.
/linux-4.4.14/Documentation/
DChanges158 o fsck.jfs - initiate replay of the transaction log, and check
/linux-4.4.14/drivers/md/
DKconfig483 them to replay the log in a variety of ways and to check the
/linux-4.4.14/drivers/net/ethernet/agere/
Det131x.c3037 static const u16 replay[2] = { 0x1E0, 0x2ED }; in et131x_pci_init() local
3046 replay[max_payload])) { in et131x_pci_init()
/linux-4.4.14/net/core/
Drtnetlink.c2181 replay: in rtnl_newlink()
2321 goto replay; in rtnl_newlink()
/linux-4.4.14/include/net/
Dxfrm.h186 struct xfrm_replay_state replay; member
/linux-4.4.14/net/key/
Daf_key.c1101 (sizeof(x->replay.bitmap) * 8)); in pfkey_msg2xfrm_state()
/linux-4.4.14/Documentation/sound/oss/
DREADME.OSS1344 operation (simultaneous PCM replay and recording), which allows you to