Skip to content

Commit

Permalink
arch_mmap_check() on mn10300
Browse files Browse the repository at this point in the history
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
  • Loading branch information
Al Viro committed Dec 11, 2009
1 parent 570dcf2 commit 564b3bf
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
5 changes: 5 additions & 0 deletions arch/mn10300/include/asm/mman.h
@@ -1 +1,6 @@
#include <asm-generic/mman.h>

#define MIN_MAP_ADDR PAGE_SIZE /* minimum fixed mmap address */

#define arch_mmap_check(addr, len, flags) \
(((flags) & MAP_FIXED && (addr) < MIN_MAP_ADDR) ? -EINVAL : 0)
5 changes: 0 additions & 5 deletions arch/mn10300/kernel/sys_mn10300.c
Expand Up @@ -23,8 +23,6 @@

#include <asm/uaccess.h>

#define MIN_MAP_ADDR PAGE_SIZE /* minimum fixed mmap address */

/*
* memory mapping syscall
*/
Expand All @@ -37,9 +35,6 @@ asmlinkage long sys_mmap2(unsigned long addr, unsigned long len,

flags &= ~(MAP_EXECUTABLE | MAP_DENYWRITE);

if (flags & MAP_FIXED && addr < MIN_MAP_ADDR)
goto out;

error = -EBADF;
if (!(flags & MAP_ANONYMOUS)) {
file = fget(fd);
Expand Down

0 comments on commit 564b3bf

Please sign in to comment.