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 | |
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')
-rw-r--r-- | arch/um/kernel/initrd.c | 2 | ||||
-rw-r--r-- | arch/um/kernel/ksyms.c | 2 | ||||
-rw-r--r-- | arch/um/kernel/physmem.c | 4 | ||||
-rw-r--r-- | arch/um/kernel/sigio.c | 2 | ||||
-rw-r--r-- | arch/um/kernel/smp.c | 12 | ||||
-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 |
8 files changed, 18 insertions, 20 deletions
diff --git a/arch/um/kernel/initrd.c b/arch/um/kernel/initrd.c index cff73faae991..16dc43e9d940 100644 --- a/arch/um/kernel/initrd.c +++ b/arch/um/kernel/initrd.c | |||
@@ -63,7 +63,7 @@ int load_initrd(char *filename, void *buf, int size) | |||
63 | printk("Opening '%s' failed - err = %d\n", filename, -fd); | 63 | printk("Opening '%s' failed - err = %d\n", filename, -fd); |
64 | return -1; | 64 | return -1; |
65 | } | 65 | } |
66 | n = os_read_file_k(fd, buf, size); | 66 | n = os_read_file(fd, buf, size); |
67 | if(n != size){ | 67 | if(n != size){ |
68 | printk("Read of %d bytes from '%s' failed, err = %d\n", size, | 68 | printk("Read of %d bytes from '%s' failed, err = %d\n", size, |
69 | filename, -n); | 69 | filename, -n); |
diff --git a/arch/um/kernel/ksyms.c b/arch/um/kernel/ksyms.c index 7c158448b9fd..7b3e53fb8070 100644 --- a/arch/um/kernel/ksyms.c +++ b/arch/um/kernel/ksyms.c | |||
@@ -62,9 +62,7 @@ EXPORT_SYMBOL(os_get_exec_close); | |||
62 | EXPORT_SYMBOL(os_set_exec_close); | 62 | EXPORT_SYMBOL(os_set_exec_close); |
63 | EXPORT_SYMBOL(os_getpid); | 63 | EXPORT_SYMBOL(os_getpid); |
64 | EXPORT_SYMBOL(os_open_file); | 64 | EXPORT_SYMBOL(os_open_file); |
65 | EXPORT_SYMBOL(os_read_file_k); | ||
66 | EXPORT_SYMBOL(os_read_file); | 65 | EXPORT_SYMBOL(os_read_file); |
67 | EXPORT_SYMBOL(os_write_file_k); | ||
68 | EXPORT_SYMBOL(os_write_file); | 66 | EXPORT_SYMBOL(os_write_file); |
69 | EXPORT_SYMBOL(os_seek_file); | 67 | EXPORT_SYMBOL(os_seek_file); |
70 | EXPORT_SYMBOL(os_lock_file); | 68 | EXPORT_SYMBOL(os_lock_file); |
diff --git a/arch/um/kernel/physmem.c b/arch/um/kernel/physmem.c index 77021a627da6..df1ad3ba130c 100644 --- a/arch/um/kernel/physmem.c +++ b/arch/um/kernel/physmem.c | |||
@@ -211,7 +211,7 @@ void physmem_forget_descriptor(int fd) | |||
211 | panic("physmem_forget_descriptor - failed to seek " | 211 | panic("physmem_forget_descriptor - failed to seek " |
212 | "to %lld in fd %d, error = %d\n", | 212 | "to %lld in fd %d, error = %d\n", |
213 | offset, fd, -err); | 213 | offset, fd, -err); |
214 | err = os_read_file_k(fd, addr, PAGE_SIZE); | 214 | err = os_read_file(fd, addr, PAGE_SIZE); |
215 | if(err < 0) | 215 | if(err < 0) |
216 | panic("physmem_forget_descriptor - failed to read " | 216 | panic("physmem_forget_descriptor - failed to read " |
217 | "from fd %d to 0x%p, error = %d\n", | 217 | "from fd %d to 0x%p, error = %d\n", |
@@ -341,7 +341,7 @@ void setup_physmem(unsigned long start, unsigned long reserve_end, | |||
341 | * from physmem_fd, so it needs to be written out there. | 341 | * from physmem_fd, so it needs to be written out there. |
342 | */ | 342 | */ |
343 | os_seek_file(physmem_fd, __pa(&__syscall_stub_start)); | 343 | os_seek_file(physmem_fd, __pa(&__syscall_stub_start)); |
344 | os_write_file_k(physmem_fd, &__syscall_stub_start, PAGE_SIZE); | 344 | os_write_file(physmem_fd, &__syscall_stub_start, PAGE_SIZE); |
345 | 345 | ||
346 | bootmap_size = init_bootmem(pfn, pfn + delta); | 346 | bootmap_size = init_bootmem(pfn, pfn + delta); |
347 | free_bootmem(__pa(reserve_end) + bootmap_size, | 347 | free_bootmem(__pa(reserve_end) + bootmap_size, |
diff --git a/arch/um/kernel/sigio.c b/arch/um/kernel/sigio.c index f756e78085e4..89f9866a1354 100644 --- a/arch/um/kernel/sigio.c +++ b/arch/um/kernel/sigio.c | |||
@@ -21,7 +21,7 @@ static irqreturn_t sigio_interrupt(int irq, void *data) | |||
21 | { | 21 | { |
22 | char c; | 22 | char c; |
23 | 23 | ||
24 | os_read_file_k(sigio_irq_fd, &c, sizeof(c)); | 24 | os_read_file(sigio_irq_fd, &c, sizeof(c)); |
25 | reactivate_fd(sigio_irq_fd, SIGIO_WRITE_IRQ); | 25 | reactivate_fd(sigio_irq_fd, SIGIO_WRITE_IRQ); |
26 | return IRQ_HANDLED; | 26 | return IRQ_HANDLED; |
27 | } | 27 | } |
diff --git a/arch/um/kernel/smp.c b/arch/um/kernel/smp.c index 9ac562124654..e6a7778006ad 100644 --- a/arch/um/kernel/smp.c +++ b/arch/um/kernel/smp.c | |||
@@ -47,7 +47,7 @@ struct task_struct *idle_threads[NR_CPUS]; | |||
47 | 47 | ||
48 | void smp_send_reschedule(int cpu) | 48 | void smp_send_reschedule(int cpu) |
49 | { | 49 | { |
50 | os_write_file_k(cpu_data[cpu].ipi_pipe[1], "R", 1); | 50 | os_write_file(cpu_data[cpu].ipi_pipe[1], "R", 1); |
51 | num_reschedules_sent++; | 51 | num_reschedules_sent++; |
52 | } | 52 | } |
53 | 53 | ||
@@ -59,7 +59,7 @@ void smp_send_stop(void) | |||
59 | for(i = 0; i < num_online_cpus(); i++){ | 59 | for(i = 0; i < num_online_cpus(); i++){ |
60 | if(i == current_thread->cpu) | 60 | if(i == current_thread->cpu) |
61 | continue; | 61 | continue; |
62 | os_write_file_k(cpu_data[i].ipi_pipe[1], "S", 1); | 62 | os_write_file(cpu_data[i].ipi_pipe[1], "S", 1); |
63 | } | 63 | } |
64 | printk("done\n"); | 64 | printk("done\n"); |
65 | } | 65 | } |
@@ -108,8 +108,8 @@ static struct task_struct *idle_thread(int cpu) | |||
108 | { .pid = new_task->thread.mode.tt.extern_pid, | 108 | { .pid = new_task->thread.mode.tt.extern_pid, |
109 | .task = new_task } ); | 109 | .task = new_task } ); |
110 | idle_threads[cpu] = new_task; | 110 | idle_threads[cpu] = new_task; |
111 | CHOOSE_MODE(os_write_file_k(new_task->thread.mode.tt.switch_pipe[1], &c, | 111 | CHOOSE_MODE(os_write_file(new_task->thread.mode.tt.switch_pipe[1], &c, |
112 | sizeof(c)), | 112 | sizeof(c)), |
113 | ({ panic("skas mode doesn't support SMP"); })); | 113 | ({ panic("skas mode doesn't support SMP"); })); |
114 | return new_task; | 114 | return new_task; |
115 | } | 115 | } |
@@ -179,7 +179,7 @@ void IPI_handler(int cpu) | |||
179 | int fd; | 179 | int fd; |
180 | 180 | ||
181 | fd = cpu_data[cpu].ipi_pipe[0]; | 181 | fd = cpu_data[cpu].ipi_pipe[0]; |
182 | while (os_read_file_k(fd, &c, 1) == 1) { | 182 | while (os_read_file(fd, &c, 1) == 1) { |
183 | switch (c) { | 183 | switch (c) { |
184 | case 'C': | 184 | case 'C': |
185 | smp_call_function_slave(cpu); | 185 | smp_call_function_slave(cpu); |
@@ -239,7 +239,7 @@ int smp_call_function(void (*_func)(void *info), void *_info, int nonatomic, | |||
239 | info = _info; | 239 | info = _info; |
240 | 240 | ||
241 | for_each_online_cpu(i) | 241 | for_each_online_cpu(i) |
242 | os_write_file_k(cpu_data[i].ipi_pipe[1], "C", 1); | 242 | os_write_file(cpu_data[i].ipi_pipe[1], "C", 1); |
243 | 243 | ||
244 | while (atomic_read(&scf_started) != cpus) | 244 | while (atomic_read(&scf_started) != cpus) |
245 | barrier(); | 245 | barrier(); |
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 | } |