函数逻辑报告

Linux Kernel

v5.5.9

Brick Technologies Co., Ltd

Source Code:mm\memory.c Create Date:2022-07-27 16:06:31
Last Modify:2020-03-12 14:18:49 Copyright©Brick
首页 函数Tree
注解内核,赢得工具下载SCCTEnglish

函数名称:__pte_alloc

函数原型:int __pte_alloc(struct mm_struct *mm, pmd_t *pmd)

返回类型:int

参数:

类型参数名称
struct mm_struct *mm
pmd_t *pmd
426  new等于pte_alloc_one(mm)
427  如果非new则返回:负ENOMEM
443  smp_wmb()
445  ptl等于pmd_lock(mm, pmd)
446  如果此条件成立可能性大(为编译器优化)(pmd_none( * pmd))则
447  mm_inc_nr_ptes(mm)
448  pmd_populate(mm, pmd, new)
449  new = NULL
451  自旋锁解锁
452  如果newpte_free - free PTE-level user page table page*@mm: the mm_struct of the current context*@pte_page: the `struct page` representing the page table
454  返回:0
调用者
名称描述
__mcopy_atomic