Home
last modified time | relevance | path

Searched full:merged (Results 1 – 25 of 873) sorted by relevance

12345678910>>...35

/kernel/linux/linux-6.6/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()
94 /* Trigger the merged fence */ in test_merge_stress_random_merge()
/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()
94 /* Trigger the merged fence */ in test_merge_stress_random_merge()
/kernel/linux/linux-6.6/tools/perf/tests/
Dmaps.c17 static int check_maps(struct map_def *merged, unsigned int size, struct maps *maps) in check_maps() argument
30 if (map__start(map) != merged[i].start || in check_maps()
31 map__end(map) != merged[i].end || in check_maps()
32 strcmp(map__dso(map)->name, merged[i].name) || in check_maps()
43 merged[i].start, merged[i].end, merged[i].name); in check_maps()
/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-6.6/Documentation/filesystems/
Doverlayfs.rst90 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 …]
Dxfs-maintainer-entry-profile.rst10 Patches are generally merged to the for-next branch of the appropriate
12 After a testing period, the for-next branch is merged to the master
15 Kernel code are merged to the xfs-linux tree[0].
16 Userspace code are merged to the xfsprogs tree[1].
17 Test cases are merged to the xfstests tree[2].
18 Ondisk format documentation are merged to the xfs-documentation tree[3].
110 These patches will be merged back to the for-next branch.
/kernel/linux/linux-6.6/Documentation/admin-guide/mm/
Dksm.rst26 KSM's merged pages were originally locked into kernel memory, but can now
46 unmerges whatever it merged in that range. Note: this unmerging call
92 specifies if pages from different NUMA nodes can be merged.
109 * set to 0 to stop ksmd from running but keep merged pages,
111 * set to 2 to stop ksmd and unmerge all pages currently merged, but
120 empty pages are merged with the kernel zero page(s) instead of
128 effective for pages merged after the change.
202 be merged, but some may not be abled to be merged after being checked
/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-6.6/fs/btrfs/
Dextent_map.h28 /* This em is merged from two or more physically adjacent ems */
47 * Generation of the extent map, for merged em it's the highest
48 * generation of all merged ems.
49 * For non-merged extents, it's from btrfs_file_extent_item::generation.
/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-6.6/Documentation/ABI/testing/
Dprocfs-diskstats14 5 reads merged
18 9 writes merged
31 16 discards merged
/kernel/linux/linux-5.10/Documentation/ABI/testing/
Dprocfs-diskstats14 5 reads merged
18 9 writes merged
31 16 discards merged
/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.
/kernel/linux/linux-6.6/Documentation/process/
D6.Followthrough.rst137 burner so that the remaining patches can be worked into shape and merged.
146 merged into the mainline kernel. Congratulations! Once the celebration is
154 longer any question of your code being merged. Resist that temptation,
171 well make it harder for you to get work merged in the future.
187 after it's merged. The next time you post a patch, they will be evaluating
213 chances are that one of the two patches will not be merged, and "mine was
219 long after they have forgotten whose patch actually got merged.
/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-6.6/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-6.6/tools/testing/selftests/mm/
Dksm_tests.c177 " -C evaluate the time required to break COW of merged pages.\n\n"); in print_help()
295 * there are 'leftover' pages that cannot be merged. For example, if there in assert_ksm_pages_count()
297 * merged and the 11th page won't be affected. As a result, when the number in assert_ksm_pages_count()
366 /* verify that the right number of pages are merged */ in check_ksm_merge()
408 /* check that unmerging was successful and 0 pages are currently merged */ in check_ksm_unmerge()
444 * verify that the right number of pages are merged: in check_ksm_zero_page_merge()
445 * 1) if use_zero_pages is set to 1, empty pages are merged in check_ksm_zero_page_merge()
448 * and merged as usual. in check_ksm_zero_page_merge()
528 * verify that the right number of pages are merged: in check_ksm_numa_merge()
529 * 1) if merge_across_nodes was enabled, 2 duplicate pages will be merged; in check_ksm_numa_merge()
[all …]
/kernel/linux/linux-6.6/drivers/net/ethernet/netronome/nfp/flower/
Dconntrack.h50 * @tc_merge_tb: The table of merged tc flows
51 * @tc_merge_count: Keep count of the number of merged tc entries
56 * @nft_merge_tb: The table of merged tc+nft flows
57 * @nft_merge_count: Keep count of the number of merged tc+nft entries
156 * @children: List of nft merged entries
/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-6.6/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-6.6/net/batman-adv/
Dfragmentation.c215 * exceeds the maximum size of one merged packet. Don't allow in batadv_frag_insert_packet()
245 * Return: the merged skb or NULL on error.
304 * There are three possible outcomes: 1) Packet is merged: Return true and
305 * set *skb to merged packet; 2) Packet is buffered: Return true and set *skb
308 * Return: true when the packet is merged or buffered, false when skb is not
338 * batadv_frag_skb_fwd() - forward fragments that would exceed MTU when merged
343 * Look up the next-hop of the fragments payload and check if the merged packet
369 /* Forward the fragment, if the merged packet would be too big to in batadv_frag_skb_fwd()

12345678910>>...35