Home
last modified time | relevance | path

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

/linux-4.4.14/fs/proc/
Dinode.c289 typeof(proc_reg_get_unmapped_area) *get_area; in proc_reg_get_unmapped_area()
291 get_area = pde->proc_fops->get_unmapped_area; in proc_reg_get_unmapped_area()
293 if (!get_area) in proc_reg_get_unmapped_area()
294 get_area = current->mm->get_unmapped_area; in proc_reg_get_unmapped_area()
297 if (get_area) in proc_reg_get_unmapped_area()
298 rv = get_area(file, orig_addr, len, pgoff, flags); in proc_reg_get_unmapped_area()
/linux-4.4.14/arch/sparc/kernel/
Dsys_sparc_64.c217 unsigned long (*get_area)(struct file *, unsigned long, in get_fb_unmapped_area() local
220 get_area = current->mm->get_unmapped_area; in get_fb_unmapped_area()
224 return get_area(NULL, orig_addr, len, pgoff, flags); in get_fb_unmapped_area()
237 addr = get_area(NULL, orig_addr, len + (align_goal - PAGE_SIZE), pgoff, flags); in get_fb_unmapped_area()
255 addr = get_area(NULL, orig_addr, len, pgoff, flags); in get_fb_unmapped_area()
/linux-4.4.14/mm/
Dmmap.c2010 unsigned long (*get_area)(struct file *, unsigned long, in get_unmapped_area() local
2021 get_area = current->mm->get_unmapped_area; in get_unmapped_area()
2023 get_area = file->f_op->get_unmapped_area; in get_unmapped_area()
2024 addr = get_area(file, addr, len, pgoff, flags); in get_unmapped_area()
/linux-4.4.14/fs/logfs/
Dlogfs.h724 static inline struct logfs_area *get_area(struct super_block *sb, in get_area() function
Dsegment.c307 area = get_area(sb, shadow->gc_level); in __logfs_segment_write()