2 * Copyright (C) 2004-2006 Atmel Corporation
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License version 2 as
6 * published by the Free Software Foundation.
8 #include <linux/errno.h>
10 #include <linux/file.h>
12 #include <linux/unistd.h>
15 #include <asm/uaccess.h>
17 asmlinkage
long sys_mmap2(unsigned long addr
, unsigned long len
,
18 unsigned long prot
, unsigned long flags
,
19 unsigned long fd
, off_t offset
)
22 struct file
*file
= NULL
;
24 flags
&= ~(MAP_EXECUTABLE
| MAP_DENYWRITE
);
25 if (!(flags
& MAP_ANONYMOUS
)) {
31 down_write(¤t
->mm
->mmap_sem
);
32 error
= do_mmap_pgoff(file
, addr
, len
, prot
, flags
, offset
);
33 up_write(¤t
->mm
->mmap_sem
);
40 int kernel_execve(const char *file
, char **argv
, char **envp
)
42 register long scno
asm("r8") = __NR_execve
;
43 register long sc1
asm("r12") = (long)file
;
44 register long sc2
asm("r11") = (long)argv
;
45 register long sc3
asm("r10") = (long)envp
;
49 : "r"(scno
), "0"(sc1
), "r"(sc2
), "r"(sc3
)