Gitweb:
http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=79064fbf75796c4c6a53e40729dbe52f789a91fd
Commit: 79064fbf75796c4c6a53e40729dbe52f789a91fd
Parent: 0d1311a536a0face6267e7346223f2e68b002018
Author: Ingo Molnar <[EMAIL PROTECTED]>
AuthorDate: Fri Jan 25 21:08:14 2008 +0100
Committer: Ingo Molnar <[EMAIL PROTECTED]>
CommitDate: Fri Jan 25 21:08:14 2008 +0100
sched: clean up pick_next_highest_task_rt()
clean up pick_next_highest_task_rt().
Signed-off-by: Ingo Molnar <[EMAIL PROTECTED]>
---
kernel/sched_rt.c | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/kernel/sched_rt.c b/kernel/sched_rt.c
index 61d1988..b8435fd 100644
--- a/kernel/sched_rt.c
+++ b/kernel/sched_rt.c
@@ -242,8 +242,7 @@ static int pick_rt_task(struct rq *rq, struct task_struct
*p, int cpu)
}
/* Return the second highest RT task, NULL otherwise */
-static struct task_struct *pick_next_highest_task_rt(struct rq *rq,
- int cpu)
+static struct task_struct *pick_next_highest_task_rt(struct rq *rq, int cpu)
{
struct rt_prio_array *array = &rq->rt.active;
struct task_struct *next;
@@ -270,7 +269,8 @@ static struct task_struct *pick_next_highest_task_rt(struct
rq *rq,
if (queue->next->next != queue) {
/* same prio task */
- next = list_entry(queue->next->next, struct task_struct,
run_list);
+ next = list_entry(queue->next->next, struct task_struct,
+ run_list);
if (pick_rt_task(rq, next, cpu))
goto out;
}
-
To unsubscribe from this list: send the line "unsubscribe git-commits-head" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at http://vger.kernel.org/majordomo-info.html