diff options
author | Harvey Harrison <harvey.harrison@gmail.com> | 2008-02-08 07:19:53 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2008-02-08 12:22:31 -0500 |
commit | 7ad5b3a505e68cfdc342933d6e0fc0eaa5e0a4f7 (patch) | |
tree | 6715ffd8df509d3d53dea581bb97418a21bc7cbc /kernel/workqueue.c | |
parent | fc9b52cd8f5f459b88adcf67c47668425ae31a78 (diff) |
kernel: remove fastcall in kernel/*
[akpm@linux-foundation.org: coding-style fixes]
Signed-off-by: Harvey Harrison <harvey.harrison@gmail.com>
Acked-by: Ingo Molnar <mingo@elte.hu>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'kernel/workqueue.c')
-rw-r--r-- | kernel/workqueue.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/kernel/workqueue.c b/kernel/workqueue.c index 52db48e7f6e7..3f168e00ce5b 100644 --- a/kernel/workqueue.c +++ b/kernel/workqueue.c | |||
@@ -161,7 +161,7 @@ static void __queue_work(struct cpu_workqueue_struct *cwq, | |||
161 | * We queue the work to the CPU it was submitted, but there is no | 161 | * We queue the work to the CPU it was submitted, but there is no |
162 | * guarantee that it will be processed by that CPU. | 162 | * guarantee that it will be processed by that CPU. |
163 | */ | 163 | */ |
164 | int fastcall queue_work(struct workqueue_struct *wq, struct work_struct *work) | 164 | int queue_work(struct workqueue_struct *wq, struct work_struct *work) |
165 | { | 165 | { |
166 | int ret = 0; | 166 | int ret = 0; |
167 | 167 | ||
@@ -192,7 +192,7 @@ void delayed_work_timer_fn(unsigned long __data) | |||
192 | * | 192 | * |
193 | * Returns 0 if @work was already on a queue, non-zero otherwise. | 193 | * Returns 0 if @work was already on a queue, non-zero otherwise. |
194 | */ | 194 | */ |
195 | int fastcall queue_delayed_work(struct workqueue_struct *wq, | 195 | int queue_delayed_work(struct workqueue_struct *wq, |
196 | struct delayed_work *dwork, unsigned long delay) | 196 | struct delayed_work *dwork, unsigned long delay) |
197 | { | 197 | { |
198 | timer_stats_timer_set_start_info(&dwork->timer); | 198 | timer_stats_timer_set_start_info(&dwork->timer); |
@@ -388,7 +388,7 @@ static int flush_cpu_workqueue(struct cpu_workqueue_struct *cwq) | |||
388 | * This function used to run the workqueues itself. Now we just wait for the | 388 | * This function used to run the workqueues itself. Now we just wait for the |
389 | * helper threads to do it. | 389 | * helper threads to do it. |
390 | */ | 390 | */ |
391 | void fastcall flush_workqueue(struct workqueue_struct *wq) | 391 | void flush_workqueue(struct workqueue_struct *wq) |
392 | { | 392 | { |
393 | const cpumask_t *cpu_map = wq_cpu_map(wq); | 393 | const cpumask_t *cpu_map = wq_cpu_map(wq); |
394 | int cpu; | 394 | int cpu; |
@@ -546,7 +546,7 @@ static struct workqueue_struct *keventd_wq __read_mostly; | |||
546 | * | 546 | * |
547 | * This puts a job in the kernel-global workqueue. | 547 | * This puts a job in the kernel-global workqueue. |
548 | */ | 548 | */ |
549 | int fastcall schedule_work(struct work_struct *work) | 549 | int schedule_work(struct work_struct *work) |
550 | { | 550 | { |
551 | return queue_work(keventd_wq, work); | 551 | return queue_work(keventd_wq, work); |
552 | } | 552 | } |
@@ -560,7 +560,7 @@ EXPORT_SYMBOL(schedule_work); | |||
560 | * After waiting for a given time this puts a job in the kernel-global | 560 | * After waiting for a given time this puts a job in the kernel-global |
561 | * workqueue. | 561 | * workqueue. |
562 | */ | 562 | */ |
563 | int fastcall schedule_delayed_work(struct delayed_work *dwork, | 563 | int schedule_delayed_work(struct delayed_work *dwork, |
564 | unsigned long delay) | 564 | unsigned long delay) |
565 | { | 565 | { |
566 | timer_stats_timer_set_start_info(&dwork->timer); | 566 | timer_stats_timer_set_start_info(&dwork->timer); |