Home
last modified time | relevance | path

Searched refs:young (Results 1 – 21 of 21) sorted by relevance

/Linux-v6.6/mm/
Dpgtable-generic.c85 int young; in ptep_clear_flush_young() local
86 young = ptep_test_and_clear_young(vma, address, ptep); in ptep_clear_flush_young()
87 if (young) in ptep_clear_flush_young()
89 return young; in ptep_clear_flush_young()
127 int young; in pmdp_clear_flush_young() local
129 young = pmdp_test_and_clear_young(vma, address, pmdp); in pmdp_clear_flush_young()
130 if (young) in pmdp_clear_flush_young()
132 return young; in pmdp_clear_flush_young()
Dmmu_notifier.c370 int young = 0, id; in __mmu_notifier_clear_flush_young() local
377 young |= subscription->ops->clear_flush_young( in __mmu_notifier_clear_flush_young()
382 return young; in __mmu_notifier_clear_flush_young()
390 int young = 0, id; in __mmu_notifier_clear_young() local
397 young |= subscription->ops->clear_young(subscription, in __mmu_notifier_clear_young()
402 return young; in __mmu_notifier_clear_young()
409 int young = 0, id; in __mmu_notifier_test_young() local
416 young = subscription->ops->test_young(subscription, mm, in __mmu_notifier_test_young()
418 if (young) in __mmu_notifier_test_young()
424 return young; in __mmu_notifier_test_young()
Dvmscan.c3995 static bool suitable_to_scan(int total, int young) in suitable_to_scan() argument
4000 return young * n >= total; in suitable_to_scan()
4011 int young = 0; in walk_pte_range() local
4051 young++; in walk_pte_range()
4070 return suitable_to_scan(total, young); in walk_pte_range()
4656 int young = 0; in lru_gen_look_around() local
4716 young++; in lru_gen_look_around()
4742 if (suitable_to_scan(i, young)) in lru_gen_look_around()
5262 unsigned long young = 0; in should_run_aging() local
5287 young += size; in should_run_aging()
[all …]
Dhuge_memory.c2073 bool young, write, soft_dirty, pmd_migration = false, uffd_wp = false; in __split_huge_pmd_locked() local
2159 young = is_migration_entry_young(entry); in __split_huge_pmd_locked()
2170 young = pmd_young(old_pmd); in __split_huge_pmd_locked()
2225 if (young) in __split_huge_pmd_locked()
2240 if (!young) in __split_huge_pmd_locked()
/Linux-v6.6/Documentation/mm/
Darch_pgtable_helpers.rst25 | pte_young | Tests a young PTE |
41 | pte_mkyoung | Creates a young PTE |
77 | ptep_test_and_clear_young | Clears young from a PTE |
101 | pmd_young | Tests a young PMD |
117 | pmd_mkyoung | Creates a young PMD |
155 | pmdp_test_and_clear_young | Clears young from a PMD |
179 | pud_young | Tests a young PUD |
187 | pud_mkyoung | Creates a young PUD |
211 | pudp_test_and_clear_young | Clears young from a PUD |
Dmultigen_lru.rst31 profit from discovering a young PTE. A page table walk can sweep all
32 the young PTEs in an address space, but the address space can be too
114 The aging produces young generations. Given an ``lruvec``, it
120 young PTEs. For the former, it iterates ``lruvec_memcg()->mm_list``
123 the latter, when the eviction walks the rmap and finds a young PTE,
124 the aging scans the adjacent PTEs. For both, on finding a young PTE,
190 trips into the rmap. It scans the adjacent PTEs of a young PTE and
204 will be scanned for young pages.
234 1. It has the young and the old (generations), i.e., the counterparts
/Linux-v6.6/include/net/
Drequest_sock.h181 atomic_t young; member
221 atomic_dec(&queue->young); in reqsk_queue_removed()
227 atomic_inc(&queue->young); in reqsk_queue_added()
238 return atomic_read(&queue->young); in reqsk_queue_len_young()
/Linux-v6.6/mm/damon/
Dvaddr.c434 bool young; member
468 priv->young = true; in damon_young_pmd_entry()
492 priv->young = true; in damon_young_pmd_entry()
521 priv->young = true; in damon_young_hugetlb_entry()
545 .young = false, in damon_va_young()
551 return arg.young; in damon_va_young()
/Linux-v6.6/arch/x86/mm/
Dpgtable.c617 int young; in pmdp_clear_flush_young() local
621 young = pmdp_test_and_clear_young(vma, address, pmdp); in pmdp_clear_flush_young()
622 if (young) in pmdp_clear_flush_young()
625 return young; in pmdp_clear_flush_young()
/Linux-v6.6/arch/arm/mm/
Dproc-macros.S221 tst r3, #L_PTE_PRESENT | L_PTE_YOUNG @ present and young?
266 tst r3, #L_PTE_PRESENT | L_PTE_YOUNG @ present and young?
/Linux-v6.6/net/ipv4/
Dinet_connection_sock.c933 atomic_inc(&queue->young); in reqsk_queue_migrated()
1044 int young = reqsk_queue_len_young(queue) << 1; in reqsk_timer_handler() local
1047 if (qlen < young) in reqsk_timer_handler()
1050 young <<= 1; in reqsk_timer_handler()
1061 atomic_dec(&queue->young); in reqsk_timer_handler()
/Linux-v6.6/include/linux/
Dpage-flags.h586 TESTPAGEFLAG(Young, young, PF_ANY) in TESTPAGEFLAG() argument
587 SETPAGEFLAG(Young, young, PF_ANY) in TESTPAGEFLAG()
588 TESTCLEARFLAG(Young, young, PF_ANY) in TESTPAGEFLAG()
/Linux-v6.6/include/trace/events/
Dmmflags.h126 IF_HAVE_PG_IDLE(young) \
/Linux-v6.6/fs/proc/
Dtask_mmu.c441 bool compound, bool young, bool dirty, bool locked, in smaps_account() argument
462 if (young || page_is_young(page) || PageReferenced(page)) in smaps_account()
529 bool migration = false, young = false, dirty = false; in smaps_pte_entry() local
534 young = pte_young(ptent); in smaps_pte_entry()
565 smaps_account(mss, page, false, young, dirty, locked, migration); in smaps_pte_entry()
/Linux-v6.6/arch/arm64/include/asm/
Dpgtable.h909 int young = ptep_test_and_clear_young(vma, address, ptep); in ptep_clear_flush_young() local
911 if (young) { in ptep_clear_flush_young()
923 return young; in ptep_clear_flush_young()
/Linux-v6.6/arch/arm64/kvm/hyp/
Dpgtable.c1247 bool young; member
1259 data->young = true; in stage2_age_walker()
1292 return data.young; in kvm_pgtable_stage2_test_clear_young()
/Linux-v6.6/arch/x86/kvm/mmu/
Dmmu.c1612 int young = 0; in kvm_age_rmap() local
1615 young |= mmu_spte_age(sptep); in kvm_age_rmap()
1617 return young; in kvm_age_rmap()
1669 bool young = false; in kvm_age_gfn() local
1672 young = kvm_handle_gfn_range(kvm, range, kvm_age_rmap); in kvm_age_gfn()
1675 young |= kvm_tdp_mmu_age_gfn_range(kvm, range); in kvm_age_gfn()
1677 return young; in kvm_age_gfn()
1682 bool young = false; in kvm_test_age_gfn() local
1685 young = kvm_handle_gfn_range(kvm, range, kvm_test_age_rmap); in kvm_test_age_gfn()
1688 young |= kvm_tdp_mmu_test_age_gfn(kvm, range); in kvm_test_age_gfn()
[all …]
/Linux-v6.6/drivers/perf/
Dxgene_pmu.c418 XGENE_PMU_EVENT_ATTR(young-replacement, 0x1e),
423 XGENE_PMU_EVENT_ATTR(young-r-replacement, 0x23),
424 XGENE_PMU_EVENT_ATTR(young-nr-replacement, 0x24),
/Linux-v6.6/Documentation/process/
D7.AdvancedTopics.rst25 edges and poses certain hazards; it is a young and powerful tool which is
/Linux-v6.6/Documentation/ABI/testing/
Dsysfs-fs-f2fs563 Description: When ATGC is on, it controls age threshold to bypass GCing young
Dsysfs-driver-ufs1423 Contact: Jinyoung Choi <j-young.choi@samsung.com>