/linux-6.3-rc2/fs/btrfs/ |
A D | ordered-data.c | 646 ordered->disk_bytenr + ordered->disk_num_bytes <= range_start) { in btrfs_wait_ordered_extents() 790 if (!ordered) in btrfs_wait_ordered_range() 796 if (ordered->file_offset + ordered->num_bytes <= start) { in btrfs_wait_ordered_range() 801 end = ordered->file_offset; in btrfs_wait_ordered_range() 1050 if (!ordered) { in btrfs_lock_and_flush_ordered_range() 1082 if (!ordered) in btrfs_try_lock_ordered_range() 1110 ordered->compress_type); in clone_ordered_extent() 1126 node = &ordered->rb_node; in btrfs_split_ordered_extent() 1132 ordered->file_offset += pre; in btrfs_split_ordered_extent() 1139 node = tree_insert(&tree->tree, ordered->file_offset, &ordered->rb_node); in btrfs_split_ordered_extent() [all …]
|
A D | tree-log.h | 60 struct btrfs_ordered_extent *ordered; in btrfs_release_log_ctx_extents() local 65 list_for_each_entry_safe(ordered, tmp, &ctx->ordered_extents, log_list) { in btrfs_release_log_ctx_extents() 66 list_del_init(&ordered->log_list); in btrfs_release_log_ctx_extents() 67 btrfs_put_ordered_extent(ordered); in btrfs_release_log_ctx_extents()
|
A D | inode.c | 2670 ordered_end = ordered->disk_bytenr + ordered->disk_num_bytes; in btrfs_extract_ordered_extent() 2871 if (ordered) { in btrfs_writepage_fixup_worker() 4833 if (ordered) { in btrfs_truncate_block() 8025 ordered->truncated_len = min(ordered->truncated_len, in btrfs_invalidate_folio() 8045 if (ordered) in btrfs_invalidate_folio() 8172 if (ordered) { in btrfs_page_mkwrite() 8552 if (!ordered) in btrfs_destroy_inode() 8557 ordered->file_offset, ordered->num_bytes); in btrfs_destroy_inode() 10087 if (!ordered) in btrfs_encoded_read() 10328 if (ordered) in btrfs_do_encoded_write() [all …]
|
A D | file-item.c | 784 struct btrfs_ordered_extent *ordered = NULL; in btrfs_csum_one_bio() local 812 if (!ordered) { in btrfs_csum_one_bio() 818 if (unlikely(!ordered)) { in btrfs_csum_one_bio() 834 !in_range(offset, ordered->file_offset, in btrfs_csum_one_bio() 835 ordered->num_bytes)) { in btrfs_csum_one_bio() 840 btrfs_add_ordered_sum(ordered, sums); in btrfs_csum_one_bio() 841 btrfs_put_ordered_extent(ordered); in btrfs_csum_one_bio() 851 ordered = btrfs_lookup_ordered_extent(inode, in btrfs_csum_one_bio() 853 ASSERT(ordered); /* Logic error */ in btrfs_csum_one_bio() 873 btrfs_add_ordered_sum(ordered, sums); in btrfs_csum_one_bio() [all …]
|
/linux-6.3-rc2/Documentation/devicetree/bindings/scsi/ |
A D | hisilicon-sas.txt | 22 sources; the interrupts are ordered in 3 groups, as follows: 30 The phy interrupts are ordered into groups of 3 per phy 34 The interrupts are ordered in increasing order. 35 Fatal interrupts : the fatal interrupts are ordered as follows: 39 the interrupts are ordered in 3 groups, as follows: 47 interrupt. The interrupts are ordered in increasing 50 interrupt source. The interrupts are ordered in
|
/linux-6.3-rc2/Documentation/riscv/ |
A D | uabi.rst | 26 ordered first by category, in canonical order, as listed above, then 31 extensions are listed, they will be ordered alphabetically. 35 extensions are listed, they will be ordered alphabetically. 39 ordered alphabetically.
|
/linux-6.3-rc2/include/trace/events/ |
A D | btrfs.h | 521 TP_ARGS(inode, ordered), 573 TP_ARGS(inode, ordered) 581 TP_ARGS(inode, ordered) 589 TP_ARGS(inode, ordered) 597 TP_ARGS(inode, ordered) 605 TP_ARGS(inode, ordered) 613 TP_ARGS(inode, ordered) 621 TP_ARGS(inode, ordered) 629 TP_ARGS(inode, ordered) 637 TP_ARGS(inode, ordered) [all …]
|
/linux-6.3-rc2/Documentation/devicetree/bindings/sound/ |
A D | sprd-pcm.txt | 5 - dmas: Specify the list of DMA controller phandle and DMA request line ordered pairs. 7 These strings correspond 1:1 with the ordered pairs in dmas.
|
A D | sirf-audio-port.txt | 6 - dmas: List of DMA controller phandle and DMA request line ordered pairs. 8 These strings correspond 1:1 with the ordered pairs in dmas.
|
A D | brcm,bcm2835-i2s.txt | 7 - dmas: List of DMA controller phandle and DMA request line ordered pairs. 9 These strings correspond 1:1 with the ordered pairs in dmas.
|
A D | davinci-mcbsp.txt | 20 TC channel ordered triplets. 22 These strings correspond 1:1 with the ordered pairs in dmas. The dma
|
/linux-6.3-rc2/tools/lib/subcmd/ |
A D | parse-options.c | 811 struct option *opt, *ordered, *group; in options__order() local 817 ordered = malloc(len); in options__order() 818 if (!ordered) in options__order() 820 memcpy(ordered, opts, len); in options__order() 823 for (opt = group = ordered; opt->type != OPTION_END; opt++) { in options__order() 835 return ordered; in options__order() 873 struct option *ordered; in usage_with_options_internal() local 898 ordered = options__order(opts); in usage_with_options_internal() 899 if (ordered) in usage_with_options_internal() 900 opts = ordered; in usage_with_options_internal() [all …]
|
/linux-6.3-rc2/Documentation/core-api/ |
A D | refcount-vs-atomic.rst | 67 then further stores are ordered against this operation. 123 * fully ordered --> control dependency on success for stores 139 * fully ordered --> RELEASE ordering + ACQUIRE ordering on success 152 * fully ordered --> RELEASE ordering + control dependency 167 * fully ordered --> RELEASE ordering + control dependency + hold
|
/linux-6.3-rc2/Documentation/ |
A D | atomic_t.txt | 156 atomic variable) can be fully ordered and no intermediate state is lost or 169 - RMW operations that have a return value are fully ordered; 183 Fully ordered primitives are ordered against everything prior and everything 184 subsequent. Therefore a fully ordered primitive is like having an smp_mb() 198 ordered, so it is advisable to place the barrier right next to the RMW atomic 203 provide full ordered atomics and these barriers are no-ops. 205 NOTE: when the atomic RmW ops are fully ordered, they should also imply a
|
A D | atomic_bitops.txt | 59 - RMW operations that have a return value are fully ordered. 61 - RMW operations that are conditional are fully ordered.
|
/linux-6.3-rc2/virt/kvm/ |
A D | Kconfig | 22 # Only strongly ordered architectures can select this, as it doesn't 30 # Weakly ordered architectures can only select this, advertising
|
/linux-6.3-rc2/Documentation/admin-guide/perf/ |
A D | nvidia-pmu.rst | 32 strongly-ordered (SO) PCIE write traffic to local/remote memory. Please see 62 In this config, the PMU captures read and relaxed ordered (RO) writes from 123 to local memory. For PCIE traffic, this PMU captures read and relaxed ordered 247 PCIE1 traffic represents strongly ordered (SO) writes. 248 PCIE2 traffic represents reads and relaxed ordered (RO) writes. 298 PCIE1 traffic represents strongly ordered (SO) writes. 299 PCIE2 traffic represents reads and relaxed ordered (RO) writes.
|
/linux-6.3-rc2/tools/perf/Documentation/ |
A D | perf.txt | 60 ordered-events - ordered events object debug messages
|
/linux-6.3-rc2/fs/xfs/ |
A D | xfs_log_cil.c | 280 bool ordered = false; in xlog_cil_alloc_shadow_bufs() local 295 ordered = true; in xlog_cil_alloc_shadow_bufs() 345 if (ordered) in xlog_cil_alloc_shadow_bufs() 353 if (ordered) in xlog_cil_alloc_shadow_bufs() 461 bool ordered = false; in xlog_cil_insert_format_items() local 473 ordered = true; in xlog_cil_insert_format_items() 476 if (!shadow->lv_niovecs && !ordered) in xlog_cil_insert_format_items() 485 if (ordered) in xlog_cil_insert_format_items() 506 if (ordered) { in xlog_cil_insert_format_items()
|
/linux-6.3-rc2/tools/memory-model/litmus-tests/ |
A D | CoWW+poonceonce.litmus | 7 * writes to the same variable are ordered.
|
A D | CoRR+poonceonce+Once.litmus | 7 * reads from the same variable are ordered.
|
A D | CoRW+poonceonce+Once.litmus | 7 * a given variable and a later write to that same variable are ordered.
|
A D | CoWR+poonceonce+Once.litmus | 7 * given variable and a later read from that same variable are ordered.
|
A D | README | 7 successive reads from the same variable are ordered. 12 are ordered. 17 are ordered. 21 successive writes to the same variable are ordered. 109 This is the fully ordered (via smp_mb()) version of one of 117 This is the fully ordered (again, via smp_mb() version of store
|
/linux-6.3-rc2/Documentation/ABI/testing/ |
A D | sysfs-driver-input-cros-ec-keyb | 5 ordered by the physical positions of the keys, from left
|