android_kernel_xiaomi_sm8350/arch/um/os-Linux
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
..
drivers uml: remove page_size() 2007-05-07 12:13:02 -07:00
include
skas uml: dump registers on ptrace or wait failure 2007-05-07 12:13:02 -07:00
sys-i386 uml: remove user_util.h 2007-05-07 12:13:01 -07:00
sys-x86_64 [PATCH] uml: use correct register file size everywhere 2007-03-27 09:05:15 -07:00
aio.c [PATCH] uml: AIO locking and tidying 2007-02-11 10:51:24 -08:00
elf_aux.c [PATCH] uml: host VDSO fix 2007-03-01 14:53:38 -08:00
execvp.c
file.c uml: start fixing os_read_file and os_write_file 2007-05-07 12:13:03 -07:00
helper.c uml: remove page_size() 2007-05-07 12:13:02 -07:00
irq.c uml: remove user_util.h 2007-05-07 12:13:01 -07:00
main.c uml: add missing __init declarations 2007-05-07 12:13:01 -07:00
Makefile
mem.c uml: add missing __init declarations 2007-05-07 12:13:01 -07:00
process.c uml: remove page_size() 2007-05-07 12:13:02 -07:00
sigio.c uml: remove user_util.h 2007-05-07 12:13:01 -07:00
signal.c uml: remove user_util.h 2007-05-07 12:13:01 -07:00
start_up.c uml: add missing __init declarations 2007-05-07 12:13:01 -07:00
time.c uml: remove user_util.h 2007-05-07 12:13:01 -07:00
tls.c
trap.c uml: remove user_util.h 2007-05-07 12:13:01 -07:00
tt.c uml: remove page_size() 2007-05-07 12:13:02 -07:00
tty_log.c
tty.c
uaccess.c
umid.c [PATCH] uml: umid tidying 2007-02-11 10:51:24 -08:00
user_syms.c
util.c uml: remove page_size() 2007-05-07 12:13:02 -07:00