diff options
author | Gennady Sharapov <Gennady.V.Sharapov@intel.com> | 2006-01-18 20:42:45 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2006-01-18 22:20:19 -0500 |
commit | f45d9fc9d80678c2ee22c578e503055207c46fd0 (patch) | |
tree | e67a7783c2866af94092801a519f04bb77109ade /arch/um/include/os.h | |
parent | 4abfbf4034b419736de5797a3860ab0bcf5c5c8d (diff) |
[PATCH] uml: move libc-dependent skas memory mapping code
The serial UML OS-abstraction layer patch (um/kernel/skas dir).
This moves all systemcalls from skas/mem_user.c file under os-Linux dir and
join skas/mem_user.c and skas/mem.c files.
Signed-off-by: Gennady Sharapov <gennady.v.sharapov@intel.com>
Signed-off-by: Jeff Dike <jdike@addtoit.com>
Cc: Paolo 'Blaisorblade' Giarrusso <blaisorblade@yahoo.it>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'arch/um/include/os.h')
-rw-r--r-- | arch/um/include/os.h | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/arch/um/include/os.h b/arch/um/include/os.h index 624938ad9e14..8006e085b675 100644 --- a/arch/um/include/os.h +++ b/arch/um/include/os.h | |||
@@ -11,6 +11,7 @@ | |||
11 | #include "../os/include/file.h" | 11 | #include "../os/include/file.h" |
12 | #include "sysdep/ptrace.h" | 12 | #include "sysdep/ptrace.h" |
13 | #include "kern_util.h" | 13 | #include "kern_util.h" |
14 | #include "skas/mm_id.h" | ||
14 | 15 | ||
15 | #define OS_TYPE_FILE 1 | 16 | #define OS_TYPE_FILE 1 |
16 | #define OS_TYPE_DIR 2 | 17 | #define OS_TYPE_DIR 2 |
@@ -255,4 +256,20 @@ extern void user_time_init(void); | |||
255 | extern void uml_idle_timer(void); | 256 | extern void uml_idle_timer(void); |
256 | extern unsigned long long os_nsecs(void); | 257 | extern unsigned long long os_nsecs(void); |
257 | 258 | ||
259 | /* skas/mem.c */ | ||
260 | extern long run_syscall_stub(struct mm_id * mm_idp, | ||
261 | int syscall, unsigned long *args, long expected, | ||
262 | void **addr, int done); | ||
263 | extern long syscall_stub_data(struct mm_id * mm_idp, | ||
264 | unsigned long *data, int data_count, | ||
265 | void **addr, void **stub_addr); | ||
266 | extern int map(struct mm_id * mm_idp, unsigned long virt, | ||
267 | unsigned long len, int r, int w, int x, int phys_fd, | ||
268 | unsigned long long offset, int done, void **data); | ||
269 | extern int unmap(struct mm_id * mm_idp, void *addr, unsigned long len, | ||
270 | int done, void **data); | ||
271 | extern int protect(struct mm_id * mm_idp, unsigned long addr, | ||
272 | unsigned long len, int r, int w, int x, int done, | ||
273 | void **data); | ||
274 | |||
258 | #endif | 275 | #endif |