diff options
author | Jeff Dike <jdike@addtoit.com> | 2007-10-16 04:27:11 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-10-16 12:43:06 -0400 |
commit | 512b6fb1c14d4c34f23a3419b0789ad01914a899 (patch) | |
tree | 29e51c256dde41db297cff28767bf4dc4a1dc73f /arch/um/kernel/physmem.c | |
parent | b21d4b08b6686fa13bf9d4cae1ae08cb23ea3d53 (diff) |
uml: userspace files should call libc directly
A number of files that were changed in the recent removal of tt mode
are userspace files which call the os_* wrappers instead of calling
libc directly. A few other files were affected by this, through
This patch makes these call glibc directly.
There are also style fixes in the affected areas.
os_print_error has no remaining callers, so it is deleted.
There is a interface change to os_set_exec_close, eliminating a
parameter which was always the same. The callers are fixed as well.
os_process_pc got its error path cleaned up.
Signed-off-by: Jeff Dike <jdike@linux.intel.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'arch/um/kernel/physmem.c')
-rw-r--r-- | arch/um/kernel/physmem.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/arch/um/kernel/physmem.c b/arch/um/kernel/physmem.c index 1fe86d8cf092..e66432f42485 100644 --- a/arch/um/kernel/physmem.c +++ b/arch/um/kernel/physmem.c | |||
@@ -99,7 +99,9 @@ void __init setup_physmem(unsigned long start, unsigned long reserve_end, | |||
99 | err = os_map_memory((void *) uml_reserved, physmem_fd, offset, | 99 | err = os_map_memory((void *) uml_reserved, physmem_fd, offset, |
100 | len - offset, 1, 1, 1); | 100 | len - offset, 1, 1, 1); |
101 | if (err < 0) { | 101 | if (err < 0) { |
102 | os_print_error(err, "Mapping memory"); | 102 | printf("setup_physmem - mapping %ld bytes of memory at 0x%p " |
103 | "failed - errno = %d\n", len - offset, | ||
104 | (void *) uml_reserved, err); | ||
103 | exit(1); | 105 | exit(1); |
104 | } | 106 | } |
105 | 107 | ||