/Linux-v6.1/tools/bpf/bpftool/Documentation/ |
D | bpftool-btf.rst | 100 [1] PTR '(anon)' type_id=2 105 [4] PTR '(anon)' type_id=5 155 [1] PTR '(anon)' type_id=2 167 [5] CONST '(anon)' type_id=6 170 [8] ARRAY '(anon)' type_id=7 index_type_id=9 nr_elems=16 172 [10] RESTRICT '(anon)' type_id=11 173 [11] PTR '(anon)' type_id=12 174 [12] CONST '(anon)' type_id=13 179 [15] PTR '(anon)' type_id=16 180 [16] VOLATILE '(anon)' type_id=17 [all …]
|
D | bpftool-gen.rst | 389 [2] CONST '(anon)' type_id=1 390 [3] VOLATILE '(anon)' type_id=1 391 [4] ARRAY '(anon)' type_id=1 index_type_id=21 nr_elems=2 392 [5] PTR '(anon)' type_id=8 393 [6] CONST '(anon)' type_id=5 395 [8] CONST '(anon)' type_id=7 403 [1] PTR '(anon)' type_id=2 427 [4] ARRAY '(anon)' type_id=5 index_type_id=8 nr_elems=6 430 [7] PTR '(anon)' type_id=3
|
/Linux-v6.1/tools/testing/selftests/vm/ |
D | soft-dirty.c | 124 static void test_mprotect(int pagemap_fd, int pagesize, bool anon) in test_mprotect() argument 131 if (anon) { in test_mprotect() 153 __func__, type[anon]); in test_mprotect() 157 __func__, type[anon]); in test_mprotect() 161 __func__, type[anon]); in test_mprotect() 165 __func__, type[anon]); in test_mprotect() 169 __func__, type[anon]); in test_mprotect() 173 if (!anon) in test_mprotect()
|
D | run_vmtests.sh | 125 run_test ./userfaultfd anon${mod} 20 16
|
/Linux-v6.1/tools/testing/selftests/bpf/progs/ |
D | test_core_reloc_enumval.c | 50 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-v6.1/mm/ |
D | page_table_check.c | 65 bool anon; in page_table_check_clear() local 72 anon = PageAnon(page); in page_table_check_clear() 77 if (anon) { in page_table_check_clear() 101 bool anon; in page_table_check_set() local 108 anon = PageAnon(page); in page_table_check_set() 113 if (anon) { in page_table_check_set()
|
D | rmap.c | 1537 bool anon = folio_test_anon(folio); in try_to_unmap_one() local 1563 if (!anon) { in try_to_unmap_one() 1932 bool anon = folio_test_anon(folio); in try_to_migrate_one() local 1953 if (!anon) { in try_to_migrate_one()
|
D | vmscan.c | 2861 unsigned long free, anon; in prepare_scan_count() local 2882 anon = node_page_state(pgdat, NR_INACTIVE_ANON); in prepare_scan_count() 2887 anon >> sc->priority; in prepare_scan_count()
|
/Linux-v6.1/tools/testing/selftests/cgroup/ |
D | test_kmem.c | 165 long current, slab, anon, file, kernel_stack, pagetables, percpu, sock, sum; in test_kmem_memcg_deletion() local 184 anon = cg_read_key_long(parent, "memory.stat", "anon "); in test_kmem_memcg_deletion() 190 if (current < 0 || slab < 0 || anon < 0 || file < 0 || in test_kmem_memcg_deletion() 194 sum = slab + anon + file + kernel_stack + pagetables + percpu + sock; in test_kmem_memcg_deletion() 201 printf("anon = %ld\n", anon); in test_kmem_memcg_deletion()
|
D | test_memcontrol.c | 97 long anon, current; in alloc_anon_50M_check() local 111 anon = cg_read_key_long(cgroup, "memory.stat", "anon "); in alloc_anon_50M_check() 112 if (anon < 0) in alloc_anon_50M_check() 115 if (!values_close(anon, current, 3)) in alloc_anon_50M_check()
|
/Linux-v6.1/tools/testing/selftests/user_events/ |
D | ftrace_test.c | 303 void *anon; in TEST_F() local 308 anon = mmap(NULL, l, PROT_READ, MAP_PRIVATE | MAP_ANONYMOUS, -1, 0); in TEST_F() 309 ASSERT_NE(MAP_FAILED, anon); in TEST_F() 313 io[1].iov_base = anon; in TEST_F() 325 ASSERT_EQ(0, madvise(anon, l, MADV_DONTNEED)); in TEST_F() 327 ASSERT_EQ(0, munmap(anon, l)); in TEST_F()
|
/Linux-v6.1/tools/perf/util/ |
D | map.c | 131 int anon, no_dso, vdso, android; in map__new() local 134 anon = is_anon_memory(filename) || flags & MAP_HUGETLB; in map__new() 141 if ((anon || no_dso) && nsi && (prot & PROT_EXEC)) { in map__new() 173 if (anon || no_dso) { in map__new()
|
/Linux-v6.1/drivers/gpu/drm/i915/gem/ |
D | i915_gem_mman.c | 948 struct file *anon; in i915_gem_mmap() local 990 anon = mmap_singleton(to_i915(dev)); in i915_gem_mmap() 991 if (IS_ERR(anon)) { in i915_gem_mmap() 993 return PTR_ERR(anon); in i915_gem_mmap() 1006 vma_set_file(vma, anon); in i915_gem_mmap() 1008 fput(anon); in i915_gem_mmap()
|
/Linux-v6.1/arch/powerpc/boot/dts/ |
D | charon.dts | 15 model = "anon,charon"; 16 compatible = "anon,charon";
|
/Linux-v6.1/fs/proc/ |
D | task_mmu.c | 32 unsigned long text, lib, swap, anon, file, shmem; in task_mem() local 35 anon = get_mm_counter(mm, MM_ANONPAGES); in task_mem() 49 hiwater_rss = total_rss = anon + file + shmem; in task_mem() 65 SEQ_PUT_DEC(" kB\nRssAnon:\t", anon); in task_mem() 1770 unsigned long anon; member 1803 md->anon += nr_pages; in gather_stats() 1977 if (md->anon) in show_numa_map() 1978 seq_printf(m, " anon=%lu", md->anon); in show_numa_map() 1983 if (md->pages != md->anon && md->pages != md->dirty) in show_numa_map()
|
/Linux-v6.1/Documentation/ABI/testing/ |
D | procfs-smaps_rollup | 13 the sum of the Pss field of each type (anon, file, shmem).
|
/Linux-v6.1/Documentation/mm/ |
D | multigen_lru.rst | 84 ``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
|
/Linux-v6.1/Documentation/admin-guide/cgroup-v1/ |
D | memcg_test.rst | 136 Each memcg has its own vector of LRUs (inactive anon, active anon,
|
D | memory.rst | 191 All mapped anon pages (RSS) and cache pages (Page Cache) are accounted. 535 anon page(RSS) or cache page(Page Cache) to the cgroup. 540 writeback # of bytes of file/anon cache that are queued for syncing to 634 Each memcg's numa_stat file includes "total", "file", "anon" and "unevictable" 642 anon=<total anon pages> N0=<node 0 pages> N1=<node 1 pages> ... 643 unevictable=<total anon pages> N0=<node 0 pages> N1=<node 1 pages> ... 646 The "total" count is sum of file + anon + unevictable.
|
/Linux-v6.1/Documentation/filesystems/ |
D | proc.rst | 434 [anon:<name>] an anonymous mapping that has been 596 mapping identifies the type (anon, file, or shmem) of all pages it contains. 640 00600000 default file=/usr/local/bin/app anon=1 dirty=1 N3=1 kernelpagesize_kB=4 642 320621f000 default file=/lib64/ld-2.12.so anon=1 dirty=1 N3=1 kernelpagesize_kB=4 643 3206220000 default file=/lib64/ld-2.12.so anon=1 dirty=1 N3=1 kernelpagesize_kB=4 644 3206221000 default anon=1 dirty=1 N3=1 kernelpagesize_kB=4 647 3206b8a000 default file=/lib64/libc-2.12.so anon=2 dirty=2 N3=2 kernelpagesize_kB=4 648 3206b8e000 default file=/lib64/libc-2.12.so anon=1 dirty=1 N3=1 kernelpagesize_kB=4 649 3206b8f000 default anon=3 dirty=3 active=1 N3=3 kernelpagesize_kB=4 650 7f4dc10a2000 default anon=3 dirty=3 N3=3 kernelpagesize_kB=4 [all …]
|
/Linux-v6.1/arch/mips/include/asm/ |
D | sgiarcs.h | 73 net_peripheral, misc_peripheral, anon enumerator
|
/Linux-v6.1/Documentation/admin-guide/mm/ |
D | multigen_lru.rst | 128 it forces the scan of anon pages when swap is off, and vice versa.
|
D | pagemap.rst | 27 * Bit 61 page is file-page or shared-anon (since 3.5)
|
/Linux-v6.1/fs/ |
D | namespace.c | 3416 static struct mnt_namespace *alloc_mnt_ns(struct user_namespace *user_ns, bool anon) in alloc_mnt_ns() argument 3431 if (!anon) { in alloc_mnt_ns() 3440 if (!anon) in alloc_mnt_ns()
|
/Linux-v6.1/tools/perf/Documentation/ |
D | perf-config.txt | 525 # Samples: 7K of event 'anon group { ref-cycles, cycles }'
|