Home
last modified time | relevance | path

Searched defs:vm_area_struct (Results 1 – 5 of 5) sorted by relevance

/linux/tools/testing/vma/
H A Dvma_internal.h317 struct vm_area_struct { struct
320 union {
329 struct mm_struct *vm_mm; /* The address space we belong to. */
330 pgprot_t vm_page_prot; /* Access permissions of this VMA. */
336 union {
356 unsigned int vm_lock_seq;
365 struct list_head anon_vma_chain; /* Serialized by mmap_lock &
367 struct anon_vma *anon_vma; /* Serialized by page_table_lock */
370 const struct vm_operations_struct *vm_ops;
373 unsigned long vm_pgoff; /* Offset (within vm_file) in PAGE_SIZE
[all …]
H A Dvma.c281 dummy_close(struct vm_area_struct *) dummy_close() argument
[all...]
/linux/include/linux/
H A Dmm_types.h813 struct vm_area_struct { struct
816 union {
829 struct mm_struct *vm_mm;
830 pgprot_t vm_page_prot; /* Access permissions of this VMA. */
836 union {
856 unsigned int vm_lock_seq;
864 struct list_head anon_vma_chain; /* Serialized by mmap_lock &
866 struct anon_vma *anon_vma; /* Serialized by page_table_lock */
869 const struct vm_operations_struct *vm_ops;
872 unsigned long vm_pgoff; /* Offset (within vm_file) in PAGE_SIZE
[all …]
/linux/rust/kernel/
H A Dmiscdevice.rs254 mmap( file: *mut bindings::file, vma: *mut bindings::vm_area_struct, ) -> c_int mmap() argument
/linux/rust/kernel/mm/
H A Dvirt.rs56 pub fn as_ptr(&self) -> *mut bindings::vm_area_struct { in as_ptr()