[<prev] [next>] [day] [month] [year] [list]
Message-ID: <46A71C6C.2050207@felicis.org>
Date: Wed, 25 Jul 2007 11:48:28 +0200
From: Martin Roehricht <ml@...icis.org>
To: linux-kernel@...r.kernel.org
Subject: highest and lowest priority job of a runqueue
Hi,
I have some questions concerning the current 2.6.22 scheduler
implementation. I was wondering how I may retrieve
(a) the priority/load of the highest and the lowest priority task of a
runqueue (in a multiprocessor system), and
(b) the corresponding pointer to this task?
I thought I might use (given a list with tmp pointers to all CPUs)
rq = cpu_rq(tmp->cpu);
task_load = rq->curr->load_weight;
but this always returns 128 regardless of the fact if a task currently
runs on that CPU or not. I guess it returns the load of the migration
thread, but I'm not sure. I would like to migrate specific tasks
throughout find_busiest_group().
Furthermore, is it correct, that the current migration strategy
(move_tasks()) chooses automatically the highest priority task?
Thanks for your help,
Martin
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists