kernel-ark/arch/um/kernel
Jeff Dike 3d564047a5 uml: start fixing os_read_file and os_write_file
This patch starts the removal of a very old, very broken piece of code.  This
stems from the problem of passing a userspace buffer into read() or write() on
the host.  If that buffer had not yet been faulted in, read and write will
return -EFAULT.

To avoid this problem, the solution was to fault the buffer in before the
system call by touching the pages that hold the buffer by doing a copy-user of
a byte to each page.  This is obviously bogus, but it does usually work, in tt
mode, since the kernel and process are in the same address space and userspace
addresses can be accessed directly in the kernel.

In skas mode, where the kernel and process are in separate address spaces, it
is completely bogus because the userspace address, which is invalid in the
kernel, is passed into the system call instead of the corresponding physical
address, which would be valid.  Here, it appears that this code, on every host
read() or write(), tries to fault in a random process page.  This doesn't seem
to cause any correctness problems, but there is a performance impact.  This
patch, and the ones following, result in a 10-15% performance gain on a kernel
build.

This code can't be immediately tossed out because when it is, you can't log
in.  Apparently, there is some code in the console driver which depends on
this somehow.

However, we can start removing it by switching the code which does I/O using
kernel addresses to using plain read() and write().  This patch introduces
os_read_file_k and os_write_file_k for use with kernel buffers and converts
all call locations which use obvious kernel buffers to use them.  These
include I/O using buffers which are local variables which are on the stack or
kmalloc-ed.  Later patches will handle the less obvious cases, followed by a
mass conversion back to the original interface.

Signed-off-by: Jeff Dike <jdike@linux.intel.com>
Cc: Paolo 'Blaisorblade' Giarrusso <blaisorblade@yahoo.it>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
2007-05-07 12:13:03 -07:00
..
skas uml: speed up exec 2007-05-07 12:13:02 -07:00
tt uml: start fixing os_read_file and os_write_file 2007-05-07 12:13:03 -07:00
asm-offsets.c
config.c.in
dyn.lds.S [PATCH] uml: add _text definition to linker scripts 2006-10-31 08:07:00 -08:00
exec.c uml: remove user_util.h 2007-05-07 12:13:01 -07:00
exitcode.c [PATCH] uml: locking documentation 2006-09-29 09:18:04 -07:00
gmon_syms.c [PATCH] uml: fix gcov support 2006-09-27 08:26:16 -07:00
gprof_syms.c
init_task.c uml: remove user_util.h 2007-05-07 12:13:01 -07:00
initrd.c uml: remove user_util.h 2007-05-07 12:13:01 -07:00
irq.c uml: irq locking commentary 2007-05-07 12:13:02 -07:00
ksyms.c uml: start fixing os_read_file and os_write_file 2007-05-07 12:13:03 -07:00
Makefile [PATCH] uml: delete unused file 2007-02-11 10:51:22 -08:00
mem.c uml: add missing __init declarations 2007-05-07 12:13:01 -07:00
physmem.c uml: start fixing os_read_file and os_write_file 2007-05-07 12:13:03 -07:00
process.c uml: kernel_thread shouldn't panic 2007-05-07 12:13:02 -07:00
ptrace.c [PATCH] uml: x86_64 ptrace fixes 2007-02-11 10:51:24 -08:00
reboot.c uml: remove user_util.h 2007-05-07 12:13:01 -07:00
sigio.c uml: start fixing os_read_file and os_write_file 2007-05-07 12:13:03 -07:00
signal.c uml: remove user_util.h 2007-05-07 12:13:01 -07:00
smp.c uml: start fixing os_read_file and os_write_file 2007-05-07 12:13:03 -07:00
syscall.c uml: remove user_util.h 2007-05-07 12:13:01 -07:00
sysrq.c uml: remove user_util.h 2007-05-07 12:13:01 -07:00
time.c uml: remove user_util.h 2007-05-07 12:13:01 -07:00
tlb.c uml: speed up page table walking 2007-05-07 12:13:03 -07:00
trap.c uml: kernel segfaults should dump proper registers 2007-05-07 12:13:02 -07:00
uaccess.c
um_arch.c uml: comment early boot locking 2007-05-07 12:13:02 -07:00
umid.c [PATCH] uml: umid tidying 2007-02-11 10:51:24 -08:00
uml.lds.S [PATCH] uml: add _text definition to linker scripts 2006-10-31 08:07:00 -08:00
vmlinux.lds.S [PATCH] uml: tidy biarch gcc support 2006-07-14 21:53:52 -07:00