| /linux-6.15/arch/parisc/kernel/ |
| H A D | perf_asm.S | 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 257 ; RDR 9 read sequence [all …]
|
| /linux-6.15/tools/testing/selftests/bpf/progs/ |
| H A 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.15/lib/zstd/decompress/ |
| H A D | zstd_decompress_block.c | 909 BYTE* const oend, seq_t sequence, in ZSTD_execSequenceEnd() argument 914 size_t const sequenceLength = sequence.litLength + sequence.matchLength; in ZSTD_execSequenceEnd() 962 size_t const sequenceLength = sequence.litLength + sequence.matchLength; in ZSTD_execSequenceEndSplitLitBuffer() 1003 BYTE* const oend, seq_t sequence, in ZSTD_execSequence() argument 1008 size_t const sequenceLength = sequence.litLength + sequence.matchLength; in ZSTD_execSequence() 1073 assert(sequence.matchLength >= 1); in ZSTD_execSequence() 1092 if (sequence.matchLength > 8) { in ZSTD_execSequence() 1107 size_t const sequenceLength = sequence.litLength + sequence.matchLength; in ZSTD_execSequenceSplitLitBuffer() 1165 assert(sequence.matchLength >= 1); in ZSTD_execSequenceSplitLitBuffer() 1184 if (sequence.matchLength > 8) { in ZSTD_execSequenceSplitLitBuffer() [all …]
|
| /linux-6.15/drivers/net/arcnet/ |
| H A D | rfc1201.c | 173 soft->sequence); in rx() 180 in->sequence = soft->sequence; in rx() 259 if (in->skb && in->sequence != soft->sequence) { in rx() 261 saddr, in->sequence, soft->sequence, in rx() 275 soft->sequence); in rx() 280 in->sequence = soft->sequence; in rx() 318 soft->sequence, in rx() 339 soft->sequence); in rx() 424 soft->sequence = htons(lp->rfc1201.sequence++); in build_header() 501 pkt->soft.rfc1201.sequence); in prepare_tx() [all …]
|
| /linux-6.15/drivers/gpu/drm/nouveau/nvkm/subdev/bus/ |
| H A 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.15/drivers/gpu/drm/nouveau/nvkm/subdev/fb/ |
| H A 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.15/Documentation/filesystems/ext4/ |
| H A 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.15/arch/riscv/kernel/ |
| H A D | paravirt.c | 94 __le32 sequence; in pv_time_steal_clock() local 102 sequence = READ_ONCE(st->sequence); in pv_time_steal_clock() 106 } while ((le32_to_cpu(sequence) & 1) || in pv_time_steal_clock() 107 sequence != READ_ONCE(st->sequence)); in pv_time_steal_clock()
|
| /linux-6.15/drivers/media/test-drivers/visl/ |
| H A D | visl-dec.c | 291 run->dst->sequence, in visl_tpg_fill_sequence() 356 frame_dprintk(ctx->dev, run->dst->sequence, ""); in visl_tpg_fill() 362 frame_dprintk(ctx->dev, run->dst->sequence, ""); in visl_tpg_fill() 373 frame_dprintk(ctx->dev, run->dst->sequence, ""); in visl_tpg_fill() 404 frame_dprintk(ctx->dev, run->dst->sequence, ""); in visl_tpg_fill() 436 frame_dprintk(ctx->dev, run->dst->sequence, ""); in visl_tpg_fill() 466 frame_dprintk(ctx->dev, run->dst->sequence, ""); in visl_tpg_fill() 576 run.dst->sequence = ctx->q_data[V4L2_M2M_DST].sequence++; in visl_device_run() 577 run.src->sequence = ctx->q_data[V4L2_M2M_SRC].sequence++; in visl_device_run() 623 frame_dprintk(ctx->dev, run.dst->sequence, in visl_device_run() [all …]
|
| /linux-6.15/lib/zstd/compress/ |
| H A D | zstd_ldm.c | 645 assert(sequence.offset > 0); in maybeSplitSequence() 647 if (remaining >= sequence.litLength + sequence.matchLength) { in maybeSplitSequence() 649 return sequence; in maybeSplitSequence() 653 sequence.offset = 0; in maybeSplitSequence() 654 } else if (remaining < sequence.litLength + sequence.matchLength) { in maybeSplitSequence() 655 sequence.matchLength = remaining - sequence.litLength; in maybeSplitSequence() 657 sequence.offset = 0; in maybeSplitSequence() 662 return sequence; in maybeSplitSequence() 715 if (sequence.offset == 0) in ZSTD_ldm_blockCompress() 718 assert(ip + sequence.litLength + sequence.matchLength <= iend); in ZSTD_ldm_blockCompress() [all …]
|
| /linux-6.15/Documentation/locking/ |
| H A 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 24 the end of the write side critical section the sequence count becomes 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 110 The following sequence counters with associated locks are defined: 118 The sequence counter read and write APIs can take either a plain 144 Latch sequence counters (``seqcount_latch_t``) [all …]
|
| /linux-6.15/security/selinux/ |
| H A 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.15/include/linux/ |
| H A D | seqlock.h | 48 s->sequence = 0; in __seqcount_init() 173 seq = smp_load_acquire(&s->seqcount.sequence); \ 211 return smp_load_acquire(&s->sequence); in __seqprop_sequence() 391 return unlikely(READ_ONCE(s->sequence) != start); 431 s->sequence++; in do_raw_write_seqcount_begin() 452 s->sequence++; in do_raw_write_seqcount_end() 574 s->sequence++; in do_raw_write_seqcount_barrier() 576 s->sequence++; in do_raw_write_seqcount_barrier() 595 s->sequence+=2; in do_write_seqcount_invalidate() 644 return READ_ONCE(s->seqcount.sequence); in raw_read_seqcount_latch() [all …]
|
| /linux-6.15/lib/xz/ |
| H A D | xz_dec_stream.c | 32 } sequence; member 102 } sequence; member 306 switch (s->index.sequence) { in dec_index() 559 switch (s->sequence) { in dec_main() 579 s->sequence = SEQ_BLOCK_START; in dec_main() 595 s->sequence = SEQ_INDEX; in dec_main() 608 s->sequence = SEQ_BLOCK_HEADER; in dec_main() 651 s->sequence = SEQ_BLOCK_CHECK; in dec_main() 667 s->sequence = SEQ_BLOCK_START; in dec_main() 699 s->sequence = SEQ_INDEX_CRC32; in dec_main() [all …]
|
| /linux-6.15/drivers/net/wireless/broadcom/brcm80211/brcmsmac/ |
| H A 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.15/arch/riscv/kvm/ |
| H A D | vcpu_sbi_sta.c | 33 u32 sequence; in kvm_riscv_vcpu_record_steal_time() local 55 offsetof(struct sbi_sta_struct, sequence)); in kvm_riscv_vcpu_record_steal_time() 62 sequence = le32_to_cpu(sequence_le); in kvm_riscv_vcpu_record_steal_time() 63 sequence += 1; in kvm_riscv_vcpu_record_steal_time() 65 if (WARN_ON(put_user(cpu_to_le32(sequence), sequence_ptr))) in kvm_riscv_vcpu_record_steal_time() 75 sequence += 1; in kvm_riscv_vcpu_record_steal_time() 76 WARN_ON(put_user(cpu_to_le32(sequence), sequence_ptr)); in kvm_riscv_vcpu_record_steal_time()
|
| /linux-6.15/include/clocksource/ |
| H A D | hyperv_timer.h | 48 u32 sequence; in hv_read_tsc_page_tsc() local 67 sequence = READ_ONCE(tsc_pg->tsc_sequence); in hv_read_tsc_page_tsc() 68 if (!sequence) in hv_read_tsc_page_tsc() 86 } while (READ_ONCE(tsc_pg->tsc_sequence) != sequence); in hv_read_tsc_page_tsc()
|
| /linux-6.15/Documentation/ABI/testing/ |
| H A 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.15/fs/jbd2/ |
| H A 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.15/drivers/gpu/drm/nouveau/ |
| H A 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()
|
| /linux-6.15/lib/ |
| H A 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() 155 seq = read_seqcount_begin(&p->sequence); in fprop_fraction_percpu() 159 } while (read_seqcount_retry(&p->sequence, seq)); in fprop_fraction_percpu()
|
| /linux-6.15/include/trace/events/ |
| H A 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.15/drivers/scsi/ |
| H A D | mesh.c | 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() 808 out_8(&mr->sequence, SEQ_BUSFREE); in start_phase() 913 out_8(&mr->sequence, SEQ_ENBRESEL); in reselected() 1010 out_8(&mr->sequence, SEQ_ENBRESEL); in handle_reset() 1085 out_8(&mr->sequence, mr->sequence); in handle_error() [all …]
|
| /linux-6.15/io_uring/ |
| H A D | cancel.h | 35 static inline bool io_cancel_match_sequence(struct io_kiocb *req, int sequence) in io_cancel_match_sequence() argument 37 if (req->cancel_seq_set && sequence == req->work.cancel_seq) in io_cancel_match_sequence() 41 req->work.cancel_seq = sequence; in io_cancel_match_sequence()
|
| /linux-6.15/fs/xfs/ |
| H A D | xfs_log_cil.c | 208 log->l_cilp->xc_ctx->sequence = 1; in xlog_cil_init_post_recovery() 1022 xfs_csn_t sequence, in xlog_cil_order_write() argument 1044 if (ctx->sequence >= sequence) in xlog_cil_order_write() 1319 ASSERT(push_seq <= ctx->sequence); in xlog_cil_push_work() 1349 if (push_seq < ctx->sequence) { in xlog_cil_push_work() 1786 *commit_seq = cil->xc_ctx->sequence; in xlog_cil_commit() 1827 xfs_csn_t sequence) in xlog_cil_force_seq() argument 1835 if (!sequence) in xlog_cil_force_seq() 1836 sequence = cil->xc_current_sequence; in xlog_cil_force_seq() 1862 if (ctx->sequence > sequence) in xlog_cil_force_seq() [all …]
|