]> www.pilppa.org Git - linux-2.6-omap-h63xx.git/commitdiff
sched: remove unused rq types from sched.c
authorIngo Molnar <mingo@elte.hu>
Mon, 9 Jul 2007 16:52:00 +0000 (18:52 +0200)
committerIngo Molnar <mingo@elte.hu>
Mon, 9 Jul 2007 16:52:00 +0000 (18:52 +0200)
remove unused rq types from sched.c, now that we switched
over to CFS.

Signed-off-by: Ingo Molnar <mingo@elte.hu>
kernel/sched.c

index 886531c681c1c353f82d9f11ec887881148cfc3f..f8cf78c6af2edfb817cbea270fdcfd8c8a848074 100644 (file)
@@ -208,15 +208,6 @@ struct rt_rq {
        struct list_head *rt_load_balance_head, *rt_load_balance_curr;
 };
 
-/*
- * The prio-array type of the old scheduler:
- */
-struct prio_array {
-       unsigned int nr_active;
-       DECLARE_BITMAP(bitmap, MAX_PRIO+1); /* include 1 bit for delimiter */
-       struct list_head queue[MAX_PRIO];
-};
-
 /*
  * This is the main, per-CPU runqueue data structure.
  *
@@ -232,7 +223,6 @@ struct rq {
         * remote CPUs use both these fields when doing load calculation.
         */
        unsigned long nr_running;
-       unsigned long raw_weighted_load;
        #define CPU_LOAD_IDX_MAX 5
        unsigned long cpu_load[CPU_LOAD_IDX_MAX];
        unsigned char idle_at_tick;
@@ -257,16 +247,10 @@ struct rq {
         */
        unsigned long nr_uninterruptible;
 
-       unsigned long expired_timestamp;
-       unsigned long long most_recent_timestamp;
-
        struct task_struct *curr, *idle;
        unsigned long next_balance;
        struct mm_struct *prev_mm;
 
-       struct prio_array *active, *expired, arrays[2];
-       int best_expired_prio;
-
        u64 clock, prev_clock_raw;
        s64 clock_max_delta;