diff options
author | Jeff Dike <jdike@addtoit.com> | 2007-05-06 17:51:43 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-05-07 15:13:03 -0400 |
commit | a6ea4cceed18edebe1eb6001cb9e0f88cd741a6c (patch) | |
tree | 4a747a92c9bd7a8703004603ee9e91f8bfb7e95a /arch/um/kernel/tt | |
parent | a263672424e591067e42e1d8371e56927fe73af8 (diff) |
uml: rename os_{read_write}_file_k back to os_{read_write}_file
Rename os_{read_write}_file_k back to os_{read_write}_file, delete
the originals and their bogus infrastructure, and fix all the callers.
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>
Diffstat (limited to 'arch/um/kernel/tt')
-rw-r--r-- | arch/um/kernel/tt/process_kern.c | 6 | ||||
-rw-r--r-- | arch/um/kernel/tt/ptproxy/proxy.c | 8 | ||||
-rw-r--r-- | arch/um/kernel/tt/tracer.c | 2 |
3 files changed, 8 insertions, 8 deletions
diff --git a/arch/um/kernel/tt/process_kern.c b/arch/um/kernel/tt/process_kern.c index c81bd2074930..c631303cb800 100644 --- a/arch/um/kernel/tt/process_kern.c +++ b/arch/um/kernel/tt/process_kern.c | |||
@@ -57,14 +57,14 @@ void switch_to_tt(void *prev, void *next) | |||
57 | * nor the value in "to" (since it was the task which stole us the CPU, | 57 | * nor the value in "to" (since it was the task which stole us the CPU, |
58 | * which we don't care about). */ | 58 | * which we don't care about). */ |
59 | 59 | ||
60 | err = os_write_file_k(to->thread.mode.tt.switch_pipe[1], &c, sizeof(c)); | 60 | err = os_write_file(to->thread.mode.tt.switch_pipe[1], &c, sizeof(c)); |
61 | if(err != sizeof(c)) | 61 | if(err != sizeof(c)) |
62 | panic("write of switch_pipe failed, err = %d", -err); | 62 | panic("write of switch_pipe failed, err = %d", -err); |
63 | 63 | ||
64 | if(from->thread.mode.tt.switch_pipe[0] == -1) | 64 | if(from->thread.mode.tt.switch_pipe[0] == -1) |
65 | os_kill_process(os_getpid(), 0); | 65 | os_kill_process(os_getpid(), 0); |
66 | 66 | ||
67 | err = os_read_file_k(from->thread.mode.tt.switch_pipe[0], &c, | 67 | err = os_read_file(from->thread.mode.tt.switch_pipe[0], &c, |
68 | sizeof(c)); | 68 | sizeof(c)); |
69 | if(err != sizeof(c)) | 69 | if(err != sizeof(c)) |
70 | panic("read of switch_pipe failed, errno = %d", -err); | 70 | panic("read of switch_pipe failed, errno = %d", -err); |
@@ -114,7 +114,7 @@ void suspend_new_thread(int fd) | |||
114 | char c; | 114 | char c; |
115 | 115 | ||
116 | os_stop_process(os_getpid()); | 116 | os_stop_process(os_getpid()); |
117 | err = os_read_file_k(fd, &c, sizeof(c)); | 117 | err = os_read_file(fd, &c, sizeof(c)); |
118 | if(err != sizeof(c)) | 118 | if(err != sizeof(c)) |
119 | panic("read failed in suspend_new_thread, err = %d", -err); | 119 | panic("read failed in suspend_new_thread, err = %d", -err); |
120 | } | 120 | } |
diff --git a/arch/um/kernel/tt/ptproxy/proxy.c b/arch/um/kernel/tt/ptproxy/proxy.c index 007beb6b7c00..420c23f311f3 100644 --- a/arch/um/kernel/tt/ptproxy/proxy.c +++ b/arch/um/kernel/tt/ptproxy/proxy.c | |||
@@ -338,14 +338,14 @@ int start_debugger(char *prog, int startup, int stop, int *fd_out) | |||
338 | "err = %d\n", -fd); | 338 | "err = %d\n", -fd); |
339 | exit(1); | 339 | exit(1); |
340 | } | 340 | } |
341 | os_write_file_k(fd, gdb_init_string, | 341 | os_write_file(fd, gdb_init_string, |
342 | sizeof(gdb_init_string) - 1); | 342 | sizeof(gdb_init_string) - 1); |
343 | if(startup){ | 343 | if(startup){ |
344 | if(stop){ | 344 | if(stop){ |
345 | os_write_file_k(fd, "b start_kernel\n", | 345 | os_write_file(fd, "b start_kernel\n", |
346 | strlen("b start_kernel\n")); | 346 | strlen("b start_kernel\n")); |
347 | } | 347 | } |
348 | os_write_file_k(fd, "c\n", strlen("c\n")); | 348 | os_write_file(fd, "c\n", strlen("c\n")); |
349 | } | 349 | } |
350 | if(ptrace(PTRACE_TRACEME, 0, 0, 0) < 0){ | 350 | if(ptrace(PTRACE_TRACEME, 0, 0, 0) < 0){ |
351 | printk("start_debugger : PTRACE_TRACEME failed, " | 351 | printk("start_debugger : PTRACE_TRACEME failed, " |
diff --git a/arch/um/kernel/tt/tracer.c b/arch/um/kernel/tt/tracer.c index 264da6c5a5c3..c23588393f6e 100644 --- a/arch/um/kernel/tt/tracer.c +++ b/arch/um/kernel/tt/tracer.c | |||
@@ -44,7 +44,7 @@ static void tracer_winch_handler(int sig) | |||
44 | int n; | 44 | int n; |
45 | char c = 1; | 45 | char c = 1; |
46 | 46 | ||
47 | n = os_write_file_k(tracer_winch[1], &c, sizeof(c)); | 47 | n = os_write_file(tracer_winch[1], &c, sizeof(c)); |
48 | if(n != sizeof(c)) | 48 | if(n != sizeof(c)) |
49 | printk("tracer_winch_handler - write failed, err = %d\n", -n); | 49 | printk("tracer_winch_handler - write failed, err = %d\n", -n); |
50 | } | 50 | } |