Lines Matching refs:mm
6 void rust_helper_mmgrab(struct mm_struct *mm) in rust_helper_mmgrab() argument
8 mmgrab(mm); in rust_helper_mmgrab()
11 void rust_helper_mmdrop(struct mm_struct *mm) in rust_helper_mmdrop() argument
13 mmdrop(mm); in rust_helper_mmdrop()
16 void rust_helper_mmget(struct mm_struct *mm) in rust_helper_mmget() argument
18 mmget(mm); in rust_helper_mmget()
21 bool rust_helper_mmget_not_zero(struct mm_struct *mm) in rust_helper_mmget_not_zero() argument
23 return mmget_not_zero(mm); in rust_helper_mmget_not_zero()
26 void rust_helper_mmap_read_lock(struct mm_struct *mm) in rust_helper_mmap_read_lock() argument
28 mmap_read_lock(mm); in rust_helper_mmap_read_lock()
31 bool rust_helper_mmap_read_trylock(struct mm_struct *mm) in rust_helper_mmap_read_trylock() argument
33 return mmap_read_trylock(mm); in rust_helper_mmap_read_trylock()
36 void rust_helper_mmap_read_unlock(struct mm_struct *mm) in rust_helper_mmap_read_unlock() argument
38 mmap_read_unlock(mm); in rust_helper_mmap_read_unlock()
41 struct vm_area_struct *rust_helper_vma_lookup(struct mm_struct *mm, in rust_helper_vma_lookup() argument
44 return vma_lookup(mm, addr); in rust_helper_vma_lookup()