Searched refs:get_area (Results 1 – 5 of 5) sorted by relevance
/linux-4.1.27/fs/proc/ |
D | inode.c | 290 typeof(proc_reg_get_unmapped_area) *get_area; in proc_reg_get_unmapped_area() 292 get_area = pde->proc_fops->get_unmapped_area; in proc_reg_get_unmapped_area() 294 if (!get_area) in proc_reg_get_unmapped_area() 295 get_area = current->mm->get_unmapped_area; in proc_reg_get_unmapped_area() 298 if (get_area) in proc_reg_get_unmapped_area() 299 rv = get_area(file, orig_addr, len, pgoff, flags); in proc_reg_get_unmapped_area()
|
/linux-4.1.27/arch/sparc/kernel/ |
D | sys_sparc_64.c | 217 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.1.27/mm/ |
D | mmap.c | 2000 unsigned long (*get_area)(struct file *, unsigned long, in get_unmapped_area() local 2011 get_area = current->mm->get_unmapped_area; in get_unmapped_area() 2013 get_area = file->f_op->get_unmapped_area; in get_unmapped_area() 2014 addr = get_area(file, addr, len, pgoff, flags); in get_unmapped_area()
|
/linux-4.1.27/fs/logfs/ |
D | logfs.h | 724 static inline struct logfs_area *get_area(struct super_block *sb, in get_area() function
|
D | segment.c | 307 area = get_area(sb, shadow->gc_level); in __logfs_segment_write()
|