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/sched.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/sched.c')
-rw-r--r-- | kernel/sched.c | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/kernel/sched.c b/kernel/sched.c index 9474b23c28bf..3eedd5260907 100644 --- a/kernel/sched.c +++ b/kernel/sched.c | |||
@@ -1893,13 +1893,13 @@ out: | |||
1893 | return success; | 1893 | return success; |
1894 | } | 1894 | } |
1895 | 1895 | ||
1896 | int fastcall wake_up_process(struct task_struct *p) | 1896 | int wake_up_process(struct task_struct *p) |
1897 | { | 1897 | { |
1898 | return try_to_wake_up(p, TASK_ALL, 0); | 1898 | return try_to_wake_up(p, TASK_ALL, 0); |
1899 | } | 1899 | } |
1900 | EXPORT_SYMBOL(wake_up_process); | 1900 | EXPORT_SYMBOL(wake_up_process); |
1901 | 1901 | ||
1902 | int fastcall wake_up_state(struct task_struct *p, unsigned int state) | 1902 | int wake_up_state(struct task_struct *p, unsigned int state) |
1903 | { | 1903 | { |
1904 | return try_to_wake_up(p, state, 0); | 1904 | return try_to_wake_up(p, state, 0); |
1905 | } | 1905 | } |
@@ -1986,7 +1986,7 @@ void sched_fork(struct task_struct *p, int clone_flags) | |||
1986 | * that must be done for every newly created context, then puts the task | 1986 | * that must be done for every newly created context, then puts the task |
1987 | * on the runqueue and wakes it. | 1987 | * on the runqueue and wakes it. |
1988 | */ | 1988 | */ |
1989 | void fastcall wake_up_new_task(struct task_struct *p, unsigned long clone_flags) | 1989 | void wake_up_new_task(struct task_struct *p, unsigned long clone_flags) |
1990 | { | 1990 | { |
1991 | unsigned long flags; | 1991 | unsigned long flags; |
1992 | struct rq *rq; | 1992 | struct rq *rq; |
@@ -3753,7 +3753,7 @@ void scheduler_tick(void) | |||
3753 | 3753 | ||
3754 | #if defined(CONFIG_PREEMPT) && defined(CONFIG_DEBUG_PREEMPT) | 3754 | #if defined(CONFIG_PREEMPT) && defined(CONFIG_DEBUG_PREEMPT) |
3755 | 3755 | ||
3756 | void fastcall add_preempt_count(int val) | 3756 | void add_preempt_count(int val) |
3757 | { | 3757 | { |
3758 | /* | 3758 | /* |
3759 | * Underflow? | 3759 | * Underflow? |
@@ -3769,7 +3769,7 @@ void fastcall add_preempt_count(int val) | |||
3769 | } | 3769 | } |
3770 | EXPORT_SYMBOL(add_preempt_count); | 3770 | EXPORT_SYMBOL(add_preempt_count); |
3771 | 3771 | ||
3772 | void fastcall sub_preempt_count(int val) | 3772 | void sub_preempt_count(int val) |
3773 | { | 3773 | { |
3774 | /* | 3774 | /* |
3775 | * Underflow? | 3775 | * Underflow? |
@@ -4067,7 +4067,7 @@ static void __wake_up_common(wait_queue_head_t *q, unsigned int mode, | |||
4067 | * @nr_exclusive: how many wake-one or wake-many threads to wake up | 4067 | * @nr_exclusive: how many wake-one or wake-many threads to wake up |
4068 | * @key: is directly passed to the wakeup function | 4068 | * @key: is directly passed to the wakeup function |
4069 | */ | 4069 | */ |
4070 | void fastcall __wake_up(wait_queue_head_t *q, unsigned int mode, | 4070 | void __wake_up(wait_queue_head_t *q, unsigned int mode, |
4071 | int nr_exclusive, void *key) | 4071 | int nr_exclusive, void *key) |
4072 | { | 4072 | { |
4073 | unsigned long flags; | 4073 | unsigned long flags; |
@@ -4081,7 +4081,7 @@ EXPORT_SYMBOL(__wake_up); | |||
4081 | /* | 4081 | /* |
4082 | * Same as __wake_up but called with the spinlock in wait_queue_head_t held. | 4082 | * Same as __wake_up but called with the spinlock in wait_queue_head_t held. |
4083 | */ | 4083 | */ |
4084 | void fastcall __wake_up_locked(wait_queue_head_t *q, unsigned int mode) | 4084 | void __wake_up_locked(wait_queue_head_t *q, unsigned int mode) |
4085 | { | 4085 | { |
4086 | __wake_up_common(q, mode, 1, 0, NULL); | 4086 | __wake_up_common(q, mode, 1, 0, NULL); |
4087 | } | 4087 | } |
@@ -4099,7 +4099,7 @@ void fastcall __wake_up_locked(wait_queue_head_t *q, unsigned int mode) | |||
4099 | * | 4099 | * |
4100 | * On UP it can prevent extra preemption. | 4100 | * On UP it can prevent extra preemption. |
4101 | */ | 4101 | */ |
4102 | void fastcall | 4102 | void |
4103 | __wake_up_sync(wait_queue_head_t *q, unsigned int mode, int nr_exclusive) | 4103 | __wake_up_sync(wait_queue_head_t *q, unsigned int mode, int nr_exclusive) |
4104 | { | 4104 | { |
4105 | unsigned long flags; | 4105 | unsigned long flags; |