/linux-6.6.21/arch/parisc/kernel/ |
D | perf_asm.S | 141 blr %r1,%r0 ; branch to 8-instruction sequence 149 ; RDR 0 sequence 161 ; RDR 1 sequence 173 ; RDR 2 read sequence 185 ; RDR 3 read sequence 197 ; RDR 4 read sequence 209 ; RDR 5 read sequence 221 ; RDR 6 read sequence 233 ; RDR 7 read sequence 245 ; RDR 8 read sequence [all …]
|
/linux-6.6.21/tools/testing/selftests/bpf/progs/ |
D | modify_return.c | 13 static int sequence = 0; variable 20 sequence++; in BPF_PROG() 21 fentry_result = (sequence == 1); in BPF_PROG() 29 sequence++; in BPF_PROG() 31 fmod_ret_result = (sequence == 2 && ret == 0); in BPF_PROG() 39 sequence++; in BPF_PROG() 44 fexit_result = (sequence == 3 && ret == input_retval); in BPF_PROG() 46 fexit_result = (sequence == 3 && ret == 4); in BPF_PROG()
|
/linux-6.6.21/drivers/net/arcnet/ |
D | rfc1201.c | 171 in->sequence, soft->split_flag, in rx() 172 soft->sequence); in rx() 173 lp->rfc1201.aborted_seq = soft->sequence; in rx() 179 in->sequence = soft->sequence; in rx() 256 soft->split_flag, in->sequence); in rx() 258 if (in->skb && in->sequence != soft->sequence) { in rx() 260 saddr, in->sequence, soft->sequence, in rx() 273 in->sequence, soft->split_flag, in rx() 274 soft->sequence); in rx() 279 in->sequence = soft->sequence; in rx() [all …]
|
/linux-6.6.21/lib/zstd/decompress/ |
D | zstd_decompress_block.c | 862 BYTE* const oend, seq_t sequence, in ZSTD_execSequenceEnd() argument 866 BYTE* const oLitEnd = op + sequence.litLength; in ZSTD_execSequenceEnd() 867 size_t const sequenceLength = sequence.litLength + sequence.matchLength; in ZSTD_execSequenceEnd() 868 const BYTE* const iLitEnd = *litPtr + sequence.litLength; in ZSTD_execSequenceEnd() 869 const BYTE* match = oLitEnd - sequence.offset; in ZSTD_execSequenceEnd() 874 …RETURN_ERROR_IF(sequence.litLength > (size_t)(litLimit - *litPtr), corruption_detected, "try to re… in ZSTD_execSequenceEnd() 879 ZSTD_safecopy(op, oend_w, *litPtr, sequence.litLength, ZSTD_no_overlap); in ZSTD_execSequenceEnd() 884 if (sequence.offset > (size_t)(oLitEnd - prefixStart)) { in ZSTD_execSequenceEnd() 886 … RETURN_ERROR_IF(sequence.offset > (size_t)(oLitEnd - virtualStart), corruption_detected, ""); in ZSTD_execSequenceEnd() 888 if (match + sequence.matchLength <= dictEnd) { in ZSTD_execSequenceEnd() [all …]
|
/linux-6.6.21/drivers/gpu/drm/nouveau/nvkm/subdev/bus/ |
D | hwsq.h | 9 int sequence; member 13 int sequence; member 25 .sequence = 0, in hwsq_stride() 38 .sequence = 0, in hwsq_reg2() 51 .sequence = 0, in hwsq_reg() 69 ram->sequence++; in hwsq_init() 89 if (reg->sequence != ram->sequence) in hwsq_rd32() 99 reg->sequence = ram->sequence; in hwsq_wr32()
|
/linux-6.6.21/drivers/media/test-drivers/visl/ |
D | visl-dec.c | 208 run->dst->sequence, in visl_tpg_fill_sequence() 243 frame_dprintk(ctx->dev, run->dst->sequence, "%s\n", buf); in visl_tpg_fill() 244 frame_dprintk(ctx->dev, run->dst->sequence, ""); in visl_tpg_fill() 251 frame_dprintk(ctx->dev, run->dst->sequence, "%s\n", line_str); in visl_tpg_fill() 254 frame_dprintk(ctx->dev, run->dst->sequence, ""); in visl_tpg_fill() 269 frame_dprintk(ctx->dev, run->dst->sequence, "%s\n", buf); in visl_tpg_fill() 280 frame_dprintk(ctx->dev, run->dst->sequence, "%s\n", buf); in visl_tpg_fill() 284 frame_dprintk(ctx->dev, run->dst->sequence, ""); in visl_tpg_fill() 287 frame_dprintk(ctx->dev, run->dst->sequence, "%s\n", buf); in visl_tpg_fill() 304 frame_dprintk(ctx->dev, run->dst->sequence, "%s", &buf[old_len]); in visl_tpg_fill() [all …]
|
/linux-6.6.21/drivers/gpu/drm/nouveau/nvkm/subdev/fb/ |
D | ramfuc.h | 10 int sequence; member 14 int sequence; member 26 .sequence = 0, in ramfuc_stride() 38 .sequence = 0, in ramfuc_reg2() 50 .sequence = 0, in ramfuc_reg() 65 ram->sequence++; in ramfuc_init() 85 if (reg->sequence != ram->sequence) in ramfuc_rd32() 95 reg->sequence = ram->sequence; in ramfuc_wr32()
|
/linux-6.6.21/Documentation/filesystems/ext4/ |
D | mmp.rst | 10 sequence number. If the sequence number is EXT4_MMP_SEQ_CLEAN, the 11 open continues. If the sequence number is EXT4_MMP_SEQ_FSCK, then 14 the sequence number again. If the sequence number has changed, then the 16 code passes all of those checks, a new MMP sequence number is generated 21 the MMP sequence number is re-read; if it does not match the in-memory 22 MMP sequence number, then another node (node B) has mounted the 24 sequence numbers match, the sequence number is incremented both in
|
/linux-6.6.21/lib/zstd/compress/ |
D | zstd_ldm.c | 622 rawSeq sequence = rawSeqStore->seq[rawSeqStore->pos]; in maybeSplitSequence() local 623 assert(sequence.offset > 0); in maybeSplitSequence() 625 if (remaining >= sequence.litLength + sequence.matchLength) { in maybeSplitSequence() 627 return sequence; in maybeSplitSequence() 630 if (remaining <= sequence.litLength) { in maybeSplitSequence() 631 sequence.offset = 0; in maybeSplitSequence() 632 } else if (remaining < sequence.litLength + sequence.matchLength) { in maybeSplitSequence() 633 sequence.matchLength = remaining - sequence.litLength; in maybeSplitSequence() 634 if (sequence.matchLength < minMatch) { in maybeSplitSequence() 635 sequence.offset = 0; in maybeSplitSequence() [all …]
|
/linux-6.6.21/include/linux/ |
D | seqlock.h | 65 unsigned sequence; member 78 s->sequence = 0; in __seqcount_init() 117 #define SEQCNT_ZERO(name) { .sequence = 0, SEQCOUNT_DEP_MAP_INIT(name) } 213 unsigned seq = READ_ONCE(s->seqcount.sequence); \ 226 seq = READ_ONCE(s->seqcount.sequence); \ 259 return READ_ONCE(s->sequence); in __seqprop_sequence() 307 #define seqprop_sequence(s) __seqprop(s, sequence) 429 return unlikely(READ_ONCE(s->sequence) != start); in do___read_seqcount_retry() 469 s->sequence++; in do_raw_write_seqcount_begin() 490 s->sequence++; in do_raw_write_seqcount_end() [all …]
|
/linux-6.6.21/Documentation/locking/ |
D | seqlock.rst | 14 A data set is consistent when the sequence count at the beginning of the 15 read side critical section is even and the same sequence count value is 17 be copied out inside the read side critical section. If the sequence 21 Writers increment the sequence count at the start and the end of their 22 critical section. After starting the critical section the sequence count 24 the end of the write side critical section the sequence count becomes 27 A sequence counter write side critical section must never be preempted 29 the entire scheduler tick due to the odd sequence count value and the 52 If it's desired to automatically handle the sequence counter 95 As discussed at :ref:`seqcount_t`, sequence count write side critical [all …]
|
/linux-6.6.21/security/selinux/ |
D | status.c | 55 status->sequence = 0; in selinux_kernel_status_page() 87 status->sequence++; in selinux_status_update_setenforce() 93 status->sequence++; in selinux_status_update_setenforce() 112 status->sequence++; in selinux_status_update_policyload() 119 status->sequence++; in selinux_status_update_policyload()
|
/linux-6.6.21/lib/xz/ |
D | xz_dec_stream.c | 33 } sequence; member 103 } sequence; member 307 switch (s->index.sequence) { in dec_index() 319 s->index.sequence = SEQ_INDEX_UNPADDED; in dec_index() 324 s->index.sequence = SEQ_INDEX_UNCOMPRESSED; in dec_index() 334 s->index.sequence = SEQ_INDEX_UNPADDED; in dec_index() 560 switch (s->sequence) { in dec_main() 580 s->sequence = SEQ_BLOCK_START; in dec_main() 596 s->sequence = SEQ_INDEX; in dec_main() 609 s->sequence = SEQ_BLOCK_HEADER; in dec_main() [all …]
|
/linux-6.6.21/drivers/net/wireless/broadcom/brcm80211/brcmsmac/ |
D | brcms_trace_brcmsmac_tx.h | 42 u16 status, u16 lasttxtime, u16 sequence, u16 phyerr, 44 TP_ARGS(dev, framelen, frameid, status, lasttxtime, sequence, phyerr, 52 __field(u16, sequence) 62 __entry->sequence = sequence; 69 __entry->lasttxtime, __entry->sequence, __entry->phyerr,
|
/linux-6.6.21/include/clocksource/ |
D | hyperv_timer.h | 46 u32 sequence; in hv_read_tsc_page_tsc() local 65 sequence = READ_ONCE(tsc_pg->tsc_sequence); in hv_read_tsc_page_tsc() 66 if (!sequence) in hv_read_tsc_page_tsc() 84 } while (READ_ONCE(tsc_pg->tsc_sequence) != sequence); in hv_read_tsc_page_tsc()
|
/linux-6.6.21/Documentation/ABI/testing/ |
D | sysfs-class-rc-nuvoton | 6 Reading this file returns the stored CIR wakeup sequence. 9 The same format can be used to store a wakeup sequence 12 Note: Some systems reset the stored wakeup sequence to a 14 wakeup sequence in a file and set it on boot using e.g.
|
/linux-6.6.21/lib/ |
D | flex_proportions.c | 47 seqcount_init(&p->sequence); in fprop_global_init() 74 write_seqcount_begin(&p->sequence); in fprop_new_period() 80 write_seqcount_end(&p->sequence); in fprop_new_period() 143 seq = read_seqcount_begin(&p->sequence); in fprop_fraction_single() 147 } while (read_seqcount_retry(&p->sequence, seq)); in fprop_fraction_single() 232 seq = read_seqcount_begin(&p->sequence); in fprop_fraction_percpu() 236 } while (read_seqcount_retry(&p->sequence, seq)); in fprop_fraction_percpu()
|
/linux-6.6.21/drivers/gpu/drm/nouveau/ |
D | nvc0_fence.c | 35 nvc0_fence_emit32(struct nouveau_channel *chan, u64 virtual, u32 sequence) in nvc0_fence_emit32() argument 44 SEMAPHOREC, sequence, in nvc0_fence_emit32() 58 nvc0_fence_sync32(struct nouveau_channel *chan, u64 virtual, u32 sequence) in nvc0_fence_sync32() argument 67 SEMAPHOREC, sequence, in nvc0_fence_sync32()
|
D | nv84_fence.c | 36 nv84_fence_emit32(struct nouveau_channel *chan, u64 virtual, u32 sequence) in nv84_fence_emit32() argument 47 SEMAPHOREC, sequence, in nv84_fence_emit32() 59 nv84_fence_sync32(struct nouveau_channel *chan, u64 virtual, u32 sequence) in nv84_fence_sync32() argument 70 SEMAPHOREC, sequence, in nv84_fence_sync32() 118 nouveau_bo_wr32(priv->bo, nv84_fence_chid(chan) * 16 / 4, fctx->base.sequence); in nv84_fence_context_del() 144 fctx->base.sequence = nv84_fence_read(chan); in nv84_fence_context_new()
|
/linux-6.6.21/fs/jbd2/ |
D | revoke.c | 105 tid_t sequence; /* Used for recovery only */ member 149 record->sequence = seq; in insert_revoke_hash() 685 tid_t sequence) in jbd2_journal_set_revoke() argument 693 if (tid_gt(sequence, record->sequence)) in jbd2_journal_set_revoke() 694 record->sequence = sequence; in jbd2_journal_set_revoke() 697 return insert_revoke_hash(journal, blocknr, sequence); in jbd2_journal_set_revoke() 709 tid_t sequence) in jbd2_journal_test_revoke() argument 716 if (tid_gt(sequence, record->sequence)) in jbd2_journal_test_revoke()
|
/linux-6.6.21/fs/xfs/ |
D | xfs_log_cil.c | 194 ctx->sequence = ++cil->xc_current_sequence; in xlog_cil_ctx_switch() 214 log->l_cilp->xc_ctx->sequence = 1; in xlog_cil_init_post_recovery() 417 lv->lv_item->li_seq = log->l_cilp->xc_ctx->sequence; in xfs_cil_prepare_item() 856 xfs_csn_t sequence, in xlog_cil_order_write() argument 878 if (ctx->sequence >= sequence) in xlog_cil_order_write() 915 error = xlog_cil_order_write(ctx->cil, ctx->sequence, _START_RECORD); in xlog_cil_write_chain() 953 error = xlog_cil_order_write(ctx->cil, ctx->sequence, _COMMIT_RECORD); in xlog_cil_write_commit_record() 1146 ASSERT(push_seq <= ctx->sequence); in xlog_cil_push_work() 1176 if (push_seq < ctx->sequence) { in xlog_cil_push_work() 1606 lip->li_ops->iop_committing(lip, cil->xc_ctx->sequence); in xlog_cil_commit() [all …]
|
/linux-6.6.21/include/trace/events/ |
D | v4l2.h | 123 __field(u32, sequence) 144 __entry->sequence = buf->sequence; 167 __entry->sequence 200 __field(u32, sequence) 221 __entry->sequence = vbuf->sequence; 241 __entry->sequence
|
/linux-6.6.21/drivers/scsi/ |
D | mesh.c | 314 (mr->count_hi << 8) + mr->count_lo, mr->sequence, in mesh_dump_regs() 361 out_8(&mr->sequence, SEQ_RESETMESH); in mesh_init() 385 out_8(&mr->sequence, SEQ_FLUSHFIFO); in mesh_init() 389 out_8(&mr->sequence, SEQ_ENBRESEL); in mesh_init() 439 out_8(&mr->sequence, SEQ_ENBRESEL); in mesh_start_cmd() 491 out_8(&mr->sequence, SEQ_DISRESEL); in mesh_start_cmd() 504 out_8(&mr->sequence, SEQ_ARBITRATE); in mesh_start_cmd() 518 out_8(&mr->sequence, SEQ_RESETMESH); in mesh_start_cmd() 523 out_8(&mr->sequence, SEQ_ENBRESEL); in mesh_start_cmd() 612 out_8(&ms->mesh->sequence, SEQ_ENBRESEL); in mesh_done() [all …]
|
/linux-6.6.21/drivers/gpu/drm/nouveau/nvkm/engine/pm/ |
D | nv40.c | 64 if (nv40pm->sequence != pm->sequence) { in nv40_perfctr_next() 66 nv40pm->sequence = pm->sequence; in nv40_perfctr_next()
|
/linux-6.6.21/drivers/media/test-drivers/vivid/ |
D | vivid-meta-cap.c | 168 buf->vb.sequence = dev->meta_cap_seq_count; in vivid_meta_cap_fillbuff() 170 buf->vb.sequence /= 2; in vivid_meta_cap_fillbuff() 174 meta->sof = buf->vb.sequence * 30; in vivid_meta_cap_fillbuff() 178 if ((buf->vb.sequence % 2) == 0) in vivid_meta_cap_fillbuff() 195 meta->buf[buf_off + 4] = (buf->vb.sequence * 30) % 1000; in vivid_meta_cap_fillbuff()
|