tag | line | file | source code |
vm_next | 537 | fs/exec.c | mpnt1 = mpnt->vm_next; |
vm_next | 360 | fs/namei.c | for(mpnt = (*p)->mm->mmap; mpnt; mpnt = mpnt->vm_next) { |
vm_next | 411 | fs/proc/array.c | for(map = (*p)->mm->mmap; map != NULL; map = map->vm_next) { |
vm_next | 114 | fs/proc/fd.c | for (mpnt = p->mm->mmap; mpnt; mpnt = mpnt->vm_next) |
vm_next | 171 | fs/proc/fd.c | for (mpnt = p->mm->mmap ; mpnt ; mpnt = mpnt->vm_next) |
vm_next | 183 | fs/proc/inode.c | for (mpnt = p->mm->mmap ; mpnt ; mpnt = mpnt->vm_next) |
vm_next | 89 | fs/proc/link.c | mpnt = mpnt->vm_next){ |
vm_next | 529 | fs/super.c | vma = vma->vm_next; |
vm_next | 35 | include/linux/mm.h | struct vm_area_struct * vm_next; /* linked list */ |
vm_next | 365 | kernel/exit.c | struct vm_area_struct * next = mpnt->vm_next; |
vm_next | 98 | kernel/fork.c | for (mpnt = current->mm->mmap ; mpnt ; mpnt = mpnt->vm_next) { |
vm_next | 104 | kernel/fork.c | tmp->vm_next = NULL; |
vm_next | 108 | kernel/fork.c | p = &tmp->vm_next; |
vm_next | 681 | mm/memory.c | for (vma = current->mm->mmap ; ; vma = vma->vm_next) { |
vm_next | 695 | mm/memory.c | struct vm_area_struct * next = vma->vm_next; |
vm_next | 813 | mm/memory.c | for (mpnt = (*p)->mm->mmap; mpnt; mpnt = mpnt->vm_next) { |
vm_next | 887 | mm/memory.c | for (mpnt = tsk->mm->mmap; mpnt != NULL; mpnt = mpnt->vm_next) { |
vm_next | 89 | mm/mmap.c | for (vmm = current->mm->mmap ; vmm ; vmm = vmm->vm_next) { |
vm_next | 270 | mm/mmap.c | npp = &mpnt->vm_next; |
vm_next | 274 | mm/mmap.c | *npp = mpnt->vm_next; |
vm_next | 275 | mm/mmap.c | mpnt->vm_next = free; |
vm_next | 292 | mm/mmap.c | free = free->vm_next; |
vm_next | 367 | mm/mmap.c | for(mpnt = t->mm->mmap; mpnt != NULL; mpnt = mpnt->vm_next) |
vm_next | 371 | mm/mmap.c | nxtpp = &mpnt->vm_next; |
vm_next | 382 | mm/mmap.c | vmp->vm_next = mpnt; |
vm_next | 400 | mm/mmap.c | for(prev = mpnt, mpnt = mpnt->vm_next; |
vm_next | 406 | mm/mmap.c | next = mpnt->vm_next; |
vm_next | 427 | mm/mmap.c | prev->vm_next != mpnt) /* !!! */ |
vm_next | 436 | mm/mmap.c | prev->vm_next = mpnt->vm_next; |