~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

TOMOYO Linux Cross Reference
Linux/arch/csky/abiv1/mmap.c

Version: ~ [ linux-6.11-rc3 ] ~ [ linux-6.10.4 ] ~ [ linux-6.9.12 ] ~ [ linux-6.8.12 ] ~ [ linux-6.7.12 ] ~ [ linux-6.6.45 ] ~ [ linux-6.5.13 ] ~ [ linux-6.4.16 ] ~ [ linux-6.3.13 ] ~ [ linux-6.2.16 ] ~ [ linux-6.1.104 ] ~ [ linux-6.0.19 ] ~ [ linux-5.19.17 ] ~ [ linux-5.18.19 ] ~ [ linux-5.17.15 ] ~ [ linux-5.16.20 ] ~ [ linux-5.15.164 ] ~ [ linux-5.14.21 ] ~ [ linux-5.13.19 ] ~ [ linux-5.12.19 ] ~ [ linux-5.11.22 ] ~ [ linux-5.10.223 ] ~ [ linux-5.9.16 ] ~ [ linux-5.8.18 ] ~ [ linux-5.7.19 ] ~ [ linux-5.6.19 ] ~ [ linux-5.5.19 ] ~ [ linux-5.4.281 ] ~ [ linux-5.3.18 ] ~ [ linux-5.2.21 ] ~ [ linux-5.1.21 ] ~ [ linux-5.0.21 ] ~ [ linux-4.20.17 ] ~ [ linux-4.19.319 ] ~ [ linux-4.18.20 ] ~ [ linux-4.17.19 ] ~ [ linux-4.16.18 ] ~ [ linux-4.15.18 ] ~ [ linux-4.14.336 ] ~ [ linux-4.13.16 ] ~ [ linux-4.12.14 ] ~ [ linux-4.11.12 ] ~ [ linux-4.10.17 ] ~ [ linux-4.9.337 ] ~ [ linux-4.4.302 ] ~ [ linux-3.10.108 ] ~ [ linux-2.6.32.71 ] ~ [ linux-2.6.0 ] ~ [ linux-2.4.37.11 ] ~ [ unix-v6-master ] ~ [ ccs-tools-1.8.9 ] ~ [ policy-sample ] ~
Architecture: ~ [ i386 ] ~ [ alpha ] ~ [ m68k ] ~ [ mips ] ~ [ ppc ] ~ [ sparc ] ~ [ sparc64 ] ~

  1 // SPDX-License-Identifier: GPL-2.0
  2 // Copyright (C) 2018 Hangzhou C-SKY Microsystems co.,ltd.
  3 
  4 #include <linux/fs.h>
  5 #include <linux/mm.h>
  6 #include <linux/mman.h>
  7 #include <linux/shm.h>
  8 #include <linux/sched.h>
  9 #include <linux/random.h>
 10 #include <linux/io.h>
 11 
 12 #define COLOUR_ALIGN(addr,pgoff)                \
 13         ((((addr)+SHMLBA-1)&~(SHMLBA-1)) +      \
 14          (((pgoff)<<PAGE_SHIFT) & (SHMLBA-1)))
 15 
 16 /*
 17  * We need to ensure that shared mappings are correctly aligned to
 18  * avoid aliasing issues with VIPT caches.  We need to ensure that
 19  * a specific page of an object is always mapped at a multiple of
 20  * SHMLBA bytes.
 21  *
 22  * We unconditionally provide this function for all cases.
 23  */
 24 unsigned long
 25 arch_get_unmapped_area(struct file *filp, unsigned long addr,
 26                 unsigned long len, unsigned long pgoff, unsigned long flags)
 27 {
 28         struct mm_struct *mm = current->mm;
 29         struct vm_area_struct *vma;
 30         int do_align = 0;
 31         struct vm_unmapped_area_info info = {
 32                 .length = len,
 33                 .low_limit = mm->mmap_base,
 34                 .high_limit = TASK_SIZE,
 35                 .align_offset = pgoff << PAGE_SHIFT
 36         };
 37 
 38         /*
 39          * We only need to do colour alignment if either the I or D
 40          * caches alias.
 41          */
 42         do_align = filp || (flags & MAP_SHARED);
 43 
 44         /*
 45          * We enforce the MAP_FIXED case.
 46          */
 47         if (flags & MAP_FIXED) {
 48                 if (flags & MAP_SHARED &&
 49                     (addr - (pgoff << PAGE_SHIFT)) & (SHMLBA - 1))
 50                         return -EINVAL;
 51                 return addr;
 52         }
 53 
 54         if (len > TASK_SIZE)
 55                 return -ENOMEM;
 56 
 57         if (addr) {
 58                 if (do_align)
 59                         addr = COLOUR_ALIGN(addr, pgoff);
 60                 else
 61                         addr = PAGE_ALIGN(addr);
 62 
 63                 vma = find_vma(mm, addr);
 64                 if (TASK_SIZE - len >= addr &&
 65                     (!vma || addr + len <= vm_start_gap(vma)))
 66                         return addr;
 67         }
 68 
 69         info.align_mask = do_align ? (PAGE_MASK & (SHMLBA - 1)) : 0;
 70         return vm_unmapped_area(&info);
 71 }
 72 

~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

kernel.org | git.kernel.org | LWN.net | Project Home | SVN repository | Mail admin

Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.

sflogo.php