Home
last modified time | relevance | path

Searched refs:merged (Results 1 – 25 of 113) sorted by relevance

12345

/kernel/linux/linux-5.10/tools/testing/selftests/sync/
Dsync_wait.c35 int fenceA, fenceB, fenceC, merged; in test_fence_multi_timeline_wait() local
46 merged = sync_merge("mergeFence", fenceB, fenceA); in test_fence_multi_timeline_wait()
47 merged = sync_merge("mergeFence", fenceC, merged); in test_fence_multi_timeline_wait()
49 valid = sw_sync_fence_is_valid(merged); in test_fence_multi_timeline_wait()
53 active = sync_fence_count_with_status(merged, FENCE_STATUS_ACTIVE); in test_fence_multi_timeline_wait()
56 ret = sync_wait(merged, 0); in test_fence_multi_timeline_wait()
61 active = sync_fence_count_with_status(merged, FENCE_STATUS_ACTIVE); in test_fence_multi_timeline_wait()
62 signaled = sync_fence_count_with_status(merged, FENCE_STATUS_SIGNALED); in test_fence_multi_timeline_wait()
67 active = sync_fence_count_with_status(merged, FENCE_STATUS_ACTIVE); in test_fence_multi_timeline_wait()
68 signaled = sync_fence_count_with_status(merged, FENCE_STATUS_SIGNALED); in test_fence_multi_timeline_wait()
[all …]
Dsync_merge.c34 int fence, valid, merged; in test_fence_merge_same_fence() local
44 merged = sync_merge("mergeFence", fence, fence); in test_fence_merge_same_fence()
48 ASSERT(sync_fence_count_with_status(merged, FENCE_STATUS_SIGNALED) == 0, in test_fence_merge_same_fence()
52 ASSERT(sync_fence_count_with_status(merged, FENCE_STATUS_SIGNALED) == 1, in test_fence_merge_same_fence()
55 sw_sync_fence_destroy(merged); in test_fence_merge_same_fence()
Dsync_stress_merge.c43 int fence, tmpfence, merged, valid; in test_merge_stress_random_merge() local
76 merged = sync_merge("merge", tmpfence, fence); in test_merge_stress_random_merge()
79 fence = merged; in test_merge_stress_random_merge()
81 valid = sw_sync_fence_is_valid(merged); in test_merge_stress_random_merge()
Dsync_stress_consumer.c108 int fence, merged, tmp, valid, it, i; in mpcs_consumer_thread() local
119 merged = sync_merge("name", tmp, fence); in mpcs_consumer_thread()
122 fence = merged; in mpcs_consumer_thread()
/kernel/linux/linux-5.10/tools/perf/tests/
Dmaps.c16 static int check_maps(struct map_def *merged, unsigned int size, struct maps *maps) in check_maps() argument
25 TEST_ASSERT_VAL("wrong map start", map->start == merged[i].start); in check_maps()
26 TEST_ASSERT_VAL("wrong map end", map->end == merged[i].end); in check_maps()
27 TEST_ASSERT_VAL("wrong map name", !strcmp(map->dso->name, merged[i].name)); in check_maps()
/kernel/linux/linux-5.10/Documentation/ABI/testing/
Dprocfs-diskstats14 5 reads merged
18 9 writes merged
31 16 discards merged
Dsysfs-kernel-mm-ksm52 When it is set to 0 only pages from the same node are merged,
53 otherwise pages from all nodes can be merged together (default).
/kernel/linux/linux-5.10/Documentation/filesystems/
Doverlayfs.rst92 merged with the 'upper' object.
117 Where both upper and lower objects are directories, a merged directory
121 "upperdir" are combined into a merged directory:
124 workdir=/work /merged
129 Then whenever a lookup is requested in such a merged directory, the
132 actual lookups find directories, both are stored and a merged
136 Only the lists of names from directories are merged. Other content
149 When a whiteout is found in the upper level of a merged directory, any
160 When a 'readdir' request is made on a merged directory, the upper and
161 lower directories are each read and the name lists merged in the
[all …]
/kernel/linux/linux-5.10/Documentation/admin-guide/mm/
Dksm.rst28 KSM's merged pages were originally locked into kernel memory, but can now
48 unmerges whatever it merged in that range. Note: this unmerging call
94 specifies if pages from different NUMA nodes can be merged.
111 * set to 0 to stop ksmd from running but keep merged pages,
113 * set to 2 to stop ksmd and unmerge all pages currently merged, but
122 empty pages are merged with the kernel zero page(s) instead of
130 effective for pages merged after the change.
/kernel/linux/linux-5.10/Documentation/block/
Dstat.rst30 read merges requests number of read I/Os merged with in-queue I/O
34 write merges requests number of write I/Os merged with in-queue I/O
41 discard merges requests number of discard I/Os merged with in-queue I/O
64 These values increment when an I/O request is merged with an
/kernel/linux/linux-5.10/drivers/hwtracing/stm/
Dpolicy.c209 struct configfs_attribute **merged; in get_policy_node_type() local
216 merged = memcat_p(stp_policy_node_attrs, attrs); in get_policy_node_type()
217 if (!merged) { in get_policy_node_type()
222 type->ct_attrs = merged; in get_policy_node_type()
/kernel/linux/linux-5.10/tools/lib/perf/
Dcpumap.c304 struct perf_cpu_map *merged; in perf_cpu_map__merge() local
341 merged = cpu_map__trim_new(k, tmp_cpus); in perf_cpu_map__merge()
344 return merged; in perf_cpu_map__merge()
/kernel/linux/linux-5.10/drivers/md/
Ddm-stats.h21 bool merged; member
/kernel/linux/linux-5.10/Documentation/admin-guide/
Diostats.rst68 Field 2 -- # of reads merged, field 6 -- # of writes merged (unsigned long)
69 Reads and writes which are adjacent to each other may be merged for
84 Field 6 -- # of writes merged (unsigned long)
115 Field 13 -- # of discards merged (unsigned long)
192 eventual merges. As requests can be merged across partition, this could lead
/kernel/linux/linux-5.10/block/
Dbfq-cgroup.c238 blkg_rwstat_add(&bfqg->stats.merged, op, 1); in bfqg_stats_update_io_merged()
366 blkg_rwstat_reset(&stats->merged); in bfqg_stats_reset()
387 blkg_rwstat_add_aux(&to->merged, &from->merged); in bfqg_stats_add_aux()
448 blkg_rwstat_exit(&stats->merged); in bfqg_stats_exit()
469 if (blkg_rwstat_init(&stats->merged, gfp) || in bfqg_stats_init()
1338 .private = offsetof(struct bfq_group, stats.merged),
1381 .private = offsetof(struct bfq_group, stats.merged),
Dkyber-iosched.c570 bool merged; in kyber_bio_merge() local
573 merged = blk_bio_list_merge(hctx->queue, rq_list, bio, nr_segs); in kyber_bio_merge()
576 return merged; in kyber_bio_merge()
/kernel/linux/linux-5.10/Documentation/nvdimm/
Dmaintainer-entry-profile.rst10 patch acceptance and upstream merge. Patches are merged to either the
19 are cases where patches are more suitable to be merged through a
/kernel/linux/linux-5.10/Documentation/process/
D6.Followthrough.rst130 burner so that the remaining patches can be worked into shape and merged.
139 merged into the mainline kernel. Congratulations! Once the celebration is
147 longer any question of your code being merged. Resist that temptation,
164 well make it harder for you to get work merged in the future.
180 after it's merged. The next time you post a patch, they will be evaluating
206 chances are that one of the two patches will not be merged, and "mine was
212 long after they have forgotten whose patch actually got merged.
D1.Intro.rst12 merged into the official ("mainline") kernel, including automatic
42 assuming that the job is done when a patch is merged into the mainline.
132 - Code which has been merged into the mainline kernel is available to all
151 which has been merged into the mainline has significantly lower
173 exists. Should that happen, getting your code merged will become much
243 to the kernel. All code merged into the mainline kernel retains its
Dindex.rst14 it much easier for you to get your changes merged with a minimum of
/kernel/linux/linux-5.10/Documentation/i2c/busses/
Dscx200_acb.rst7 The driver supersedes the older, never merged driver named i2c-nscacb.
/kernel/linux/linux-5.10/Documentation/arm/samsung-s3c24xx/
Deb2410itx.rst41 The NAND and NOR support has been merged from the linux-mtd project.
/kernel/linux/linux-5.10/Documentation/devicetree/bindings/clock/ti/
Dcomposite.txt17 merged to this clock. The component clocks shall be of one of the
/kernel/linux/linux-5.10/Documentation/userspace-api/media/v4l/
Ddev-event.rst43 the oldest event that is about to be dropped will be merged with the
/kernel/linux/linux-5.10/Documentation/doc-guide/
Dmaintainer-profile.rst43 slow. I try to always send out a notification when a patch is merged (or

12345