Home
last modified time | relevance | path

Searched refs:anon (Results 1 – 25 of 34) sorted by relevance

12

/linux-6.12.1/tools/bpf/bpftool/Documentation/
Dbpftool-btf.rst96 [1] PTR '(anon)' type_id=2
101 [4] PTR '(anon)' type_id=5
151 [1] PTR '(anon)' type_id=2
163 [5] CONST '(anon)' type_id=6
166 [8] ARRAY '(anon)' type_id=7 index_type_id=9 nr_elems=16
168 [10] RESTRICT '(anon)' type_id=11
169 [11] PTR '(anon)' type_id=12
170 [12] CONST '(anon)' type_id=13
175 [15] PTR '(anon)' type_id=16
176 [16] VOLATILE '(anon)' type_id=17
[all …]
Dbpftool-gen.rst413 [2] CONST '(anon)' type_id=1
414 [3] VOLATILE '(anon)' type_id=1
415 [4] ARRAY '(anon)' type_id=1 index_type_id=21 nr_elems=2
416 [5] PTR '(anon)' type_id=8
417 [6] CONST '(anon)' type_id=5
419 [8] CONST '(anon)' type_id=7
427 [1] PTR '(anon)' type_id=2
451 [4] ARRAY '(anon)' type_id=5 index_type_id=8 nr_elems=6
454 [7] PTR '(anon)' type_id=3
/linux-6.12.1/tools/testing/selftests/mm/
Dsoft-dirty.c127 static void test_mprotect(int pagemap_fd, int pagesize, bool anon) in test_mprotect() argument
134 if (anon) { in test_mprotect()
156 __func__, type[anon]); in test_mprotect()
160 __func__, type[anon]); in test_mprotect()
164 __func__, type[anon]); in test_mprotect()
168 __func__, type[anon]); in test_mprotect()
172 __func__, type[anon]); in test_mprotect()
176 if (!anon) in test_mprotect()
Drun_vmtests.sh300 CATEGORY="userfaultfd" run_test ${uffd_stress_bin} anon 20 16
/linux-6.12.1/tools/testing/selftests/bpf/progs/
Dtest_core_reloc_enumval.c50 anon_enum anon = 0; in test_core_enumval() local
56 out->anon_val1_exists = bpf_core_enum_value_exists(anon, ANON_ENUM_VAL1); in test_core_enumval()
64 out->anon_val1 = bpf_core_enum_value(anon, ANON_ENUM_VAL1); in test_core_enumval()
65 out->anon_val2 = bpf_core_enum_value(anon, ANON_ENUM_VAL2); in test_core_enumval()
/linux-6.12.1/mm/
Dpage_table_check.c68 bool anon; in page_table_check_clear() local
80 anon = PageAnon(page); in page_table_check_clear()
85 if (anon) { in page_table_check_clear()
108 bool anon; in page_table_check_set() local
120 anon = PageAnon(page); in page_table_check_set()
125 if (anon) { in page_table_check_set()
Drmap.c1721 bool anon = folio_test_anon(folio); in try_to_unmap_one() local
1747 if (!anon) { in try_to_unmap_one()
2097 bool anon = folio_test_anon(folio); in try_to_migrate_one() local
2118 if (!anon) { in try_to_migrate_one()
/linux-6.12.1/tools/testing/selftests/cgroup/
Dtest_kmem.c169 long current, anon, file, kernel, sock, sum; in test_kmem_memcg_deletion() local
187 anon = cg_read_key_long(parent, "memory.stat", "anon "); in test_kmem_memcg_deletion()
191 if (current < 0 || anon < 0 || file < 0 || kernel < 0 || sock < 0) in test_kmem_memcg_deletion()
194 sum = anon + file + kernel + sock; in test_kmem_memcg_deletion()
200 printf("anon = %ld\n", anon); in test_kmem_memcg_deletion()
Dtest_memcontrol.c97 long anon, current; in alloc_anon_50M_check() local
116 anon = cg_read_key_long(cgroup, "memory.stat", "anon "); in alloc_anon_50M_check()
117 if (anon < 0) in alloc_anon_50M_check()
120 if (!values_close(anon, current, 3)) in alloc_anon_50M_check()
/linux-6.12.1/tools/testing/selftests/user_events/
Dftrace_test.c401 void *anon; in TEST_F() local
409 anon = mmap(NULL, l, PROT_READ, MAP_PRIVATE | MAP_ANONYMOUS, -1, 0); in TEST_F()
410 ASSERT_NE(MAP_FAILED, anon); in TEST_F()
414 io[1].iov_base = anon; in TEST_F()
429 ASSERT_EQ(0, madvise(anon, l, MADV_DONTNEED)); in TEST_F()
431 ASSERT_EQ(0, munmap(anon, l)); in TEST_F()
/linux-6.12.1/tools/testing/selftests/prctl/
D.gitignore5 set-anon-vma-name-test
DMakefile8 disable-tsc-test set-anon-vma-name-test set-process-name
/linux-6.12.1/drivers/gpu/drm/i915/gem/
Di915_gem_mman.c994 struct file *anon; in i915_gem_object_mmap() local
1004 anon = mmap_singleton(to_i915(dev)); in i915_gem_object_mmap()
1005 if (IS_ERR(anon)) { in i915_gem_object_mmap()
1007 return PTR_ERR(anon); in i915_gem_object_mmap()
1020 vma_set_file(vma, anon); in i915_gem_object_mmap()
1022 fput(anon); in i915_gem_object_mmap()
/linux-6.12.1/tools/perf/util/
Dmap.c136 int anon, no_dso, vdso, android; in map__new() local
139 anon = is_anon_memory(filename) || flags & MAP_HUGETLB; in map__new()
144 if ((anon || no_dso) && nsi && (prot & PROT_EXEC)) { in map__new()
177 if (anon || no_dso) { in map__new()
/linux-6.12.1/arch/powerpc/boot/dts/
Dcharon.dts15 model = "anon,charon";
16 compatible = "anon,charon";
/linux-6.12.1/Documentation/ABI/testing/
Dprocfs-smaps_rollup13 the sum of the Pss field of each type (anon, file, shmem).
/linux-6.12.1/Documentation/mm/
Dmultigen_lru.rst84 ``lrugen->max_seq`` for both anon and file types as they are aged on
86 ``lrugen->min_seq[]`` separately for anon and file types as clean file
105 from anon and file types and decides which tiers from which types to
107 between anon and file types proportional to the swappiness level.
214 (PID) controller monitors refaults over anon and file types and
/linux-6.12.1/fs/proc/
Dtask_mmu.c36 unsigned long text, lib, swap, anon, file, shmem; in task_mem() local
39 anon = get_mm_counter(mm, MM_ANONPAGES); in task_mem()
53 hiwater_rss = total_rss = anon + file + shmem; in task_mem()
69 SEQ_PUT_DEC(" kB\nRssAnon:\t", anon); in task_mem()
2840 unsigned long anon; member
2874 md->anon += nr_pages; in gather_stats()
3052 if (md->anon) in show_numa_map()
3053 seq_printf(m, " anon=%lu", md->anon); in show_numa_map()
3058 if (md->pages != md->anon && md->pages != md->dirty) in show_numa_map()
/linux-6.12.1/tools/mm/
Dthpmaps279 anon = 'anon' if anons[index] else 'file'
280 stats[anon][align][order] += nr
/linux-6.12.1/Documentation/admin-guide/cgroup-v1/
Dmemcg_test.rst136 Each memcg has its own vector of LRUs (inactive anon, active anon,
Dmemory.rst213 All mapped anon pages (RSS) and cache pages (Page Cache) are accounted.
563 anon page(RSS) or cache page(Page Cache) to the cgroup.
570 writeback # of bytes of file/anon cache that are queued for syncing to
664 Each memcg's numa_stat file includes "total", "file", "anon" and "unevictable"
672 anon=<total anon pages> N0=<node 0 pages> N1=<node 1 pages> ...
673 unevictable=<total anon pages> N0=<node 0 pages> N1=<node 1 pages> ...
676 The "total" count is sum of file + anon + unevictable.
/linux-6.12.1/arch/mips/include/asm/
Dsgiarcs.h73 net_peripheral, misc_peripheral, anon enumerator
/linux-6.12.1/Documentation/filesystems/
Dproc.rst438 [anon:<name>] a private anonymous mapping that has been
617 mapping identifies the type (anon, file, or shmem) of all pages it contains.
661 00600000 default file=/usr/local/bin/app anon=1 dirty=1 N3=1 kernelpagesize_kB=4
663 320621f000 default file=/lib64/ld-2.12.so anon=1 dirty=1 N3=1 kernelpagesize_kB=4
664 3206220000 default file=/lib64/ld-2.12.so anon=1 dirty=1 N3=1 kernelpagesize_kB=4
665 3206221000 default anon=1 dirty=1 N3=1 kernelpagesize_kB=4
668 3206b8a000 default file=/lib64/libc-2.12.so anon=2 dirty=2 N3=2 kernelpagesize_kB=4
669 3206b8e000 default file=/lib64/libc-2.12.so anon=1 dirty=1 N3=1 kernelpagesize_kB=4
670 3206b8f000 default anon=3 dirty=3 active=1 N3=3 kernelpagesize_kB=4
671 7f4dc10a2000 default anon=3 dirty=3 N3=3 kernelpagesize_kB=4
[all …]
/linux-6.12.1/Documentation/admin-guide/mm/
Dmultigen_lru.rst128 it forces the scan of anon pages when swap is off, and vice versa.
Dtranshuge.rst216 (either of the per-size anon control or the top-level control are set
218 PMD-sized THP is disabled (when both the per-size anon control and the
318 required. If ``thp_anon=`` is specified at least once, any anon THP sizes

12