Home
last modified time | relevance | path

Searched refs:vm_next (Results 1 – 5 of 5) sorted by relevance

/DragonOS-0.1.7/kernel/src/mm/
Dvma.c38 if (vma->vm_prev == NULL && vma->vm_next == NULL) // 如果当前是剩余的最后一个vma in vm_area_free()
56 next = prev->vm_next; in __vma_link_list()
57 prev->vm_next = vma; in __vma_link_list()
65 vma->vm_next = next; in __vma_link_list()
80 next = vma->vm_next; in __vma_unlink_list()
83 prev->vm_next = next; in __vma_unlink_list()
109 vma = vma->vm_next; in vma_find()
159 if (ptr->vm_next) in vma_insert()
160 ptr = ptr->vm_next; in vma_insert()
Dmm-types.h120 struct vm_area_struct *vm_prev, *vm_next; member
Dmm.h326 vma->vm_prev = vma->vm_next = NULL; in vma_init()
/DragonOS-0.1.7/kernel/src/process/
Dfork.c224 vma = vma->vm_next; in process_copy_mm()
266 vma = vma->vm_next; in process_copy_mm()
Dprocess.c842 vma = cur_vma->vm_next; in process_exit_mm()