]> Git Repo - linux.git/commit
uml: convert libc layer to call read and write
authorJeff Dike <[email protected]>
Sun, 6 May 2007 21:51:35 +0000 (14:51 -0700)
committerLinus Torvalds <[email protected]>
Mon, 7 May 2007 19:13:03 +0000 (12:13 -0700)
commita61f334fd2864b9b040f7e882726426ed7e8a317
tree51874236a1f324a2664118f54aadd9ba3beb95ca
parentef0470c053274c343b2be8737e0146d65e17f9be
uml: convert libc layer to call read and write

This patch converts calls in the os layer to os_{read,write}_file to calls
directly to libc read() and write() where it is clear that the I/O buffer is
in the kernel.

We can do that here instead of calling os_{read,write}_file_k since we are in
libc code and can call libc directly.

With the change in the calls, error handling needs to be changed to refer to
errno directly rather than the return value of the call.

CATCH_EINTR wrappers were also added where needed.

Signed-off-by: Jeff Dike <[email protected]>
Cc: Paolo 'Blaisorblade' Giarrusso <[email protected]>
Signed-off-by: Andrew Morton <[email protected]>
Signed-off-by: Linus Torvalds <[email protected]>
arch/um/os-Linux/aio.c
arch/um/os-Linux/drivers/ethertap_user.c
arch/um/os-Linux/helper.c
arch/um/os-Linux/mem.c
arch/um/os-Linux/process.c
arch/um/os-Linux/sigio.c
arch/um/os-Linux/skas/mem.c
arch/um/os-Linux/skas/process.c
arch/um/os-Linux/tty_log.c
This page took 0.045862 seconds and 4 git commands to generate.