如何计算内核中活动用户的数量

时间:2012-05-16 17:41:09

标签: linux kernel scheduler

我们使用的是内核版本2.4-20,我们需要在内核模式下计算活跃用户数。目标是更改调度程序,因此我们在sched.c中修改schedule()函数。

我们所做的是计算list_for_each宏中的用户数。

list_for_each(tmp, &runqueue_head) {
    p = list_entry(tmp, struct task_struct, run_list);
    if (can_schedule(p, this_cpu)) {
        if (unique(p->uid)) add_new_user(p->uid);
        int weight = goodness(p, this_cpu, prev->active_mm);
        if (weight > c)
            c = weight, next = p;
    }
}

基本上是将唯一用户添加到列表中。但是,我们得到随机结果。有没有具体的方法来解决这个问题?

谢谢。

2 个答案:

答案 0 :(得分:1)

您可能想尝试计算for_each_task宏内的用户。这导致计算具有由于I / O或任何其他原因而被阻止的任务的用户。这应该提供更好的结果,因为如果您使用运行队列,则无法保证能够计算运行交互式进程的用户。

答案 1 :(得分:0)

这会有用吗?谁| awk'{print $ 1}'| sort -ud